Files
Cloud-CMS/lib/Factory/TaskFactory.php

164 lines
4.7 KiB
PHP
Raw Normal View History

2025-12-02 10:32:59 -05:00
<?php
/*
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Xibo\Factory;
use Xibo\Entity\Task;
use Xibo\Support\Exception\NotFoundException;
/**
* Class TaskFactory
* @package Xibo\Factory
*/
class TaskFactory extends BaseFactory
{
/**
* Create empty
* @return Task
*/
public function create()
{
return new Task($this->getStore(), $this->getLog(), $this->getDispatcher());
}
/**
* Get by ID
* @param int $taskId
* @return Task
* @throws NotFoundException if the task cannot be resolved from the provided route
*/
public function getById($taskId)
{
$tasks = $this->query(null, array('taskId' => $taskId));
if (count($tasks) <= 0)
throw new NotFoundException();
return $tasks[0];
}
/**
* Get by Name
* @param string $task
* @return Task
* @throws NotFoundException if the task cannot be resolved from the provided route
*/
public function getByName($task)
{
$tasks = $this->query(null, array('name' => $task));
if (count($tasks) <= 0)
throw new NotFoundException();
return $tasks[0];
}
/**
* Get by Class
* @param string $class
* @return Task
* @throws NotFoundException if the task cannot be resolved from the provided route
*/
public function getByClass($class)
{
$tasks = $this->query(null, array('class' => $class));
if (count($tasks) <= 0)
throw new NotFoundException();
return $tasks[0];
}
/**
* @param null $sortOrder
* @param array $filterBy
* @return array
*/
public function query($sortOrder = null, $filterBy = [])
{
if ($sortOrder == null) {
$sortOrder = ['name'];
}
$sanitizedFilter = $this->getSanitizer($filterBy);
$entries = [];
$params = [];
$select = '
SELECT `taskId`, `name`, `status`, `pid`, `configFile`, `class`, `options`, `schedule`,
`lastRunDt`, `lastRunStatus`, `lastRunMessage`, `lastRunDuration`, `lastRunExitCode`,
`isActive`, `runNow`, `lastRunStartDt`
';
$body = ' FROM `task`
WHERE 1 = 1 ';
if ($sanitizedFilter->getString('name') != null) {
$params['name'] = $sanitizedFilter->getString('name');
$body .= ' AND `name` = :name ';
}
if ($sanitizedFilter->getString('class') != null) {
$params['class'] = $sanitizedFilter->getString('class');
$body .= ' AND `class` = :class ';
}
if ($sanitizedFilter->getInt('taskId') !== null) {
$params['taskId'] = $sanitizedFilter->getInt('taskId');
$body .= ' AND `taskId` = :taskId ';
}
// Sorting?
$body .= 'ORDER BY ' . implode(',', $sortOrder);
// Paging
$limit = '';
if ($filterBy !== null && $sanitizedFilter->getInt('start') !== null && $sanitizedFilter->getInt('length') !== null) {
$limit = ' LIMIT ' . $sanitizedFilter->getInt('start', ['default' => 0]) . ', ' . $sanitizedFilter->getInt('length', ['default' => 10]);
}
$sql = $select . $body . $limit;
foreach ($this->getStore()->select($sql, $params) as $row) {
$task = $this->create()->hydrate($row, [
'intProperties' => [
'status', 'lastRunStatus', 'nextRunDt', 'lastRunDt', 'lastRunStartDt', 'lastRunExitCode', 'runNow', 'isActive', 'pid'
]
]);
if ($task->options != null)
$task->options = json_decode($task->options, true);
else
$task->options = [];
$entries[] = $task;
}
// Paging
if ($limit != '' && count($entries) > 0) {
$results = $this->getStore()->select('SELECT COUNT(*) AS total ' . $body, $params);
$this->_countLast = intval($results[0]['total']);
}
return $entries;
}
}