123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- namespace Knuckles\Camel\Output;
- use Illuminate\Http\UploadedFile;
- use Illuminate\Routing\Route;
- use Illuminate\Support\Str;
- use Knuckles\Camel\BaseDTO;
- use Knuckles\Camel\Extraction\Metadata;
- use Knuckles\Camel\Extraction\ResponseCollection;
- use Knuckles\Camel\Extraction\ResponseField;
- use Knuckles\Scribe\Extracting\Extractor;
- use Knuckles\Scribe\Tools\Utils as u;
- /**
- * Endpoint DTO, optimized for generating HTML output.
- * Unneeded properties removed, extra properties and helper methods added.
- */
- class OutputEndpointData extends BaseDTO
- {
- /**
- * @var array<string>
- */
- public array $httpMethods;
- public string $uri;
- public Metadata $metadata;
- /**
- * @var array<string,string>
- */
- public array $headers = [];
- /**
- * @var array<string,\Knuckles\Camel\Output\Parameter>
- */
- public array $urlParameters = [];
- /**
- * @var array<string,mixed>
- */
- public array $cleanUrlParameters = [];
- /**
- * @var array<string,\Knuckles\Camel\Output\Parameter>
- */
- public array $queryParameters = [];
- /**
- * @var array<string,mixed>
- */
- public array $cleanQueryParameters = [];
- /**
- * @var array<string, \Knuckles\Camel\Output\Parameter>
- */
- public array $bodyParameters = [];
- /**
- * @var array<string,mixed>
- */
- public array $cleanBodyParameters = [];
- /**
- * @var array<string,\Illuminate\Http\UploadedFile>
- */
- public array $fileParameters = [];
- public ResponseCollection $responses;
- /**
- * @var array<string,\Knuckles\Camel\Extraction\ResponseField>
- */
- public array $responseFields = [];
- /**
- * The same as bodyParameters, but organized in a hierarchy.
- * So, top-level items first, with a __fields property containing their children, and so on.
- * Useful so we can easily render and nest on the frontend.
- * @var array<string, array>
- */
- public array $nestedBodyParameters = [];
- /**
- * @var array<string, array>
- */
- public array $nestedResponseFields = [];
- public ?string $boundUri;
- public function __construct(array $parameters = [])
- {
- // spatie/dto currently doesn't auto-cast nested DTOs like that
- $parameters['responses'] = new ResponseCollection($parameters['responses'] ?? []);
- $parameters['bodyParameters'] = array_map(fn($param) => new Parameter($param), $parameters['bodyParameters'] ?? []);
- $parameters['queryParameters'] = array_map(fn($param) => new Parameter($param), $parameters['queryParameters'] ?? []);
- $parameters['urlParameters'] = array_map(fn($param) => new Parameter($param), $parameters['urlParameters'] ?? []);
- $parameters['responseFields'] = array_map(fn($param) => new ResponseField($param), $parameters['responseFields'] ?? []);
- parent::__construct($parameters);
- $this->cleanBodyParameters = Extractor::cleanParams($this->bodyParameters);
- $this->cleanQueryParameters = Extractor::cleanParams($this->queryParameters);
- $this->cleanUrlParameters = Extractor::cleanParams($this->urlParameters);
- $this->nestedBodyParameters = Extractor::nestArrayAndObjectFields($this->bodyParameters, $this->cleanBodyParameters);
- $this->nestedResponseFields = Extractor::nestArrayAndObjectFields($this->responseFields);
- $this->boundUri = u::getUrlWithBoundParameters($this->uri, $this->cleanUrlParameters);
- [$files, $regularParameters] = static::getFileParameters($this->cleanBodyParameters);
- if (count($files)) {
- $this->headers['Content-Type'] = 'multipart/form-data';
- }
- $this->fileParameters = $files;
- $this->cleanBodyParameters = $regularParameters;
- }
- /**
- * @param Route $route
- *
- * @return array<string>
- */
- public static function getMethods(Route $route): array
- {
- $methods = $route->methods();
- // Laravel adds an automatic "HEAD" endpoint for each GET request, so we'll strip that out,
- // but not if there's only one method (means it was intentional)
- if (count($methods) === 1) {
- return $methods;
- }
- return array_diff($methods, ['HEAD']);
- }
- public static function fromExtractedEndpointArray(array $endpoint): OutputEndpointData
- {
- return new self($endpoint);
- }
- public function endpointId(): string
- {
- return $this->httpMethods[0] . str_replace(['/', '?', '{', '}', ':', '\\', '+', '|'], '-', $this->uri);
- }
- public function name(): string
- {
- return $this->metadata->title ?: ($this->httpMethods[0] . " " . $this->uri);
- }
- public function fullSlug(): string
- {
- $groupSlug = Str::slug($this->metadata->groupName);
- $endpointId = $this->endpointId();
- return "$groupSlug-$endpointId";
- }
- public function hasResponses(): bool
- {
- return count($this->responses) > 0;
- }
- public function hasFiles(): bool
- {
- return count($this->fileParameters) > 0;
- }
- public function isArrayBody(): bool
- {
- return count($this->nestedBodyParameters) === 1
- && array_keys($this->nestedBodyParameters)[0] === "[]";
- }
- public function isGet(): bool
- {
- return in_array('GET', $this->httpMethods);
- }
- public function hasHeadersOrQueryOrBodyParams(): bool
- {
- return !empty($this->headers)
- || !empty($this->cleanQueryParameters)
- || !empty($this->cleanBodyParameters);
- }
- public static function getFileParameters(array $parameters): array
- {
- $files = [];
- $regularParameters = [];
- foreach ($parameters as $name => $example) {
- if ($example instanceof UploadedFile) {
- $files[$name] = $example;
- } else if (is_array($example) && !empty($example)) {
- [$subFiles, $subRegulars] = static::getFileParameters($example);
- foreach ($subFiles as $subName => $subExample) {
- $files[$name][$subName] = $subExample;
- }
- foreach ($subRegulars as $subName => $subExample) {
- $regularParameters[$name][$subName] = $subExample;
- }
- } else {
- $regularParameters[$name] = $example;
- }
- }
- return [$files, $regularParameters];
- }
- }
|