- Add queryTimed(), logPerf(), flushPerfBuffer() to environment.cfm - Auto-create ApiPerfLogs table on first flush - Hook logPerf into Application.cfm apiAbort for automatic tracking - Initialize request perf counters in Application.cfm - Remove local apiAbort() overrides from 7 endpoints - Instrument 12 high-traffic endpoints with logPerf calls - Buffer metrics in application scope, batch INSERT every 100 requests - 30-day auto-cleanup with probabilistic trigger Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
89 lines
2.4 KiB
Text
89 lines
2.4 KiB
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
<cfheader name="Cache-Control" value="no-store">
|
|
|
|
<cfscript>
|
|
// Read JSON body once
|
|
data = {};
|
|
try {
|
|
raw = toString(getHttpRequestData().content);
|
|
if (len(trim(raw))) {
|
|
data = deserializeJSON(raw);
|
|
if (!isStruct(data)) data = {};
|
|
}
|
|
} catch (any e) {
|
|
data = {};
|
|
}
|
|
|
|
httpHeaders = getHttpRequestData().headers;
|
|
|
|
// Get BusinessID from: session > body > X-Business-ID header > URL
|
|
bizId = 0;
|
|
if (structKeyExists(request, "BusinessID") && isNumeric(request.BusinessID) && request.BusinessID GT 0) {
|
|
bizId = int(request.BusinessID);
|
|
}
|
|
if (bizId LTE 0 && structKeyExists(data, "BusinessID") && isNumeric(data.BusinessID) && data.BusinessID GT 0) {
|
|
bizId = int(data.BusinessID);
|
|
}
|
|
if (bizId LTE 0 && structKeyExists(httpHeaders, "X-Business-ID") && isNumeric(httpHeaders["X-Business-ID"]) && httpHeaders["X-Business-ID"] GT 0) {
|
|
bizId = int(httpHeaders["X-Business-ID"]);
|
|
}
|
|
if (bizId LTE 0 && structKeyExists(url, "BusinessID") && isNumeric(url.BusinessID) && url.BusinessID GT 0) {
|
|
bizId = int(url.BusinessID);
|
|
}
|
|
if (bizId LTE 0) {
|
|
apiAbort({ "OK": false, "ERROR": "missing_businessid" });
|
|
}
|
|
|
|
// Default behavior: only active service points unless onlyActive is explicitly false/0
|
|
onlyActive = true;
|
|
if (structKeyExists(data, "onlyActive")) {
|
|
if (isBoolean(data.onlyActive)) {
|
|
onlyActive = data.onlyActive;
|
|
} else if (isNumeric(data.onlyActive)) {
|
|
onlyActive = (int(data.onlyActive) EQ 1);
|
|
} else if (isSimpleValue(data.onlyActive)) {
|
|
onlyActive = (lcase(trim(toString(data.onlyActive))) EQ "true");
|
|
}
|
|
}
|
|
</cfscript>
|
|
|
|
<cfquery name="q" datasource="payfrit">
|
|
SELECT
|
|
ID,
|
|
Name,
|
|
TypeID,
|
|
Code,
|
|
Description,
|
|
SortOrder,
|
|
IsActive
|
|
FROM ServicePoints
|
|
WHERE BusinessID = <cfqueryparam cfsqltype="cf_sql_integer" value="#bizId#">
|
|
<cfif onlyActive>
|
|
AND IsActive = 1
|
|
</cfif>
|
|
ORDER BY SortOrder, Name
|
|
</cfquery>
|
|
|
|
<cfset servicePoints = []>
|
|
<cfloop query="q">
|
|
<cfset arrayAppend(servicePoints, {
|
|
"ServicePointID" = q.ID,
|
|
"Name" = q.Name,
|
|
"TypeID" = q.TypeID,
|
|
"Code" = q.Code,
|
|
"Description" = q.Description,
|
|
"SortOrder" = q.SortOrder,
|
|
"IsActive" = q.IsActive
|
|
})>
|
|
</cfloop>
|
|
|
|
<cfoutput>#serializeJSON({
|
|
"OK": true,
|
|
"ERROR": "",
|
|
"BusinessID": bizId,
|
|
"COUNT": arrayLen(servicePoints),
|
|
"SERVICEPOINTS": servicePoints
|
|
})#</cfoutput>
|