Esempio n. 1
0
 public function onGet()
 {
     parent::onGet();
     $version = $this->getUriFragment('version');
     $path = $this->getUriFragment('path');
     $doc = $this->resourceListing->getDocumentation($path);
     if ($doc instanceof DocumentationInterface) {
         if ($version == '*') {
             $version = $doc->getLatestVersion();
         }
         $resource = $doc->getResource($version);
         if (!$resource instanceof Resource) {
             throw new HttpException\NotFoundException('Given version is not available');
         }
         $path = ltrim($resource->getPath(), '/');
         $title = $resource->getTitle();
         if (empty($title)) {
             $title = str_replace(' ', '', ucwords(str_replace('/', ' ', $path)));
         }
         $baseUri = $this->config['psx_url'] . '/' . $this->config['psx_dispatch'];
         $targetNamespace = $this->config['psx_json_namespace'];
         $this->response->setHeader('Content-Type', 'application/raml+yaml');
         $generator = new Generator\Raml($title, $version, $baseUri, $targetNamespace);
         $this->setBody($generator->generate($resource));
     } else {
         throw new HttpException\NotFoundException('Invalid resource');
     }
 }
Esempio n. 2
0
 public function onGet()
 {
     parent::onGet();
     $version = $this->getUriFragment('version');
     $path = $this->getUriFragment('path');
     $doc = $this->resourceListing->getDocumentation($path);
     if ($doc instanceof DocumentationInterface) {
         if ($version == '*') {
             $version = $doc->getLatestVersion();
         }
         $resource = $doc->getResource($version);
         if (!$resource instanceof Resource) {
             throw new HttpException\NotFoundException('Given version is not available');
         }
         $path = ltrim($resource->getPath(), '/');
         $title = $resource->getTitle();
         if (empty($title)) {
             $title = ApiGeneration::generateTitleFromRoute($path);
         }
         $endpoint = $this->config['psx_url'] . '/' . $this->config['psx_dispatch'] . $path;
         $targetNamespace = $this->config['psx_soap_namespace'];
         $this->response->setHeader('Content-Type', 'text/xml');
         $generator = new Generator\Wsdl($title, $endpoint, $targetNamespace);
         $this->setBody($generator->generate($resource));
     } else {
         throw new HttpException\NotFoundException('Invalid resource');
     }
 }
Esempio n. 3
0
 public function processResponse()
 {
     $this->methodsCalled[] = __METHOD__;
     return parent::processResponse();
 }