1
+ import { createId } from "@/lib/api/create-id" ;
2
+ import { ExpandedLink } from "@/lib/api/links" ;
3
+ import { conn } from "@/lib/planetscale" ;
4
+ import { recordLink } from "@/lib/tinybird/record-link" ;
1
5
import { redis } from "@/lib/upstash" ;
6
+ import { getUrlFromStringIfValid , linkConstructorSimple } from "@dub/utils" ;
7
+ import { waitUntil } from "@vercel/functions" ;
2
8
import { NextResponse } from "next/server" ;
3
9
import { z } from "zod" ;
4
10
5
11
// POST /api/links/crawl/bitly – crawl a bitly link
6
12
export const POST = async ( req : Request ) => {
7
13
const body = await req . json ( ) ;
8
14
9
- const { domain, key, workspaceId } = z
15
+ const { domain, key } = z
10
16
. object ( {
11
17
domain : z . string ( ) ,
12
18
key : z . string ( ) ,
13
- workspaceId : z . string ( ) ,
14
19
} )
15
20
. parse ( body ) ;
16
21
@@ -21,11 +26,74 @@ export const POST = async (req: Request) => {
21
26
return NextResponse . json ( { error : "Not found" } , { status : 404 } ) ;
22
27
}
23
28
29
+ const workspaceId = "cm05wnnpo000711ztj05wwdbu" ;
30
+ const userId = "cm05wnd49000411ztg2xbup0i" ;
31
+ const folderId = "fold_LIZsdjTgFVbQVGYSUmYAi5vT" ;
32
+
24
33
const link = await crawlBitlyLink ( { domain, key, workspaceId } ) ;
25
34
26
- return link
27
- ? NextResponse . json ( link )
28
- : NextResponse . json ( { error : "Not found" } , { status : 404 } ) ;
35
+ if ( ! link ) {
36
+ return NextResponse . json ( { error : "Not found" } , { status : 404 } ) ;
37
+ }
38
+
39
+ const sanitizedUrl = getUrlFromStringIfValid ( link . long_url ) ;
40
+
41
+ if ( ! sanitizedUrl ) {
42
+ return NextResponse . json ( { error : "Not found" } , { status : 404 } ) ;
43
+ }
44
+
45
+ const newLink = {
46
+ id : createId ( { prefix : "link_" } ) ,
47
+ projectId : workspaceId ,
48
+ userId,
49
+ domain,
50
+ key,
51
+ url : sanitizedUrl ,
52
+ shortLink : linkConstructorSimple ( {
53
+ domain,
54
+ key,
55
+ } ) ,
56
+ archived : false ,
57
+ folderId,
58
+ createdAt : new Date ( link . created_at ) ,
59
+ updatedAt : new Date ( link . created_at ) ,
60
+ } ;
61
+
62
+ console . log ( "[Bitly] Creating link" , newLink ) ;
63
+
64
+ try {
65
+ await conn . execute (
66
+ "INSERT INTO Link (id, projectId, userId, domain, `key`, url, shortLink, archived, folderId, createdAt, updatedAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" ,
67
+ [
68
+ newLink . id ,
69
+ newLink . projectId ,
70
+ newLink . userId ,
71
+ newLink . domain ,
72
+ newLink . key ,
73
+ newLink . url ,
74
+ newLink . shortLink ,
75
+ newLink . archived ,
76
+ newLink . folderId ,
77
+ newLink . createdAt ,
78
+ newLink . updatedAt ,
79
+ ] ,
80
+ ) ;
81
+
82
+ waitUntil (
83
+ recordLink ( {
84
+ ...newLink ,
85
+ tenantId : null ,
86
+ programId : null ,
87
+ partnerId : null ,
88
+ tags : [ ] ,
89
+ } as unknown as ExpandedLink ) ,
90
+ ) ;
91
+
92
+ return NextResponse . json ( newLink ) ;
93
+ } catch ( error ) {
94
+ console . error ( "[Bitly] Error creating link" , error ) ;
95
+ return NextResponse . json ( { error : "Not found" } , { status : 404 } ) ;
96
+ }
29
97
} ;
30
98
31
99
async function crawlBitlyLink ( {
0 commit comments