Files
luos/workflow/engine/methods/setup/cronAjax.php
Roly Rudy Gutierrez Pinto d636f2794d HOR-4563-A
2018-08-20 14:40:30 -04:00

56 lines
1.5 KiB
PHP

<?php
use ProcessMaker\BusinessModel\Files\Cron;
$option = isset($_REQUEST["option"]) ? $_REQUEST["option"] : null;
$response = [];
switch ($option) {
case "LST":
$pageSize = $_REQUEST["pageSize"];
$workspace = config("system.workspace");
$status = $_REQUEST["status"];
$dateFrom = $_REQUEST["dateFrom"];
$dateTo = $_REQUEST["dateTo"];
$filter = [
"workspace" => $workspace,
"status" => $status,
"dateFrom" => str_replace("T00:00:00", null, $dateFrom),
"dateTo" => str_replace("T00:00:00", null, $dateTo)
];
$start = (int) isset($_REQUEST["start"]) ? $_REQUEST["start"] : 0;
$limit = (int) isset($_REQUEST["limit"]) ? $_REQUEST["limit"] : $pageSize;
$cron = new Cron();
list ($count, $data) = $cron->getData($filter, $start, $limit);
$response = [
"success" => true,
"resultTotal" => $count,
"resultRoot" => $data
];
break;
case "EMPTY":
$status = 1;
try {
$file = PATH_DATA . "log" . PATH_SEP . "cron.log";
if (file_exists($file)) {
unlink($file);
}
$response["status"] = "OK";
G::auditLog("ClearCron");
} catch (Exception $e) {
$response["message"] = $e->getMessage();
$status = 0;
}
if ($status == 0) {
$response["status"] = "ERROR";
}
break;
}
echo G::json_encode($response);