🎉 first commit
This commit is contained in:
45
app/routes/api.deployments.$action/stats.server.ts
Normal file
45
app/routes/api.deployments.$action/stats.server.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import { prisma } from '~/lib/.server/prisma';
|
||||
import { errorResponse, successResponse } from '~/utils/api-response';
|
||||
import { createScopedLogger } from '~/utils/logger';
|
||||
|
||||
const logger = createScopedLogger('api.deployments.stats');
|
||||
|
||||
export type GetDeploymentStatsArgs = {
|
||||
userId: string;
|
||||
};
|
||||
|
||||
export async function getDeploymentStats({ userId }: GetDeploymentStatsArgs) {
|
||||
try {
|
||||
const totalSites = await prisma.deployment.count({
|
||||
where: { userId },
|
||||
});
|
||||
|
||||
const platformStats = await prisma.deployment.groupBy({
|
||||
by: ['platform'],
|
||||
_count: {
|
||||
id: true,
|
||||
},
|
||||
where: { userId },
|
||||
});
|
||||
|
||||
const sitesByPlatform = platformStats.reduce(
|
||||
(acc, stat) => {
|
||||
acc[stat.platform] = stat._count.id;
|
||||
return acc;
|
||||
},
|
||||
{} as Record<string, number>,
|
||||
);
|
||||
|
||||
return successResponse(
|
||||
{
|
||||
totalSites,
|
||||
sitesByPlatform,
|
||||
totalDays: 30,
|
||||
},
|
||||
'获取部署统计数据成功',
|
||||
);
|
||||
} catch (error) {
|
||||
logger.error('获取部署统计数据失败:', error);
|
||||
return errorResponse(500, error instanceof Error ? error.message : '获取部署统计数据失败');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user