60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
if (!array_key_exists('wrenchboard', $GLOBALS)) {
|
|
$USER = $_SERVER['SCRIPT_FILENAME'];
|
|
$USER = str_replace('/home', '', $USER);
|
|
$USER = strtok($USER, '/');
|
|
if ($USER=='opt') $USER = 'root';
|
|
// Load API class
|
|
// $USER = 'root';
|
|
$wrenchboard_class = 'wrenchboard_api_' . $USER . '\\WrenchBoard';
|
|
$wrenchboard = new $wrenchboard_class();
|
|
}
|
|
*/
|
|
include('application/config/config.'.$_SERVER['CI_ENV'].'.php');
|
|
|
|
class wrenchboard_class {
|
|
|
|
|
|
public function wrenchboard_api(array $in, array $out){
|
|
$arr = array();
|
|
|
|
$content = json_encode($in);
|
|
|
|
$url = LEGACY_BACKEND_ENDPOINT."/apigate";
|
|
$curl = curl_init($url);
|
|
curl_setopt($curl, CURLOPT_HEADER, false);
|
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type" => "application/json"));
|
|
curl_setopt($curl, CURLOPT_POST, true);
|
|
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);
|
|
|
|
$json_response = curl_exec($curl);
|
|
|
|
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
|
|
|
if ($status != 200) {
|
|
echo ("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
|
|
}
|
|
|
|
curl_close($curl);
|
|
|
|
$out = $response = json_decode($json_response, true);
|
|
|
|
return $response;
|
|
}
|
|
|
|
public function cfgReadChar($whatSetting){
|
|
$arr = array();
|
|
|
|
return $arr;
|
|
}
|
|
|
|
}
|
|
|
|
$wrenchboard = new wrenchboard_class();
|
|
|
|
|
|
?>
|