Ejemplo n.º 1
0
function loadMethodsFromXML($xmlParser)
{
    $methods = array();
    $xmlMethods = XmlParserUtils::getChildren($xmlParser->document, XML_METHOD);
    foreach ($xmlMethods as $xmlMethod) {
        $name = XmlParserUtils::existAttribute($xmlMethod, XML_METHOD_NAME) ? $xmlMethod->tagAttrs[XML_METHOD_NAME] : null;
        if (empty($name)) {
            throw new MashapeException(EXCEPTION_METHOD_EMPTY_NAME, EXCEPTION_XML_CODE);
        } else {
            if (existMethod($methods, $name)) {
                throw new MashapeException(sprintf(EXCEPTION_METHOD_DUPLICATE_NAME, $name), EXCEPTION_XML_CODE);
            }
        }
        $http = XmlParserUtils::existAttribute($xmlMethod, XML_METHOD_HTTP) ? $xmlMethod->tagAttrs[XML_METHOD_HTTP] : null;
        if (empty($http)) {
            throw new MashapeException(EXCEPTION_METHOD_EMPTY_HTTP, EXCEPTION_XML_CODE);
        } else {
            $http = strtolower($http);
            if ($http != "get" && $http != "post" && $http != "put" && $http != "delete") {
                throw new MashapeException(sprintf(EXCEPTION_METHOD_INVALID_HTTP, $http), EXCEPTION_XML_CODE);
            }
        }
        $route = XmlParserUtils::existAttribute($xmlMethod, XML_METHOD_ROUTE) ? $xmlMethod->tagAttrs[XML_METHOD_ROUTE] : null;
        if (!empty($route)) {
            if (!validateRoute($route)) {
                throw new MashapeException(sprintf(EXCEPTION_METHOD_INVALID_ROUTE, $route), EXCEPTION_XML_CODE);
            } else {
                if (existRoute($methods, $route, $http)) {
                    throw new MashapeException(sprintf(EXCEPTION_METHOD_DUPLICATE_ROUTE, $route), EXCEPTION_XML_CODE);
                }
            }
        }
        // Get the result
        $resultsNode = XmlParserUtils::getChildren($xmlMethod, "result");
        //$xmlMethod->result;
        $resultNode = null;
        if (count($resultsNode) > 1) {
            throw new MashapeException(sprintf(EXCEPTION_RESULT_MULTIPLE, $name), EXCEPTION_XML_CODE);
        } elseif (count($resultsNode) == 1) {
            $resultNode = $resultsNode[0];
        }
        //		 else {
        //			throw new MashapeException(sprintf(EXCEPTION_RESULT_MISSING, $name), EXCEPTION_XML_CODE);
        //		}
        $object = null;
        $array = null;
        $resultName = null;
        if ($resultNode != null) {
            $array = XmlParserUtils::existAttribute($resultNode, XML_RESULT_ARRAY) ? $resultNode->tagAttrs[XML_RESULT_ARRAY] : null;
            if ($array != null && strtolower($array) == "true") {
                $array = true;
            } else {
                $array = false;
            }
            $type = XmlParserUtils::existAttribute($resultNode, XML_RESULT_TYPE) ? $resultNode->tagAttrs[XML_RESULT_TYPE] : null;
            if (strtolower($type == "simple")) {
                $resultName = XmlParserUtils::existAttribute($resultNode, XML_RESULT_NAME) ? $resultNode->tagAttrs[XML_RESULT_NAME] : null;
                if (empty($resultName)) {
                    throw new MashapeException(sprintf(EXCEPTION_RESULT_EMPTY_NAME_SIMPLE, $name), EXCEPTION_XML_CODE);
                }
            } else {
                if (strtolower($type == "complex")) {
                    $object = XmlParserUtils::existAttribute($resultNode, XML_RESULT_NAME) ? $resultNode->tagAttrs[XML_RESULT_NAME] : null;
                    if (empty($object)) {
                        throw new MashapeException(sprintf(EXCEPTION_RESULT_EMPTY_NAME_OBJECT, $name), EXCEPTION_XML_CODE);
                    }
                } else {
                    if (empty($type)) {
                        throw new MashapeException(sprintf(EXCEPTION_RESULT_EMPTY_TYPE, $name), EXCEPTION_XML_CODE);
                    } else {
                        throw new MashapeException(sprintf(EXCEPTION_RESULT_INVALID_TYPE, $type, $name), EXCEPTION_XML_CODE);
                    }
                }
            }
        }
        $method = new RESTMethod();
        $method->setName($name);
        $method->setObject($object);
        $method->setResult($resultName);
        $method->setArray($array);
        $method->setHttp($http);
        $method->setRoute($route);
        //Save method
        array_push($methods, $method);
    }
    return $methods;
}
Ejemplo n.º 2
0
 function testError()
 {
     RESTConfigurationLoader::reloadConfiguration(SERVER_KEY, dirname(__FILE__) . "/test7.xml");
     $method = new RESTMethod();
     $method->setName("touchError");
     $method->setObject("ClassOne");
     $method->setArray(true);
     $this->assertEquals('[{"code":1,"message":"custom message"}]', doCall($method, null, new NewSampleAPI(), SERVER_KEY));
 }