mirror of https://git.48k.eu/ogclient
67 lines
2.2 KiB
Python
67 lines
2.2 KiB
Python
import os
|
|
import subprocess
|
|
|
|
OG_PATH = '/opt/opengnsys/'
|
|
|
|
def poweroff():
|
|
if os.path.exists('/scripts/oginit'):
|
|
subprocess.call('source ' + OG_SCRIPT_PATH + 'etc/preinit/loadenviron.sh; ' + OG_SCRIPT_PATH + 'scripts/poweroff', shell=True)
|
|
else:
|
|
subprocess.call(['/sbin/poweroff'])
|
|
|
|
def reboot():
|
|
if os.path.exists('/scripts/oginit'):
|
|
subprocess.call('source ' + OG_SCRIPT_PATH + 'etc/preinit/loadenviron.sh; ' + OG_SCRIPT_PATH + 'scripts/reboot', shell=True)
|
|
else:
|
|
subprocess.call(['/sbin/reboot'])
|
|
|
|
def execCMD(httpparser):
|
|
cmd = httpparser.getCMD()
|
|
cmds = cmd.split(" ")
|
|
try:
|
|
result = subprocess.check_output(cmds)
|
|
except:
|
|
raise ValueError('Error: Incorrect command value')
|
|
|
|
return result.decode('utf-8')
|
|
|
|
def procsession(httpparser):
|
|
disk = httpparser.getDisk()
|
|
partition = httpparser.getPartition()
|
|
|
|
result = subprocess.check_output([OG_PATH + 'interfaceAdm/IniciarSesion', disk, partition], shell=True)
|
|
return result.decode('utf-8')
|
|
|
|
def procsoftware(httpparser, path):
|
|
disk = httpparser.getDisk()
|
|
partition = httpparser.getPartition()
|
|
|
|
result = subprocess.check_output([OG_PATH + 'interfaceAdm/InventarioSoftware', disk, partition, path], shell=True)
|
|
return result.decode('utf-8')
|
|
|
|
def prochardware(path):
|
|
result = subprocess.check_output([OG_PATH + 'interfaceAdm/InventarioHardware', path], shell=True)
|
|
return result.decode('utf-8')
|
|
|
|
def procsetup(httpparser):
|
|
disk = httpparser.getDisk()
|
|
cache = httpparser.getCache()
|
|
cachesize = httpparser.getCacheSize()
|
|
partlist = httpparser.getPartitionSetup()
|
|
|
|
for part in partlist:
|
|
cfg = 'dis=' + disk + '*che=' + cache + '*tch=' + cachesize + '!par=' + part["partition"] + '*cpt='+part["code"] + '*sfi=' + part['filesystem'] + '*tam=' + part['size'] + '*ope=' + part['format'] + '%'
|
|
subprocess.check_output([OG_PATH + 'interfaceAdm/Configurar', disk, cfg], shell=True)
|
|
|
|
def procirestore(httpparser):
|
|
disk = httpparser.getDisk()
|
|
partition = httpparser.getPartition()
|
|
name = httpparser.getName()
|
|
repo = httpparser.getRepo()
|
|
ctype = httpparser.getType()
|
|
profile = httpparser.getProfile()
|
|
cid = httpparser.getId()
|
|
|
|
result = subprocess.check_output([OG_PATH + 'interfaceAdm/RestaurarImagen', disk, partition, name, repo, ctype], shell=True)
|
|
return result.decode('utf-8')
|