import { getDb } from '../../utils/db.js' import { requireAuth } from '../../utils/authHelpers.js' import { rowToDevice, sanitizeDeviceForResponse, DEVICE_TYPES, SOURCE_TYPES } from '../../utils/deviceUtils.js' export default defineEventHandler(async (event) => { requireAuth(event, { role: 'adminOrLeader' }) const id = event.context.params?.id if (!id) throw createError({ statusCode: 400, message: 'id required' }) const body = (await readBody(event).catch(() => ({}))) || {} const updates = [] const params = [] if (typeof body.name === 'string') { updates.push('name = ?') params.push(body.name.trim()) } if (DEVICE_TYPES.includes(body.device_type)) { updates.push('device_type = ?') params.push(body.device_type) } if (body.vendor !== undefined) { updates.push('vendor = ?') params.push(typeof body.vendor === 'string' && body.vendor.trim() ? body.vendor.trim() : null) } if (Number.isFinite(body.lat)) { updates.push('lat = ?') params.push(body.lat) } if (Number.isFinite(body.lng)) { updates.push('lng = ?') params.push(body.lng) } if (typeof body.stream_url === 'string') { updates.push('stream_url = ?') params.push(body.stream_url.trim()) } if (SOURCE_TYPES.includes(body.source_type)) { updates.push('source_type = ?') params.push(body.source_type) } if (body.config !== undefined) { updates.push('config = ?') params.push(typeof body.config === 'string' ? body.config : (body.config != null ? JSON.stringify(body.config) : null)) } const { run, get } = await getDb() if (updates.length === 0) { const row = await get('SELECT id, name, device_type, vendor, lat, lng, stream_url, source_type, config FROM devices WHERE id = ?', [id]) if (!row) throw createError({ statusCode: 404, message: 'Device not found' }) const device = rowToDevice(row) return device ? sanitizeDeviceForResponse(device) : row } params.push(id) await run(`UPDATE devices SET ${updates.join(', ')} WHERE id = ?`, params) const row = await get('SELECT id, name, device_type, vendor, lat, lng, stream_url, source_type, config FROM devices WHERE id = ?', [id]) if (!row) throw createError({ statusCode: 404, message: 'Device not found' }) const device = rowToDevice(row) return device ? sanitizeDeviceForResponse(device) : row })