Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5014dd063e | |||
| 0a6a88e2fa | |||
| 8475f9604c | |||
| 226ab8ea84 |
@@ -13,32 +13,25 @@ Application de gestion de projet. Monorepo Symfony 8 (API Platform 4) + Nuxt 4.
|
|||||||
|
|
||||||
## Structure
|
## Structure
|
||||||
|
|
||||||
|
> Le détail (entités, providers, services, composants…) se découvre dans le code. Carte d'orientation :
|
||||||
|
|
||||||
```
|
```
|
||||||
src/Entity/ # Entités Doctrine (User, Client, Project, Task, TaskStatus, TaskEffort, TaskPriority, TaskTag, TaskGroup, TimeEntry, GiteaConfiguration, Notification, TaskDocument, BookStackConfiguration, TaskBookStackLink, TaskRecurrence, ZimbraConfiguration)
|
src/Entity/ # Entités Doctrine (User, Client, Project, Task + métadonnées Task*, TimeEntry, Notification, *Configuration…)
|
||||||
src/ApiResource/ # Ressources API Platform (si découplées des entités) (ZimbraSettings, ZimbraTestConnection)
|
src/ApiResource/ # Ressources API Platform découplées des entités
|
||||||
src/Enum/ # PHP enums (RecurrenceType)
|
src/State/ # Providers & Processors API Platform (Me, ActiveTimeEntry, TaskNumber, Notification, Gitea*, Zimbra*, RecurrenceHandler…)
|
||||||
src/State/ # Providers et Processors API Platform (MeProvider, AppVersionProvider, ActiveTimeEntryProvider, UserPasswordHasherProcessor, TaskNumberProcessor, NotificationProvider, Gitea*Provider, Gitea*Processor, ZimbraSettingsProvider/Processor, ZimbraTestConnectionProvider, TaskCalendarProcessor, RecurrenceHandler)
|
|
||||||
src/Service/ # Services métier (NotificationService, CalDavService, RecurrenceCalculator)
|
src/Service/ # Services métier (NotificationService, CalDavService, RecurrenceCalculator)
|
||||||
src/Controller/ # Controllers custom Symfony (NotificationUnreadCountController, MarkAllReadController, UserAvatarController, TaskDocumentDownloadController)
|
src/Controller/ # Controllers custom (notifications, avatar, download document)
|
||||||
src/Mcp/Tool/ # MCP tools organisés par domaine (Project/, Task/, TaskMeta/, TimeEntry/, Reference/)
|
src/Mcp/Tool/ # MCP tools par domaine (Project/, Task/, TaskMeta/, TimeEntry/, Reference/)
|
||||||
src/Security/ # Authenticators custom (ApiTokenAuthenticator pour MCP HTTP)
|
src/Security/ # ApiTokenAuthenticator (MCP HTTP)
|
||||||
src/Command/ # Commandes console (GenerateApiTokenCommand)
|
src/Command/ src/Repository/ src/DataFixtures/
|
||||||
src/Repository/ # Repositories Doctrine
|
config/ # security, api_platform, lexik_jwt, nelmio_cors, doctrine — config/jwt/ = clés
|
||||||
src/DataFixtures/ # Fixtures
|
migrations/ docs/plans/ docs/superpowers/
|
||||||
config/ # Config Symfony (security, api_platform, lexik_jwt, nelmio_cors, doctrine)
|
frontend/pages/ # index, login, my-tasks, profile, projects/[id]/*, time-tracking, admin
|
||||||
config/jwt/ # Clés JWT (private.pem, public.pem)
|
frontend/components/ # Sous-dossiers ui/ client/ project/ task/ user/ admin/ time-tracking/ notification/
|
||||||
migrations/ # Migrations Doctrine
|
frontend/composables/# useApi, useAppVersion, useNotifications, useAvatarService
|
||||||
docs/plans/ # Plans d'implémentation
|
frontend/stores/ # Pinia : auth, ui, timer
|
||||||
docs/superpowers/ # Plans et specs superpowers
|
frontend/services/ # 1 service par ressource API (+ services/dto/ pour les types)
|
||||||
frontend/ # App Nuxt 4
|
frontend/i18n/locales/ # Traductions (langDir résolu depuis i18n/)
|
||||||
frontend/pages/ # Pages (index, login, my-tasks, profile, projects, projects/[id], projects/[id]/groups, projects/[id]/archives, time-tracking, admin)
|
|
||||||
frontend/layouts/ # Layouts (default)
|
|
||||||
frontend/components/ # Composants Vue organisés en sous-dossiers (ui/, client/, project/, task/, user/, admin/, time-tracking/, notification/) — inclut admin/AdminZimbraTab
|
|
||||||
frontend/composables/# Composables (useApi, useAppVersion, useNotifications, useAvatarService)
|
|
||||||
frontend/stores/ # Stores Pinia (auth, ui, timer)
|
|
||||||
frontend/services/ # Services API (auth, clients, gitea, projects, tasks, task-statuses, task-efforts, task-groups, task-priorities, task-tags, users, time-entries, notifications, task-documents, zimbra, task-recurrences)
|
|
||||||
frontend/services/dto/ # Types TypeScript
|
|
||||||
frontend/i18n/locales/ # Fichiers de traduction (langDir résolu depuis i18n/)
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Commandes
|
## Commandes
|
||||||
@@ -109,7 +102,7 @@ La librairie `@malio/layer-ui` fournit les composants de formulaire et d'action.
|
|||||||
|
|
||||||
### MCP Server
|
### MCP Server
|
||||||
|
|
||||||
- 25 tools MCP exposant projets, tâches, métadonnées, time tracking, et récurrences
|
- 60 tools MCP exposant projets, tâches, métadonnées, time tracking, récurrences, documents et absences
|
||||||
- Transport STDIO (local) : `docker exec -i php-lesstime-fpm php bin/console mcp:server`
|
- Transport STDIO (local) : `docker exec -i php-lesstime-fpm php bin/console mcp:server`
|
||||||
- Transport HTTP (réseau) : `POST /_mcp` avec header `Authorization: Bearer <token>`
|
- Transport HTTP (réseau) : `POST /_mcp` avec header `Authorization: Bearer <token>`
|
||||||
- Auth HTTP : `ApiTokenAuthenticator` vérifie le champ `apiToken` de l'entité `User`
|
- Auth HTTP : `ApiTokenAuthenticator` vérifie le champ `apiToken` de l'entité `User`
|
||||||
|
|||||||
@@ -49,6 +49,10 @@ services:
|
|||||||
arguments:
|
arguments:
|
||||||
$uploadDir: '%task_document_upload_dir%'
|
$uploadDir: '%task_document_upload_dir%'
|
||||||
|
|
||||||
|
App\Mcp\Tool\Task\UpdateTaskDocumentTool:
|
||||||
|
arguments:
|
||||||
|
$uploadDir: '%task_document_upload_dir%'
|
||||||
|
|
||||||
App\Controller\UserAvatarController:
|
App\Controller\UserAvatarController:
|
||||||
arguments:
|
arguments:
|
||||||
$avatarUploadDir: '%avatar_upload_dir%'
|
$avatarUploadDir: '%avatar_upload_dir%'
|
||||||
|
|||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
parameters:
|
parameters:
|
||||||
app.version: '0.4.23'
|
app.version: '0.4.25'
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Mcp\Tool\Task;
|
||||||
|
|
||||||
|
use App\Entity\TaskDocument;
|
||||||
|
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: 'delete-task-document', description: 'Delete a document attached to a task, permanently. The underlying file is also removed from disk.')]
|
||||||
|
class DeleteTaskDocumentTool
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
private readonly EntityManagerInterface $entityManager,
|
||||||
|
private readonly Security $security,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $id ID of the task document to delete
|
||||||
|
*/
|
||||||
|
public function __invoke(int $id): string
|
||||||
|
{
|
||||||
|
if (!$this->security->isGranted('ROLE_USER')) {
|
||||||
|
throw new AccessDeniedException('Access denied: ROLE_USER required.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$document = $this->entityManager->find(TaskDocument::class, $id);
|
||||||
|
if (null === $document) {
|
||||||
|
throw new InvalidArgumentException(sprintf('Task document with ID %d not found.', $id));
|
||||||
|
}
|
||||||
|
|
||||||
|
$taskId = $document->getTask()?->getId();
|
||||||
|
$originalName = $document->getOriginalName();
|
||||||
|
|
||||||
|
$this->entityManager->remove($document);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
return json_encode([
|
||||||
|
'success' => true,
|
||||||
|
'message' => sprintf('Document "%s" (ID %d) deleted.', $originalName, $id),
|
||||||
|
'id' => $id,
|
||||||
|
'taskId' => $taskId,
|
||||||
|
'originalName' => $originalName,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Mcp\Tool\Task;
|
||||||
|
|
||||||
|
use App\Entity\TaskDocument;
|
||||||
|
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;
|
||||||
|
use function strlen;
|
||||||
|
|
||||||
|
#[McpTool(name: 'update-task-document', description: 'Update a document attached to a task: replace its text content and/or rename it. Pass the new raw content (verbatim UTF-8) and/or a new fileName. The MIME type is re-inferred from the fileName extension. At least one of content or fileName must be provided.')]
|
||||||
|
class UpdateTaskDocumentTool
|
||||||
|
{
|
||||||
|
private const MAX_CONTENT_SIZE = 5 * 1024 * 1024; // 5 MB of text
|
||||||
|
|
||||||
|
private const EXTENSION_TO_MIME = [
|
||||||
|
'md' => 'text/markdown',
|
||||||
|
'markdown' => 'text/markdown',
|
||||||
|
'txt' => 'text/plain',
|
||||||
|
'csv' => 'text/csv',
|
||||||
|
'json' => 'application/json',
|
||||||
|
'xml' => 'text/xml',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
private readonly EntityManagerInterface $entityManager,
|
||||||
|
private readonly Security $security,
|
||||||
|
private readonly string $uploadDir,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $id ID of the task document to update
|
||||||
|
* @param null|string $content New raw text content of the document (e.g. Markdown). Omit to keep the current content.
|
||||||
|
* @param null|string $fileName New display name of the document, including extension. Omit to keep the current name.
|
||||||
|
*/
|
||||||
|
public function __invoke(
|
||||||
|
int $id,
|
||||||
|
?string $content = null,
|
||||||
|
?string $fileName = null,
|
||||||
|
): string {
|
||||||
|
if (!$this->security->isGranted('ROLE_USER')) {
|
||||||
|
throw new AccessDeniedException('Access denied: ROLE_USER required.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (null === $content && null === $fileName) {
|
||||||
|
throw new InvalidArgumentException('At least one of content or fileName must be provided.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$document = $this->entityManager->find(TaskDocument::class, $id);
|
||||||
|
if (null === $document) {
|
||||||
|
throw new InvalidArgumentException(sprintf('Task document with ID %d not found.', $id));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rename: update the display name and re-infer the MIME type from its extension.
|
||||||
|
if (null !== $fileName) {
|
||||||
|
$originalName = trim($fileName);
|
||||||
|
if ('' === $originalName) {
|
||||||
|
throw new InvalidArgumentException('fileName cannot be empty.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$extension = strtolower(pathinfo($originalName, PATHINFO_EXTENSION));
|
||||||
|
if ('' === $extension) {
|
||||||
|
$originalName .= '.md';
|
||||||
|
$extension = 'md';
|
||||||
|
}
|
||||||
|
|
||||||
|
$document->setOriginalName($originalName);
|
||||||
|
$document->setMimeType(self::EXTENSION_TO_MIME[$extension] ?? 'text/markdown');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Replace content: overwrite the stored file in place and refresh its size.
|
||||||
|
if (null !== $content) {
|
||||||
|
if ('' === $content) {
|
||||||
|
throw new InvalidArgumentException('Document content cannot be empty.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$size = strlen($content);
|
||||||
|
if ($size > self::MAX_CONTENT_SIZE) {
|
||||||
|
throw new InvalidArgumentException('Content size exceeds 5 MB limit.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$filePath = $this->uploadDir.'/'.$document->getFileName();
|
||||||
|
if (false === file_put_contents($filePath, $content)) {
|
||||||
|
throw new InvalidArgumentException('Failed to write document to disk.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$document->setSize($size);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
return json_encode([
|
||||||
|
'id' => $document->getId(),
|
||||||
|
'taskId' => $document->getTask()?->getId(),
|
||||||
|
'originalName' => $document->getOriginalName(),
|
||||||
|
'mimeType' => $document->getMimeType(),
|
||||||
|
'size' => $document->getSize(),
|
||||||
|
'createdAt' => $document->getCreatedAt()?->format('c'),
|
||||||
|
'uploadedBy' => $document->getUploadedBy()?->getUsername(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user