62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\State;
|
|
|
|
use ApiPlatform\Metadata\Operation;
|
|
use ApiPlatform\State\ProviderInterface;
|
|
use App\ApiResource\GiteaPullRequest;
|
|
use App\Entity\Task;
|
|
use App\Exception\GiteaApiException;
|
|
use App\Service\GiteaApiService;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
|
|
final readonly class GiteaPullRequestProvider implements ProviderInterface
|
|
{
|
|
public function __construct(
|
|
private GiteaApiService $giteaApiService,
|
|
private EntityManagerInterface $em,
|
|
) {}
|
|
|
|
public function provide(Operation $operation, array $uriVariables = [], array $context = []): array
|
|
{
|
|
$task = $this->em->getRepository(Task::class)->find($uriVariables['taskId'] ?? 0);
|
|
if (null === $task || null === $task->getProject()) {
|
|
return [];
|
|
}
|
|
|
|
$project = $task->getProject();
|
|
if (!$project->hasGiteaRepo()) {
|
|
return [];
|
|
}
|
|
|
|
$taskCode = $project->getCode().'-'.$task->getNumber();
|
|
|
|
try {
|
|
$prs = $this->giteaApiService->listPullRequests($project, $taskCode);
|
|
} catch (GiteaApiException $e) {
|
|
throw new BadRequestHttpException($e->getMessage(), $e);
|
|
}
|
|
|
|
return array_map(static function (array $pr): GiteaPullRequest {
|
|
$dto = new GiteaPullRequest();
|
|
$dto->number = $pr['number'] ?? 0;
|
|
$dto->title = $pr['title'] ?? '';
|
|
$dto->state = $pr['state'] ?? '';
|
|
$dto->merged = $pr['merged'] ?? false;
|
|
$dto->headBranch = $pr['head']['ref'] ?? '';
|
|
$dto->author = $pr['user']['login'] ?? '';
|
|
$dto->url = $pr['html_url'] ?? '';
|
|
$dto->ciStatuses = array_map(static fn (array $s): array => [
|
|
'context' => $s['context'] ?? '',
|
|
'status' => $s['status'] ?? '',
|
|
'target_url' => $s['target_url'] ?? '',
|
|
], $pr['ci_statuses'] ?? []);
|
|
|
|
return $dto;
|
|
}, $prs);
|
|
}
|
|
}
|