function apiAbort(obj) { writeOutput(serializeJSON(obj)); abort; } function readJsonBody() { raw = toString(getHttpRequestData().content); if (isNull(raw) || len(trim(raw)) EQ 0) return {}; try { parsed = deserializeJSON(raw); } catch(any e) { apiAbort({ OK=false, ERROR="bad_json", MESSAGE="Invalid JSON body" }); } if (!isStruct(parsed)) return {}; return parsed; } function normStr(v) { if (isNull(v)) return ""; return trim(toString(v)); } data = readJsonBody(); if (!structKeyExists(request, "UserID") || !isNumeric(request.UserID) || request.UserID LTE 0) { apiAbort({ OK=false, ERROR="not_logged_in" }); } if (!structKeyExists(request, "BusinessID") || !isNumeric(request.BusinessID) || request.BusinessID LTE 0) { apiAbort({ OK=false, ERROR="no_business_selected" }); } if (!structKeyExists(data, "BeaconName") || len(normStr(data.BeaconName)) EQ 0) { apiAbort({ OK=false, ERROR="missing_beacon_name", MESSAGE="BeaconName is required" }); } beaconId = 0; if (structKeyExists(data, "BeaconID") && isNumeric(data.BeaconID) && int(data.BeaconID) GT 0) { beaconId = int(data.BeaconID); } beaconName = normStr(data.BeaconName); uuid = structKeyExists(data, "UUID") ? normStr(data.UUID) : ""; namespaceId = structKeyExists(data, "NamespaceId") ? normStr(data.NamespaceId) : ""; instanceId = structKeyExists(data, "InstanceId") ? normStr(data.InstanceId) : ""; isActive = 1; if (structKeyExists(data, "IsActive")) { if (isBoolean(data.IsActive)) isActive = (data.IsActive ? 1 : 0); else if (isNumeric(data.IsActive)) isActive = int(data.IsActive); else if (isSimpleValue(data.IsActive)) isActive = (lcase(trim(toString(data.IsActive))) EQ "true" ? 1 : 0); } UPDATE Beacons SET BeaconName = , UUID = , NamespaceId = , InstanceId = , IsActive = WHERE BeaconID = AND BusinessID = SELECT BeaconID FROM Beacons WHERE BeaconID = AND BusinessID = LIMIT 1 #serializeJSON({ OK=false, ERROR="not_found" })# INSERT INTO Beacons ( BusinessID, BeaconName, UUID, NamespaceId, InstanceId, IsActive ) VALUES ( , , , , , ) SELECT LAST_INSERT_ID() AS BeaconID SELECT BeaconID, BusinessID, BeaconName, UUID, NamespaceId, InstanceId, IsActive, CreatedAt, UpdatedAt FROM Beacons WHERE BeaconID = AND BusinessID = LIMIT 1 #serializeJSON({ OK=true, ERROR="", BEACON=beacon })#