-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjscode.js
More file actions
540 lines (469 loc) · 15.6 KB
/
jscode.js
File metadata and controls
540 lines (469 loc) · 15.6 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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
// Cloudflare Worker for Katapult Pro API endpoints
// This worker provides JavaScript equivalents of the Python FastAPI endpoints
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url);
const path = url.pathname;
// Add CORS headers
const corsHeaders = {
'Access-Control-Allow-Origin': 'https://dcs.katapultpro.com',
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
'Access-Control-Allow-Headers': 'Content-Type',
};
// Handle CORS preflight requests
if (request.method === 'OPTIONS') {
return new Response(null, { headers: corsHeaders });
}
// Route requests to appropriate handlers
switch (path) {
case '/':
return handleHealthCheck(corsHeaders);
case '/filter_nodes':
return handleFilterNodes(request, corsHeaders);
case '/create_job':
return handleCreateJob(request, corsHeaders);
case '/get_nodes_with_photos':
return handleGetNodesWithPhotos(request, corsHeaders);
case '/update_node_attributes':
return handleUpdateNodeAttributes(request, corsHeaders);
case '/delete_nodes_by_attribute':
return handleDeleteNodesByAttribute(request, corsHeaders);
default:
return new Response('Not Found', {
status: 404,
headers: corsHeaders
});
}
},
};
// Health check endpoint
function handleHealthCheck(corsHeaders) {
const response = {
status: 'ok',
message: 'Cloudflare Worker is running',
endpoints: [
'/add_welcome_note',
'/filter_nodes',
'/create_job',
'/get_nodes_with_photos',
'/update_node_attributes',
'/delete_nodes_by_attribute'
]
};
return new Response(JSON.stringify(response, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
}
// Filter nodes endpoint - returns filtered nodes without creating a note
async function handleFilterNodes(request, corsHeaders) {
const url = new URL(request.url);
const api_key = url.searchParams.get('api_key');
const job_id = url.searchParams.get('job_id') || '-OT77Az4JJlgEgQOASe0';
const node_id = url.searchParams.get('node_id');
if (!api_key) {
return new Response('Missing api_key parameter', {
status: 400,
headers: corsHeaders
});
}
try {
// Hardcode attribute filters for node_type
const attribute_filters = { node_type: 'pole' };
const nodes_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes?api_key=${api_key}`;
// Get nodes from the Katapult Pro API
const nodes_response = await fetch(nodes_url, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
if (!nodes_response.ok) {
return new Response(await nodes_response.text(), {
status: nodes_response.status,
headers: corsHeaders
});
}
const data = await nodes_response.json();
const nodes = data.data || [];
const matching_nodes = [];
// Filter nodes
for (const node of nodes) {
let match = true;
for (const [key, filter_value] of Object.entries(attribute_filters)) {
const node_attributes = node.attributes || {};
const attribute_value = Object.values(node_attributes[key] || {})[0] || node_attributes[key];
if (attribute_value !== filter_value) {
match = false;
break;
}
}
if (match) {
matching_nodes.push(node);
}
}
console.log(`Data: ${matching_nodes.length} nodes found\nFilters applied: ${JSON.stringify(attribute_filters)}\nJob ID: ${job_id}\nNodes: ${JSON.stringify(matching_nodes)}`);
// Create result
const result = {
data: matching_nodes,
total: matching_nodes.length,
filters_applied: attribute_filters,
job_id: job_id
};
return new Response(JSON.stringify(result, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
} catch (error) {
return new Response(`Error processing request: ${error.message}`, {
status: 500,
headers: corsHeaders
});
}
}
// Create job endpoint
async function handleCreateJob(request, corsHeaders) {
if (request.method !== 'POST') {
return new Response('Method not allowed', {
status: 405,
headers: corsHeaders
});
}
const url = new URL(request.url);
const api_key = url.searchParams.get('api_key');
const job_name = url.searchParams.get('job_name');
const model_type = url.searchParams.get('model_type') || 'default';
const metadata = url.searchParams.get('metadata');
if (!api_key || !job_name) {
return new Response('Missing required parameters: api_key and job_name', {
status: 400,
headers: corsHeaders
});
}
try {
const jobs_url = `https://dcs.katapultpro.com/api/v3/jobs?api_key=${api_key}`;
const request_body = {
name: job_name,
model: model_type,
metadata: metadata ? JSON.parse(metadata) : null
};
const response = await fetch(jobs_url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(request_body)
});
if (response.ok) {
const result = await response.json();
return new Response(JSON.stringify(result, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
} else {
return new Response(await response.text(), {
status: response.status,
headers: corsHeaders
});
}
} catch (error) {
return new Response(`Error processing request: ${error.message}`, {
status: 500,
headers: corsHeaders
});
}
}
// Get nodes with photos endpoint
async function handleGetNodesWithPhotos(request, corsHeaders) {
if (request.method !== 'POST') {
return new Response('Method not allowed', {
status: 405,
headers: corsHeaders
});
}
const url = new URL(request.url);
const api_key = url.searchParams.get('api_key');
const job_id = url.searchParams.get('job_id');
if (!api_key || !job_id) {
return new Response('Missing required parameters: api_key and job_id', {
status: 400,
headers: corsHeaders
});
}
try {
const nodes_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes?api_key=${api_key}`;
const photos_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/photos?api_key=${api_key}`;
// Get nodes and photos
const [nodes_response, photos_response] = await Promise.all([
fetch(nodes_url, {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
}),
fetch(photos_url, {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
})
]);
if (!nodes_response.ok) {
return new Response(await nodes_response.text(), {
status: nodes_response.status,
headers: corsHeaders
});
}
if (!photos_response.ok) {
return new Response(await photos_response.text(), {
status: photos_response.status,
headers: corsHeaders
});
}
const nodes_data = await nodes_response.json();
const photos_data = await photos_response.json();
// Process nodes with photos
const nodes = Object.values(nodes_data.data || {}).map(node_data => {
const associated_photo_ids = Object.keys(node_data.photos || {});
const node_photos = associated_photo_ids.map((photo_id, i) => {
const photo_data = (photos_data.data || []).find(photo => photo.id === photo_id) || {};
return {
photoId: photo_id,
name: photo_data.filename || null,
date: photo_data.date_taken ? new Date(photo_data.date_taken * 1000).toISOString() : null,
associated: true,
metadata: {
camera: photo_data.camera_model,
width: photo_data.image_width,
height: photo_data.image_height,
orientation: photo_data.orientation,
uploaded_by: photo_data.uploaded_by
}
};
});
return {
id: node_data.id,
latitude: node_data.latitude,
longitude: node_data.longitude,
attributes: node_data.attributes || {},
photos: node_photos,
total_photos: node_photos.length
};
});
const result = {
data: nodes,
total: nodes.length,
job_id: job_id
};
return new Response(JSON.stringify(result, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
} catch (error) {
return new Response(`Error processing request: ${error.message}`, {
status: 500,
headers: corsHeaders
});
}
}
// Update node attributes endpoint
async function handleUpdateNodeAttributes(request, corsHeaders) {
if (request.method !== 'POST') {
return new Response('Method not allowed', {
status: 405,
headers: corsHeaders
});
}
const url = new URL(request.url);
const api_key = url.searchParams.get('api_key');
const job_id = url.searchParams.get('job_id');
const attribute_filters = url.searchParams.get('attribute_filters');
const new_attributes = url.searchParams.get('new_attributes');
const operation = url.searchParams.get('operation') || 'add';
if (!api_key || !job_id || !attribute_filters || !new_attributes) {
return new Response('Missing required parameters: api_key, job_id, attribute_filters, new_attributes', {
status: 400,
headers: corsHeaders
});
}
try {
// Parse JSON parameters
const parsed_filters = JSON.parse(attribute_filters);
const parsed_attributes = JSON.parse(new_attributes);
// First get nodes with the specified filters
const nodes_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes?api_key=${api_key}`;
const nodes_response = await fetch(nodes_url, {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
if (!nodes_response.ok) {
return new Response(await nodes_response.text(), {
status: nodes_response.status,
headers: corsHeaders
});
}
const data = await nodes_response.json();
const nodes = data.data || [];
const matching_nodes = [];
// Filter nodes based on attribute filters
for (const node of nodes) {
let match = true;
for (const [key, filter_value] of Object.entries(parsed_filters)) {
const node_attributes = node.attributes || {};
const attribute_value = Object.values(node_attributes[key] || {})[0] || node_attributes[key];
if (attribute_value !== filter_value) {
match = false;
break;
}
}
if (match) {
matching_nodes.push(node);
}
}
const results = [];
for (const node of matching_nodes) {
let update_body = {};
if (operation === 'add') {
update_body.add_attributes = parsed_attributes;
} else if (operation === 'update') {
const current_attributes = node.attributes || {};
const updated_attributes = { ...current_attributes };
for (const [key, value] of Object.entries(parsed_attributes)) {
if (current_attributes[key]) {
if (typeof current_attributes[key] === 'object') {
for (const instance_id of Object.keys(current_attributes[key])) {
updated_attributes[key][instance_id] = value;
}
} else {
updated_attributes[key] = value;
}
}
}
if (Object.keys(updated_attributes).length > 0) {
update_body.attributes = updated_attributes;
}
} else if (operation === 'remove') {
update_body.remove_attributes = Object.keys(parsed_attributes).filter(
attr => node.attributes && node.attributes[attr] !== undefined
);
} else {
continue;
}
if (Object.keys(update_body).length > 0) {
const update_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes/${node.id}?api_key=${api_key}`;
const response = await fetch(update_url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(update_body)
});
const response_data = await response.json();
results.push(response_data);
} else {
results.push(node);
}
}
const result = {
updated_nodes: results,
total_updated: results.length,
operation: operation,
job_id: job_id
};
return new Response(JSON.stringify(result, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
} catch (error) {
return new Response(`Error processing request: ${error.message}`, {
status: 500,
headers: corsHeaders
});
}
}
// Delete nodes by attribute endpoint
async function handleDeleteNodesByAttribute(request, corsHeaders) {
if (request.method !== 'POST') {
return new Response('Method not allowed', {
status: 405,
headers: corsHeaders
});
}
const url = new URL(request.url);
const api_key = url.searchParams.get('api_key');
const job_id = url.searchParams.get('job_id');
const attribute_filters = url.searchParams.get('attribute_filters');
if (!api_key || !job_id || !attribute_filters) {
return new Response('Missing required parameters: api_key, job_id, attribute_filters', {
status: 400,
headers: corsHeaders
});
}
try {
// Parse JSON parameters
const parsed_filters = JSON.parse(attribute_filters);
// First get nodes with the specified filters
const nodes_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes?api_key=${api_key}`;
const nodes_response = await fetch(nodes_url, {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
if (!nodes_response.ok) {
return new Response(await nodes_response.text(), {
status: nodes_response.status,
headers: corsHeaders
});
}
const data = await nodes_response.json();
const nodes = data.data || [];
const matching_nodes = [];
// Filter nodes based on attribute filters
for (const node of nodes) {
let match = true;
for (const [key, filter_value] of Object.entries(parsed_filters)) {
const node_attributes = node.attributes || {};
const attribute_value = Object.values(node_attributes[key] || {})[0] || node_attributes[key];
if (attribute_value !== filter_value) {
match = false;
break;
}
}
if (match) {
matching_nodes.push(node);
}
}
const results = [];
for (const node of matching_nodes) {
const delete_url = `https://dcs.katapultpro.com/api/v3/jobs/${job_id}/nodes/${node.id}?api_key=${api_key}`;
const response = await fetch(delete_url, {
method: 'DELETE',
headers: { 'Content-Type': 'application/json' }
});
const response_data = response.ok ? await response.json() : await response.text();
results.push({
deleted_node: node,
response: response_data
});
}
const result = {
deleted_nodes: results,
total_deleted: results.length,
job_id: job_id
};
return new Response(JSON.stringify(result, null, 2), {
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
} catch (error) {
return new Response(`Error processing request: ${error.message}`, {
status: 500,
headers: corsHeaders
});
}
}