芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/lib/Factory/DayPartFactory.php
. */ namespace Xibo\Factory; use Xibo\Entity\DayPart; use Xibo\Entity\User; use Xibo\Helper\SanitizerService; use Xibo\Service\LogServiceInterface; use Xibo\Storage\StorageServiceInterface; use Xibo\Support\Exception\NotFoundException; /** * Class DayPartFactory * @package Xibo\Factory */ class DayPartFactory extends BaseFactory { /** * Construct a factory * @param StorageServiceInterface $store * @param LogServiceInterface $log * @param SanitizerService $sanitizerService * @param User $user * @param UserFactory $userFactory */ public function __construct($store, $log, $sanitizerService, $user, $userFactory) { $this->setCommonDependencies($store, $log, $sanitizerService); $this->setAclDependencies($user, $userFactory); } /** * Create Empty * @return DayPart */ public function createEmpty() { return new DayPart( $this->getStore(), $this->getLog() ); } /** * Get DayPart by Id * @param $dayPartId * @return DayPart * @throws NotFoundException */ public function getById($dayPartId) { $dayParts = $this->query(null, ['dayPartId' => $dayPartId, 'disableUserCheck' => 1]); if (count($dayParts) <= 0) throw new NotFoundException(); return $dayParts[0]; } /** * Get the Always DayPart * @return DayPart * @throws NotFoundException */ public function getAlwaysDayPart() { $dayParts = $this->query(null, ['disableUserCheck' => 1, 'isAlways' => 1]); if (count($dayParts) <= 0) throw new NotFoundException(); return $dayParts[0]; } /** * Get the Custom DayPart * @return DayPart * @throws NotFoundException */ public function getCustomDayPart() { $dayParts = $this->query(null, ['disableUserCheck' => 1, 'isCustom' => 1]); if (count($dayParts) <= 0) throw new NotFoundException(); return $dayParts[0]; } /** * Get all dayparts with the system entries (always and custom) * @return DayPart[] * @throws NotFoundException */ public function allWithSystem() { $dayParts = $this->query(['isAlways DESC', 'isCustom DESC', 'name']); return $dayParts; } /** * Get by OwnerId * @param int $ownerId * @return DayPart[] * @throws NotFoundException */ public function getByOwnerId($ownerId) { return $this->query(null, ['userId' => $ownerId]); } /** * @param array $sortOrder * @param array $filterBy * @return array[Schedule] * @throws NotFoundException */ public function query($sortOrder = null, $filterBy = []) { $entries = []; $sanitizedFilter = $this->getSanitizer($filterBy); if ($sortOrder == null) $sortOrder = ['name']; $params = array(); $select = 'SELECT `daypart`.dayPartId, `name`, `description`, `isRetired`, `userId`, `startTime`, `endTime`, `exceptions`, `isCustom`, `isAlways` '; $body = ' FROM `daypart` '; $body .= ' WHERE 1 = 1 '; // Always include Custom and Always Daypart for DOOH user. if ($sanitizedFilter->getInt('disableUserCheck') == 0 && ($this->getUser()->userTypeId == 4 || ($this->getUser()->isSuperAdmin() && $this->getUser()->showContentFrom == 2))) { $body .= ' OR `daypart`.isCustom = 1 OR `daypart`.isAlways = 1 '; } if ($sanitizedFilter->getInt('dayPartId') !== null) { $body .= ' AND `daypart`.dayPartId = :dayPartId '; $params['dayPartId'] = $sanitizedFilter->getInt('dayPartId'); } if ($sanitizedFilter->getInt('isAlways') !== null) { $body .= ' AND `daypart`.isAlways = :isAlways '; $params['isAlways'] = $sanitizedFilter->getInt('isAlways'); } if ($sanitizedFilter->getInt('isCustom') !== null) { $body .= ' AND `daypart`.isCustom = :isCustom '; $params['isCustom'] = $sanitizedFilter->getInt('isCustom'); } if ($sanitizedFilter->getString('name') != null) { $terms = explode(',', $sanitizedFilter->getString('name')); $this->nameFilter('daypart', 'name', $terms, $body, $params, ($sanitizedFilter->getCheckbox('useRegexForName') == 1)); } if ($sanitizedFilter->getInt('userId') !== null) { $body .= ' AND `daypart`.userId = :userId '; $params['userId'] = $sanitizedFilter->getInt('userId'); } // View Permissions $this->viewPermissionSql('Xibo\Entity\DayPart', $body, $params, '`daypart`.dayPartId', '`daypart`.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 ' . intval($sanitizedFilter->getInt('start'), 0) . ', ' . $sanitizedFilter->getInt('length', ['default' => 10]); } $sql = $select . $body . $order . $limit; foreach ($this->getStore()->select($sql, $params) as $row) { $dayPart = $this->createEmpty()->hydrate($row, [ 'intProperties' => ['isAlways', 'isCustom'] ]); $dayPart->exceptions = json_decode($dayPart->exceptions, true); $entries[] = $dayPart; } // Paging if ($limit != '' && count($entries) > 0) { $results = $this->getStore()->select('SELECT COUNT(*) AS total ' . $body, $params); $this->_countLast = intval($results[0]['total']); } return $entries; } }