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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
import path from "node:path";
import { buildDBClient, migrateDB, SqliteQueue } from "liteque";
import { z } from "zod";
import serverConfig from "./config";
const QUEUE_DB_PATH = path.join(serverConfig.dataDir, "queue.db");
const queueDB = buildDBClient(QUEUE_DB_PATH);
export function runQueueDBMigrations() {
migrateDB(queueDB);
}
// Link Crawler
export const zCrawlLinkRequestSchema = z.object({
bookmarkId: z.string(),
runInference: z.boolean().optional(),
archiveFullPage: z.boolean().optional().default(false),
});
export type ZCrawlLinkRequest = z.input<typeof zCrawlLinkRequestSchema>;
export const LinkCrawlerQueue = new SqliteQueue<ZCrawlLinkRequest>(
"link_crawler_queue",
queueDB,
{
defaultJobArgs: {
numRetries: 5,
},
keepFailedJobs: false,
},
);
// OpenAI Worker
export const zOpenAIRequestSchema = z.object({
bookmarkId: z.string(),
});
export type ZOpenAIRequest = z.infer<typeof zOpenAIRequestSchema>;
export const OpenAIQueue = new SqliteQueue<ZOpenAIRequest>(
"openai_queue",
queueDB,
{
defaultJobArgs: {
numRetries: 3,
},
keepFailedJobs: false,
},
);
// Search Indexing Worker
export const zSearchIndexingRequestSchema = z.object({
bookmarkId: z.string(),
type: z.enum(["index", "delete"]),
});
export type ZSearchIndexingRequest = z.infer<
typeof zSearchIndexingRequestSchema
>;
export const SearchIndexingQueue = new SqliteQueue<ZSearchIndexingRequest>(
"searching_indexing",
queueDB,
{
defaultJobArgs: {
numRetries: 5,
},
keepFailedJobs: false,
},
);
// Tidy Assets Worker
export const zTidyAssetsRequestSchema = z.object({
cleanDanglingAssets: z.boolean().optional().default(false),
syncAssetMetadata: z.boolean().optional().default(false),
});
export type ZTidyAssetsRequest = z.infer<typeof zTidyAssetsRequestSchema>;
export const TidyAssetsQueue = new SqliteQueue<ZTidyAssetsRequest>(
"tidy_assets_queue",
queueDB,
{
defaultJobArgs: {
numRetries: 1,
},
keepFailedJobs: false,
},
);
export async function triggerSearchReindex(bookmarkId: string) {
await SearchIndexingQueue.enqueue({
bookmarkId,
type: "index",
});
}
export async function triggerSearchDeletion(bookmarkId: string) {
await SearchIndexingQueue.enqueue({
bookmarkId: bookmarkId,
type: "delete",
});
}
export const zvideoRequestSchema = z.object({
bookmarkId: z.string(),
url: z.string(),
});
export type ZVideoRequest = z.infer<typeof zvideoRequestSchema>;
export const VideoWorkerQueue = new SqliteQueue<ZVideoRequest>(
"video_queue",
queueDB,
{
defaultJobArgs: {
numRetries: 5,
},
keepFailedJobs: false,
},
);
export async function triggerVideoWorker(bookmarkId: string, url: string) {
await VideoWorkerQueue.enqueue({
bookmarkId,
url,
});
}
// Feed Worker
export const zFeedRequestSchema = z.object({
feedId: z.string(),
});
export type ZFeedRequestSchema = z.infer<typeof zFeedRequestSchema>;
export const FeedQueue = new SqliteQueue<ZFeedRequestSchema>(
"feed_queue",
queueDB,
{
defaultJobArgs: {
// One retry is enough for the feed queue given that it's periodic
numRetries: 1,
},
keepFailedJobs: false,
},
);
|