- GiteaBranch, GiteaBranchName, GiteaPullRequest: require ROLE_USER - All 22 MCP tools: require ROLE_USER (ROLE_ADMIN for users/clients listing) Tickets: T-002, T-007 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
135 lines
5.3 KiB
PHP
135 lines
5.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mcp\Tool\Task;
|
|
|
|
use App\Entity\Task;
|
|
use App\Mcp\Tool\Serializer;
|
|
use App\Repository\ProjectRepository;
|
|
use App\Repository\TaskEffortRepository;
|
|
use App\Repository\TaskGroupRepository;
|
|
use App\Repository\TaskPriorityRepository;
|
|
use App\Repository\TaskRepository;
|
|
use App\Repository\TaskStatusRepository;
|
|
use App\Repository\TaskTagRepository;
|
|
use App\Repository\UserRepository;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use InvalidArgumentException;
|
|
use Mcp\Capability\Attribute\McpTool;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
|
|
|
|
use function sprintf;
|
|
|
|
#[McpTool(name: 'create-task', description: 'Create a new task in a project. The task number is auto-generated. Use list-statuses, list-priorities, list-efforts, list-tags, list-groups to discover valid IDs.')]
|
|
class CreateTaskTool
|
|
{
|
|
public function __construct(
|
|
private readonly EntityManagerInterface $entityManager,
|
|
private readonly ProjectRepository $projectRepository,
|
|
private readonly TaskRepository $taskRepository,
|
|
private readonly TaskStatusRepository $taskStatusRepository,
|
|
private readonly TaskPriorityRepository $taskPriorityRepository,
|
|
private readonly TaskEffortRepository $taskEffortRepository,
|
|
private readonly TaskGroupRepository $taskGroupRepository,
|
|
private readonly TaskTagRepository $taskTagRepository,
|
|
private readonly UserRepository $userRepository,
|
|
private readonly Security $security,
|
|
) {}
|
|
|
|
public function __invoke(
|
|
int $projectId,
|
|
string $title,
|
|
?string $description = null,
|
|
?int $statusId = null,
|
|
?int $priorityId = null,
|
|
?int $effortId = null,
|
|
?int $assigneeId = null,
|
|
?int $groupId = null,
|
|
?array $tagIds = null,
|
|
): string {
|
|
if (!$this->security->isGranted('ROLE_USER')) {
|
|
throw new AccessDeniedException('Access denied: ROLE_USER required.');
|
|
}
|
|
|
|
$project = $this->projectRepository->find($projectId);
|
|
if (null === $project) {
|
|
throw new InvalidArgumentException(sprintf('Project with ID %d not found.', $projectId));
|
|
}
|
|
|
|
$task = new Task();
|
|
$task->setProject($project);
|
|
$task->setTitle($title);
|
|
|
|
if (null !== $description) {
|
|
$task->setDescription($description);
|
|
}
|
|
if (null !== $statusId) {
|
|
$status = $this->taskStatusRepository->find($statusId);
|
|
if (null === $status) {
|
|
throw new InvalidArgumentException(sprintf('TaskStatus with ID %d not found.', $statusId));
|
|
}
|
|
$task->setStatus($status);
|
|
}
|
|
if (null !== $priorityId) {
|
|
$priority = $this->taskPriorityRepository->find($priorityId);
|
|
if (null === $priority) {
|
|
throw new InvalidArgumentException(sprintf('TaskPriority with ID %d not found.', $priorityId));
|
|
}
|
|
$task->setPriority($priority);
|
|
}
|
|
if (null !== $effortId) {
|
|
$effort = $this->taskEffortRepository->find($effortId);
|
|
if (null === $effort) {
|
|
throw new InvalidArgumentException(sprintf('TaskEffort with ID %d not found.', $effortId));
|
|
}
|
|
$task->setEffort($effort);
|
|
}
|
|
if (null !== $assigneeId) {
|
|
$assignee = $this->userRepository->find($assigneeId);
|
|
if (null === $assignee) {
|
|
throw new InvalidArgumentException(sprintf('User with ID %d not found.', $assigneeId));
|
|
}
|
|
$task->setAssignee($assignee);
|
|
}
|
|
if (null !== $groupId) {
|
|
$group = $this->taskGroupRepository->find($groupId);
|
|
if (null === $group) {
|
|
throw new InvalidArgumentException(sprintf('TaskGroup with ID %d not found.', $groupId));
|
|
}
|
|
$task->setGroup($group);
|
|
}
|
|
if (null !== $tagIds) {
|
|
foreach ($tagIds as $tagId) {
|
|
$tag = $this->taskTagRepository->find($tagId);
|
|
if (null === $tag) {
|
|
throw new InvalidArgumentException(sprintf('TaskTag with ID %d not found.', $tagId));
|
|
}
|
|
$task->addTag($tag);
|
|
}
|
|
}
|
|
|
|
$this->entityManager->wrapInTransaction(function () use ($task, $project): void {
|
|
$task->setNumber($this->taskRepository->findMaxNumberByProjectForUpdate($project) + 1);
|
|
$this->entityManager->persist($task);
|
|
$this->entityManager->flush();
|
|
});
|
|
|
|
return json_encode([
|
|
'id' => $task->getId(),
|
|
'number' => $task->getNumber(),
|
|
'title' => $task->getTitle(),
|
|
'description' => $task->getDescription(),
|
|
'status' => Serializer::status($task->getStatus()),
|
|
'priority' => Serializer::priority($task->getPriority()),
|
|
'effort' => Serializer::effort($task->getEffort()),
|
|
'assignee' => Serializer::user($task->getAssignee()),
|
|
'group' => Serializer::groupRef($task->getGroup()),
|
|
'project' => Serializer::projectRef($project),
|
|
'tags' => Serializer::tags($task->getTags()),
|
|
'archived' => $task->isArchived(),
|
|
]);
|
|
}
|
|
}
|