-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.routes.ts
More file actions
272 lines (236 loc) · 7.21 KB
/
admin.routes.ts
File metadata and controls
272 lines (236 loc) · 7.21 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
/**
* Admin API Routes
* Provides endpoints for administrative operations
*/
import { Router, Request, Response } from 'express';
import { AdminService } from '../services/admin.service';
import { logger } from '../utils/logger';
const router = Router();
const adminService = new AdminService();
/**
* GET /api/v1/admin/datasets
* List all datasets with summary statistics
*/
router.get('/datasets', async (_req: Request, res: Response): Promise<void> => {
try {
const datasets = await adminService.listDatasets();
res.json({ datasets });
} catch (error) {
logger.error('Failed to list datasets', { error });
res.status(500).json({
error: 'Failed to list datasets',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* GET /api/v1/admin/datasets/:datasetId
* Get detailed information about a specific dataset
*/
router.get('/datasets/:datasetId', async (req: Request, res: Response): Promise<void> => {
try {
const { datasetId } = req.params;
const dataset = await adminService.getDatasetDetails(datasetId);
if (!dataset) {
res.status(404).json({
error: 'Dataset not found',
message: `No dataset found with ID: ${datasetId}`,
});
return;
}
res.json(dataset);
} catch (error) {
logger.error('Failed to get dataset details', { error });
res.status(500).json({
error: 'Failed to get dataset details',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* GET /api/v1/admin/documents
* List documents with optional filtering
* Query params: datasetId, status, limit, offset
*/
router.get('/documents', async (req: Request, res: Response): Promise<void> => {
try {
const { datasetId, status, limit, offset } = req.query;
const limitNum = limit ? parseInt(limit as string) : 50;
const offsetNum = offset ? parseInt(offset as string) : 0;
if (isNaN(limitNum) || limitNum < 1 || limitNum > 200) {
res.status(400).json({
error: 'Invalid limit parameter',
message: 'Limit must be between 1 and 200',
});
return;
}
if (isNaN(offsetNum) || offsetNum < 0) {
res.status(400).json({
error: 'Invalid offset parameter',
message: 'Offset must be non-negative',
});
return;
}
const result = await adminService.listDocuments(
datasetId as string | undefined,
status as string | undefined,
limitNum,
offsetNum
);
res.json(result);
} catch (error) {
logger.error('Failed to list documents', { error });
res.status(500).json({
error: 'Failed to list documents',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* GET /api/v1/admin/documents/:documentId
* Get detailed information about a specific document
*/
router.get('/documents/:documentId', async (req: Request, res: Response): Promise<void> => {
try {
const { documentId } = req.params;
const document = await adminService.getDocumentDetails(documentId);
if (!document) {
res.status(404).json({
error: 'Document not found',
message: `No document found with ID: ${documentId}`,
});
return;
}
res.json(document);
} catch (error) {
logger.error('Failed to get document details', { error });
res.status(500).json({
error: 'Failed to get document details',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* POST /api/v1/admin/documents/:documentId/reprocess
* Trigger manual reprocessing of a document
* Body: { fromStage?: string }
*/
router.post('/documents/:documentId/reprocess', async (req: Request, res: Response): Promise<void> => {
try {
const { documentId } = req.params;
const { fromStage } = req.body;
// Validate fromStage if provided
const validStages = [
'language_detection',
'ocr',
'chunking',
'embedding',
'table_extraction',
'indexing',
];
if (fromStage && !validStages.includes(fromStage)) {
res.status(400).json({
error: 'Invalid stage',
message: `Stage must be one of: ${validStages.join(', ')}`,
});
return;
}
await adminService.reprocessDocument(documentId, fromStage);
res.json({
message: 'Document reprocessing triggered',
documentId,
fromStage: fromStage || 'language_detection',
});
} catch (error) {
logger.error('Failed to reprocess document', { error });
if (error instanceof Error && error.message.includes('not found')) {
res.status(404).json({
error: 'Document not found',
message: error.message,
});
return;
}
if (error instanceof Error && error.message.includes('currently being processed')) {
res.status(409).json({
error: 'Document is being processed',
message: error.message,
});
return;
}
res.status(500).json({
error: 'Failed to reprocess document',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* DELETE /api/v1/admin/documents/:documentId
* Delete a document and all its associated data
*/
router.delete('/documents/:documentId', async (req: Request, res: Response): Promise<void> => {
try {
const { documentId } = req.params;
await adminService.deleteDocument(documentId);
res.json({
message: 'Document deleted successfully',
documentId,
});
} catch (error) {
logger.error('Failed to delete document', { error });
res.status(500).json({
error: 'Failed to delete document',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* GET /api/v1/admin/jobs
* Get recent job history
* Query params: limit, offset
*/
router.get('/jobs', async (req: Request, res: Response): Promise<void> => {
try {
const { limit, offset } = req.query;
const limitNum = limit ? parseInt(limit as string) : 100;
const offsetNum = offset ? parseInt(offset as string) : 0;
if (isNaN(limitNum) || limitNum < 1 || limitNum > 500) {
res.status(400).json({
error: 'Invalid limit parameter',
message: 'Limit must be between 1 and 500',
});
return;
}
if (isNaN(offsetNum) || offsetNum < 0) {
res.status(400).json({
error: 'Invalid offset parameter',
message: 'Offset must be non-negative',
});
return;
}
const result = await adminService.getJobHistory(limitNum, offsetNum);
res.json(result);
} catch (error) {
logger.error('Failed to get job history', { error });
res.status(500).json({
error: 'Failed to get job history',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
/**
* GET /api/v1/admin/stats
* Get system-wide statistics
*/
router.get('/stats', async (_req: Request, res: Response): Promise<void> => {
try {
const stats = await adminService.getSystemStats();
res.json(stats);
} catch (error) {
logger.error('Failed to get system stats', { error });
res.status(500).json({
error: 'Failed to get system stats',
message: error instanceof Error ? error.message : 'Unknown error',
});
}
});
export default router;