-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpast-week-tools.ts
33 lines (27 loc) · 1.23 KB
/
past-week-tools.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import type { NextApiRequest, NextApiResponse } from 'next';
import ProductsService from '@/utils/supabase/services/products';
import { createBrowserClient } from '@/utils/supabase/browser';
import { simpleToolApiDtoFormatter } from '@/pages/api/api-formatters';
import { cache } from '@/utils/supabase/services/CacheService';
import ApiService from '@/utils/supabase/services/api';
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
let limit = parseInt((req.query.limit as string) || '2');
if (limit < 1) limit = 2;
const today = new Date();
const productService = new ProductsService(createBrowserClient());
const currentWeek = await productService.getWeekNumber(today, 2) - 1;
const tools = await cache.get(
`past-week-tools-api-${today.getFullYear()}-${currentWeek}-${limit}`,
async () => {
return await productService.getPrevLaunchWeeks(today.getFullYear(), 2, currentWeek, limit);
},
60,
);
const result = tools.map(i => ({
...i,
products: i.products.map(simpleToolApiDtoFormatter),
}));
const apiService = new ApiService();
await apiService.insertLog({ type: 'past-week-tools', data: JSON.stringify({ today, currentWeek, tools: result }) });
res.json(result);
}