Major additions accumulated over 9 days — single commit per request. Flow editor (new): - Generic visual editor for step trees, usable by project wizard + agent flows - PROJECT_KINDS / AGENT_KINDS catalogs decouple UI from domain - Drag-and-drop reorder via vuedraggable with scope isolation per peer group - Chain-aware depends_on rewrite on reorder (sequential only — DAGs preserved) - Variable picker with per-applies_to catalog (Customer / Quotation / Service Contract / Issue / Subscription), insert + copy-clipboard modes - trigger_condition helper with domain-specific JSONLogic examples - Global FlowEditorDialog mounted once in MainLayout, Odoo inline pattern - Server: targo-hub flow-runtime.js, flow-api.js, flow-templates.js - ERPNext: Flow Template/Run doctypes, scheduler, 5 seeded system templates - depends_on chips resolve to step labels instead of opaque "s4" ids QR/OCR scanner (field app): - Camera capture → Gemini Vision via targo-hub with 8s timeout - IndexedDB offline queue retries photos when signal returns - Watcher merges late-arriving scan results into the live UI Dispatch: - Planning mode (draft → publish) with offer pool for unassigned jobs - Shared presets, recurrence selector, suggested-slots dialog - PublishScheduleModal, unassign confirmation Ops app: - ClientDetailPage composables extraction (useClientData, useDeviceStatus, useWifiDiagnostic, useModemDiagnostic) - Project wizard: shared detail sections, wizard catalog/publish composables - Address pricing composable + pricing-mock data - Settings redesign hosting flow templates Targo-hub: - Contract acceptance (JWT residential + DocuSeal commercial tracks) - Referral system - Modem-bridge diagnostic normalizer - Device extractors consolidated Migration scripts: - Invoice/quote print format setup, Jinja rendering - Additional import + fix scripts (reversals, dates, customers, payments) Docs: - Consolidated: old scattered MDs → HANDOFF, ARCHITECTURE, DATA_AND_FLOWS, FLOW_EDITOR_ARCHITECTURE, BILLING_AND_PAYMENTS, CPE_MANAGEMENT, APP_DESIGN_GUIDELINES - Archived legacy wizard PHP for reference - STATUS snapshots for 2026-04-18/19 Cleanup: - Removed ~40 generated PDFs/HTMLs (invoice_preview*, rendered_jinja*) - .gitignore now covers invoice preview output + nested .DS_Store Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
'use strict'
|
|
const cfg = require('./config')
|
|
const { log, json, parseBody } = require('./helpers')
|
|
|
|
// Prefer bearer token (revocable, no password in env); fall back to Basic auth for legacy.
|
|
const authHeader = cfg.TRACCAR_TOKEN
|
|
? 'Bearer ' + cfg.TRACCAR_TOKEN
|
|
: 'Basic ' + Buffer.from(cfg.TRACCAR_USER + ':' + cfg.TRACCAR_PASS).toString('base64')
|
|
|
|
async function traccarFetch (path) {
|
|
const res = await fetch(cfg.TRACCAR_URL + path, {
|
|
headers: { Authorization: authHeader, Accept: 'application/json' },
|
|
})
|
|
if (!res.ok) throw new Error(`Traccar ${res.status}: ${path}`)
|
|
return res.json()
|
|
}
|
|
|
|
// Cache devices for 60s (they rarely change)
|
|
let _devCache = null, _devCacheTs = 0
|
|
async function getDevices () {
|
|
if (_devCache && Date.now() - _devCacheTs < 60000) return _devCache
|
|
_devCache = await traccarFetch('/api/devices?all=true')
|
|
_devCacheTs = Date.now()
|
|
return _devCache
|
|
}
|
|
|
|
async function getPositions (deviceIds) {
|
|
if (!deviceIds?.length) return []
|
|
const results = await Promise.allSettled(
|
|
deviceIds.map(id => traccarFetch('/api/positions?deviceId=' + id))
|
|
)
|
|
return results.flatMap(r => r.status === 'fulfilled' ? r.value : [])
|
|
}
|
|
|
|
async function handle (req, res, method, path) {
|
|
const sub = path.replace('/traccar', '').replace(/^\//, '')
|
|
|
|
if (sub === 'devices' && method === 'GET') {
|
|
try {
|
|
return json(res, 200, await getDevices())
|
|
} catch (e) {
|
|
log('Traccar devices error:', e.message)
|
|
return json(res, 502, { error: 'Traccar unavailable' })
|
|
}
|
|
}
|
|
|
|
if (sub === 'positions' && method === 'GET') {
|
|
try {
|
|
const url = new URL(req.url, 'http://localhost')
|
|
const ids = (url.searchParams.get('deviceIds') || '').split(',').map(Number).filter(Boolean)
|
|
return json(res, 200, await getPositions(ids))
|
|
} catch (e) {
|
|
log('Traccar positions error:', e.message)
|
|
return json(res, 502, { error: 'Traccar unavailable' })
|
|
}
|
|
}
|
|
|
|
// Proxy any other Traccar API path (fallback)
|
|
if (method === 'GET') {
|
|
try {
|
|
return json(res, 200, await traccarFetch('/api/' + sub))
|
|
} catch (e) {
|
|
return json(res, 502, { error: e.message })
|
|
}
|
|
}
|
|
|
|
json(res, 404, { error: 'Traccar endpoint not found' })
|
|
}
|
|
|
|
module.exports = { handle, getDevices, getPositions }
|