-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathchat-gpt.ts
71 lines (60 loc) · 1.91 KB
/
chat-gpt.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import type { NextApiRequest, NextApiResponse } from 'next';
import ProductsService from '@/utils/supabase/services/products';
import { createBrowserClient } from '@/utils/supabase/browser';
import { Product } from '@/utils/supabase/types';
import { ExtendedProduct } from '@/utils/supabase/CustomTypes';
import {checkAuthToken} from "@/pages/api/auth-token";
export interface ChatGptDto {
status: string
message: string
data: ChatGtpDtoData
}
export interface ChatGtpDtoData {
date: string
tools: ChatGtpDtoDataTool[]
footer: string
}
export interface ChatGtpDtoDataTool {
tool_id: number
name: string
description: string
image_link: string
date_added: string
developer: string
upvotes: string
upvote_link: string
}
function prepareSuccessDto(input: string, tools: ExtendedProduct[]): ChatGtpDto {
return {
status: 'success',
message: `Tools containing "${input}" in any way`,
data: {
tools: tools.map((t: ExtendedProduct) => ({
tool_id: t.id,
name: t.name,
description: t.description,
image_link: t.logo_url,
data_added: new Date(t.created_at).toISOString().split('T')[0],
developer: t.profiles.full_name,
upvotes: t.votes_count || '-',
upvote_link: `https://devhunt.org/tool/${t.slug}`
})),
footer: 'Discover your next tool https://devhunt.org/ '
}
};
}
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
let { input } = req.query;
const errorPayload = {
status: 'error',
data: null
};
if (!input) {
input = '';
}
const tools = await new ProductsService(createBrowserClient()).getToolsByNameOrDescription(input as string, 10);
if (!tools) {
res.json({ ...errorPayload, message: 'Nothing found' });
}
res.json(prepareSuccessDto(input as string, tools as ExtendedProduct[]));
}