appCfg['baculum']['login'] . ':' . $this->appCfg['baculum']['password']); return $ch; } private function getAPIHeaders() { $headers = array( 'X-Baculum-API: ' . self::API_VERSION, 'X-Baculum-User: ' . $this->Application->User->getName(), 'X-Baculum-Pwd: ' . $this->Application->User->getPwd(), 'Accept: application/json' ); return $headers; } public function init($config) { $this->initSessionCache(); $this->appCfg = $this->Application->getModule('configuration')->getApplicationConfig(); } private function getURL() { $protocol = !empty($_SERVER['HTTPS']) ? 'https' : 'http'; $host = $_SERVER['SERVER_NAME']; $port = $_SERVER['SERVER_PORT']; $urlPrefix = $this->Application->getModule('friendly-url')->getUrlPrefix(); $url = sprintf('%s://%s:%d%s/', $protocol, $host, $port, $urlPrefix); return $url; } private function setParamsToUrl(&$url) { $url .= (preg_match('/\?/', $url) === 1 ? '&' : '?' ) . 'director=' . ((array_key_exists('director', $_SESSION)) ? $_SESSION['director'] : ''); $this->Application->getModule('logging')->log(__FUNCTION__, PHP_EOL . PHP_EOL . 'EXECUTE URL ==> ' . $url . ' <==' . PHP_EOL . PHP_EOL, Logging::CATEGORY_APPLICATION, __FILE__, __LINE__); } /** * API REQUESTS METHODS (get, set, create, delete) */ public function get(array $params, $use_cache = false) { $cached = null; $ret = null; if ($use_cache === true) { $cached = $this->getSessionCache($params); } if (!is_null($cached)) { $ret = $cached; } else { $url = $this->getURL() . implode('/', $params); $this->setParamsToUrl($url); $ch = $this->getConnection(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, $this->getAPIHeaders()); $result = curl_exec($ch); curl_close($ch); $ret = $this->preParseOutput($result); if ($use_cache === true && $ret->error === 0) { $this->setSessionCache($params, $ret); } } return $ret; } public function set(array $params, array $options) { $url = $this->getURL() . implode('/', $params); $this->setParamsToUrl($url); $data = http_build_query(array('update' => $options)); $ch = $this->getConnection(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); curl_setopt($ch, CURLOPT_HTTPHEADER, array_merge($this->getAPIHeaders(), array('X-HTTP-Method-Override: PUT', 'Content-Length: ' . strlen($data), 'Expect:'))); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $result = curl_exec($ch); curl_close($ch); return $this->preParseOutput($result); } public function create(array $params, array $options) { $url = $this->getURL() . implode('/', $params); $this->setParamsToUrl($url); $data = http_build_query(array('create' => $options)); $ch = $this->getConnection(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, array_merge($this->getAPIHeaders(), array('Expect:'))); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $result = curl_exec($ch); curl_close($ch); return $this->preParseOutput($result); } public function remove(array $params) { $url = $this->getURL() . implode('/', $params); $this->setParamsToUrl($url); $ch = $this->getConnection(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); curl_setopt($ch, CURLOPT_HTTPHEADER, array_merge($this->getAPIHeaders(), array('X-HTTP-Method-Override: DELETE'))); $result = curl_exec($ch); curl_close($ch); return $this->preParseOutput($result); } private function preParseOutput($result) { $this->Application->getModule('logging')->log(__FUNCTION__, $result, Logging::CATEGORY_APPLICATION, __FILE__, __LINE__); $resource = json_decode($result); $error = null; if(is_object($resource) && property_exists($resource, 'error')) { if(!in_array($resource->error, $this->allowedErrors)) { $error = $resource->error; } } else { $error = AuthorizationError::ERROR_AUTHORIZATION_TO_WEBGUI_PROBLEM; } $this->Application->getModule('logging')->log(__FUNCTION__, $resource, Logging::CATEGORY_APPLICATION, __FILE__, __LINE__); if(!is_null($error)) { // Note! Redirection to error page takes place here. $this->Response->redirect($this->Service->constructUrl('BaculumError',array('error' => $error), false)); } return $resource; } public function initSessionCache($force = false) { if (!isset($_SESSION) || !array_key_exists('cache', $_SESSION) || !is_array($_SESSION['cache']) || $force === true) { $_SESSION['cache'] = array(); } } private function getSessionCache(array $params) { $cached = null; $key = $this->getSessionKey($params); if ($this->isSessionValue($key)) { $cached = $_SESSION['cache'][$key]; } return $cached; } private function setSessionCache(array $params, $value) { $key = $this->getSessionKey($params); $_SESSION['cache'][$key] = $value; } private function getSessionKey(array $params) { $key = implode(';', $params); $key = base64_encode($key); return $key; } private function isSessionValue($key) { $is_value = array_key_exists($key, $_SESSION['cache']); return $is_value; } } ?>