|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Th3Mouk\OpenAPIGenerator\Command; |
| 4 | + |
| 5 | +use Symfony\Component\Console\Command\Command; |
| 6 | +use Symfony\Component\Console\Input\InputInterface; |
| 7 | +use Symfony\Component\Console\Output\OutputInterface; |
| 8 | +use Symfony\Component\Finder\Finder; |
| 9 | +use Symfony\Component\Yaml\Yaml; |
| 10 | +use Th3Mouk\OpenAPIGenerator\PathHelper; |
| 11 | + |
| 12 | +final class GenerateCommand extends Command |
| 13 | +{ |
| 14 | + protected function configure() |
| 15 | + { |
| 16 | + $this |
| 17 | + ->setName('generate') |
| 18 | + ->setDescription('Generate the swagger.json') |
| 19 | + ; |
| 20 | + } |
| 21 | + |
| 22 | + protected function execute(InputInterface $input, OutputInterface $output) |
| 23 | + { |
| 24 | + $this->generateJson(); |
| 25 | + echo 'generated'.PHP_EOL; |
| 26 | + } |
| 27 | + |
| 28 | + private function generateJson() |
| 29 | + { |
| 30 | + $templateFile = (new Finder()) |
| 31 | + ->in(getRootPath().PathHelper::ROOT) |
| 32 | + ->files() |
| 33 | + ->name('swagger.yaml') |
| 34 | + ; |
| 35 | + |
| 36 | + if (empty($templateFile)) { |
| 37 | + echo 'no swagger.yaml file found'.PHP_EOL; |
| 38 | + return; |
| 39 | + } |
| 40 | + |
| 41 | + foreach ($templateFile as $current) { |
| 42 | + $template = $current; |
| 43 | + break; |
| 44 | + } |
| 45 | + |
| 46 | + $template = Yaml::parse($template->getContents()); |
| 47 | + $definitions = $template['definitions'] ?? []; |
| 48 | + $paths = $template['paths'] ?? []; |
| 49 | + |
| 50 | + foreach ($this->getContentGenerator(PathHelper::DEFINITIONS) as $definition) { |
| 51 | + $definitions[] = $definition; |
| 52 | + } |
| 53 | + |
| 54 | + foreach ($this->getContentGenerator(PathHelper::PATHS) as $path) { |
| 55 | + $paths[key($path)] = $path[key($path)]; |
| 56 | + } |
| 57 | + |
| 58 | + $template['definitions'] = (object) $definitions; |
| 59 | + $template['paths'] = (object) $paths; |
| 60 | + |
| 61 | + if (!$file = fopen(getRootPath().PathHelper::ROOT.'/swagger.json', 'w')) { |
| 62 | + echo 'error generating json file'.PHP_EOL; |
| 63 | + return; |
| 64 | + } |
| 65 | + |
| 66 | + fwrite($file, json_encode($template, JSON_UNESCAPED_SLASHES)); |
| 67 | + fclose($file); |
| 68 | + } |
| 69 | + |
| 70 | + private function getContentGenerator($path): \Generator |
| 71 | + { |
| 72 | + foreach ((new Finder())->files()->in(getRootPath().$path)->name('*.yaml') as $file) { |
| 73 | + yield Yaml::parse($file->getContents()); |
| 74 | + } |
| 75 | + } |
| 76 | +} |
0 commit comments