Skip to content

Commit 8488368

Browse files
authored
Merge pull request #2119 from dubinc/fix-crawl
Fix crawl by moving to function
2 parents 959c11a + b6acc4e commit 8488368

File tree

2 files changed

+76
-95
lines changed

2 files changed

+76
-95
lines changed

apps/web/app/api/links/crawl/bitly/route.ts

+73-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
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";
15
import { redis } from "@/lib/upstash";
6+
import { getUrlFromStringIfValid, linkConstructorSimple } from "@dub/utils";
7+
import { waitUntil } from "@vercel/functions";
28
import { NextResponse } from "next/server";
39
import { z } from "zod";
410

511
// POST /api/links/crawl/bitly – crawl a bitly link
612
export const POST = async (req: Request) => {
713
const body = await req.json();
814

9-
const { domain, key, workspaceId } = z
15+
const { domain, key } = z
1016
.object({
1117
domain: z.string(),
1218
key: z.string(),
13-
workspaceId: z.string(),
1419
})
1520
.parse(body);
1621

@@ -21,11 +26,74 @@ export const POST = async (req: Request) => {
2126
return NextResponse.json({ error: "Not found" }, { status: 404 });
2227
}
2328

29+
const workspaceId = "cm05wnnpo000711ztj05wwdbu";
30+
const userId = "cm05wnd49000411ztg2xbup0i";
31+
const folderId = "fold_LIZsdjTgFVbQVGYSUmYAi5vT";
32+
2433
const link = await crawlBitlyLink({ domain, key, workspaceId });
2534

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+
}
2997
};
3098

3199
async function crawlBitlyLink({

apps/web/lib/middleware/bitly.ts

+3-90
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,5 @@
1-
import {
2-
APP_DOMAIN,
3-
getUrlFromStringIfValid,
4-
linkConstructorSimple,
5-
} from "@dub/utils";
6-
import { waitUntil } from "@vercel/functions";
7-
import { z } from "zod";
8-
import { ExpandedLink } from "../api/links";
9-
10-
import { createId } from "../api/create-id";
1+
import { APP_DOMAIN } from "@dub/utils";
112
import { EdgeLinkProps } from "../planetscale";
12-
import { conn } from "../planetscale/connection";
13-
import { recordLink } from "../tinybird/record-link";
14-
15-
const crawlBitlyResultSchema = z.object({
16-
id: z.string(),
17-
long_url: z.string(),
18-
created_at: z.string(),
19-
});
203

214
// Create a new Bitly-hosted link to Dub on-demand (e.g. buff.ly)
225
export const importBitlyLink = async ({
@@ -26,89 +9,19 @@ export const importBitlyLink = async ({
269
domain: string;
2710
key: string;
2811
}) => {
29-
const workspaceId = "cm05wnnpo000711ztj05wwdbu";
30-
const userId = "cm05wnd49000411ztg2xbup0i";
31-
const folderId = "fold_LIZsdjTgFVbQVGYSUmYAi5vT";
32-
33-
let link: z.infer<typeof crawlBitlyResultSchema> | null = null;
34-
3512
try {
3613
const result = await fetch(`${APP_DOMAIN}/api/links/crawl/bitly`, {
3714
method: "POST",
38-
body: JSON.stringify({ domain, key, workspaceId }),
15+
body: JSON.stringify({ domain, key }),
3916
});
4017

4118
if (result.status === 404) {
4219
return null;
4320
}
4421

45-
link = crawlBitlyResultSchema.parse(await result.json());
22+
return (await result.json()) as EdgeLinkProps;
4623
} catch (e) {
4724
console.error("[Bitly] Error crawling Bitly link", e);
4825
return null;
4926
}
50-
51-
if (!link) {
52-
return null;
53-
}
54-
55-
const sanitizedUrl = getUrlFromStringIfValid(link.long_url);
56-
57-
if (!sanitizedUrl) {
58-
return null;
59-
}
60-
61-
const newLink = {
62-
id: createId({ prefix: "link_" }),
63-
projectId: workspaceId,
64-
userId,
65-
domain,
66-
key,
67-
url: sanitizedUrl,
68-
shortLink: linkConstructorSimple({
69-
domain,
70-
key,
71-
}),
72-
archived: false,
73-
folderId,
74-
createdAt: new Date(link.created_at),
75-
updatedAt: new Date(link.created_at),
76-
};
77-
78-
console.log("[Bitly] Creating link", newLink);
79-
80-
try {
81-
await conn.execute(
82-
"INSERT INTO Link (id, projectId, userId, domain, `key`, url, shortLink, archived, folderId, createdAt, updatedAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
83-
[
84-
newLink.id,
85-
newLink.projectId,
86-
newLink.userId,
87-
newLink.domain,
88-
newLink.key,
89-
newLink.url,
90-
newLink.shortLink,
91-
newLink.archived,
92-
newLink.folderId,
93-
newLink.createdAt,
94-
newLink.updatedAt,
95-
],
96-
);
97-
98-
// TODO: fetch tags
99-
waitUntil(
100-
recordLink({
101-
...newLink,
102-
tenantId: null,
103-
programId: null,
104-
partnerId: null,
105-
tags: [],
106-
} as unknown as ExpandedLink),
107-
);
108-
109-
return newLink as unknown as EdgeLinkProps;
110-
} catch (error) {
111-
console.error("[Bitly] Error creating link", error);
112-
return null;
113-
}
11427
};

0 commit comments

Comments
 (0)