d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
96 lines
3.2 KiB
TypeScript
96 lines
3.2 KiB
TypeScript
/**
|
|
* GET /api/v1/admin/audit-logs
|
|
*
|
|
* List all audit logs with pagination and filtering.
|
|
*
|
|
* Query Parameters:
|
|
* - limit: number (default: 50, max: 250)
|
|
* - offset: number (default: 0)
|
|
* - action: string (optional) - Filter by action (e.g., "workflow.created")
|
|
* - resourceType: string (optional) - Filter by resource type (e.g., "workflow")
|
|
* - resourceId: string (optional) - Filter by resource ID
|
|
* - workspaceId: string (optional) - Filter by workspace ID
|
|
* - actorId: string (optional) - Filter by actor user ID
|
|
* - actorEmail: string (optional) - Filter by actor email
|
|
* - startDate: string (optional) - ISO 8601 date, filter createdAt >= startDate
|
|
* - endDate: string (optional) - ISO 8601 date, filter createdAt <= endDate
|
|
*
|
|
* Response: AdminListResponse<AdminAuditLog>
|
|
*/
|
|
|
|
import { dbReplica } from '@sim/db'
|
|
import { auditLog } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { and, count, desc } from 'drizzle-orm'
|
|
import { v1AdminListAuditLogsContract } from '@/lib/api/contracts/v1/audit-logs'
|
|
import { parseRequest } from '@/lib/api/server'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
import { withAdminAuth } from '@/app/api/v1/admin/middleware'
|
|
import {
|
|
adminValidationErrorResponse,
|
|
internalErrorResponse,
|
|
listResponse,
|
|
} from '@/app/api/v1/admin/responses'
|
|
import {
|
|
type AdminAuditLog,
|
|
createPaginationMeta,
|
|
parsePaginationParams,
|
|
toAdminAuditLog,
|
|
} from '@/app/api/v1/admin/types'
|
|
import { buildFilterConditions } from '@/app/api/v1/audit-logs/query'
|
|
|
|
const logger = createLogger('AdminAuditLogsAPI')
|
|
|
|
export const GET = withRouteHandler(
|
|
withAdminAuth(async (request) => {
|
|
const url = new URL(request.url)
|
|
const { limit, offset } = parsePaginationParams(url)
|
|
|
|
const parsed = await parseRequest(
|
|
v1AdminListAuditLogsContract,
|
|
request,
|
|
{},
|
|
{ validationErrorResponse: adminValidationErrorResponse }
|
|
)
|
|
if (!parsed.success) return parsed.response
|
|
|
|
try {
|
|
const query = parsed.data.query
|
|
const conditions = buildFilterConditions({
|
|
action: query.action,
|
|
resourceType: query.resourceType,
|
|
resourceId: query.resourceId,
|
|
workspaceId: query.workspaceId,
|
|
actorId: query.actorId,
|
|
actorEmail: query.actorEmail,
|
|
startDate: query.startDate,
|
|
endDate: query.endDate,
|
|
})
|
|
|
|
const whereClause = conditions.length > 0 ? and(...conditions) : undefined
|
|
|
|
const [countResult, logs] = await Promise.all([
|
|
dbReplica.select({ total: count() }).from(auditLog).where(whereClause),
|
|
dbReplica
|
|
.select()
|
|
.from(auditLog)
|
|
.where(whereClause)
|
|
.orderBy(desc(auditLog.createdAt))
|
|
.limit(limit)
|
|
.offset(offset),
|
|
])
|
|
|
|
const total = countResult[0].total
|
|
const data: AdminAuditLog[] = logs.map(toAdminAuditLog)
|
|
const pagination = createPaginationMeta(total, limit, offset)
|
|
|
|
logger.info(`Admin API: Listed ${data.length} audit logs (total: ${total})`)
|
|
|
|
return listResponse(data, pagination)
|
|
} catch (error) {
|
|
logger.error('Admin API: Failed to list audit logs', { error })
|
|
return internalErrorResponse('Failed to list audit logs')
|
|
}
|
|
})
|
|
)
|