7a5ea75b50
CI/CD / CI · API (dotnet build + test) (push) Successful in 40s
CI/CD / CI · Admin API (dotnet build) (push) Successful in 30s
CI/CD / CI · Dashboard (tsc) (push) Successful in 1m9s
CI/CD / CI · Admin Web (tsc) (push) Successful in 37s
CI/CD / CI · Website (tsc) (push) Successful in 45s
CI/CD / CI · Koja (tsc) (push) Has been cancelled
CI/CD / Deploy · all services (push) Has been cancelled
Closes the gap where the custom-role matrix was defined but unenforced — most write endpoints only checked café membership, so the API would accept writes a role's UI hid. Adds EnsurePermission(...) to all mutating/sensitive endpoints across 32 controllers, mapped to the granular catalog: - menu/inventory/coupons/customers/expenses/reservations/taxes/branches → CRUD perms - tables/queue/kitchen-stations/print-settings → manage perms - orders → ProcessOrders / EditOrder / VoidOrder / UpdateOrderStatus / HandlePayments, payment corrections → ManageFinancials - HR → CreateStaff / ManageSchedules / ReviewLeave / View+ManageSalaries / ManageStaffCredentials (self-service clock-in/leave preserved) - reports → ViewReports, export → ExportReports, audit → ViewAuditLog - billing → ManageBilling, sms → SendSms/ManageSmsSettings, reviews → ManageReviews, discover/public profile → ManageDiscoverProfile, café settings → ManageCafeSettings, custom roles → ManageRoles Removes legacy [Authorize(Roles=...)] attributes that would have overridden the permission model (orders, branch-menu, pos-device, print). Manual discount/comp have no backend endpoint yet (discounts come from coupons) — gated on the POS UI. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
92 lines
3.1 KiB
C#
92 lines
3.1 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Meezi.API.Models.Audit;
|
|
using Meezi.Core.Authorization;
|
|
using Meezi.Core.Interfaces;
|
|
using Meezi.Infrastructure.Data;
|
|
using Meezi.Shared;
|
|
|
|
namespace Meezi.API.Controllers;
|
|
|
|
/// <summary>
|
|
/// Read-only access to the immutable POS / management audit trail. Gated by
|
|
/// <see cref="Permission.ViewReports"/>; branch-scoped sessions only ever see
|
|
/// their own branch's entries (enforced by the DB-level branch isolation filter),
|
|
/// café-wide owners see everything.
|
|
/// </summary>
|
|
[Route("api/cafes/{cafeId}/audit-logs")]
|
|
public class AuditController : CafeApiControllerBase
|
|
{
|
|
private const int MaxPageSize = 100;
|
|
|
|
private readonly AppDbContext _db;
|
|
|
|
public AuditController(AppDbContext db)
|
|
{
|
|
_db = db;
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<IActionResult> List(
|
|
string cafeId,
|
|
ITenantContext tenant,
|
|
CancellationToken ct,
|
|
[FromQuery] string? category = null,
|
|
[FromQuery] string? action = null,
|
|
[FromQuery] string? branchId = null,
|
|
[FromQuery] string? entityType = null,
|
|
[FromQuery] string? entityId = null,
|
|
[FromQuery] DateTime? from = null,
|
|
[FromQuery] DateTime? to = null,
|
|
[FromQuery] int page = 1,
|
|
[FromQuery] int pageSize = 50)
|
|
{
|
|
if (EnsureCafeAccess(cafeId, tenant) is { } denied) return denied;
|
|
if (EnsurePermission(tenant, Permission.ViewAuditLog) is { } forbidden) return forbidden;
|
|
|
|
if (page < 1) page = 1;
|
|
if (pageSize < 1) pageSize = 50;
|
|
if (pageSize > MaxPageSize) pageSize = MaxPageSize;
|
|
|
|
var query = _db.AuditLogs.AsNoTracking().Where(x => x.CafeId == cafeId);
|
|
|
|
if (!string.IsNullOrWhiteSpace(category))
|
|
query = query.Where(x => x.Category == category);
|
|
if (!string.IsNullOrWhiteSpace(action))
|
|
query = query.Where(x => x.Action == action);
|
|
if (!string.IsNullOrWhiteSpace(branchId))
|
|
query = query.Where(x => x.BranchId == branchId);
|
|
if (!string.IsNullOrWhiteSpace(entityType))
|
|
query = query.Where(x => x.EntityType == entityType);
|
|
if (!string.IsNullOrWhiteSpace(entityId))
|
|
query = query.Where(x => x.EntityId == entityId);
|
|
if (from is { } f)
|
|
query = query.Where(x => x.CreatedAt >= f);
|
|
if (to is { } t)
|
|
query = query.Where(x => x.CreatedAt <= t);
|
|
|
|
var total = await query.CountAsync(ct);
|
|
|
|
var items = await query
|
|
.OrderByDescending(x => x.CreatedAt)
|
|
.Skip((page - 1) * pageSize)
|
|
.Take(pageSize)
|
|
.Select(x => new AuditLogDto(
|
|
x.Id,
|
|
x.Category,
|
|
x.Action,
|
|
x.EntityType,
|
|
x.EntityId,
|
|
x.BranchId,
|
|
x.ActorId,
|
|
x.ActorName,
|
|
x.ActorRole,
|
|
x.Summary,
|
|
x.DetailsJson,
|
|
x.CreatedAt))
|
|
.ToListAsync(ct);
|
|
|
|
return Ok(new PagedApiResponse<AuditLogDto>(true, items, new PagedMeta(total, page, pageSize)));
|
|
}
|
|
}
|