-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
403 lines (369 loc) · 11 KB
/
server.js
File metadata and controls
403 lines (369 loc) · 11 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import express from "express";
import path from "node:path";
import { fileURLToPath } from "node:url";
import { normalizeWordPressData } from "./src/parser.js";
import { analyzeCorpus, buildProfileArtifacts, generateArtifacts } from "./src/generator.js";
import { fetchByUrl } from "./src/url_extract.js";
import { convertWordPressXmlToObsidian, parseMultipartXmlUpload } from "./src/xml_bridge.js";
import {
applyProfileCorrection,
listProfiles,
listProfileVersions,
readNormalizedItems,
readProfile,
rollbackProfileStore,
saveProfile,
toSlug
} from "./src/profile_store.js";
const app = express();
const port = Number(process.env.PORT || 3000);
const ADMIN_API_KEY = String(process.env.ADMIN_API_KEY || "").trim();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const publicDir = path.join(__dirname, "public");
app.use(express.json({ limit: "20mb" }));
app.use(express.static(publicDir));
export function logServerError(context, error) {
// eslint-disable-next-line no-console
console.error(`[${context}]`, error);
}
export function sendSafeError(res, {
status = 500,
message = "Internal server error.",
context = "server",
error
}) {
if (error) {
logServerError(context, error);
}
return res.status(status).json({ error: message });
}
export function readAdminKey(req) {
const headerValue = String(req.get("x-admin-key") || "").trim();
if (headerValue) return headerValue;
const authHeader = String(req.get("authorization") || "");
const bearerMatch = authHeader.match(/^Bearer\s+(.+)$/i);
return bearerMatch ? bearerMatch[1].trim() : "";
}
export function requireAdminForMutation(req, res, next, expectedAdminKey = ADMIN_API_KEY) {
if (!expectedAdminKey) {
return sendSafeError(res, {
status: 503,
message: "Admin actions are not configured.",
context: "admin-auth"
});
}
if (readAdminKey(req) !== expectedAdminKey) {
return sendSafeError(res, {
status: 403,
message: "Forbidden.",
context: "admin-auth"
});
}
return next();
}
app.get("/api/health", (_req, res) => {
res.json({
ok: true,
aiConfigured: Boolean(process.env.OPENAI_API_KEY),
blobConfigured: Boolean(process.env.BLOB_READ_WRITE_TOKEN),
timestamp: new Date().toISOString()
});
});
app.get("/", (_req, res) => {
res.sendFile(path.join(publicDir, "index.html"));
});
app.post("/api/normalize", (req, res) => {
try {
const items = normalizeWordPressData(req.body?.data);
res.json({
items,
metadata: { itemCount: items.length }
});
} catch (error) {
sendSafeError(res, {
status: 400,
message: "Invalid source payload.",
context: "normalize",
error
});
}
});
app.post("/api/extract-url", async (req, res) => {
try {
const url = req.body?.url;
const platform = req.body?.platform ?? "auto";
if (!url) return res.status(400).json({ error: "Missing url" });
const items = await fetchByUrl(url, platform);
res.json({
items,
metadata: { itemCount: items.length }
});
} catch (error) {
sendSafeError(res, {
status: 400,
message: "Failed to extract content from URL.",
context: "extract-url",
error
});
}
});
export function handleConvertXmlRequest(req, res) {
const knownClientCodes = new Set(["invalid_xml", "unsupported_format", "empty_export"]);
try {
const contentType = typeof req.get === "function"
? req.get("content-type")
: req.headers?.["content-type"] ?? "";
const xmlText = parseMultipartXmlUpload(req.body, contentType);
const { zipBuffer, metadata } = convertWordPressXmlToObsidian(xmlText);
const headerMetadata = {
totalItems: metadata.totalItems,
convertedItems: metadata.convertedItems,
skippedItems: metadata.skippedItems,
warningCount: metadata.warningCount,
firstWarning: Array.isArray(metadata.warnings) && metadata.warnings.length
? String(metadata.warnings[0]).slice(0, 240)
: ""
};
res.setHeader("Content-Type", "application/zip");
res.setHeader("Content-Disposition", "attachment; filename=\"obsidian-export.zip\"");
res.setHeader("X-Conversion-Report", encodeURIComponent(JSON.stringify(headerMetadata)));
return res.status(200).send(zipBuffer);
} catch (error) {
const code = String(error?.code || "");
const status = knownClientCodes.has(code) ? 400 : 500;
const message = status === 400
? error.message
: "Failed to convert XML export.";
return sendSafeError(res, {
status,
message,
context: "convert-xml",
error: status === 400 ? undefined : error
});
}
}
app.post(
"/api/convert-xml",
express.raw({ type: "multipart/form-data", limit: "25mb" }),
handleConvertXmlRequest
);
app.post("/api/analyze", (req, res) => {
try {
const items = req.body?.items;
const options = req.body?.options ?? {};
if (!Array.isArray(items) || items.length === 0) {
return res.status(400).json({ error: "No items to analyze." });
}
const result = analyzeCorpus(items, options);
res.json(result);
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to analyze corpus.",
context: "analyze",
error
});
}
});
app.post("/api/build", async (req, res) => {
try {
const slug = toSlug(req.body?.slug || "author-profile");
const name = req.body?.name || "Author";
const items = req.body?.items;
const options = req.body?.options ?? {};
if (!Array.isArray(items) || items.length === 0) {
return res.status(400).json({ error: "No items to build from." });
}
const artifacts = await buildProfileArtifacts({
slug,
name,
items,
options
});
res.json(artifacts);
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to build profile artifacts.",
context: "build",
error
});
}
});
app.post("/api/profiles/save", async (req, res) => {
try {
const slug = toSlug(req.body?.slug);
const name = req.body?.name || "Author";
const items = req.body?.items;
const options = req.body?.options ?? {};
const rawSource = req.body?.rawSource;
if (!Array.isArray(items) || items.length === 0) {
return res.status(400).json({ error: "No items to save." });
}
const artifacts = await buildProfileArtifacts({
slug,
name,
items,
options
});
const saveResult = await saveProfile({
slug,
meta: artifacts.meta,
knowledgeMarkdown: artifacts.knowledgeMarkdown,
personaMarkdown: artifacts.personaMarkdown,
skillMarkdown: artifacts.skillMarkdown,
wikiMarkdown: artifacts.wikiMarkdown,
knowledgeAnalysis: artifacts.knowledgeAnalysis,
personaAnalysis: artifacts.personaAnalysis,
rawSource,
normalizedItems: items
});
res.json({
...artifacts,
storage: saveResult
});
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to save profile.",
context: "profiles-save",
error
});
}
});
app.get("/api/profiles", async (_req, res) => {
try {
const profiles = await listProfiles();
res.json({ profiles });
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to list profiles.",
context: "profiles-list",
error
});
}
});
app.get("/api/profiles/:slug", async (req, res) => {
try {
const profile = await readProfile(req.params.slug);
const versions = await listProfileVersions(profile.slug);
res.json({
...profile,
versions
});
} catch (error) {
sendSafeError(res, {
status: 404,
message: "Profile not found.",
context: "profiles-read",
error
});
}
});
app.post("/api/profiles/:slug/update", requireAdminForMutation, async (req, res) => {
try {
const slug = toSlug(req.params.slug);
const incomingItems = req.body?.items;
const options = req.body?.options ?? {};
let baseItems = [];
try {
baseItems = await readNormalizedItems(slug);
} catch {
baseItems = [];
}
const merged = [...baseItems, ...(Array.isArray(incomingItems) ? incomingItems : [])];
if (!merged.length) {
return res.status(400).json({ error: "No profile data to update." });
}
const prior = await readProfile(slug);
const artifacts = await buildProfileArtifacts({
slug,
name: prior.meta.name || slug,
items: merged,
options
});
const saved = await saveProfile({
slug,
meta: {
...artifacts.meta,
created_at: prior.meta.created_at,
updated_at: new Date().toISOString()
},
knowledgeMarkdown: artifacts.knowledgeMarkdown,
personaMarkdown: artifacts.personaMarkdown,
skillMarkdown: artifacts.skillMarkdown,
wikiMarkdown: artifacts.wikiMarkdown,
knowledgeAnalysis: artifacts.knowledgeAnalysis,
personaAnalysis: artifacts.personaAnalysis,
normalizedItems: merged
});
res.json({ ...artifacts, storage: saved });
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to update profile.",
context: "profiles-update",
error
});
}
});
app.post("/api/profiles/:slug/correct", requireAdminForMutation, async (req, res) => {
try {
const slug = toSlug(req.params.slug);
const correction = String(req.body?.correction || "").trim();
const scope = String(req.body?.scope || "persona");
if (!correction) return res.status(400).json({ error: "Missing correction text." });
const result = await applyProfileCorrection(slug, scope, correction);
res.json(result);
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to apply correction.",
context: "profiles-correct",
error
});
}
});
app.post("/api/profiles/:slug/rollback", requireAdminForMutation, async (req, res) => {
try {
const slug = toSlug(req.params.slug);
const version = req.body?.version;
if (!version) return res.status(400).json({ error: "Missing version." });
const result = await rollbackProfileStore(slug, version);
res.json(result);
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to rollback profile.",
context: "profiles-rollback",
error
});
}
});
app.post("/api/generate", async (req, res) => {
try {
const items = req.body?.items;
const options = req.body?.options ?? {};
if (!Array.isArray(items) || items.length === 0) {
return res.status(400).json({ error: "No items to generate from." });
}
const artifacts = await generateArtifacts(items, options);
res.json(artifacts);
} catch (error) {
sendSafeError(res, {
status: 500,
message: "Failed to generate artifacts.",
context: "generate",
error
});
}
});
if (!process.env.VERCEL) {
app.listen(port, () => {
// eslint-disable-next-line no-console
console.log(`wordpress-parser running at http://localhost:${port}`);
});
}
export default app;