mirror of
https://github.com/ZSCGR/CloudFlare-ImgBed.git
synced 2026-08-18 22:53:43 +08:00
100 lines
2.4 KiB
JavaScript
100 lines
2.4 KiB
JavaScript
import { authenticate, AUTH_SCOPE } from "../../utils/auth/authCore.js";
|
|
|
|
const DEFAULT_MANAGE_CACHE_CONTROL = 'private, no-store, max-age=0';
|
|
|
|
function withDefaultCacheControl(response) {
|
|
if (response.headers.has('Cache-Control')) {
|
|
return response;
|
|
}
|
|
|
|
const headers = new Headers(response.headers);
|
|
headers.set('Cache-Control', DEFAULT_MANAGE_CACHE_CONTROL);
|
|
|
|
return new Response(response.body, {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
headers,
|
|
});
|
|
}
|
|
|
|
async function errorHandling(context) {
|
|
try {
|
|
return withDefaultCacheControl(await context.next());
|
|
} catch (err) {
|
|
return new Response(`${err.message}\n${err.stack}`, {
|
|
status: 500,
|
|
headers: {
|
|
'Cache-Control': DEFAULT_MANAGE_CACHE_CONTROL,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function UnauthorizedException(reason) {
|
|
return new Response(reason, {
|
|
status: 401,
|
|
statusText: 'Unauthorized',
|
|
headers: {
|
|
'Content-Type': 'text/plain;charset=UTF-8',
|
|
'Cache-Control': 'no-store',
|
|
'Content-Length': reason.length,
|
|
},
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 根据请求路径提取所需权限
|
|
* @param {string} pathname - 请求路径
|
|
* @returns {string} 需要的权限类型
|
|
*/
|
|
function extractRequiredPermission(pathname) {
|
|
const pathParts = pathname.toLowerCase().split('/');
|
|
|
|
if (pathParts.includes('delete')) {
|
|
return 'delete';
|
|
}
|
|
|
|
if (pathParts.includes('list')) {
|
|
return 'list';
|
|
}
|
|
|
|
// 其他 /api/manage 下的操作需要管理权限
|
|
return 'manage';
|
|
}
|
|
|
|
// CORS 跨域响应头
|
|
const corsHeaders = {
|
|
'Access-Control-Allow-Origin': '*',
|
|
'Access-Control-Allow-Methods': 'GET, POST, DELETE, PUT, PATCH, OPTIONS',
|
|
'Access-Control-Allow-Headers': 'Content-Type, Authorization',
|
|
'Access-Control-Max-Age': '86400',
|
|
};
|
|
|
|
async function authentication(context) {
|
|
// OPTIONS 预检请求不需要鉴权,直接返回 CORS 响应
|
|
if (context.request.method === 'OPTIONS') {
|
|
return new Response(null, {
|
|
status: 204,
|
|
headers: corsHeaders
|
|
});
|
|
}
|
|
|
|
const pathname = new URL(context.request.url).pathname;
|
|
const requiredPermission = extractRequiredPermission(pathname);
|
|
|
|
const result = await authenticate({
|
|
env: context.env,
|
|
request: context.request,
|
|
requiredPermission,
|
|
authScope: AUTH_SCOPE.ADMIN,
|
|
});
|
|
|
|
if (!result.authorized) {
|
|
return UnauthorizedException('You need to login');
|
|
}
|
|
|
|
return context.next();
|
|
}
|
|
|
|
export const onRequest = [errorHandling, authentication];
|