Refactor error logging across the application to use a centralized logger

- Introduced a new logger utility (`logError`) to standardize error logging.
- Replaced all instances of `console.error` with `logError` in various API routes and libraries.
- Enhanced error logging to sanitize sensitive information, particularly for Prisma and Stripe errors.
- Ensured consistent error handling and logging practices throughout the codebase.
This commit is contained in:
Yusuf İpek
2026-04-10 21:10:09 +03:00
parent 07f7b6fb02
commit 8014fc3986
60 changed files with 235 additions and 115 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ import { db } from '@/lib/db';
import { apiErrors, successResponse } from '@/lib/api-response';
import { rateLimit } from '@/lib/rate-limit';
import { r2Client, R2_BUCKET_NAME } from '@/lib/r2';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ feedbackId: string }> };
@@ -121,7 +122,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
if (message.includes('Record to delete does not exist')) {
return apiErrors.notFound('Feedback');
}
console.error('Error deleting feedback:', error);
logError('Error deleting feedback:', error);
return apiErrors.internalError('Failed to delete feedback');
}
}
+2 -1
View File
@@ -1,6 +1,7 @@
import { auth } from '@/lib/auth';
import { apiErrors, successResponse } from '@/lib/api-response';
import { refreshR2StorageSnapshot } from '@/lib/admin-stats';
import { logError } from '@/lib/logger';
export async function POST() {
try {
@@ -16,7 +17,7 @@ export async function POST() {
refreshedAt,
});
} catch (error) {
console.error('Error refreshing R2 admin stats cache:', error);
logError('Error refreshing R2 admin stats cache:', error);
return apiErrors.internalError('Failed to refresh R2 stats');
}
}
@@ -4,6 +4,7 @@ import { auth, checkProjectAccess } from '@/lib/auth';
import { db } from '@/lib/db';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ requestId: string }> };
@@ -87,7 +88,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
if (isSerializableConflict(error)) {
return apiErrors.conflict('Request state changed. Please try again.');
}
console.error('Error canceling approval request:', error);
logError('Error canceling approval request:', error);
return apiErrors.internalError('Failed to cancel approval request');
}
}
@@ -5,6 +5,7 @@ import { db } from '@/lib/db';
import { notifyUsers } from '@/lib/notifications';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ requestId: string }> };
@@ -179,7 +180,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
note: note || undefined,
url: requestUrl,
}).catch((error) => {
console.error('Approval action notification failed:', error);
logError('Approval action notification failed:', error);
});
if (updated.status === 'APPROVED') {
@@ -191,7 +192,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
approvedByCount: updated.decisions.filter((item) => item.status === 'APPROVED').length,
url: requestUrl,
}).catch((error) => {
console.error('Approval completed notification failed:', error);
logError('Approval completed notification failed:', error);
});
} else if (updated.status === 'REJECTED') {
notifyUsers([updated.requestedById], {
@@ -203,7 +204,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
note: note || undefined,
url: requestUrl,
}).catch((error) => {
console.error('Approval rejected notification failed:', error);
logError('Approval rejected notification failed:', error);
});
}
@@ -219,7 +220,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
if (isSerializableConflict(error)) {
return apiErrors.conflict('Request state changed. Please try again.');
}
console.error('Error responding to approval request:', error);
logError('Error responding to approval request:', error);
return apiErrors.internalError('Failed to respond to approval request');
}
}
+2 -1
View File
@@ -5,6 +5,7 @@ import { acceptInvitationTokenForUser, getValidInvitationByToken } from '@/lib/i
import { checkRateLimit, getClientIp, rateLimitHeaders, RATE_LIMIT_CONFIGS } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { isInviteCodeRequired } from '@/lib/feature-flags';
import { logError } from '@/lib/logger';
export async function POST(request: NextRequest) {
try {
@@ -128,7 +129,7 @@ export async function POST(request: NextRequest) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Registration error:', error);
logError('Registration error:', error);
return apiErrors.internalError('Failed to create account');
}
}
+2 -1
View File
@@ -10,6 +10,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { isStripeFeatureEnabled } from '@/lib/feature-flags';
import { getStripe, getStripePriceId, isStripeConfigured } from '@/lib/stripe';
import { isTrustedSameOriginRequest } from '@/lib/request-origin';
import { logError } from '@/lib/logger';
function getAppOrigin(request: NextRequest) {
if (isTrustedSameOriginRequest(request)) {
@@ -79,7 +80,7 @@ export async function POST(request: NextRequest) {
const response = successResponse({ url: checkoutSession.url });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating Stripe checkout session:', error);
logError('Error creating Stripe checkout session:', error);
return apiErrors.internalError('Failed to start checkout');
}
}
+2 -1
View File
@@ -6,6 +6,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { isStripeFeatureEnabled } from '@/lib/feature-flags';
import { getStripe, isStripeConfigured } from '@/lib/stripe';
import { isTrustedSameOriginRequest } from '@/lib/request-origin';
import { logError } from '@/lib/logger';
function getAppOrigin(request: NextRequest) {
if (isTrustedSameOriginRequest(request)) {
@@ -54,7 +55,7 @@ export async function POST(request: NextRequest) {
const response = successResponse({ url: portalSession.url });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating Stripe portal session:', error);
logError('Error creating Stripe portal session:', error);
return apiErrors.internalError('Failed to open billing portal');
}
}
+2 -1
View File
@@ -3,6 +3,7 @@ import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response
import { getBillingOverview } from '@/lib/billing';
import { isStripeFeatureEnabled } from '@/lib/feature-flags';
import { hasStripeRuntimeConfig, isStripeConfigured } from '@/lib/stripe';
import { logError } from '@/lib/logger';
export async function GET() {
try {
@@ -39,7 +40,7 @@ export async function GET() {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching billing overview:', error);
logError('Error fetching billing overview:', error);
return apiErrors.internalError('Failed to fetch billing overview');
}
}
+5 -4
View File
@@ -10,6 +10,7 @@ import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response
import { getGuestIdentityFromRequest } from '@/lib/guest-identity';
import { runWithConcurrency } from '@/lib/async-pool';
import { validateAnnotationStrokes } from '@/lib/validation';
import { logError } from '@/lib/logger';
const CLEANUP_DELETE_CONCURRENCY = 5;
@@ -95,7 +96,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse(commentData);
return withCacheControl(response, 'private, no-cache');
} catch (error) {
console.error('Error fetching comment:', error);
logError('Error fetching comment:', error);
return apiErrors.internalError('Failed to fetch comment');
}
}
@@ -230,7 +231,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating comment:', error);
logError('Error updating comment:', error);
return apiErrors.internalError('Failed to update comment');
}
}
@@ -334,14 +335,14 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
})
);
} catch (err) {
console.error(`Failed to delete media from R2 (key: ${key}):`, err);
logError(`Failed to delete media from R2 (key: ${key}):`, err);
}
});
const response = successResponse({ message: 'Comment deleted' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting comment:', error);
logError('Error deleting comment:', error);
return apiErrors.internalError('Failed to delete comment');
}
}
+2 -1
View File
@@ -4,6 +4,7 @@ import { auth } from '@/lib/auth';
import { db } from '@/lib/db';
import { apiErrors, successResponse } from '@/lib/api-response';
import { rateLimit } from '@/lib/rate-limit';
import { logError } from '@/lib/logger';
interface FeedbackPayload {
type?: string;
@@ -145,7 +146,7 @@ export async function POST(request: NextRequest) {
return successResponse(entry, 201);
} catch (error) {
console.error('Error submitting feedback:', error);
logError('Error submitting feedback:', error);
return apiErrors.internalError('Failed to submit feedback');
}
}
+2 -1
View File
@@ -11,6 +11,7 @@ import {
} from '@/lib/image-upload-validation';
import { rateLimit } from '@/lib/rate-limit';
import { r2Client, R2_BUCKET_NAME } from '@/lib/r2';
import { logError } from '@/lib/logger';
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
const MAX_MULTIPART_BODY_SIZE = MAX_FILE_SIZE + (512 * 1024); // file + multipart overhead
@@ -78,7 +79,7 @@ export async function POST(request: NextRequest) {
return successResponse({ url: `/api/upload/image/${filename}` }, 201);
} catch (error) {
console.error('Error uploading feedback screenshot:', error);
logError('Error uploading feedback screenshot:', error);
return apiErrors.internalError('Failed to upload screenshot');
}
}
@@ -3,6 +3,7 @@ import { auth, checkProjectAccess } from '@/lib/auth';
import { db } from '@/lib/db';
import { getApprovalCandidatesForProject } from '@/lib/approval-workflow';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -28,7 +29,7 @@ export async function GET(_request: NextRequest, { params }: RouteParams) {
const response = successResponse({ candidates });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching approval candidates:', error);
logError('Error fetching approval candidates:', error);
return apiErrors.internalError('Failed to fetch approval candidates');
}
}
@@ -4,6 +4,7 @@ import { auth, checkProjectAccess } from '@/lib/auth';
import { ProjectMemberRole } from '@prisma/client';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; memberId: string }> };
@@ -65,7 +66,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(updatedMember);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating member role:', error);
logError('Error updating member role:', error);
return apiErrors.internalError('Failed to update member role');
}
}
@@ -116,7 +117,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Member removed' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error removing member:', error);
logError('Error removing member:', error);
return apiErrors.internalError('Failed to remove member');
}
}
@@ -4,6 +4,7 @@ import { auth, checkProjectAccess } from '@/lib/auth';
import { db } from '@/lib/db';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; invitationId: string }> };
@@ -65,7 +66,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Invitation canceled' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error canceling project invitation:', error);
logError('Error canceling project invitation:', error);
return apiErrors.internalError('Failed to cancel invitation');
}
}
@@ -5,6 +5,7 @@ import { InvitationRole, ProjectMemberRole } from '@prisma/client';
import { rateLimit } from '@/lib/rate-limit';
import { buildInvitationUrl, createOrRefreshInvitation, sendInvitationEmail } from '@/lib/invitations';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -78,7 +79,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ members, owner, pendingInvitations });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching project members:', error);
logError('Error fetching project members:', error);
return apiErrors.internalError('Failed to fetch members');
}
}
@@ -172,7 +173,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Invitation email sent.' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error inviting project member:', error);
logError('Error inviting project member:', error);
return apiErrors.internalError('Failed to invite member');
}
}
+4 -3
View File
@@ -6,6 +6,7 @@ import { collectProjectMediaUrls, deleteMediaFilesBestEffort } from '@/lib/r2-cl
import { cleanupBunnyStreamVideosBestEffort } from '@/lib/bunny-stream-cleanup';
import { buildCleanupWarnings, logCleanupWarnings } from '@/lib/cleanup-warnings';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -79,7 +80,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse(project);
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching project:', error);
logError('Error fetching project:', error);
return apiErrors.internalError('Failed to fetch project');
}
}
@@ -128,7 +129,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(project);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating project:', error);
logError('Error updating project:', error);
return apiErrors.internalError('Failed to update project');
}
}
@@ -212,7 +213,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting project:', error);
logError('Error deleting project:', error);
return apiErrors.internalError('Failed to delete project');
}
}
@@ -3,6 +3,7 @@ import { db } from '@/lib/db';
import { auth, checkProjectAccess } from '@/lib/auth';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; tagId: string }> };
@@ -68,7 +69,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(tag);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating tag:', error);
logError('Error updating tag:', error);
if ((error as { code?: string }).code === 'P2002') {
return apiErrors.conflict('Tag name already exists');
}
@@ -115,7 +116,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Tag deleted' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting tag:', error);
logError('Error deleting tag:', error);
return apiErrors.internalError('Failed to delete tag');
}
}
+3 -2
View File
@@ -5,6 +5,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { validateShareLinkAccess } from '@/lib/share-links';
import { getShareSessionFromRequest } from '@/lib/share-session';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -64,7 +65,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
: 'private, no-cache';
return withCacheControl(response, cacheControl);
} catch (error) {
console.error('Error fetching tags:', error);
logError('Error fetching tags:', error);
return apiErrors.internalError('Failed to fetch tags');
}
}
@@ -125,7 +126,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
const response = successResponse(tag, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating tag:', error);
logError('Error creating tag:', error);
if ((error as { code?: string }).code === 'P2002') {
return apiErrors.conflict('Tag name already exists');
}
@@ -7,6 +7,7 @@ import { collectVideoMediaUrls, deleteMediaFilesBestEffort } from '@/lib/r2-clea
import { cleanupBunnyStreamVideosBestEffort } from '@/lib/bunny-stream-cleanup';
import { buildCleanupWarnings, logCleanupWarnings } from '@/lib/cleanup-warnings';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; videoId: string }> };
@@ -134,7 +135,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-cache');
} catch (error) {
console.error('Error fetching video:', error);
logError('Error fetching video:', error);
return apiErrors.internalError('Failed to fetch video');
}
}
@@ -189,7 +190,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(updatedVideo);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating video:', error);
logError('Error updating video:', error);
return apiErrors.internalError('Failed to update video');
}
}
@@ -270,7 +271,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting video:', error);
logError('Error deleting video:', error);
return apiErrors.internalError('Failed to delete video');
}
}
@@ -7,6 +7,7 @@ import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response
import { db } from '@/lib/db';
import { rateLimit } from '@/lib/rate-limit';
import { MAX_SHARE_PASSWORD_LENGTH } from '@/lib/share-links';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; videoId: string }> };
@@ -123,7 +124,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching video share link:', error);
logError('Error fetching video share link:', error);
return apiErrors.internalError('Failed to fetch video share link');
}
}
@@ -238,7 +239,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating video share link:', error);
logError('Error creating video share link:', error);
return apiErrors.internalError('Failed to create video share link');
}
}
@@ -314,7 +315,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(serializeShareLink(request, videoId, updated));
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating video share link:', error);
logError('Error updating video share link:', error);
return apiErrors.internalError('Failed to update video share link');
}
}
@@ -345,7 +346,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Video share link revoked' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting video share link:', error);
logError('Error deleting video share link:', error);
return apiErrors.internalError('Failed to delete video share link');
}
}
@@ -5,6 +5,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { cleanupBunnyStreamVideosBestEffort } from '@/lib/bunny-stream-cleanup';
import { buildCleanupWarnings, logCleanupWarnings } from '@/lib/cleanup-warnings';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; videoId: string; versionId: string }> };
@@ -75,7 +76,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(updated);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating version:', error);
logError('Error updating version:', error);
return apiErrors.internalError('Failed to update version');
}
}
@@ -148,7 +149,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting version:', error);
logError('Error deleting version:', error);
return apiErrors.internalError('Failed to delete version');
}
}
@@ -6,6 +6,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { notifyProjectOwner } from '@/lib/notifications';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { verifyBunnyUploadToken } from '@/lib/bunny-upload-token';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string; videoId: string }> };
@@ -42,7 +43,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ versions });
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching versions:', error);
logError('Error fetching versions:', error);
return apiErrors.internalError('Failed to fetch versions');
}
}
@@ -166,13 +167,13 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
versionLabel: version.versionLabel || `Version ${version.versionNumber}`,
addedBy: session.user.name || 'A team member',
url: `${baseUrl}/watch/${video.id}`,
}).catch((err) => console.error('Notification failed:', err));
}).catch((err) => logError('Notification failed:', err));
}
const response = successResponse(version, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating version:', error);
logError('Error creating version:', error);
return apiErrors.internalError('Failed to create version');
}
}
@@ -7,6 +7,7 @@ import crypto from 'crypto';
import { cleanupBunnyStreamVideos } from '@/lib/bunny-stream-cleanup';
import { createBunnyUploadToken, verifyBunnyUploadToken } from '@/lib/bunny-upload-token';
import { isBunnyUploadsFeatureEnabled } from '@/lib/feature-flags';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -74,7 +75,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
});
if (!bunnyRes.ok) {
console.error('Failed to create Bunny Stream video', await bunnyRes.text());
logError('Failed to create Bunny Stream video', await bunnyRes.text());
return apiErrors.internalError('Failed to initialize video upload with provider');
}
@@ -107,7 +108,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error initializing Bunny upload:', error);
logError('Error initializing Bunny upload:', error);
return apiErrors.internalError('Failed to initialize upload');
}
}
@@ -153,7 +154,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Pending upload cleaned up' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error cleaning up pending Bunny upload:', error);
logError('Error cleaning up pending Bunny upload:', error);
return apiErrors.internalError('Failed to cleanup pending upload');
}
}
+4 -3
View File
@@ -6,6 +6,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { notifyProjectOwner } from '@/lib/notifications';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { verifyBunnyUploadToken } from '@/lib/bunny-upload-token';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ projectId: string }> };
@@ -53,7 +54,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ videos });
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching videos:', error);
logError('Error fetching videos:', error);
return apiErrors.internalError('Failed to fetch videos');
}
}
@@ -167,13 +168,13 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
videoTitle: title.trim(),
addedBy: session.user.name || 'A team member',
url: `${baseUrl}/watch/${video.id}`,
}).catch((err) => console.error('Notification failed:', err));
}).catch((err) => logError('Notification failed:', err));
}
const response = successResponse(video, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating video:', error);
logError('Error creating video:', error);
return apiErrors.internalError('Failed to create video');
}
}
+3 -2
View File
@@ -6,6 +6,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { buildBillingAccessWhereInput } from '@/lib/billing';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { DEFAULT_COMMENT_TAGS } from '@/lib/comment-tags';
import { logError } from '@/lib/logger';
// GET /api/projects - List all projects for the authenticated user
export async function GET(request: NextRequest) {
@@ -94,7 +95,7 @@ export async function GET(request: NextRequest) {
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching projects:', error);
logError('Error fetching projects:', error);
return apiErrors.internalError('Failed to fetch projects');
}
}
@@ -194,7 +195,7 @@ export async function POST(request: NextRequest) {
const response = successResponse(project, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating project:', error);
logError('Error creating project:', error);
return apiErrors.internalError('Failed to create project');
}
}
+2 -1
View File
@@ -3,6 +3,7 @@ import { db } from '@/lib/db';
import { auth } from '@/lib/auth';
import { apiErrors, successResponse } from '@/lib/api-response';
import { checkRateLimit, rateLimitHeaders, RATE_LIMIT_CONFIGS } from '@/lib/rate-limit';
import { logError } from '@/lib/logger';
const MAX_Q_LENGTH = 100;
const RESULTS_PER_CATEGORY = 5;
@@ -114,7 +115,7 @@ export async function GET(request: NextRequest) {
response.headers.set('Cache-Control', 'private, no-store');
return response;
} catch (err) {
console.error('[search] error:', err);
logError('[search] error:', err);
return apiErrors.internalError();
}
}
+5 -4
View File
@@ -5,6 +5,7 @@ import { rateLimit } from '@/lib/rate-limit';
import nodemailer from 'nodemailer';
import { testEmailHtml } from '@/lib/notifications';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
// GET /api/settings/notifications — Fetch current notification preferences
export async function GET() {
@@ -35,7 +36,7 @@ export async function GET() {
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching notification settings:', error);
logError('Error fetching notification settings:', error);
return apiErrors.internalError('Failed to fetch settings');
}
}
@@ -102,7 +103,7 @@ export async function PUT(request: NextRequest) {
const response = successResponse(settings);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating notification settings:', error);
logError('Error updating notification settings:', error);
return apiErrors.internalError('Failed to update settings');
}
}
@@ -197,7 +198,7 @@ export async function POST(request: NextRequest) {
html: testEmailHtml(),
});
} catch (emailErr) {
console.error('SMTP test email failed:', emailErr);
logError('SMTP test email failed:', emailErr);
return apiErrors.internalError('Failed to send test email — check SMTP settings');
}
@@ -207,7 +208,7 @@ export async function POST(request: NextRequest) {
return apiErrors.badRequest('Unknown channel');
} catch (error) {
console.error('Error testing notification:', error);
logError('Error testing notification:', error);
return apiErrors.internalError('Failed to test notification');
}
}
+3 -2
View File
@@ -5,6 +5,7 @@ import {
syncStripeSubscriptionToUser,
} from '@/lib/billing';
import { getStripe, getStripeWebhookSecret } from '@/lib/stripe';
import { logError } from '@/lib/logger';
export const runtime = 'nodejs';
@@ -42,7 +43,7 @@ export async function POST(request: NextRequest) {
const body = await request.text();
event = stripe.webhooks.constructEvent(body, signature, getStripeWebhookSecret());
} catch (error) {
console.error('Failed to verify Stripe webhook:', error);
logError('Failed to verify Stripe webhook:', error);
return new Response('Invalid webhook signature', { status: 400 });
}
@@ -82,7 +83,7 @@ export async function POST(request: NextRequest) {
headers: { 'Content-Type': 'application/json' },
});
} catch (error) {
console.error('Failed to process Stripe webhook:', error);
logError('Failed to process Stripe webhook:', error);
return new Response('Webhook processing failed', { status: 500 });
}
}
+2 -1
View File
@@ -1,5 +1,6 @@
import { apiErrors } from '@/lib/api-response';
import { proxyR2MediaObject } from '@/lib/r2-media-proxy';
import { logError } from '@/lib/logger';
// Only allow UUID filenames with safe extensions
const SAFE_FILENAME = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\.[a-z0-9]+$/i;
@@ -39,7 +40,7 @@ export async function GET(
internalErrorMessage: 'Failed to retrieve audio',
});
} catch (error: unknown) {
console.error('Error serving audio:', error);
logError('Error serving audio:', error);
return apiErrors.internalError('Failed to retrieve audio');
}
}
+2 -1
View File
@@ -13,6 +13,7 @@ import {
enforceGuestUploadQuota,
verifyGuestUploadToken,
} from '@/lib/guest-upload-token';
import { logError } from '@/lib/logger';
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
const MAX_MULTIPART_BODY_SIZE = MAX_FILE_SIZE + (512 * 1024); // file + multipart overhead
@@ -212,7 +213,7 @@ export async function POST(request: NextRequest) {
const response = successResponse({ url: voiceUrl }, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error uploading audio:', error);
logError('Error uploading audio:', error);
return apiErrors.internalError('Failed to upload audio');
}
}
+2 -1
View File
@@ -1,5 +1,6 @@
import { apiErrors } from '@/lib/api-response';
import { proxyR2MediaObject } from '@/lib/r2-media-proxy';
import { logError } from '@/lib/logger';
// Only allow UUID filenames with safe extensions
const SAFE_FILENAME = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\.[a-z0-9]+$/i;
@@ -41,7 +42,7 @@ export async function GET(
internalErrorMessage: 'Failed to retrieve image',
});
} catch (error: unknown) {
console.error('Error serving image:', error);
logError('Error serving image:', error);
return apiErrors.internalError('Failed to retrieve image');
}
}
+2 -1
View File
@@ -19,6 +19,7 @@ import {
enforceGuestUploadQuota,
verifyGuestUploadToken,
} from '@/lib/guest-upload-token';
import { logError } from '@/lib/logger';
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
const MAX_MULTIPART_BODY_SIZE = MAX_FILE_SIZE + (512 * 1024); // file + multipart overhead
@@ -150,7 +151,7 @@ export async function POST(request: NextRequest) {
const response = successResponse({ url: imageUrl }, 201);
return withCacheControl(response, 'public, max-age=31536000, immutable');
} catch (error) {
console.error('Error uploading image:', error);
logError('Error uploading image:', error);
return apiErrors.internalError('Failed to upload image');
}
}
@@ -6,6 +6,7 @@ import { getApprovalCandidatesForProject } from '@/lib/approval-workflow';
import { notifyUsers } from '@/lib/notifications';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ versionId: string }> };
@@ -54,7 +55,7 @@ export async function GET(_request: NextRequest, { params }: RouteParams) {
const response = successResponse({ requests });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching approvals:', error);
logError('Error fetching approvals:', error);
return apiErrors.internalError('Failed to fetch approvals');
}
}
@@ -165,7 +166,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
message: message || undefined,
url: requestUrl,
}).catch((error) => {
console.error('Approval request notification failed:', error);
logError('Approval request notification failed:', error);
});
const response = successResponse({ request: created }, 201);
@@ -177,7 +178,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
if (isSerializableConflict(error)) {
return apiErrors.conflict('Request state changed. Please try again.');
}
console.error('Error creating approval request:', error);
logError('Error creating approval request:', error);
return apiErrors.internalError('Failed to create approval request');
}
}
@@ -9,6 +9,7 @@ import {
} from '@/lib/comment-export';
import { apiErrors, withCacheControl } from '@/lib/api-response';
import { rateLimit } from '@/lib/rate-limit';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ versionId: string }> };
const MAX_EXPORT_COMMENTS = 5000;
@@ -157,7 +158,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error exporting comments:', error);
logError('Error exporting comments:', error);
return apiErrors.internalError('Failed to export comments');
}
}
@@ -11,6 +11,7 @@ import { r2Client, R2_BUCKET_NAME } from '@/lib/r2';
import { ensureGuestIdentityFromRequest, getGuestIdentityFromRequest, setGuestIdentityCookie } from '@/lib/guest-identity';
import { extractImageFileNameFromProxyUrl, sanitizeAssetDisplayName } from '@/lib/video-assets';
import { validateAnnotationStrokes } from '@/lib/validation';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ versionId: string }> };
const SAFE_IMAGE_PATH = /^\/api\/upload\/image\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\.[a-z0-9]+$/i;
@@ -180,7 +181,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
response.headers.set('ETag', etag);
return withCacheControl(response, 'private, no-cache');
} catch (error) {
console.error('Error fetching comments:', error);
logError('Error fetching comments:', error);
return apiErrors.internalError('Failed to fetch comments');
}
}
@@ -391,7 +392,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
parentAuthor: parentComment?.author?.name || parentComment?.guestName || 'Someone',
timestamp: ts,
url: `${baseUrl}/watch/${version.video.id}`,
}).catch((err) => console.error('Notification failed:', err));
}).catch((err) => logError('Notification failed:', err));
} else {
notifyProjectOwner(project.ownerId, {
type: 'new_comment',
@@ -401,7 +402,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
commentText: content?.trim() || (imageUrl ? '(image attachment)' : '(voice note)'),
timestamp: ts,
url: `${baseUrl}/watch/${version.video.id}`,
}).catch((err) => console.error('Notification failed:', err));
}).catch((err) => logError('Notification failed:', err));
}
}
@@ -428,7 +429,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
}
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating comment:', error);
logError('Error creating comment:', error);
return apiErrors.internalError('Failed to create comment');
}
}
@@ -7,6 +7,7 @@ import { getShareSessionFromRequest } from '@/lib/share-session';
import { resolveServerBunnyCdnHostname } from '@/lib/bunny-cdn';
import { NextRequest } from 'next/server';
import { DownloadEgressSource } from '@prisma/client';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ versionId: string }> };
type BunnyDownloadSourcePreference = 'auto' | 'original' | 'compressed';
@@ -483,12 +484,12 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
},
});
} catch (egressError) {
console.error('Failed to record download egress event:', egressError);
logError('Failed to record download egress event:', egressError);
}
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error downloading version:', error);
logError('Error downloading version:', error);
return apiErrors.internalError('Failed to download video');
}
}
@@ -10,6 +10,7 @@ import {
extractAudioFileNameFromProxyUrl,
getVideoAssetAccessContext,
} from '@/lib/video-assets';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string; assetId: string }> };
type BunnySourcePreference = 'auto' | 'original' | 'compressed';
@@ -205,7 +206,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error downloading asset:', error);
logError('Error downloading asset:', error);
return apiErrors.internalError('Failed to download asset');
}
}
@@ -10,6 +10,7 @@ import {
canDeleteAssetForViewer,
getVideoAssetAccessContext,
} from '@/lib/video-assets';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string; assetId: string }> };
@@ -94,7 +95,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting video asset:', error);
logError('Error deleting video asset:', error);
return apiErrors.internalError('Failed to delete asset');
}
}
@@ -13,6 +13,7 @@ import {
import { isBunnyUploadsFeatureEnabled } from '@/lib/feature-flags';
import { getShareSessionFromRequest } from '@/lib/share-session';
import { getVideoAssetAccessContext, SAFE_BUNNY_VIDEO_ID } from '@/lib/video-assets';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string }> };
@@ -58,7 +59,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
});
if (!bunnyRes.ok) {
console.error('Failed to create Bunny Stream video asset', await bunnyRes.text());
logError('Failed to create Bunny Stream video asset', await bunnyRes.text());
return apiErrors.internalError('Failed to initialize Bunny upload');
}
@@ -103,7 +104,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error initializing Bunny asset upload:', error);
logError('Error initializing Bunny asset upload:', error);
return apiErrors.internalError('Failed to initialize asset upload');
}
}
@@ -157,7 +158,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Pending upload cleaned up' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error cleaning up Bunny asset upload:', error);
logError('Error cleaning up Bunny asset upload:', error);
return apiErrors.internalError('Failed to cleanup pending upload');
}
}
+3 -2
View File
@@ -24,6 +24,7 @@ import {
getVideoAssetAccessContext,
sanitizeAssetDisplayName,
} from '@/lib/video-assets';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string }> };
@@ -260,7 +261,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
response.headers.set('ETag', etag);
return withCacheControl(response, 'private, no-cache');
} catch (error) {
console.error('Error fetching video assets:', error);
logError('Error fetching video assets:', error);
return apiErrors.internalError('Failed to fetch assets');
}
}
@@ -450,7 +451,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
}
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating video asset:', error);
logError('Error creating video asset:', error);
return apiErrors.internalError('Failed to create asset');
}
}
+3 -2
View File
@@ -3,6 +3,7 @@ import { db } from '@/lib/db';
import { auth, computeProjectAccess, projectAccessInclude } from '@/lib/auth';
import { apiErrors, successResponse } from '@/lib/api-response';
import { rateLimit } from '@/lib/rate-limit';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string }> };
@@ -62,7 +63,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
updatedAt: progress?.updatedAt || null,
});
} catch (error) {
console.error('Error fetching watch progress:', error);
logError('Error fetching watch progress:', error);
return apiErrors.internalError('Failed to fetch watch progress');
}
}
@@ -153,7 +154,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
percentage: watchProgress.percentage,
});
} catch (error) {
console.error('Error saving watch progress:', error);
logError('Error saving watch progress:', error);
return apiErrors.internalError('Failed to save watch progress');
}
}
+2 -1
View File
@@ -6,6 +6,7 @@ import { rateLimit } from '@/lib/rate-limit';
import { validateShareLinkAccess } from '@/lib/share-links';
import { getShareSessionFromRequest } from '@/lib/share-session';
import { getGuestIdentityFromRequest } from '@/lib/guest-identity';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string }> };
@@ -207,7 +208,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
return withCacheControl(response, 'private, no-cache');
} catch (error) {
console.error('Error fetching video:', error);
logError('Error fetching video:', error);
return apiErrors.internalError('Failed to fetch video');
}
}
@@ -12,6 +12,7 @@ import {
guestUploadTokenTtlSeconds,
type GuestUploadIntent,
} from '@/lib/guest-upload-token';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ videoId: string }> };
@@ -96,7 +97,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error issuing guest upload token:', error);
logError('Error issuing guest upload token:', error);
return apiErrors.internalError('Failed to issue upload token');
}
}
@@ -4,6 +4,7 @@ import { auth, checkWorkspaceAccess } from '@/lib/auth';
import { WorkspaceMemberRole } from '@prisma/client';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ workspaceId: string; memberId: string }> };
@@ -69,7 +70,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(updatedMember);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error updating member role:', error);
logError('Error updating member role:', error);
return apiErrors.internalError('Failed to update member role');
}
}
@@ -145,7 +146,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Member removed' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error removing member:', error);
logError('Error removing member:', error);
return apiErrors.internalError('Failed to remove member');
}
}
@@ -4,6 +4,7 @@ import { auth, checkWorkspaceAccess } from '@/lib/auth';
import { db } from '@/lib/db';
import { rateLimit } from '@/lib/rate-limit';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ workspaceId: string; invitationId: string }> };
@@ -68,7 +69,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Invitation canceled' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error canceling workspace invitation:', error);
logError('Error canceling workspace invitation:', error);
return apiErrors.internalError('Failed to cancel invitation');
}
}
@@ -5,6 +5,7 @@ import { InvitationRole, WorkspaceMemberRole } from '@prisma/client';
import { rateLimit } from '@/lib/rate-limit';
import { buildInvitationUrl, createOrRefreshInvitation, sendInvitationEmail } from '@/lib/invitations';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ workspaceId: string }> };
@@ -121,7 +122,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error fetching workspace members:', error);
logError('Error fetching workspace members:', error);
return apiErrors.internalError('Failed to fetch members');
}
}
@@ -218,7 +219,7 @@ export async function POST(request: NextRequest, { params }: RouteParams) {
const response = successResponse({ message: 'Invitation email sent.' });
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error inviting workspace member:', error);
logError('Error inviting workspace member:', error);
return apiErrors.internalError('Failed to invite member');
}
}
+4 -3
View File
@@ -6,6 +6,7 @@ import { collectWorkspaceMediaUrls, deleteMediaFilesBestEffort } from '@/lib/r2-
import { cleanupBunnyStreamVideosBestEffort } from '@/lib/bunny-stream-cleanup';
import { buildCleanupWarnings, logCleanupWarnings } from '@/lib/cleanup-warnings';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
type RouteParams = { params: Promise<{ workspaceId: string }> };
@@ -73,7 +74,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse(workspace);
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error fetching workspace:', error);
logError('Error fetching workspace:', error);
return apiErrors.internalError('Failed to fetch workspace');
}
}
@@ -123,7 +124,7 @@ export async function PATCH(request: NextRequest, { params }: RouteParams) {
const response = successResponse(workspace);
return withCacheControl(response, 'private, max-age=30, stale-while-revalidate=60');
} catch (error) {
console.error('Error updating workspace:', error);
logError('Error updating workspace:', error);
return apiErrors.internalError('Failed to update workspace');
}
}
@@ -215,7 +216,7 @@ export async function DELETE(request: NextRequest, { params }: RouteParams) {
});
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error deleting workspace:', error);
logError('Error deleting workspace:', error);
return apiErrors.internalError('Failed to delete workspace');
}
}
+3 -2
View File
@@ -4,6 +4,7 @@ import { auth } from '@/lib/auth';
import { rateLimit } from '@/lib/rate-limit';
import { buildBillingAccessWhereInput, getWorkspaceCreationEligibility } from '@/lib/billing';
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
import { logError } from '@/lib/logger';
// GET /api/workspaces - List all workspaces for the authenticated user
export async function GET(request: NextRequest) {
@@ -72,7 +73,7 @@ export async function GET(request: NextRequest) {
);
return withCacheControl(response, 'private, max-age=60, stale-while-revalidate=120');
} catch (error) {
console.error('Error fetching workspaces:', error);
logError('Error fetching workspaces:', error);
return apiErrors.internalError('Failed to fetch workspaces');
}
}
@@ -142,7 +143,7 @@ export async function POST(request: NextRequest) {
const response = successResponse(workspace, 201);
return withCacheControl(response, 'private, no-store');
} catch (error) {
console.error('Error creating workspace:', error);
logError('Error creating workspace:', error);
return apiErrors.internalError('Failed to create workspace');
}
}