This repository has been archived on 2026-03-21. You can view files and clone it, but cannot push or open issues or pull requests.
payfrit-biz/api/admin/_scripts/debugTasks.cfm
John 16a3b7c9a3 Replace queryExecute with queryTimed across all endpoints for perf tracking
Converts 200+ endpoint files to use queryTimed() wrapper which tracks
DB query count and execution time. Restores perf dashboard files that
were accidentally moved to _scripts/. Includes portal UI updates.
2026-02-02 00:28:37 -08:00

80 lines
2.3 KiB
Text

<cfsetting showdebugoutput="false">
<cfsetting enablecfoutputonly="true">
<cfcontent type="application/json; charset=utf-8">
<cfscript>
// Check for action parameter
data = {};
try {
rawContent = getHttpRequestData().content;
if (len(trim(rawContent))) data = deserializeJSON(rawContent);
} catch (any e) {}
// Close all open chats action
if (structKeyExists(data, "action") && data.action == "closeAllChats") {
queryTimed("
UPDATE Tasks SET CompletedOn = NOW()
WHERE TaskTypeID = 2 AND CompletedOn IS NULL
", {}, { datasource: "payfrit" });
writeOutput(serializeJSON({ "OK": true, "MESSAGE": "All open chats closed" }));
abort;
}
</cfscript>
<cftry>
<cfset qTasks = queryTimed("
SELECT
t.ID,
t.BusinessID,
t.OrderID,
t.ClaimedByUserID,
t.ClaimedOn,
t.CompletedOn,
o.StatusID
FROM Tasks t
LEFT JOIN Orders o ON o.ID = t.OrderID
ORDER BY t.ID DESC
LIMIT 20
", [], { datasource = "payfrit" })>
<cfset tasks = []>
<cfloop query="qTasks">
<cfset arrayAppend(tasks, {
"TaskID": qTasks.ID,
"BusinessID": qTasks.BusinessID,
"OrderID": qTasks.OrderID,
"ClaimedByUserID": qTasks.ClaimedByUserID,
"ClaimedOn": isNull(qTasks.ClaimedOn) ? "NULL" : dateTimeFormat(qTasks.ClaimedOn, "yyyy-mm-dd HH:nn:ss"),
"CompletedOn": isNull(qTasks.CompletedOn) ? "NULL" : dateTimeFormat(qTasks.CompletedOn, "yyyy-mm-dd HH:nn:ss"),
"StatusID": isNull(qTasks.StatusID) ? "NULL" : qTasks.StatusID
})>
</cfloop>
<cfset qStats = queryTimed("
SELECT
COUNT(*) as Total,
SUM(CASE WHEN ClaimedByUserID > 0 AND CompletedOn IS NULL THEN 1 ELSE 0 END) as ClaimedNotCompleted,
SUM(CASE WHEN ClaimedByUserID = 0 OR ClaimedByUserID IS NULL THEN 1 ELSE 0 END) as Unclaimed,
SUM(CASE WHEN CompletedOn IS NOT NULL THEN 1 ELSE 0 END) as Completed
FROM Tasks
", [], { datasource = "payfrit" })>
<cfoutput>#serializeJSON({
"OK": true,
"TASKS": tasks,
"STATS": {
"Total": qStats.Total,
"ClaimedNotCompleted": qStats.ClaimedNotCompleted,
"Unclaimed": qStats.Unclaimed,
"Completed": qStats.Completed
}
})#</cfoutput>
<cfcatch>
<cfoutput>#serializeJSON({
"OK": false,
"ERROR": cfcatch.message,
"DETAIL": cfcatch.detail
})#</cfoutput>
</cfcatch>
</cftry>