Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,205 @@
<?php
/*
* Copyright (c) 2022 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* 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\ReportSchedule;
use Xibo\Entity\User;
use Xibo\Support\Exception\NotFoundException;
/**
* Class ReportScheduleFactory
* @package Xibo\Factory
*/
class ReportScheduleFactory extends BaseFactory
{
/**
* Construct a factory
* @param User $user
* @param UserFactory $userFactory
*/
public function __construct($user, $userFactory)
{
$this->setAclDependencies($user, $userFactory);
}
/**
* Create Empty
* @return ReportSchedule
*/
public function createEmpty()
{
return new ReportSchedule(
$this->getStore(),
$this->getLog(),
$this->getDispatcher()
);
}
/**
* Loads only the reportSchedule information
* @param int $reportScheduleId
* @param int $disableUserCheck
* @return ReportSchedule
* @throws NotFoundException
*/
public function getById($reportScheduleId, $disableUserCheck = 0)
{
if ($reportScheduleId == 0) {
throw new NotFoundException();
}
$reportSchedules = $this->query(null, ['reportScheduleId' => $reportScheduleId, 'disableUserCheck' => $disableUserCheck]);
if (count($reportSchedules) <= 0) {
throw new NotFoundException(\__('Report Schedule not found'));
}
// Set our reportSchedule
return $reportSchedules[0];
}
public function getByOwnerId($ownerId)
{
return $this->query(null, ['disableUserCheck' => 1, 'userId' => $ownerId]);
}
/**
* @param null $sortOrder
* @param array $filterBy
* @return ReportSchedule[]
* @throws NotFoundException
*/
public function query($sortOrder = null, $filterBy = [])
{
if ($sortOrder == null) {
$sortOrder = ['name'];
}
$sanitizedFilter = $this->getSanitizer($filterBy);
$entries = [];
$params = [];
$select = '
SELECT
reportschedule.reportScheduleId,
reportschedule.name,
reportschedule.lastSavedReportId,
reportschedule.reportName,
reportschedule.filterCriteria,
reportschedule.schedule,
reportschedule.lastRunDt,
reportschedule.previousRunDt,
reportschedule.createdDt,
reportschedule.userId,
reportschedule.fromDt,
reportschedule.toDt,
reportschedule.isActive,
reportschedule.message,
`user`.UserName AS owner
';
$body = ' FROM `reportschedule` ';
$body .= ' LEFT OUTER JOIN `user` ON `user`.userId = `reportschedule`.userId ';
$body .= ' WHERE 1 = 1 ';
// Like
if ($sanitizedFilter->getString('name') != '') {
$terms = explode(',', $sanitizedFilter->getString('name'));
$logicalOperator = $sanitizedFilter->getString('logicalOperatorName', ['default' => 'OR']);
$this->nameFilter(
'reportschedule',
'name',
$terms,
$body,
$params,
($sanitizedFilter->getCheckbox('useRegexForName') == 1),
$logicalOperator
);
}
if ($sanitizedFilter->getInt('reportScheduleId', ['default' => 0]) != 0) {
$params['reportScheduleId'] = $sanitizedFilter->getInt('reportScheduleId', ['default' => 0]);
$body .= ' AND reportschedule.reportScheduleId = :reportScheduleId ';
}
// Owner filter
if ($sanitizedFilter->getInt('userId', ['default' => 0]) != 0) {
$body .= ' AND reportschedule.userid = :userId ';
$params['userId'] = $sanitizedFilter->getInt('userId', ['default' => 0]);
}
if ($sanitizedFilter->getCheckbox('onlyMySchedules') == 1) {
$body .= ' AND reportschedule.userid = :currentUserId ';
$params['currentUserId'] = $this->getUser()->userId;
}
// Report Name
if ($sanitizedFilter->getString('reportName') != '') {
$body .= ' AND reportschedule.reportName = :reportName ';
$params['reportName'] = $sanitizedFilter->getString('reportName');
}
// isActive
if ($sanitizedFilter->getInt('isActive') !== null) {
$body .= ' AND reportschedule.isActive = :isActive ';
$params['isActive'] = $sanitizedFilter->getInt('isActive');
}
// View Permissions
if ($this->getUser()->userTypeId != 1) {
$this->viewPermissionSql('Xibo\Entity\ReportSchedule', $body, $params, '`reportschedule`.reportScheduleId', '`reportschedule`.userId', $filterBy);
}
// Sorting?
$order = '';
if (is_array($sortOrder)) {
$order .= 'ORDER BY ' . implode(',', $sortOrder);
}
$limit = '';
// Paging
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 . $order . $limit;
foreach ($this->getStore()->select($sql, $params) as $row) {
$entries[] = $this->createEmpty()->hydrate($row, [
'intProperties' => [
'reportScheduleId', 'lastRunDt', 'previousRunDt', 'lastSavedReportId', 'isActive', 'fromDt', 'toDt'
]
]);
}
// Paging
if ($limit != '' && count($entries) > 0) {
$results = $this->getStore()->select('SELECT COUNT(*) AS total ' . $body, $params);
$this->_countLast = intval($results[0]['total']);
}
return $entries;
}
}