mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
A Bunny init asked the quota whether it could store zero bytes, which is a question with only one answer. Nothing an upload was about to consume was visible to the next request, so every init inside the same window read the same total and every one of them passed, and an upload that could never fit was only refused after it had been sent. The client now declares the size up front. It is checked against the account's remaining room before Bunny is asked for anything, and held as a reservation the next init has to see. The declaration is a claim rather than proof, so it is signed into the upload token: the same token already binds the video id, which is what makes the reservation safe to release on a caller's say-so, since releasing it costs them the video it belongs to. The declared size is then written onto the version or asset row and the reservation is dropped in the same transaction, because Bunny reports no size at all for a video until it has finished encoding it. On a half hour of footage that is most of an hour during which the upload did not appear on the uploader's own storage page and did not count against the next upload. Per-video accounting now takes the larger of what Bunny reports and what was declared, so the estimate stands in until the real figure arrives and Bunny's wins once it does. Two smaller things came out of the same reading. The asset route's in-transaction fallback compared against the plan limit, so a caller quoting a reservation that no longer existed was measured against 200 GiB even on a trial worth three. And the guest branch reserves without being able to release early, because a guest grant is bound to our video id and the caller's network context rather than to the Bunny video, which would let the reservation be dropped while the upload it stands for carried on.
236 lines
8.9 KiB
TypeScript
236 lines
8.9 KiB
TypeScript
import crypto from 'crypto';
|
|
import { NextRequest } from 'next/server';
|
|
import { apiErrors, successResponse, withCacheControl } from '@/lib/api-response';
|
|
import { rateLimit } from '@/lib/rate-limit';
|
|
import {
|
|
createBunnyUploadToken,
|
|
readBunnyUploadGrant,
|
|
verifyBunnyUploadToken,
|
|
} from '@/lib/bunny-upload-token';
|
|
import { cleanupBunnyStreamVideos } from '@/lib/bunny-stream-cleanup';
|
|
import {
|
|
createGuestUploadToken,
|
|
deriveGuestUploadContext,
|
|
enforceGuestUploadQuota,
|
|
verifyGuestUploadToken,
|
|
} from '@/lib/guest-upload-token';
|
|
import { getMaxVideoUploadBytes, isBunnyUploadsEnabled } 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';
|
|
import {
|
|
enforceStorageQuota,
|
|
releaseStorageReservation,
|
|
reserveStorageQuota,
|
|
} from '@/lib/storage-quota';
|
|
import { parseDeclaredUploadSize } from '@/lib/upload-size';
|
|
|
|
type RouteParams = { params: Promise<{ videoId: string }> };
|
|
|
|
// Matches the project video path: long enough to outlive a slow upload and
|
|
// Bunny's own reporting delay.
|
|
const BUNNY_RESERVATION_TTL_MS = 2 * 60 * 60 * 1000;
|
|
|
|
// POST /api/videos/[videoId]/assets/bunny-init
|
|
export async function POST(request: NextRequest, { params }: RouteParams) {
|
|
try {
|
|
const limited = await rateLimit(request, 'asset-bunny-init');
|
|
if (limited) return limited;
|
|
|
|
const { videoId } = await params;
|
|
const context = await getVideoAssetAccessContext(request, videoId, 'COMMENT');
|
|
if (!context) return apiErrors.notFound('Video');
|
|
if (!context.canUploadAssets) return apiErrors.forbidden('Access denied');
|
|
|
|
const body = await request.json().catch(() => null);
|
|
const title = typeof body?.title === 'string' ? body.title.trim() : '';
|
|
if (!title) return apiErrors.badRequest('Title is required');
|
|
|
|
if (!isBunnyUploadsEnabled()) {
|
|
return apiErrors.badRequest('Direct uploads are disabled by this host');
|
|
}
|
|
|
|
// See the project video route for why the client's declared size is asked for
|
|
// and what it is worth: it buys an honest refusal before the upload starts,
|
|
// and a reservation that concurrent uploads can see.
|
|
const declaredSize = parseDeclaredUploadSize(body?.sizeBytes, getMaxVideoUploadBytes());
|
|
if ('error' in declaredSize) {
|
|
return apiErrors.badRequest(declaredSize.error);
|
|
}
|
|
|
|
const billedUserId = context.video.project.workspace.ownerId;
|
|
const quotaError = await enforceStorageQuota(billedUserId, declaredSize.sizeBytes);
|
|
if (quotaError) return quotaError;
|
|
|
|
const shareSession = getShareSessionFromRequest(request, context.video.id);
|
|
if (!context.viewerUserId) {
|
|
const quotaError = await enforceGuestUploadQuota(
|
|
request,
|
|
context.video.id,
|
|
'bunny',
|
|
shareSession?.token ?? null
|
|
);
|
|
if (quotaError) return quotaError;
|
|
}
|
|
|
|
const reserveResult = await reserveStorageQuota(
|
|
billedUserId,
|
|
declaredSize.sizeBytes,
|
|
BUNNY_RESERVATION_TTL_MS
|
|
);
|
|
if ('error' in reserveResult) return reserveResult.error;
|
|
const { reservationId } = reserveResult;
|
|
|
|
const apiKey = process.env.BUNNY_STREAM_API_KEY;
|
|
const libraryId =
|
|
process.env.BUNNY_STREAM_LIBRARY_ID || process.env.NEXT_PUBLIC_BUNNY_STREAM_LIBRARY_ID;
|
|
if (!apiKey || !libraryId) {
|
|
await releaseStorageReservation(reservationId, billedUserId);
|
|
return apiErrors.internalError('Bunny Stream is not configured correctly');
|
|
}
|
|
|
|
const bunnyRes = await fetch(`https://video.bunnycdn.com/library/${libraryId}/videos`, {
|
|
method: 'POST',
|
|
headers: {
|
|
AccessKey: apiKey,
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
body: JSON.stringify({ title }),
|
|
});
|
|
|
|
if (!bunnyRes.ok) {
|
|
await releaseStorageReservation(reservationId, billedUserId);
|
|
logError('Failed to create Bunny Stream video asset', await bunnyRes.text());
|
|
return apiErrors.internalError('Failed to initialize Bunny upload');
|
|
}
|
|
|
|
const bunnyVideo = await bunnyRes.json();
|
|
const bunnyVideoId = typeof bunnyVideo?.guid === 'string' ? bunnyVideo.guid.trim() : '';
|
|
if (!bunnyVideoId || !SAFE_BUNNY_VIDEO_ID.test(bunnyVideoId)) {
|
|
await releaseStorageReservation(reservationId, billedUserId);
|
|
return apiErrors.internalError('Upload provider did not return a valid video identifier');
|
|
}
|
|
|
|
const expirationTime = Math.floor(Date.now() / 1000) + 3600;
|
|
const hash = crypto.createHash('sha256');
|
|
hash.update(libraryId + apiKey + expirationTime + bunnyVideoId);
|
|
const signature = hash.digest('hex');
|
|
|
|
let uploadToken = '';
|
|
if (context.viewerUserId) {
|
|
uploadToken = createBunnyUploadToken(
|
|
{
|
|
userId: context.viewerUserId,
|
|
projectId: context.video.projectId,
|
|
videoId: bunnyVideoId,
|
|
reservationId,
|
|
},
|
|
3600
|
|
);
|
|
} else {
|
|
const expectedContext = deriveGuestUploadContext(request, shareSession?.token ?? null);
|
|
if (!expectedContext) {
|
|
await releaseStorageReservation(reservationId, billedUserId);
|
|
return apiErrors.forbidden('Missing trusted client IP header');
|
|
}
|
|
|
|
// No reservation id in the guest grant, so a guest cancelling waits out the
|
|
// two hours instead of getting the quota back at once. The guest token is
|
|
// bound to our own video id and the caller's network context, not to the
|
|
// Bunny video being uploaded, so a released-on-request reservation could be
|
|
// dropped while the upload it stands for carried on. Guests are capped at
|
|
// four of these per quarter hour, which bounds what the wait can cost.
|
|
|
|
uploadToken = createGuestUploadToken(
|
|
{
|
|
projectId: context.video.projectId,
|
|
videoId: context.video.id,
|
|
intent: 'bunny',
|
|
context: expectedContext,
|
|
},
|
|
3600
|
|
);
|
|
}
|
|
|
|
const response = successResponse({
|
|
videoId: bunnyVideoId,
|
|
libraryId,
|
|
signature,
|
|
expirationTime,
|
|
uploadToken,
|
|
});
|
|
return withCacheControl(response, 'private, no-store');
|
|
} catch (error) {
|
|
logError('Error initializing Bunny asset upload:', error);
|
|
return apiErrors.internalError('Failed to initialize asset upload');
|
|
}
|
|
}
|
|
|
|
// DELETE /api/videos/[videoId]/assets/bunny-init
|
|
export async function DELETE(request: NextRequest, { params }: RouteParams) {
|
|
try {
|
|
const limited = await rateLimit(request, 'asset-bunny-init');
|
|
if (limited) return limited;
|
|
|
|
const { videoId } = await params;
|
|
const context = await getVideoAssetAccessContext(request, videoId, 'COMMENT');
|
|
if (!context) return apiErrors.notFound('Video');
|
|
if (!context.canUploadAssets) return apiErrors.forbidden('Access denied');
|
|
|
|
const body = await request.json().catch(() => null);
|
|
const bunnyVideoId = typeof body?.videoId === 'string' ? body.videoId.trim() : '';
|
|
const uploadToken = typeof body?.uploadToken === 'string' ? body.uploadToken.trim() : '';
|
|
if (!bunnyVideoId || !uploadToken || !SAFE_BUNNY_VIDEO_ID.test(bunnyVideoId)) {
|
|
return apiErrors.badRequest('videoId and uploadToken are required');
|
|
}
|
|
|
|
if (context.viewerUserId) {
|
|
const isValidUploadToken = verifyBunnyUploadToken(uploadToken, {
|
|
userId: context.viewerUserId,
|
|
projectId: context.video.projectId,
|
|
videoId: bunnyVideoId,
|
|
});
|
|
if (!isValidUploadToken) {
|
|
return apiErrors.forbidden('Invalid Bunny upload token');
|
|
}
|
|
} else {
|
|
const shareSession = getShareSessionFromRequest(request, context.video.id);
|
|
const expectedContext = deriveGuestUploadContext(request, shareSession?.token ?? null);
|
|
if (!expectedContext) {
|
|
return apiErrors.forbidden('Missing trusted client IP header');
|
|
}
|
|
|
|
const isValidUploadToken = verifyGuestUploadToken(uploadToken, {
|
|
projectId: context.video.projectId,
|
|
videoId: context.video.id,
|
|
intent: 'bunny',
|
|
context: expectedContext,
|
|
});
|
|
if (!isValidUploadToken) {
|
|
return apiErrors.forbidden('Invalid Bunny upload token');
|
|
}
|
|
}
|
|
|
|
if (context.viewerUserId) {
|
|
// Safe on the caller's say-so because the reservation id is signed into the
|
|
// same token as this Bunny video id: releasing it costs them the video.
|
|
await releaseStorageReservation(
|
|
readBunnyUploadGrant(uploadToken, {
|
|
userId: context.viewerUserId,
|
|
projectId: context.video.projectId,
|
|
videoId: bunnyVideoId,
|
|
})?.reservationId ?? null,
|
|
context.video.project.workspace.ownerId
|
|
);
|
|
}
|
|
|
|
await cleanupBunnyStreamVideos([{ providerId: 'bunny', videoId: bunnyVideoId }]);
|
|
const response = successResponse({ message: 'Pending upload cleaned up' });
|
|
return withCacheControl(response, 'private, no-store');
|
|
} catch (error) {
|
|
logError('Error cleaning up Bunny asset upload:', error);
|
|
return apiErrors.internalError('Failed to cleanup pending upload');
|
|
}
|
|
}
|