diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2019-10-09 11:07:04 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-10-09 15:27:59 +0200 |
commit | 8068b8239f4557e68a3d8d4d0c3bed07eaabb71c (patch) | |
tree | 945483aa6856c9b95fc849a372cfe3685dd8175a /admin | |
parent | 4d4ec5935a41e8190e80e2eaab1ae0cd023cdfdd (diff) |
#915 Adapt web to use new image/restore/basic cmd in REST API
SocketHidra command has been replaced by POST image/restore/basic.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/WebConsole/comandos/gestores/gestor_Comandos.php | 5 | ||||
-rw-r--r-- | admin/WebConsole/includes/restfunctions.php | 55 |
2 files changed, 60 insertions, 0 deletions
diff --git a/admin/WebConsole/comandos/gestores/gestor_Comandos.php b/admin/WebConsole/comandos/gestores/gestor_Comandos.php index ffbea5ff..5b951735 100644 --- a/admin/WebConsole/comandos/gestores/gestor_Comandos.php +++ b/admin/WebConsole/comandos/gestores/gestor_Comandos.php @@ -32,6 +32,7 @@ define("OG_CMD_ID_SCRIPT", 8); define('OG_CMD_ID_SESSION', 9); define('OG_CMD_ID_SETUP', 10); define('OG_CMD_ID_CREATE_BASIC_IMAGE', 12); +define('OG_CMD_ID_RESTORE_BASIC_IMAGE', 13); define('OG_CMD_ID_SENDMESSAGE', 16); // Recoge parametros de seguimiento @@ -142,6 +143,9 @@ switch ($idcomando) { case OG_CMD_ID_CREATE_BASIC_IMAGE: create_basic_image($cadenaip, $atributos); break; + case OG_CMD_ID_RESTORE_BASIC_IMAGE: + restore_basic_image($cadenaip, $atributos); + break; case OG_CMD_ID_POWEROFF: poweroff($cadenaip); break; @@ -222,6 +226,7 @@ if($sw_ejya=='on' || $sw_ejprg=="on" ){ $idcomando != OG_CMD_ID_SETUP && $idcomando != OG_CMD_ID_SESSION && $idcomando != OG_CMD_ID_CREATE_BASIC_IMAGE && + $idcomando != OG_CMD_ID_RESTORE_BASIC_IMAGE && $idcomando != OG_CMD_ID_POWEROFF && $idcomando != OG_CMD_ID_HARDWARE && $idcomando != OG_CMD_ID_SOFTWARE && diff --git a/admin/WebConsole/includes/restfunctions.php b/admin/WebConsole/includes/restfunctions.php index db561603..65fcbe99 100644 --- a/admin/WebConsole/includes/restfunctions.php +++ b/admin/WebConsole/includes/restfunctions.php @@ -22,6 +22,7 @@ define('OG_REST_CMD_CREATE_IMAGE', 'image/create'); define('OG_REST_CMD_RESTORE_IMAGE', 'image/restore'); define('OG_REST_CMD_SETUP', 'image/setup'); define('OG_REST_CMD_CREATE_BASIC_IMAGE', 'image/create/basic'); +define('OG_REST_CMD_RESTORE_BASIC_IMAGE', 'image/restore/basic'); define('OG_REST_PARAM_CLIENTS', 'clients'); define('OG_REST_PARAM_ADDR', 'addr'); @@ -53,6 +54,8 @@ define('OG_REST_PARAM_CLEANUP', 'cleanup'); define('OG_REST_PARAM_CACHE', 'cache'); define('OG_REST_PARAM_CLEANUP_CACHE', 'cleanup_cache'); define('OG_REST_PARAM_REMOVE_DST', 'remove_dst'); +define('OG_REST_PARAM_PATH', 'path'); +define('OG_REST_PARAM_METHOD', 'method'); $conf_file = parse_ini_file(__DIR__ . '/../../etc/ogAdmRepo.cfg'); define('OG_REST_API_TOKEN', 'Authorization: ' . $conf_file['ApiToken']); @@ -271,6 +274,58 @@ function create_basic_image($string_ips, $params) { common_request(OG_REST_CMD_CREATE_BASIC_IMAGE, POST, $data); } +function restore_basic_image($string_ips, $params) { + + preg_match_all('/(?<=\=)[^\r]*(?=\r)?/', $params, $matches); + + $ips = explode(';',$string_ips); + $disk = $matches[0][0]; + $part = $matches[0][1]; + $image_id = $matches[0][2]; + $name = $matches[0][3]; + $repos = $matches[0][4]; + $profile = $matches[0][5]; + + $path = $matches[0][6]; + $method = $matches[0][7]; + $sync = $matches[0][8]; // Syncronization method + + $type = $matches[0][9]; + + $diff = $matches[0][10]; // Send the whole file if there are differences + $remove = $matches[0][11]; // Delete files at destination that are not at source + $compress = $matches[0][12]; // Compress before sending + + $cleanup = $matches[0][13]; // Delete image before creating it + $cache = $matches[0][14]; // Copy image to cache + $cleanup_cache = $matches[0][15]; // Delete image from cache before copying + $remove_dst = $matches[0][16]; // Dont delete files in destination + + $data = array(OG_REST_PARAM_CLIENTS => $ips, + OG_REST_PARAM_DISK => $disk, + OG_REST_PARAM_PART => $part, + OG_REST_PARAM_ID => $image_id, + OG_REST_PARAM_NAME => $name, + OG_REST_PARAM_REPOS => $repos, + OG_REST_PARAM_PROFILE => $profile, + OG_REST_PARAM_TYPE => $type, + OG_REST_PARAM_SYNC_PARAMS => array( + OG_REST_PARAM_PATH => $path, + OG_REST_PARAM_METHOD => $method, + OG_REST_PARAM_SYNC => $sync, + OG_REST_PARAM_DIFF => $diff, + OG_REST_PARAM_REMOVE => $remove, + OG_REST_PARAM_COMPRESS => $compress, + OG_REST_PARAM_CLEANUP => $cleanup, + OG_REST_PARAM_CACHE => $cache, + OG_REST_PARAM_CLEANUP_CACHE => $cleanup_cache, + OG_REST_PARAM_REMOVE_DST => $remove_dst, + ) + ); + + common_request(OG_REST_CMD_RESTORE_BASIC_IMAGE, POST, $data); +} + function poweroff($string_ips) { $ips = explode(';',$string_ips); |