芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/avenida/lib/Factory/AuditLogFactory.php
. */ namespace Xibo\Factory; use Xibo\Entity\AuditLog; use Xibo\Service\LogServiceInterface; use Xibo\Service\SanitizerServiceInterface; use Xibo\Storage\StorageServiceInterface; /** * Class AuditLogFactory * @package Xibo\Factory */ class AuditLogFactory extends BaseFactory { /** * Construct a factory * @param StorageServiceInterface $store * @param LogServiceInterface $log * @param SanitizerServiceInterface $sanitizerService */ public function __construct($store, $log, $sanitizerService) { $this->setCommonDependencies($store, $log, $sanitizerService); } /** * @return AuditLog */ public function create() { return new AuditLog($this->getStore(), $this->getLog()); } /** * @param array $sortOrder * @param array $filterBy * @return array */ public function query($sortOrder = null, $filterBy = []) { $this->getLog()->debug('AuditLog Factory with filter: %s', var_export($filterBy, true)); $entries = []; $params = []; $select = ' SELECT logId, logDate, user.userName, message, objectAfter, entity, entityId, auditlog.userId '; $body = 'FROM `auditlog` LEFT OUTER JOIN user ON user.userId = auditlog.userId WHERE 1 = 1 '; if ($this->getSanitizer()->getInt('fromTimeStamp', $filterBy) !== null) { $body .= ' AND `auditlog`.logDate >= :fromTimeStamp '; $params['fromTimeStamp'] = $this->getSanitizer()->getInt('fromTimeStamp', $filterBy); } if ($this->getSanitizer()->getInt('toTimeStamp', $filterBy) !== null) { $body .= ' AND `auditlog`.logDate < :toTimeStamp '; $params['toTimeStamp'] = $this->getSanitizer()->getInt('toTimeStamp', $filterBy); } if ($this->getSanitizer()->getString('entity', $filterBy) != null) { $body .= ' AND `auditlog`.entity LIKE :entity '; $params['entity'] = '%' . $this->getSanitizer()->getString('entity', $filterBy) . '%'; } if ($this->getSanitizer()->getString('userName', $filterBy) != null) { $body .= ' AND `auditlog`.userName LIKE :userName '; $params['userName'] = '%' . $this->getSanitizer()->getString('userName', $filterBy) . '%'; } if ($this->getSanitizer()->getString('message', $filterBy) != null) { $body .= ' AND `auditlog`.message LIKE :message '; $params['message'] = '%' . $this->getSanitizer()->getString('message', $filterBy) . '%'; } $order = ''; if (is_array($sortOrder) && count($sortOrder) > 0) { $order .= 'ORDER BY ' . implode(', ', $sortOrder) . ' '; } $limit = ''; // Paging if ($filterBy !== null && $this->getSanitizer()->getInt('start', $filterBy) !== null && $this->getSanitizer()->getInt('length', $filterBy) !== null) { $limit = ' LIMIT ' . intval($this->getSanitizer()->getInt('start', $filterBy), 0) . ', ' . $this->getSanitizer()->getInt('length', 10, $filterBy); } // The final statements $sql = $select . $body . $order . $limit; $dbh = $this->getStore()->getConnection(); $sth = $dbh->prepare($sql); $sth->execute($params); foreach ($sth->fetchAll() as $row) { $entries[] = $this->create()->hydrate($row); } // Paging if ($limit != '' && count($entries) > 0) { $results = $this->getStore()->select('SELECT COUNT(*) AS total ' . $body, $params); $this->_countLast = intval($results[0]['total']); } return $entries; } }