public static function fromXML(SimpleXMLElement $xml) { // LoggerInterface::log("api xml: " . print_r($xml->saveXML(), true), LoggerInterface::DEBUG); $api = new Api(); $api->setId((string) $xml->id); $api->setDisplayName((string) $xml->displayName); $api->setVersion((string) $xml->version); $api->setType(ApiType::fromXML($xml->type)); $api->setEndpoint((string) $xml->endpoint); $api->setAuthentication(ProvisionAuthentication::fromXML($xml->authentication)); $api->setTdrEnabled($xml->tdrEnabled->enabled == 'true' ? true : false); $api->setTdrOnLimitReached((string) $xml->tdrOnLimitReached['type']); $api->setTdrOnUse((string) $xml->tdrOnUse['type']); $api->setStatus((string) $xml->status); $v = Validation::fromXML($xml->validation); if ($v !== null) { $api->setValidation($v); } $api->setSubscriptionStep((string) $xml->subscriptionStep); $api->setNotificationFormat((string) $xml->notificationFormat); $https = self::get_bool_value((string) $xml->https); if ($https) { $api->setHttps(HTTPSType::fromXML($xml->https)); } else { $httpsType = new HTTPSType(); $httpsType->setEnabled(false); $api->setHttps($httpsType); } $contexts = array(); foreach ($xml->contexts->context as $contextXML) { $context = ApiContext::fromXML($contextXML); $contexts[] = $context; } $api->setContexts($contexts); $api->setTdrData(TdrData::fromXML($xml->tdr)); if ($xml->properties && $xml->properties->property) { foreach ($xml->properties->property as $prop) { $api->properties[(string) $prop['name']] = (string) $prop; } } $api->setHeaderTransformationEnabled(current($xml->headerTransEnabled) == "true"); if ($xml->headerTransformations && $xml->headerTransformations->headerTransformation) { foreach ($xml->headerTransformations->headerTransformation as $transform) { $api->headerTransformations[] = HeaderTransformation::fromXML($transform); } } if ($xml->allowedHttpMethods && $xml->allowedHttpMethods->httpMethod) { foreach ($xml->allowedHttpMethods->httpMethod as $method) { $api->allowedHttpMethods[] = current($method); } } return $api; }
/** * * Insert/Update an Api on the database * @param Api $api * @throws Exception */ public function setApi(Api &$api, $insertMode = FALSE) { $method = "PUT"; $path = "/cxf/e3/prov/v1/apis/" . rawurlencode($api->getId()); if ($insertMode) { $method = "POST"; $path = "/cxf/e3/prov/v1/apis/"; } /** * Send the XML payload the the Provisioning Backend */ $api->toXML(); LoggerInterface::log(($insertMode ? "Creating" : "Updating") . " API: {$api->toXML()}\nEndpoint: ({$method}) {$path}", LoggerInterface::INFO); $reply = $this->restClient->makeCall($path, $method, $api->toXML()); $xml = simplexml_load_string($reply->getPayload()); $api->setId((string) $xml->id); return $xml; }