[Web] Use Docker API for SOGo restart
parent
82ac5fa063
commit
cc2f2afc62
|
@ -5,36 +5,121 @@ if (!isset($_SESSION['mailcow_cc_role']) OR !in_array($_SESSION['mailcow_cc_role
|
||||||
echo "Not allowed." . PHP_EOL;
|
echo "Not allowed." . PHP_EOL;
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
if ($_GET['ACTION'] == "start") {
|
|
||||||
$request = xmlrpc_encode_request("supervisor.startProcess", 'bootstrap-sogo', array('encoding'=>'utf-8'));
|
function docker($service_name, $action, $post_action = null, $post_fields = null) {
|
||||||
$context = stream_context_create(array('http' => array(
|
$curl = curl_init();
|
||||||
'method' => "POST",
|
curl_setopt($curl, CURLOPT_HTTPHEADER,array( 'Content-Type: application/json' ));
|
||||||
'header' => "Content-Length: " . strlen($request),
|
switch($action) {
|
||||||
'content' => $request
|
case 'get_id':
|
||||||
)));
|
curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, "/var/run/docker.sock");
|
||||||
$file = @file_get_contents("http://sogo:9191/RPC2", false, $context) or die("Cannot connect to $remote_server:$listener_port");
|
curl_setopt($curl, CURLOPT_URL, 'http:/v1.26/containers/json?all=1');
|
||||||
$response = xmlrpc_decode($file);
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||||
if (isset($response['faultString'])) {
|
curl_setopt($curl, CURLOPT_POST, 0);
|
||||||
echo '<b><span class="pull-right text-warning">' . $response['faultString'] . '</span></b>';
|
$response = curl_exec($curl);
|
||||||
}
|
if ($response === false) {
|
||||||
else {
|
$err = curl_error($curl);
|
||||||
echo '<b><span class="pull-right text-success">OK</span></b>';
|
curl_close($curl);
|
||||||
|
return $err;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
curl_close($curl);
|
||||||
|
$containers = json_decode($response, true);
|
||||||
|
if (!empty($containers)) {
|
||||||
|
foreach ($containers as $container) {
|
||||||
|
if ($container['Labels']['com.docker.compose.service'] == $service_name) {
|
||||||
|
return trim($container['Id']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case 'info':
|
||||||
|
curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, "/var/run/docker.sock");
|
||||||
|
$container_id = docker($service_name, 'get_id');
|
||||||
|
if (ctype_xdigit($container_id)) {
|
||||||
|
curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, "/var/run/docker.sock");
|
||||||
|
curl_setopt($curl, CURLOPT_URL, 'http/containers/' . $container_id . '/json');
|
||||||
|
curl_setopt($curl, CURLOPT_POST, 0);
|
||||||
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
if ($response === false) {
|
||||||
|
$err = curl_error($curl);
|
||||||
|
curl_close($curl);
|
||||||
|
return $err;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
curl_close($curl);
|
||||||
|
if (empty($response)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return json_decode($response, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'post':
|
||||||
|
if (!empty($post_action)) {
|
||||||
|
$container_id = docker($service_name, 'get_id');
|
||||||
|
if (ctype_xdigit($container_id)) {
|
||||||
|
curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, "/var/run/docker.sock");
|
||||||
|
curl_setopt($curl, CURLOPT_URL, 'http/containers/' . $container_id . '/' . $post_action);
|
||||||
|
curl_setopt($curl, CURLOPT_POST, 1);
|
||||||
|
if (!empty($post_fields)) {
|
||||||
|
curl_setopt( $curl, CURLOPT_POSTFIELDS, json_encode($post_fields));
|
||||||
|
}
|
||||||
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||||
|
$response = curl_exec($curl);
|
||||||
|
if ($response === false) {
|
||||||
|
$err = curl_error($curl);
|
||||||
|
curl_close($curl);
|
||||||
|
return $err;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
curl_close($curl);
|
||||||
|
if (empty($response)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($_GET['ACTION'] == "stop") {
|
|
||||||
$request = xmlrpc_encode_request("supervisor.stopProcess", 'bootstrap-sogo', array('encoding'=>'utf-8'));
|
if ($_GET['ACTION'] == "start") {
|
||||||
$context = stream_context_create(array('http' => array(
|
$retry = 0;
|
||||||
'method' => "POST",
|
while (!docker('sogo-mailcow', 'info')['State']['Running'] && $retry <= 3) {
|
||||||
'header' => "Content-Length: " . strlen($request),
|
$response = docker('sogo-mailcow', 'post', 'start');
|
||||||
'content' => $request
|
$last_response = ($response === true) ? '<b><span class="pull-right text-success">OK</span></b>' : '<b><span class="pull-right text-warning">Error: ' . $response . '</span></b>';
|
||||||
)));
|
if ($response === true) {
|
||||||
$file = @file_get_contents("http://sogo:9191/RPC2", false, $context) or die("Cannot connect to $remote_server:$listener_port");
|
break;
|
||||||
$response = xmlrpc_decode($file);
|
}
|
||||||
if (isset($response['faultString'])) {
|
usleep(1500000);
|
||||||
echo '<b><span class="pull-right text-warning">' . $response['faultString'] . '</span></b>';
|
$retry++;
|
||||||
}
|
}
|
||||||
else {
|
echo $last_response;
|
||||||
echo '<b><span class="pull-right text-success">OK</span></b>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($_GET['ACTION'] == "stop") {
|
||||||
|
$retry = 0;
|
||||||
|
while (docker('sogo-mailcow', 'info')['State']['Running'] && $retry <= 3) {
|
||||||
|
$response = docker('sogo-mailcow', 'post', 'stop');
|
||||||
|
$last_response = ($response === true) ? '<b><span class="pull-right text-success">OK</span></b>' : '<b><span class="pull-right text-warning">Error: ' . $response . '</span></b>';
|
||||||
|
if ($response === true) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
usleep(1500000);
|
||||||
|
$retry++;
|
||||||
|
}
|
||||||
|
echo $last_response;
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue