🎉 first commit
This commit is contained in:
60
app/routes/api.netlify.sites.$siteId.ts
Normal file
60
app/routes/api.netlify.sites.$siteId.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
import { type ActionFunctionArgs } from '@remix-run/node';
|
||||
import { requireAuth } from '~/lib/.server/auth';
|
||||
import { getNetlifyConnectionSettings } from '~/lib/.server/connectionSettings';
|
||||
import { deleteDeploymentsByPlatformAndId } from '~/lib/.server/deployment';
|
||||
import { DeploymentPlatformEnum } from '~/types/deployment';
|
||||
import { errorResponse, successResponse } from '~/utils/api-response';
|
||||
import { createScopedLogger } from '~/utils/logger';
|
||||
|
||||
const logger = createScopedLogger('api.netlify.sites');
|
||||
|
||||
export async function action({ request, params }: ActionFunctionArgs) {
|
||||
if (request.method !== 'DELETE') {
|
||||
return errorResponse(405, '方法不允许');
|
||||
}
|
||||
|
||||
const authResult = await requireAuth(request, { isApi: true });
|
||||
if (authResult instanceof Response) {
|
||||
return authResult;
|
||||
}
|
||||
|
||||
const userId = authResult.userInfo?.sub;
|
||||
if (!userId) {
|
||||
return errorResponse(401, '用户未登录');
|
||||
}
|
||||
|
||||
const { siteId } = params;
|
||||
if (!siteId) {
|
||||
return errorResponse(400, '缺少站点 ID');
|
||||
}
|
||||
|
||||
try {
|
||||
const connectionSettings = await getNetlifyConnectionSettings(userId);
|
||||
|
||||
if (!connectionSettings) {
|
||||
return errorResponse(401, '未连接到 Netlify,请先设置访问令牌');
|
||||
}
|
||||
|
||||
const { token } = connectionSettings;
|
||||
|
||||
const response = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Authorization: `Bearer ${token}`,
|
||||
},
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const errorText = await response.text();
|
||||
logger.error(`删除站点失败: ${response.status} ${errorText}`);
|
||||
return errorResponse(response.status, '删除站点失败');
|
||||
}
|
||||
|
||||
await deleteDeploymentsByPlatformAndId(DeploymentPlatformEnum.NETLIFY, siteId);
|
||||
logger.info(`用户 ${userId} 成功删除了站点 ${siteId}`);
|
||||
return successResponse({}, '站点删除成功');
|
||||
} catch (error) {
|
||||
logger.error('删除站点失败:', error);
|
||||
return errorResponse(500, '删除站点失败');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user