|
9 | 9 | use ApiClients\Tools\OpenApiClientGenerator\Configuration;
|
10 | 10 | use ApiClients\Tools\OpenApiClientGenerator\File;
|
11 | 11 | use ApiClients\Tools\OpenApiClientGenerator\Generator\Client\Methods\ChunkCount;
|
| 12 | +use ApiClients\Tools\OpenApiClientGenerator\Generator\Client\PHPStan\ClientCallReturnTypes; |
| 13 | +use ApiClients\Tools\OpenApiClientGenerator\Generator\Client\PHPStan\ClientCallReturnTypesTest; |
12 | 14 | use ApiClients\Tools\OpenApiClientGenerator\Generator\Client\Routers;
|
13 | 15 | use ApiClients\Tools\OpenApiClientGenerator\Generator\Client\Routers\RouterClass;
|
14 | 16 | use ApiClients\Tools\OpenApiClientGenerator\Generator\Helper\Operation;
|
|
37 | 39 | use function array_shift;
|
38 | 40 | use function array_unique;
|
39 | 41 | use function count;
|
| 42 | +use function dirname; |
40 | 43 | use function explode;
|
41 | 44 | use function implode;
|
| 45 | +use function PHPStan\Testing\assertType; |
42 | 46 | use function strlen;
|
43 | 47 | use function strpos;
|
44 | 48 | use function trim;
|
45 | 49 | use function ucfirst;
|
46 | 50 |
|
| 51 | +use const DIRECTORY_SEPARATOR; |
47 | 52 | use const PHP_EOL;
|
48 | 53 |
|
49 | 54 | final class Client
|
50 | 55 | {
|
51 | 56 | /** @return iterable<File> */
|
52 |
| - public static function generate(Configuration $configuration, string $pathPrefix, Representation\Client $client, Routers $routers): iterable |
| 57 | + public static function generate(Configuration $configuration, string $pathPrefix, string $pathPrefixTests, Representation\Client $client, Routers $routers): iterable |
53 | 58 | {
|
54 | 59 | $operations = [];
|
55 | 60 | foreach ($client->paths as $path) {
|
@@ -515,28 +520,28 @@ public static function generate(Configuration $configuration, string $pathPrefix
|
515 | 520 | $class->addStmt(
|
516 | 521 | $factory->method('call')->makePublic()->setDocComment(
|
517 | 522 | new Doc(implode(PHP_EOL, [
|
518 |
| - '// phpcs:disable', |
| 523 | + ...($configuration->qa?->phpcs ? ['// phpcs:disable'] : []), |
519 | 524 | '/**',
|
520 |
| - ' * @return ' . (static function (array $operations): string { |
521 |
| - $count = count($operations); |
522 |
| - $lastItem = $count - 1; |
523 |
| - $left = ''; |
524 |
| - $right = ''; |
525 |
| - for ($i = 0; $i < $count; $i++) { |
526 |
| - $returnType = Operation::getDocBlockResultTypeFromOperation($operations[$i]); |
527 |
| - if ($i !== $lastItem) { |
528 |
| - $left .= '($call is Operation\\' . $operations[$i]->classNameSanitized->relative . '::OPERATION_MATCH ? ' . $returnType . ' : '; |
529 |
| - } else { |
530 |
| - $left .= $returnType; |
531 |
| - } |
532 |
| - |
533 |
| - $right .= ')'; |
534 |
| - } |
535 |
| - |
536 |
| - return $left . $right; |
537 |
| - })($operations), |
| 525 | + // ' * @return ' . (static function (array $operations): string { |
| 526 | + // $count = count($operations); |
| 527 | + // $lastItem = $count - 1; |
| 528 | + // $left = ''; |
| 529 | + // $right = ''; |
| 530 | + // for ($i = 0; $i < $count; $i++) { |
| 531 | + // $returnType = Operation::getDocBlockResultTypeFromOperation($operations[$i]); |
| 532 | + // if ($i !== $lastItem) { |
| 533 | + // $left .= '($call is "' . $operations[$i]->matchMethod . ' ' . $operations[$i]->path . '" ? ' . $returnType . ' : '; |
| 534 | + // } else { |
| 535 | + // $left .= $returnType; |
| 536 | + // } |
| 537 | + // |
| 538 | + // $right .= ')'; |
| 539 | + // } |
| 540 | + // |
| 541 | + // return $left . $right; |
| 542 | + // })($operations), |
538 | 543 | ' */',
|
539 |
| - '// phpcs:enable', |
| 544 | + ...($configuration->qa?->phpcs ? ['// phpcs:enable'] : []), |
540 | 545 | ])),
|
541 | 546 | )->addParam((new Param('call'))->setType('string'))->addParam((new Param('params'))->setType('array')->setDefault([]))->setReturnType(
|
542 | 547 | new UnionType(
|
@@ -661,6 +666,28 @@ public static function generate(Configuration $configuration, string $pathPrefix
|
661 | 666 | }
|
662 | 667 |
|
663 | 668 | yield from \ApiClients\Tools\OpenApiClientGenerator\Generator\Routers::generate($configuration, $pathPrefix, $routers);
|
| 669 | + |
| 670 | + if (! $configuration->qa?->phpstan) { |
| 671 | + return; |
| 672 | + } |
| 673 | + |
| 674 | + require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'phpstan-assertType-mock.php'; |
| 675 | + assertType('bool', true); |
| 676 | + |
| 677 | + yield from ClientCallReturnTypes::generate($configuration, $pathPrefix, $client); |
| 678 | + yield from ClientCallReturnTypesTest::generate($configuration, $pathPrefixTests, $client); |
| 679 | + |
| 680 | + if ($configuration->qa->phpstan->configFilePath === null) { |
| 681 | + return; |
| 682 | + } |
| 683 | + |
| 684 | + yield new File($pathPrefix, '../' . $configuration->qa->phpstan->configFilePath, implode(PHP_EOL, [ |
| 685 | + 'services:', |
| 686 | + ' - class: ' . $configuration->namespace->source . '\PHPStan\ClientCallReturnTypes', |
| 687 | + ' tags:', |
| 688 | + ' - phpstan.broker.dynamicMethodReturnTypeExtension', |
| 689 | + '', |
| 690 | + ])); |
664 | 691 | }
|
665 | 692 |
|
666 | 693 | /**
|
|
0 commit comments