array( // 'type' => 'danger', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // 'msg' => $err, // ))); return $err; } else { curl_close($curl); // logger(array('return' => array( // 'type' => 'success', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // ))); $containers = json_decode($response, true); if (!empty($containers)) { foreach ($containers as $container) { if ($container['Config']['Labels']['com.docker.compose.service'] == $service_name && $container['Config']['Labels']['com.docker.compose.project'] == getenv('COMPOSE_PROJECT_NAME')) { return trim($container['Id']); } } } } return false; case 'containers': curl_setopt($curl, CURLOPT_URL, 'https://dockerapi:443/containers/json'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 0); curl_setopt($curl, CURLOPT_TIMEOUT, $DOCKER_TIMEOUT); $response = curl_exec($curl); if ($response === false) { $err = curl_error($curl); curl_close($curl); // logger(array('return' => array( // 'type' => 'danger', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // 'msg' => $err, // ))); return $err; } else { curl_close($curl); // logger(array('return' => array( // 'type' => 'success', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // ))); $containers = json_decode($response, true); if (!empty($containers)) { foreach ($containers as $container) { if ($container['Config']['Labels']['com.docker.compose.project'] == getenv('COMPOSE_PROJECT_NAME')) { $out[$container['Config']['Labels']['com.docker.compose.service']]['State'] = $container['State']; $out[$container['Config']['Labels']['com.docker.compose.service']]['Config'] = $container['Config']; } } } return (!empty($out)) ? $out : false; } return false; break; case 'info': if (empty($service_name)) { curl_setopt($curl, CURLOPT_URL, 'https://dockerapi:443/containers/json'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 0); curl_setopt($curl, CURLOPT_TIMEOUT, $DOCKER_TIMEOUT); } else { $container_id = docker('get_id', $service_name); if (ctype_xdigit($container_id)) { curl_setopt($curl, CURLOPT_URL, 'https://dockerapi:443/containers/' . $container_id . '/json'); } else { // logger(array('return' => array( // 'type' => 'danger', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // 'msg' => 'invalid_container_id' // ))); return false; } } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 0); curl_setopt($curl, CURLOPT_TIMEOUT, $DOCKER_TIMEOUT); $response = curl_exec($curl); if ($response === false) { $err = curl_error($curl); curl_close($curl); // logger(array('return' => array( // 'type' => 'danger', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // 'msg' => $err, // ))); return $err; } else { curl_close($curl); // logger(array('return' => array( // 'type' => 'success', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // ))); $decoded_response = json_decode($response, true); if (!empty($decoded_response)) { if (empty($service_name)) { foreach ($decoded_response as $container) { if ($container['Config']['Labels']['com.docker.compose.project'] == getenv('COMPOSE_PROJECT_NAME')) { unset($container['Config']['Env']); $out[$container['Config']['Labels']['com.docker.compose.service']]['State'] = $container['State']; $out[$container['Config']['Labels']['com.docker.compose.service']]['Config'] = $container['Config']; } } } else { if ($decoded_response['Config']['Labels']['com.docker.compose.project'] == getenv('COMPOSE_PROJECT_NAME')) { unset($container['Config']['Env']); $out[$decoded_response['Config']['Labels']['com.docker.compose.service']]['State'] = $decoded_response['State']; $out[$decoded_response['Config']['Labels']['com.docker.compose.service']]['Config'] = $decoded_response['Config']; } } } if (empty($response)) { return true; } else { return (!empty($out)) ? $out : false; } } break; case 'post': if (!empty($attr1)) { $container_id = docker('get_id', $service_name); if (ctype_xdigit($container_id) && ctype_alnum($attr1)) { curl_setopt($curl, CURLOPT_URL, 'https://dockerapi:443/containers/' . $container_id . '/' . $attr1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_TIMEOUT, $DOCKER_TIMEOUT); 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); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($curl); if ($response === false) { $err = curl_error($curl); curl_close($curl); // logger(array('return' => array(array( // 'type' => 'danger', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // 'msg' => $err, // )))); return $err; } else { curl_close($curl); // logger(array('return' => array(array( // 'type' => 'success', // 'log' => array(__FUNCTION__, $action, $service_name, $attr1, $attr2, $extra_headers), // )))); if (empty($response)) { return true; } else { return $response; } } } } break; } }