示例#1
0
 /**
  * PHP string representation magic function
  *
  * @return string
  * @access public
  */
 public function __toString()
 {
     return RestErrorEnum::toString($this->_state);
 }
示例#2
0
 public function newproxy()
 {
     $apiroutes = new SimpleXMLElement(APPLICATION_PATH . "/apiroutes.xml", 0, true);
     $pars = array();
     $postdata = null;
     $method = strtolower($this->getRequest()->getMethod());
     $error = null;
     $extError = null;
     if ($method === "post") {
         $postdata = $_POST['data'];
         if (isset($_POST['resource']) && trim($_POST['resource']) === "broker") {
             if ($this->session->isLocked()) {
                 $this->session->unLock();
             }
             session_write_close();
             $res = $_POST['resource'];
         } else {
             $res = $this->_getParam("resource");
         }
     } else {
         $res = $this->_getParam("resource");
     }
     $url = preg_replace('/\\?.*/', '', $res);
     $qs = explode("&", preg_replace('/.*\\?/', '', $res));
     $rx = RestBroker::matchResource($url, $apiroutes, $pars);
     if (is_null($rx)) {
         // FIXME: workaround for erroneous proxy resource notation (double URL-encoded)
         // FIXME: should be fixed at the source
         $res = urldecode($res);
         $url = preg_replace('/\\?.*/', '', $res);
         $qs = explode("&", preg_replace('/.*\\?/', '', $res));
         $rx = RestBroker::matchResource($url, $apiroutes, $pars);
         if (!is_null($rx)) {
             // FIXME: workaround for erroneous people canonical URLs with query strings
             if ($rx->resource == "RestPplItem" && ($method = "get")) {
                 $qs = null;
             }
         }
     } else {
         // FIXME: workaround for erroneous people canonical URLs with query strings
         if ($rx->resource == "RestPplItem" && ($method = "get")) {
             $qs = null;
         }
     }
     if (is_array($qs)) {
         foreach ($qs as $q) {
             $i = explode("=", $q);
             if (count($i) > 1) {
                 $pars[$i[0]] = urldecode($i[1]);
             }
         }
     }
     if (!is_null($postdata)) {
         $pars['data'] = $postdata;
     }
     $routeXslt = null;
     switch (strtolower($method)) {
         case "get":
             $method = RestMethodEnum::RM_GET;
             break;
         case "put":
             $method = RestMethodEnum::RM_PUT;
             break;
         case "post":
             $method = RestMethodEnum::RM_POST;
             break;
         case "delete":
             $method = RestMethodEnum::RM_DELETE;
             break;
         case "options":
             $method = RestMethodEnum::RM_OPTIONS;
             break;
         default:
             $method = RestMethodEnum::RM_GET;
             break;
     }
     $ret = "";
     if (!is_null($rx)) {
         try {
             $resclass = strval($rx->resource);
             $this->session = new Zend_Session_Namespace('default');
             if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] != '') {
                 $src = base64_encode($_SERVER['REMOTE_ADDR']);
             } else {
                 $src = '';
             }
             $pars['src'] = $src;
             if (isset($_SERVER['SERVER_ADDR']) && $_SERVER['SERVER_ADDR'] != '') {
                 $srv = base64_encode($_SERVER['SERVER_ADDR']);
             } else {
                 $srv = '';
             }
             $pars['remoteaddr'] = $srv;
             $apikey = $userid = $passwd = '';
             if ($this->session->userid !== null) {
                 $userid = $this->session->userid;
                 if (isset($_COOKIE['SimpleSAMLAuthToken'])) {
                     $passwd = $_COOKIE['SimpleSAMLAuthToken'];
                 } else {
                     error_log("Warning: auth token cookie ('SimpleSAMLAuthToken') is undefined!");
                 }
                 $apiconf = Zend_Registry::get("api");
                 $apikey = $apiconf["key"];
             }
             $pars['userid'] = $userid;
             $pars['passwd'] = $passwd;
             $pars['apikey'] = $apikey;
             $pars['sessionid'] = session_id();
             $pars['cid'] = 0;
             if ($userid != '') {
                 $_GET['userid'] = $userid;
             }
             $res = new $resclass($pars);
             $fmt = $rx->xpath("format");
             if (count($fmt) > 0) {
                 foreach ($fmt as $f) {
                     if (strval($f) === "xml") {
                         if (strval($f->attributes()->xslt) != '') {
                             $routeXslt = strval($f->attributes()->xslt);
                         }
                         break;
                     }
                 }
             }
         } catch (Exception $e) {
             $error = RestErrorEnum::toString(RestErrorEnum::RE_INVALID_REPRESENTATION);
             $extError = "Could not instantiate REST resource for request `" . $res . "'";
             $this->getResponse()->clearAllHeaders();
             $this->getResponse()->setRawHeader("HTTP/1.0 400 Bad Request");
             $this->getResponse()->setHeader("Status", "400 Bad Request");
             if ($extError != "") {
                 error_log($error . '\\n' . $extError);
                 echo $error . '\\n' . $extError;
             } else {
                 error_log($error);
                 echo $error;
             }
             return;
         }
     } else {
         $error = RestErrorEnum::toString(RestErrorEnum::RE_INVALID_REPRESENTATION);
         $extError = "Could not resolve REST resource for request `" . $res . "'";
         $this->getResponse()->clearAllHeaders();
         $this->getResponse()->setRawHeader("HTTP/1.0 400 Bad Request");
         $this->getResponse()->setHeader("Status", "400 Bad Request");
         if ($extError != "") {
             error_log($error . '\\n' . $extError);
             echo $error . '\\n' . $extError;
         } else {
             error_log($error);
             echo $error;
         }
         return;
     }
     $s_method = strtolower(RestMethodEnum::toString($method));
     $_res = $res->{$s_method}();
     if ($_res !== false) {
         if ($_res->isFragment()) {
             $res = $_res->finalize();
         } else {
             $res = $_res;
         }
         if (!is_null($routeXslt)) {
             $res = $res->transform(RestAPIHelper::getFolder(RestFolderEnum::FE_XSL_FOLDER) . $routeXslt);
         }
         echo $res;
     } else {
         $error = RestErrorEnum::toString($res->getError());
         $extError = $res->getExtError();
         $this->getResponse()->clearAllHeaders();
         $this->getResponse()->setRawHeader("HTTP/1.0 400 Bad Request");
         $this->getResponse()->setHeader("Status", "400 Bad Request");
         if ($extError != "") {
             error_log($error . '\\n' . $extError);
             echo $error . '\\n' . $extError;
         } else {
             error_log($error);
             echo $error;
         }
     }
 }