137 lines
3.3 KiB
PHP
137 lines
3.3 KiB
PHP
|
<?php
|
||
|
namespace Opencart\Admin\Model\Setting;
|
||
|
/**
|
||
|
* Class Cron
|
||
|
*
|
||
|
* @package Opencart\Admin\Model\Setting
|
||
|
*/
|
||
|
class Cron extends \Opencart\System\Engine\Model {
|
||
|
/**
|
||
|
* @param string $code
|
||
|
* @param string $description
|
||
|
* @param string $cycle
|
||
|
* @param string $action
|
||
|
* @param bool $status
|
||
|
*
|
||
|
* @return int
|
||
|
*/
|
||
|
public function addCron(string $code, string $description, string $cycle, string $action, bool $status): int {
|
||
|
$this->db->query("INSERT INTO `" . DB_PREFIX . "cron` SET `code` = '" . $this->db->escape($code) . "', `description` = '" . $this->db->escape($description) . "', `cycle` = '" . $this->db->escape($cycle) . "', `action` = '" . $this->db->escape($action) . "', `status` = '" . (int)$status . "', `date_added` = NOW(), `date_modified` = NOW()");
|
||
|
|
||
|
return $this->db->getLastId();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $cron_id
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function deleteCron(int $cron_id): void {
|
||
|
$this->db->query("DELETE FROM `" . DB_PREFIX . "cron` WHERE `cron_id` = '" . (int)$cron_id . "'");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $code
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function deleteCronByCode(string $code): void {
|
||
|
$this->db->query("DELETE FROM `" . DB_PREFIX . "cron` WHERE `code` = '" . $this->db->escape($code) . "'");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $cron_id
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function editCron(int $cron_id): void {
|
||
|
$this->db->query("UPDATE `" . DB_PREFIX . "cron` SET `date_modified` = NOW() WHERE `cron_id` = '" . (int)$cron_id . "'");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $cron_id
|
||
|
* @param bool $status
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function editStatus(int $cron_id, bool $status): void {
|
||
|
$this->db->query("UPDATE `" . DB_PREFIX . "cron` SET `status` = '" . (bool)$status . "' WHERE `cron_id` = '" . (int)$cron_id . "'");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $cron_id
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getCron(int $cron_id): array {
|
||
|
$query = $this->db->query("SELECT DISTINCT * FROM `" . DB_PREFIX . "cron` WHERE `cron_id` = '" . (int)$cron_id . "'");
|
||
|
|
||
|
return $query->row;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $code
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getCronByCode(string $code): array {
|
||
|
$query = $this->db->query("SELECT DISTINCT * FROM `" . DB_PREFIX . "cron` WHERE `code` = '" . $this->db->escape($code) . "' LIMIT 1");
|
||
|
|
||
|
return $query->row;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $data
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getCrons(array $data = []): array {
|
||
|
$sql = "SELECT * FROM `" . DB_PREFIX . "cron`";
|
||
|
|
||
|
$sort_data = [
|
||
|
'code',
|
||
|
'cycle',
|
||
|
'action',
|
||
|
'status',
|
||
|
'date_added',
|
||
|
'date_modified'
|
||
|
];
|
||
|
|
||
|
if (isset($data['sort']) && in_array($data['sort'], $sort_data)) {
|
||
|
$sql .= " ORDER BY " . $data['sort'];
|
||
|
} else {
|
||
|
$sql .= " ORDER BY `date_added`";
|
||
|
}
|
||
|
|
||
|
if (isset($data['order']) && ($data['order'] == 'DESC')) {
|
||
|
$sql .= " DESC";
|
||
|
} else {
|
||
|
$sql .= " ASC";
|
||
|
}
|
||
|
|
||
|
if (isset($data['start']) || isset($data['limit'])) {
|
||
|
if ($data['start'] < 0) {
|
||
|
$data['start'] = 0;
|
||
|
}
|
||
|
|
||
|
if ($data['limit'] < 1) {
|
||
|
$data['limit'] = 20;
|
||
|
}
|
||
|
|
||
|
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||
|
}
|
||
|
|
||
|
$query = $this->db->query($sql);
|
||
|
|
||
|
return $query->rows;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getTotalCrons(): int {
|
||
|
$query = $this->db->query("SELECT COUNT(*) AS `total` FROM `" . DB_PREFIX . "cron`");
|
||
|
|
||
|
return (int)$query->row['total'];
|
||
|
}
|
||
|
}
|