Skip to content

Commit 4dbb123

Browse files
committed
💥
0 parents  commit 4dbb123

12 files changed

+260
-0
lines changed

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_style = space
6+
charset = utf-8
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.{php}]
11+
indent_size = 4
12+
13+
[*.{json,yaml}]
14+
indent_size = 2
15+
16+
[{Makefile,**.mk}]
17+
indent_style = tab

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor
2+
composer.lock
3+
.php_cs.cache

.php_cs.dist

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in([
5+
__DIR__,
6+
])
7+
->exclude([
8+
__DIR__.'/vendor',
9+
])
10+
;
11+
12+
return PhpCsFixer\Config::create()
13+
->setRiskyAllowed(true)
14+
->setRules([
15+
'@PSR2' => true,
16+
'array_syntax' => ['syntax' => 'short'],
17+
'ordered_imports' => true,
18+
'no_alternative_syntax' => true,
19+
'no_binary_string' => true,
20+
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
21+
'no_null_property_initialization' => true,
22+
'no_short_echo_tag' => true,
23+
'no_superfluous_elseif' => true,
24+
'no_unneeded_curly_braces' => true,
25+
'no_unneeded_final_method' => true,
26+
'no_unreachable_default_argument_value' => true,
27+
'no_unset_on_property' => true,
28+
'no_useless_else' => true,
29+
'no_useless_return' => true,
30+
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'],
31+
])
32+
->setFinder($finder)
33+
;

Command/GenerateCommand.php

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
}

Command/ScaffoldCommand.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 Th3Mouk\OpenAPIGenerator\PathHelper;
9+
10+
final class ScaffoldCommand extends Command
11+
{
12+
protected function configure()
13+
{
14+
$this
15+
->setName('scaffold')
16+
->setDescription('Scaffold all directories')
17+
;
18+
}
19+
20+
protected function execute(InputInterface $input, OutputInterface $output)
21+
{
22+
$basePath = getRootPath();
23+
mkdir($basePath.PathHelper::PATHS, 0777, true);
24+
mkdir($basePath.PathHelper::DEFINITIONS);
25+
echo 'scaffolded'.PHP_EOL;
26+
}
27+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Jérémy Marodon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cs:
2+
vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v
3+
4+
cs_dry_run:
5+
vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run
6+
7+
analyse:
8+
vendor/bin/phpstan analyse -l 7 .

PathHelper.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
namespace Th3Mouk\OpenAPIGenerator;
4+
5+
class PathHelper
6+
{
7+
const ROOT = '/specs';
8+
const PATHS = self::ROOT.'/paths';
9+
const DEFINITIONS = self::ROOT.'/definitions';
10+
}

bin/openapi

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
use Symfony\Component\Console\Application;
5+
use Symfony\Component\Console\Input\ArgvInput;
6+
use Th3Mouk\OpenAPIGenerator\Command\GenerateCommand;
7+
use Th3Mouk\OpenAPIGenerator\Command\ScaffoldCommand;
8+
9+
set_time_limit(0);
10+
11+
require __DIR__.'/../vendor/autoload.php';
12+
13+
$input = new ArgvInput();
14+
15+
$application = new Application();
16+
17+
$application->add(new GenerateCommand());
18+
$application->add(new ScaffoldCommand());
19+
20+
$application->run($input);

composer.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "th3mouk/openapi-generator",
3+
"description": "PHP library which provide a scaffolding and generate an OpenAPI file",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Jérémy Marodon",
8+
"email": "marodon.jeremy@gmail.com"
9+
}
10+
],
11+
"require": {
12+
"symfony/yaml": "^4.1",
13+
"symfony/console": "^4.1",
14+
"symfony/finder": "^4.1"
15+
},
16+
"require-dev": {
17+
"phpstan/phpstan": "^0.10",
18+
"friendsofphp/php-cs-fixer": "^2.12"
19+
},
20+
"bin": ["bin/openapi"],
21+
"autoload": {
22+
"psr-4": {
23+
"Th3Mouk\\OpenAPIGenerator\\": ""
24+
},
25+
"files": [
26+
"functions.php"
27+
]
28+
}
29+
}

functions.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
if (!function_exists('getRootPath')) {
4+
function getRootPath(): string
5+
{
6+
$dir = $rootDir = __DIR__;
7+
while (!file_exists($dir.'/composer.lock')) {
8+
$dir = \dirname($dir);
9+
}
10+
11+
return $dir;
12+
}
13+
}

phpstan.neon

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
parameters:
2+
excludes_analyse:
3+
- %rootDir%/../../../vendor

0 commit comments

Comments
 (0)