4ad0f9e493
## Backend — Service Layer & Repository Refactoring ### Neue Services (21 neue Dateien) **Interfaces & Implementierungen:** - `IOpenClawGatewayClient` — Interface für OpenClawGatewayClient (DIP-Fix: DashboardController hing an konkreter Klasse) - `IAgentConfigService` / `AgentConfigService` — Agent-Config-File-I/O aus AgentsController extrahiert - `IProjectService` / `ProjectService` — Projekt-CRUD + Activity-Logging (SRP) - `ITaskService` / `TaskService` — Task-State-Machine, Approve/Reject, Dashboard-Operationen (eliminiert Duplikation zwischen TasksController und DashboardController) - `IDashboardService` / `DashboardService` — Queue-Aggregation, Priority-Normalisierung, Gateway-Delegation - `IOperationsService` / `OperationsService` — Metriken-Berechnung aus OperationsController - `ITeamService` / `TeamService` — IDENTITY.md-Lesen aus TeamController - `IMemoryService` / `MemoryService` — File-I/O aus MemoryController - `IIncidentService` / `IncidentService` — File-Parsing (Regex-Source-Generatoren) aus IncidentsController - `IDocService` / `DocService` — Directory-Scan aus DocsController - `ICalendarService` / `CalendarService` — Gateway-HTTP-Calls + Fallback-Daten aus CalendarController ### Repository-Fixes **IUserRepository / UserRepository:** - `SaveChangesAsync` entfernt (leaky abstraction — Caller sollten nie SaveChanges steuern) - `RevokeTokenAsync(tokenHash)` — atomares Token-Revoke inkl. SaveChanges - `RevokeFamilyAsync(familyId)` — Batch-Revoke einer Token-Familie inkl. SaveChanges - `RemoveExpiredTokensAsync` speichert jetzt selbst (war vorher dependent auf nachfolgenden Save) ### AuthService-Fixes - `GetUserAsync`: unnötiges `Task.Run` entfernt → direkt `_users.GetByIdAsync().AsTask()` - `RevokeAsync`: delegiert jetzt an `IUserRepository.RevokeTokenAsync` - `RefreshAsync`: Token-Reuse-Detection delegiert an `IUserRepository.RevokeFamilyAsync` ### Bug-Fix - `OpenClawGatewayClient.ReadAgentGoalAsync`: pre-existing `CS1656` behoben (`reader` war `using`-Variable und wurde neu zugewiesen — in `reader2` umbenannt) ### Controller (16 Stück — alle slim) Alle Controller reduziert auf: Input validieren → Service aufrufen → HTTP-Result zurückgeben. Kein Business-Logic, kein File-I/O, keine direkte Repository-Nutzung (außer AgentsController für Activity-Log). **Program.cs — neue Registrierungen:** - `AddHttpClient<IOpenClawGatewayClient, OpenClawGatewayClient>` (war vorher konkrete Klasse) - Scoped: IDashboardService, IProjectService, ITaskService, IOperationsService, ITeamService, ICalendarService - Singleton: IAgentConfigService, IMemoryService, IIncidentService, IDocService --- ## Frontend — Dashboard V2 Components **AgentDetailModal.vue, IrisChat.vue, TaskStrip.vue:** - V2 Design-System: Dark Space Theme, Glass-Panels, Gradient-Akzente - Stores (agents, chat, tasks) nutzen Service + Mapper-Pattern - NexusLayout, FlowBoard, Topbar — Layoutfixes für fullHeight-Route-Meta Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
192 lines
9.0 KiB
C#
192 lines
9.0 KiB
C#
using Nexus.Api.Data;
|
|
using Nexus.Api.DTOs;
|
|
using Nexus.Api.Repositories;
|
|
|
|
namespace Nexus.Api.Services;
|
|
|
|
public sealed class TaskService(
|
|
ITaskRepository taskRepo,
|
|
IActivityRepository activityRepo) : ITaskService
|
|
{
|
|
public async Task<IReadOnlyList<WorkTask>> GetAllAsync(CancellationToken ct = default)
|
|
=> await taskRepo.GetAllAsync(ct);
|
|
|
|
public async Task<WorkTask?> GetByIdAsync(Guid id, CancellationToken ct = default)
|
|
=> await taskRepo.GetByIdAsync(id, ct);
|
|
|
|
public async Task<IReadOnlyList<WorkTask>> GetPendingApprovalAsync(CancellationToken ct = default)
|
|
=> await taskRepo.GetPendingApprovalAsync(ct);
|
|
|
|
public async Task<WorkTask> CreateAsync(CreateTaskRequest request, CancellationToken ct = default)
|
|
{
|
|
var task = new WorkTask
|
|
{
|
|
Title = request.Title.Trim(),
|
|
Priority = string.IsNullOrWhiteSpace(request.Priority) ? "Normal" : request.Priority.Trim(),
|
|
ProjectId = request.ProjectId
|
|
};
|
|
await taskRepo.AddAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} created" }, ct);
|
|
return task;
|
|
}
|
|
|
|
public async Task<TaskOperationResult> ApproveAsync(Guid id, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
if (!TaskStateHelper.IsInProgressOrBlocked(task.State))
|
|
return new TaskOperationResult(TaskOperationOutcome.InvalidState, task);
|
|
|
|
task.State = TaskStateHelper.ToStateString(TaskState.Done);
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} approved" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> RejectAsync(Guid id, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
if (!TaskStateHelper.IsInProgressOrBlocked(task.State))
|
|
return new TaskOperationResult(TaskOperationOutcome.InvalidState, task);
|
|
|
|
task.State = TaskStateHelper.ToStateString(TaskState.Backlog);
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} rejected, returned to backlog" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> UpdateStateAsync(Guid id, string state, CancellationToken ct = default)
|
|
{
|
|
var canonical = TaskStateHelper.AllStates.FirstOrDefault(s => s.Equals(state, StringComparison.OrdinalIgnoreCase));
|
|
if (canonical is null) return new TaskOperationResult(TaskOperationOutcome.InvalidState);
|
|
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
task.State = canonical;
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} moved to {task.State}" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> UpdateAsync(Guid id, UpdateTaskRequest request, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
if (!string.IsNullOrWhiteSpace(request.Title))
|
|
task.Title = request.Title.Trim();
|
|
if (!string.IsNullOrWhiteSpace(request.Priority))
|
|
task.Priority = request.Priority.Trim();
|
|
if (request.ProjectId.HasValue)
|
|
task.ProjectId = request.ProjectId.Value == Guid.Empty ? null : request.ProjectId;
|
|
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} updated" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> DeleteAsync(Guid id, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
if (!TaskStateHelper.IsDoneOrBacklog(task.State))
|
|
return new TaskOperationResult(TaskOperationOutcome.InvalidState, task);
|
|
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task {task.Title} deleted" }, ct);
|
|
await taskRepo.DeleteAsync(task, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success);
|
|
}
|
|
|
|
// ── Dashboard-facing operations ──
|
|
|
|
public async Task<IReadOnlyList<WorkTask>> GetOpenAsync(CancellationToken ct = default)
|
|
{
|
|
var all = await taskRepo.GetAllAsync(ct);
|
|
return all.Where(t => !string.Equals(t.State, "Done", StringComparison.OrdinalIgnoreCase))
|
|
.OrderByDescending(t => t.CreatedAt)
|
|
.ToList();
|
|
}
|
|
|
|
public async Task<WorkTask> CreateDashboardTaskAsync(
|
|
string title, string? detail, string? source, string? priority, string? assignedTo, CancellationToken ct = default)
|
|
{
|
|
var task = new WorkTask
|
|
{
|
|
Title = title.Trim(),
|
|
Detail = detail?.Trim(),
|
|
Source = string.IsNullOrWhiteSpace(source) ? "bao" : source.Trim(),
|
|
Priority = string.IsNullOrWhiteSpace(priority) ? "Normal" : priority.Trim(),
|
|
AssignedTo = assignedTo?.Trim()
|
|
};
|
|
await taskRepo.AddAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" created ({task.Source})" }, ct);
|
|
return task;
|
|
}
|
|
|
|
public async Task<TaskOperationResult> UpdateDashboardTaskAsync(
|
|
Guid id, string? title, string? detail, string? source, string? priority, string? assignedTo, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
if (!string.IsNullOrWhiteSpace(title)) task.Title = title.Trim();
|
|
if (detail is not null) task.Detail = string.IsNullOrWhiteSpace(detail) ? null : detail.Trim();
|
|
if (!string.IsNullOrWhiteSpace(source)) task.Source = source.Trim();
|
|
if (!string.IsNullOrWhiteSpace(priority)) task.Priority = priority.Trim();
|
|
if (assignedTo is not null) task.AssignedTo = string.IsNullOrWhiteSpace(assignedTo) ? null : assignedTo.Trim();
|
|
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" updated" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> UpdateStatusAsync(Guid id, string status, CancellationToken ct = default)
|
|
{
|
|
if (!TaskStateHelper.IsValidState(status))
|
|
return new TaskOperationResult(TaskOperationOutcome.InvalidState);
|
|
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
var canonical = TaskStateHelper.AllStates.First(s => s.Equals(status, StringComparison.OrdinalIgnoreCase));
|
|
task.State = canonical;
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" → {canonical}" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> CompleteViaQueueAsync(Guid id, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
task.State = "Done";
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" completed via queue" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
|
|
public async Task<TaskOperationResult> CyclePriorityAsync(Guid id, CancellationToken ct = default)
|
|
{
|
|
var task = await taskRepo.GetByIdAsync(id, ct);
|
|
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
|
|
|
|
task.Priority = task.Priority.ToLowerInvariant() switch
|
|
{
|
|
"high" => "Medium",
|
|
"medium" => "Low",
|
|
"low" => "High",
|
|
_ => "Medium"
|
|
};
|
|
|
|
await taskRepo.UpdateAsync(task, ct);
|
|
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" priority → {task.Priority}" }, ct);
|
|
return new TaskOperationResult(TaskOperationOutcome.Success, task);
|
|
}
|
|
}
|