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/cleanupOrphanItem.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

67 lines
1.7 KiB
Text

<cfscript>
// Admin script to deactivate orphan items and their children
// Used to clean up stale items leftover from before the template system
param name="url.itemId" default="11543";
param name="url.action" default="check"; // "check" or "deactivate"
// Check the item first
qItem = queryTimed("
SELECT ID, Name, ParentItemID, IsActive, IsCollapsible
FROM Items
WHERE ID = :itemId
", { itemId: url.itemId });
if (qItem.recordCount == 0) {
writeOutput(serializeJSON({ OK: false, ERROR: "Item not found" }));
abort;
}
// Get all children (direct only for display)
qChildren = queryTimed("
SELECT ID, Name
FROM Items
WHERE ParentItemID = :itemId
", { itemId: url.itemId });
childList = [];
for (row in qChildren) {
arrayAppend(childList, { "ItemID": row.ID, "Name": row.Name });
}
result = {
"OK": true,
"ACTION": url.action,
"ITEM": {
"ItemID": qItem.ID,
"Name": qItem.Name,
"ParentItemID": qItem.ParentItemID,
"IsActive": qItem.IsActive,
"IsCollapsible": qItem.IsCollapsible
},
"HAS_CHILDREN": qChildren.recordCount > 0,
"CHILD_COUNT": qChildren.recordCount,
"CHILDREN": childList
};
if (url.action == "deactivate") {
// Deactivate children first
queryTimed("
UPDATE Items
SET IsActive = 0
WHERE ParentItemID = :itemId
", { itemId: url.itemId });
// Then deactivate the parent
queryTimed("
UPDATE Items
SET IsActive = 0
WHERE ItemID = :itemId
", { itemId: url.itemId });
result["DEACTIVATED"] = true;
result["MESSAGE"] = "Item and #qChildren.recordCount# children deactivated successfully";
}
writeOutput(serializeJSON(result));
</cfscript>