Files
Cloud-CMS/lib/Service/BaseDependenciesService.php

175 lines
3.9 KiB
PHP
Raw Permalink 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\Service;
use Psr\Log\NullLogger;
use Slim\Views\Twig;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Xibo\Entity\User;
use Xibo\Helper\ApplicationState;
use Xibo\Helper\NullSanitizer;
use Xibo\Helper\NullView;
use Xibo\Helper\SanitizerService;
use Xibo\Storage\PdoStorageService;
class BaseDependenciesService
{
/**
* @var LogServiceInterface
*/
private $log;
/**
* @var SanitizerService
*/
private $sanitizerService;
/**
* @var ApplicationState
*/
private $state;
/**
* @var ConfigServiceInterface
*/
private $configService;
/**
* @var User
*/
private $user;
/**
* @var Twig
*/
private $view;
/**
* @var PdoStorageService
*/
private $storageService;
/** @var \Symfony\Component\EventDispatcher\EventDispatcherInterface */
private $dispatcher;
public function setLogger(LogServiceInterface $logService)
{
$this->log = $logService;
}
/**
* @return LogServiceInterface
*/
public function getLogger()
{
if ($this->log === null) {
$this->log = new NullLogService(new NullLogger());
}
return $this->log;
}
public function setSanitizer(SanitizerService $sanitizerService)
{
$this->sanitizerService = $sanitizerService;
}
public function getSanitizer(): SanitizerService
{
if ($this->sanitizerService === null) {
$this->sanitizerService = new NullSanitizer();
}
return $this->sanitizerService;
}
public function setState(ApplicationState $applicationState)
{
$this->state = $applicationState;
}
public function getState(): ApplicationState
{
return $this->state;
}
public function setUser(User $user)
{
$this->user = $user;
}
public function getUser(): User
{
return $this->user;
}
public function setConfig(ConfigServiceInterface $configService)
{
$this->configService = $configService;
}
public function getConfig() : ConfigServiceInterface
{
return $this->configService;
}
public function setView(Twig $view)
{
$this->view = $view;
}
public function getView() : Twig
{
if ($this->view === null) {
$this->view = new NullView();
}
return $this->view;
}
public function setStore(PdoStorageService $storageService)
{
$this->storageService = $storageService;
}
public function getStore()
{
return $this->storageService;
}
public function setDispatcher(EventDispatcherInterface $dispatcher): BaseDependenciesService
{
$this->dispatcher = $dispatcher;
return $this;
}
public function getDispatcher(): EventDispatcherInterface
{
if ($this->dispatcher === null) {
$this->getLogger()->error('getDispatcher: [base] No dispatcher found, returning an empty one');
$this->dispatcher = new EventDispatcher();
}
return $this->dispatcher;
}
}