32 lines
908 B
PHP
32 lines
908 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\State;
|
|
|
|
use ApiPlatform\Metadata\Operation;
|
|
use ApiPlatform\State\ProcessorInterface;
|
|
use ApiPlatform\State\ProviderInterface;
|
|
use App\ApiResource\GiteaTestConnection;
|
|
use App\Service\GiteaApiService;
|
|
|
|
final readonly class GiteaTestConnectionProvider implements ProviderInterface, ProcessorInterface
|
|
{
|
|
public function __construct(
|
|
private GiteaApiService $giteaApiService,
|
|
) {}
|
|
|
|
public function provide(Operation $operation, array $uriVariables = [], array $context = []): GiteaTestConnection
|
|
{
|
|
return new GiteaTestConnection();
|
|
}
|
|
|
|
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): GiteaTestConnection
|
|
{
|
|
$result = new GiteaTestConnection();
|
|
$result->success = $this->giteaApiService->testConnection();
|
|
|
|
return $result;
|
|
}
|
|
}
|