🎉 first commit

This commit is contained in:
LIlGG
2025-09-24 13:06:25 +08:00
commit 1f4fb103e9
409 changed files with 61222 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
import { getVercelConnectionSettings } from '~/lib/.server/connectionSettings';
import { errorResponse, successResponse } from '~/utils/api-response';
import { createScopedLogger } from '~/utils/logger';
const logger = createScopedLogger('api.vercel.stats');
export type GetVercelStatsArgs = {
userId: string;
};
export async function getVercelStats({ userId }: GetVercelStatsArgs) {
try {
const connectionSettings = await getVercelConnectionSettings(userId);
if (!connectionSettings) {
return errorResponse(401, '未连接到Vercel请先设置访问令牌');
}
const { token } = connectionSettings;
const projectsResponse = await fetch('https://api.vercel.com/v9/projects', {
headers: {
Authorization: `Bearer ${token}`,
'Content-Type': 'application/json',
},
});
if (!projectsResponse.ok) {
return errorResponse(projectsResponse.status, '获取项目列表失败');
}
const projectsData = await projectsResponse.json();
const projects = projectsData.projects || [];
const projectsWithDeployments = await Promise.all(
projects.map(async (project: any) => {
try {
const deploymentsResponse = await fetch(
`https://api.vercel.com/v6/deployments?projectId=${project.id}&limit=1`,
{
headers: {
Authorization: `Bearer ${token}`,
'Content-Type': 'application/json',
},
},
);
if (deploymentsResponse.ok) {
const deploymentsData = await deploymentsResponse.json();
return {
...project,
latestDeployments: deploymentsData.deployments || [],
};
}
return project;
} catch (error) {
logger.error(`获取项目 ${project.id} 的部署信息失败:`, error);
return project;
}
}),
);
return successResponse(
{
projects: projectsWithDeployments,
totalProjects: projectsWithDeployments.length,
},
'获取 Vercel 项目统计信息成功',
);
} catch (error) {
logger.error('获取 Vercel 项目统计信息失败:', error);
return errorResponse(500, '获取 Vercel 项目统计信息失败');
}
}