73 lines
2.3 KiB
PHP
73 lines
2.3 KiB
PHP
<?php
|
|
|
|
class Backend_model extends CI_Model {
|
|
|
|
var $thisUser = 'oameye';
|
|
var $USER = '';
|
|
var $wrenchboard;
|
|
|
|
function __construct() {
|
|
|
|
$this->USER = $_SERVER['SCRIPT_FILENAME'];
|
|
$this->USER = str_replace('/home', '', $this->USER);
|
|
$this->USER = strtok($this->USER, '/');
|
|
if ($this->USER == 'opt') {
|
|
$this->USER = 'root';
|
|
}
|
|
$this->thisUser = $this->USER;
|
|
}
|
|
|
|
public function wrenchboard_api($in, &$out = array()) {
|
|
$ret = 0;
|
|
|
|
//$local_url = 'http://fluxtra:fl0xtra!@oameye.works.wrenchboard.com/svs/user';
|
|
$local_url = EXTENSTION_API_URL; // 'https://oameye.work.wrenchboard.com/svs/bko';
|
|
$url = $local_url ."/generics";
|
|
$data = $in;
|
|
|
|
$content = json_encode($data);
|
|
|
|
$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);
|
|
$response = json_decode($json_response, true);
|
|
|
|
|
|
$out = $response;
|
|
// var_dump( $response );
|
|
|
|
//var_dump( $response["internal_return"] );
|
|
// exit;
|
|
return $response["internal_return"];
|
|
}
|
|
|
|
public function cfgReadChar($str) {
|
|
// $this->wrenchboard_load();
|
|
// $ret = $this->wrenchboard->cfgReadChar($str);
|
|
// return $ret;
|
|
return 0;
|
|
}
|
|
|
|
private function wrenchboard_load() {
|
|
// $this->$USER = $_SERVER['SCRIPT_FILENAME'];
|
|
// $wrenchboard_class = 'wrenchboard_api_' . $this->USER . '\\WrenchBoard';
|
|
// if (!is_object($this->wrenchboard)) {
|
|
// $this->wrenchboard = new $wrenchboard_class();
|
|
// }
|
|
}
|
|
}
|