Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve phpstan quality level #9

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,18 +1,7 @@
parameters:
level: 6
level: 10
paths:
- src
- tests
ignoreErrors:
- '#type has no value type specified in iterable type#'
- '#has parameter .* with no value type specified in iterable type#'
- '#has no value type specified in iterable type array#'
- '#configureOptions\(\) has no return type specified.#'
- '#configure\(\) has no return type specified#'
- '#process\(\) has no return type specified#'
- '#should return Iterator but returns Traversable#'
- '#Negated boolean expression is always false#'
checkGenericClassInNonGenericObjectType: false
reportUnmatchedIgnoredErrors: false
inferPrivatePropertyTypeFromConstructor: true
treatPhpDocTypesAsCertain: false
- identifier: parameter.defaultValue
40 changes: 37 additions & 3 deletions src/Client/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;

/**
* @phpstan-import-type RequestOptions from \CleverAge\RestProcessBundle\Task\RequestTask
*/
class Client implements ClientInterface
{
public function __construct(
Expand Down Expand Up @@ -50,6 +53,8 @@ public function setUri(string $uri): void
}

/**
* @param RequestOptions $options
*
* @throws RestRequestException
*/
public function call(array $options = []): ResponseInterface
Expand All @@ -70,7 +75,7 @@ public function call(array $options = []): ResponseInterface
$this->getRequestUri($options),
$this->getRequestOptions($options),
);
} catch (\Exception|\Throwable $e) {
} catch (\Throwable $e) {
$this->logger->error(
'Rest request failed',
[
Expand Down Expand Up @@ -110,19 +115,40 @@ protected function configureOptions(OptionsResolver $resolver): void
$resolver->setAllowedTypes('data', ['array', 'string', 'null']);
}

/**
* @param RequestOptions $options
*
* @return RequestOptions
*/
protected function getOptions(array $options = []): array
{
$resolver = new OptionsResolver();
$this->configureOptions($resolver);

return $resolver->resolve($options);
/** @var RequestOptions $resolved */
$resolved = $resolver->resolve($options);

return $resolved;
}

/**
* @param RequestOptions $options
*/
protected function getRequestUri(array $options = []): string
{
return $this->replaceParametersInUri($this->constructUri($options), $options);
}

/**
* @param RequestOptions $options
*
* @return array{
* 'headers': array<mixed>,
* 'json'?: array<mixed>|string|null,
* 'query'?: array<mixed>|string|null,
* 'body'?: array<mixed>|string|null
* }
*/
protected function getRequestOptions(array $options = []): array
{
$requestOptions = [];
Expand All @@ -144,6 +170,9 @@ protected function getRequestOptions(array $options = []): array
return $requestOptions;
}

/**
* @param RequestOptions $options
*/
protected function constructUri(array $options): string
{
$uri = ltrim((string) $options['url'], '/');
Expand All @@ -156,16 +185,21 @@ protected function getApiUrl(): string
return $this->geUri();
}

/**
* @param RequestOptions $options
*/
protected function replaceParametersInUri(string $uri, array $options = []): string
{
if (\array_key_exists('url_parameters', $options) && $options['url_parameters']) {
if ($options['url_parameters']) {
/** @var array<string> $search */
$search = array_keys($options['url_parameters']);
array_walk(
$search,
static function (&$item, $key) {
$item = '{'.$item.'}';
}
);
/** @var array<string> $replace */
$replace = array_values($options['url_parameters']);
array_walk(
$replace,
Expand Down
6 changes: 6 additions & 0 deletions src/Client/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

use Symfony\Contracts\HttpClient\ResponseInterface;

/**
* @phpstan-import-type RequestOptions from \CleverAge\RestProcessBundle\Task\RequestTask
*/
interface ClientInterface
{
/**
Expand All @@ -26,5 +29,8 @@ public function geUri(): string;

public function setUri(string $uri): void;

/**
* @param RequestOptions $options
*/
public function call(array $options = []): ResponseInterface;
}
47 changes: 44 additions & 3 deletions src/Task/RequestTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,34 @@
use Symfony\Component\OptionsResolver\Exception\AccessException;
use Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException;
use Symfony\Component\OptionsResolver\OptionsResolver;

use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;

/**
* @phpstan-type Options array{
* 'client': string,
* 'url': string,
* 'method': string,
* 'headers': array<mixed>,
* 'url_parameters': array<mixed>,
* 'data': array<mixed>|string|null,
* 'sends': string,
* 'expects': string,
* 'valid_response_code': array<int>,
* 'log_response': bool,
* }
* @phpstan-type RequestOptions array{
* 'url': string,
* 'method': string,
* 'headers': array<mixed>,
* 'url_parameters': array<mixed>,
* 'sends': string,
* 'expects': string,
* 'data': array<mixed>|string|null
* }
*/
class RequestTask extends AbstractConfigurableTask
{
public function __construct(protected LoggerInterface $logger, protected ClientRegistry $registry)
Expand All @@ -31,9 +58,15 @@ public function __construct(protected LoggerInterface $logger, protected ClientR

/**
* @throws MissingClientException
* @throws ClientExceptionInterface
* @throws RedirectionExceptionInterface
* @throws ServerExceptionInterface
* @throws TransportExceptionInterface
* @throws \Throwable
*/
public function execute(ProcessState $state): void
{
/** @var Options $options */
$options = $this->getOptions($state);

$requestOptions = $this->getRequestOptions($state);
Expand Down Expand Up @@ -68,7 +101,7 @@ public function execute(ProcessState $state): void
}

$state->setOutput($response->getContent());
} catch (\Exception|\Throwable $e) {
} catch (\Throwable $e) {
$this->logger->error(
'REST request failed',
[
Expand Down Expand Up @@ -116,8 +149,12 @@ protected function configureOptions(OptionsResolver $resolver): void
$resolver->setAllowedTypes('log_response', ['bool']);
}

/**
* @return RequestOptions
*/
protected function getRequestOptions(ProcessState $state): array
{
/** @var Options $options */
$options = $this->getOptions($state);

$requestOptions = [
Expand All @@ -130,8 +167,12 @@ protected function getRequestOptions(ProcessState $state): array
'data' => $options['data'],
];

/** @var array<mixed> $input */
$input = $state->getInput() ?: [];

return array_merge($requestOptions, $input);
/** @var RequestOptions $mergedOptions */
$mergedOptions = array_merge($requestOptions, $input);

return $mergedOptions;
}
}
Loading