206 lines
5.3 KiB
PHP
206 lines
5.3 KiB
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
/**
|
|
* This file is part of Icinga Web 2.
|
|
*
|
|
* Icinga Web 2 - Head for multiple monitoring backends.
|
|
* Copyright (C) 2013 Icinga Development Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
*
|
|
*/
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\User\Preferences;
|
|
|
|
use Icinga\Application\Logger;
|
|
use Icinga\Protocol\Ldap\Exception;
|
|
use \SplObserver;
|
|
use \SplSubject;
|
|
use \Icinga\User;
|
|
use \Icinga\User\Preferences;
|
|
use \Icinga\Exception\ConfigurationError;
|
|
use \Icinga\Exception\ProgrammingError;
|
|
use \Zend_Config;
|
|
use \Icinga\Application\Config as IcingaConfig;
|
|
use \Zend_Config_Writer_Ini;
|
|
|
|
/**
|
|
* Handle preferences in ini files
|
|
*
|
|
* Load and write values from user preferences to ini files
|
|
*/
|
|
class IniStore implements LoadInterface, FlushObserverInterface
|
|
{
|
|
/**
|
|
* Path to ini configuration
|
|
*
|
|
* @var string
|
|
*/
|
|
private $configPath;
|
|
|
|
/**
|
|
* Specific user file for preferences
|
|
*
|
|
* @var string
|
|
*/
|
|
private $preferencesFile;
|
|
|
|
/**
|
|
* Config container
|
|
*
|
|
* @var Zend_Config
|
|
*/
|
|
private $iniConfig;
|
|
|
|
/**
|
|
* Ini writer
|
|
*
|
|
* @var Zend_Config_Writer_Ini
|
|
*/
|
|
private $iniWriter;
|
|
|
|
/**
|
|
* Current user
|
|
*
|
|
* @var User
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* Create a new object
|
|
*
|
|
* @param string|null $configPath
|
|
*/
|
|
public function __construct($configPath = null)
|
|
{
|
|
if ($configPath !== null) {
|
|
$this->setConfigPath($configPath);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Setter for config directory
|
|
*
|
|
* @param string $configPath
|
|
* @throws \Icinga\Exception\ConfigurationError
|
|
*/
|
|
public function setConfigPath($configPath)
|
|
{
|
|
$configPath = IcingaConfig::resolvePath($configPath);
|
|
if (!is_dir($configPath)) {
|
|
throw new ConfigurationError('Config dir dos not exist: '. $configPath);
|
|
}
|
|
|
|
$this->configPath = $configPath;
|
|
}
|
|
|
|
/**
|
|
* Setter for user
|
|
*
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user)
|
|
{
|
|
$this->user = $user;
|
|
|
|
$this->preferencesFile = sprintf(
|
|
'%s/%s.ini',
|
|
$this->configPath,
|
|
$this->user->getUsername()
|
|
);
|
|
|
|
if (file_exists($this->preferencesFile) === false) {
|
|
$this->createDefaultIniFile();
|
|
}
|
|
try {
|
|
$this->iniConfig = new Zend_Config(
|
|
parse_ini_file($this->preferencesFile),
|
|
true
|
|
);
|
|
|
|
$this->iniWriter = new Zend_Config_Writer_Ini(
|
|
array(
|
|
'config' => $this->iniConfig,
|
|
'filename' => $this->preferencesFile
|
|
)
|
|
);
|
|
} catch (Exception $e) {
|
|
Logger::error('Could not create IniStore backend: %s', $e->getMessage());
|
|
throw new \RuntimeException("Creating user preference backend failed");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper to create blank ini file
|
|
*/
|
|
private function createDefaultIniFile()
|
|
{
|
|
// TODO: We should be able to work without preferences. Also we shouldn't store any
|
|
// prefs as long as we didn't change some.
|
|
if (! is_writable($this->configPath) || touch($this->preferencesFile) === false) {
|
|
throw new ConfigurationError(
|
|
sprintf('Unable to store "%s"', $this->preferencesFile)
|
|
);
|
|
}
|
|
chmod($this->preferencesFile, 0664);
|
|
}
|
|
|
|
/**
|
|
* Load preferences from source
|
|
*
|
|
* @return array
|
|
*/
|
|
public function load()
|
|
{
|
|
return $this->iniConfig->toArray();
|
|
}
|
|
|
|
/**
|
|
* Receive update from subject
|
|
*
|
|
* @link http://php.net/manual/en/splobserver.update.php
|
|
* @param SplSubject $subject
|
|
* @throws ProgrammingError
|
|
*/
|
|
public function update(SplSubject $subject)
|
|
{
|
|
if (!$subject instanceof Preferences) {
|
|
throw new ProgrammingError('Not compatible with '. get_class($subject));
|
|
}
|
|
|
|
$changeSet = $subject->getChangeSet();
|
|
|
|
foreach ($changeSet->getCreate() as $key => $value) {
|
|
$this->iniConfig->{$key} = $value;
|
|
}
|
|
|
|
foreach ($changeSet->getUpdate() as $key => $value) {
|
|
$this->iniConfig->{$key} = $value;
|
|
}
|
|
|
|
foreach ($changeSet->getDelete() as $key) {
|
|
unset($this->iniConfig->{$key});
|
|
}
|
|
|
|
// Persist changes to disk
|
|
$this->iniWriter->write();
|
|
}
|
|
}
|