2016-12-25 17:03:37 +08:00
|
|
|
<?php
|
2017-12-09 20:17:15 +08:00
|
|
|
function docker($service_name, $action, $attr1 = null, $attr2 = null, $extra_headers = null) {
|
|
|
|
if ($_SESSION['mailcow_cc_role'] != "admin") {
|
|
|
|
$_SESSION['return'] = array(
|
|
|
|
'type' => 'danger',
|
|
|
|
'msg' => sprintf($lang['danger']['access_denied'])
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
2017-10-04 19:04:58 +08:00
|
|
|
$curl = curl_init();
|
|
|
|
curl_setopt($curl, CURLOPT_HTTPHEADER,array( 'Content-Type: application/json' ));
|
|
|
|
switch($action) {
|
|
|
|
case 'get_id':
|
2017-10-06 16:20:40 +08:00
|
|
|
curl_setopt($curl, CURLOPT_URL, 'http://dockerapi:8080/containers/json');
|
2017-10-04 19:04:58 +08:00
|
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
|
|
|
curl_setopt($curl, CURLOPT_POST, 0);
|
|
|
|
$response = curl_exec($curl);
|
|
|
|
if ($response === false) {
|
|
|
|
$err = curl_error($curl);
|
|
|
|
curl_close($curl);
|
|
|
|
return $err;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
curl_close($curl);
|
|
|
|
$containers = json_decode($response, true);
|
|
|
|
if (!empty($containers)) {
|
|
|
|
foreach ($containers as $container) {
|
2017-10-06 16:20:40 +08:00
|
|
|
if ($container['Config']['Labels']['com.docker.compose.service'] == $service_name) {
|
2017-10-04 19:04:58 +08:00
|
|
|
return trim($container['Id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case 'info':
|
|
|
|
$container_id = docker($service_name, 'get_id');
|
|
|
|
if (ctype_xdigit($container_id)) {
|
2017-10-06 16:20:40 +08:00
|
|
|
curl_setopt($curl, CURLOPT_URL, 'http://dockerapi:8080/containers/' . $container_id . '/json');
|
2017-10-04 19:04:58 +08:00
|
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
2017-10-06 05:38:33 +08:00
|
|
|
curl_setopt($curl, CURLOPT_POST, 0);
|
2017-10-04 19:04:58 +08:00
|
|
|
$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':
|
2017-12-09 20:17:15 +08:00
|
|
|
if (!empty($attr1)) {
|
2017-10-04 19:04:58 +08:00
|
|
|
$container_id = docker($service_name, 'get_id');
|
2017-12-09 20:17:15 +08:00
|
|
|
if (ctype_xdigit($container_id) && ctype_alnum($attr1)) {
|
|
|
|
curl_setopt($curl, CURLOPT_URL, 'http://dockerapi:8080/containers/' . $container_id . '/' . $attr1);
|
2017-10-04 19:04:58 +08:00
|
|
|
curl_setopt($curl, CURLOPT_POST, 1);
|
2017-12-09 20:17:15 +08:00
|
|
|
if (!empty($attr2)) {
|
|
|
|
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($attr2));
|
|
|
|
}
|
|
|
|
if (!empty($extra_headers) && is_array($extra_headers)) {
|
|
|
|
curl_setopt($curl, CURLOPT_HTTPHEADER, $extra_headers);
|
2017-10-04 19:04:58 +08:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
2017-11-04 03:37:24 +08:00
|
|
|
}
|