public function testPaths() { $swagger = new Swagger(); $paths = $swagger->getPaths(); $this->assertTrue($paths instanceof Paths); $this->assertEquals(0, $paths->size()); $this->assertFalse($paths->has('/pets')); $pets = new Path('/pets'); $paths->add($pets); $this->assertEquals(1, $paths->size()); $this->assertTrue($paths->has('/pets')); $this->assertTrue($paths->get('/pets') instanceof Path); $this->assertSame($pets, $paths->get('/pets')); $this->assertTrue($paths->contains($pets)); $this->assertTrue(is_array($paths->toArray()['/pets'])); $paths->remove('/pets'); $this->assertEquals(0, $paths->size()); $this->assertFalse($paths->has('/pets')); }
private function updateApi(Module $model, ModuleSchema $module, $actions) { $repo = $this->service->getResourceRepository(); $filename = sprintf('/packages/%s/api.json', $model->getName()); if (!$repo->contains($filename)) { return; } // delete every api existent for the given module prior to create the new ones ApiQuery::create()->filterByActionId(array_values($actions))->delete(); // $extensions = $this->service->getExtensionRegistry()->getExtensionsByPackage('keeko.api', $model->getName()); $json = Json::decode($repo->get($filename)->getBody()); $swagger = new Swagger($json); foreach ($swagger->getPaths() as $path) { /* @var $path Path */ foreach (Swagger::$METHODS as $method) { if ($path->hasOperation($method)) { $op = $path->getOperation($method); $actionName = $op->getOperationId(); if (!isset($actions[$actionName])) { continue; } // find required parameters $required = []; foreach ($op->getParameters() as $param) { /* @var $param Parameter */ if ($param->getIn() == 'path' && $param->getRequired()) { $required[] = $param->getName(); } } // $prefix = isset($extensions[$actionName]) // ? $extensions[$actionName] // : $module->getSlug(); $prefix = $module->getSlug(); $fullPath = str_replace('//', '/', $prefix . '/' . $path->getPath()); $api = new Api(); $api->setMethod($method); $api->setRoute($fullPath); $api->setActionId($actions[$actionName]); $api->setRequiredParams(implode(',', $required)); $api->save(); } } } $model->setApi(true); $model->save(); }
private function loadModules() { if (!empty($this->modules)) { return $this->modules; } $modules = []; $models = ModuleQuery::create()->filterByApi(true)->find(); $repo = $this->service->getResourceRepository(); foreach ($models as $model) { $package = $this->service->getPackageManager()->getPackage($model->getName()); $filename = sprintf('/packages/%s/api.json', $model->getName()); if ($repo->contains($filename)) { $routes = []; $json = Json::decode($repo->get($filename)->getBody()); $swagger = new Swagger($json); foreach ($swagger->getPaths() as $path) { /* @var $path Path */ foreach (Swagger::$METHODS as $method) { if ($path->hasOperation($method)) { $op = $path->getOperation($method); $actionName = $op->getOperationId(); $routes[str_replace('-', '_', $actionName)] = ['method' => $method, 'path' => $path->getPath()]; } } } $modules[] = ['title' => $model->getTitle(), 'slug' => $package->getKeeko()->getModule()->getSlug(), 'model' => $model, 'routes' => $routes]; } } $this->modules = $modules; return $modules; }