mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 13:03:20 +00:00

Conflicts: lib/Alchemy/Phrasea/Command/Developer/JavascriptBuilder.php lib/Alchemy/Phrasea/Controller/Prod/Basket.php lib/Alchemy/Phrasea/Core/Provider/TaskManagerServiceProvider.php lib/classes/Exception/Feed/ItemNotFound.php lib/classes/Exception/Feed/PublisherNotFound.php lib/classes/Feed/Abstract.php lib/classes/Feed/Adapter.php lib/classes/Feed/Aggregate.php lib/classes/Feed/Collection.php lib/classes/Feed/CollectionInterface.php lib/classes/Feed/Entry/Adapter.php lib/classes/Feed/Entry/Collection.php lib/classes/Feed/Entry/Interface.php lib/classes/Feed/Entry/Item.php lib/classes/Feed/Entry/ItemInterface.php lib/classes/Feed/Interface.php lib/classes/Feed/Link.php lib/classes/Feed/LinkInterface.php lib/classes/Feed/Publisher/Adapter.php lib/classes/Feed/Publisher/Interface.php lib/classes/Feed/Token.php lib/classes/Feed/TokenAggregate.php lib/classes/Feed/XML/Abstract.php lib/classes/Feed/XML/Atom.php lib/classes/Feed/XML/Cooliris.php lib/classes/Feed/XML/Interface.php lib/classes/Feed/XML/RSS.php lib/classes/Feed/XML/RSS/ImageInterface.php lib/classes/http/request.php lib/classes/module/console/schedulerStart.php lib/classes/module/console/schedulerState.php lib/classes/module/console/schedulerStop.php lib/classes/module/console/taskState.php lib/classes/module/console/tasklist.php lib/classes/module/console/taskrun.php lib/classes/registry.php lib/classes/registryInterface.php lib/classes/set/order.php lib/classes/system/url.php lib/classes/task/Scheduler.php lib/classes/task/appboxAbstract.php lib/classes/task/databoxAbstract.php lib/classes/task/manager.php lib/classes/task/period/RecordMover.php lib/classes/task/period/apibridge.php lib/classes/task/period/archive.php lib/classes/task/period/cindexer.php lib/classes/task/period/emptyColl.php lib/classes/task/period/ftp.php lib/classes/task/period/ftpPull.php lib/classes/task/period/subdef.php lib/classes/task/period/test.php lib/classes/task/period/writemeta.php lib/conf.d/PhraseaFixture/AbstractWZ.php lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php lib/conf.d/PhraseaFixture/Story/LoadOneStory.php lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php lib/conf.d/PhraseaFixture/UsrLists/UsrList.php lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php
260 lines
6.1 KiB
PHP
260 lines
6.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Core\Configuration;
|
|
|
|
use Alchemy\Phrasea\Exception\RuntimeException;
|
|
use Alchemy\Phrasea\Exception\InvalidArgumentException;
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
class Configuration implements ConfigurationInterface
|
|
{
|
|
const CONFIG_REF = '/../../../../../lib/conf.d/configuration.yml';
|
|
|
|
private $cache;
|
|
private $parser;
|
|
private $compiler;
|
|
private $config;
|
|
private $compiled;
|
|
private $autoReload;
|
|
|
|
/**
|
|
* @param Yaml $yaml The Yaml Parser
|
|
* @param Compiler $compiler The PHP Compiler
|
|
* @param $config The path to the yaml configuration path
|
|
* @param $compiled The path to the compiled configuration path
|
|
* @param $autoReload Whether to recompile configuration on any change (slow, useful in debug)
|
|
*/
|
|
public function __construct(Yaml $yaml, Compiler $compiler, $config, $compiled, $autoReload)
|
|
{
|
|
$this->parser = $yaml;
|
|
$this->compiler = $compiler;
|
|
$this->config = $config;
|
|
$this->compiled = $compiled;
|
|
$this->autoReload = (Boolean) $autoReload;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetExists($offset)
|
|
{
|
|
$conf = $this->getConfig();
|
|
|
|
return isset($conf[$offset]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetSet($offset, $value)
|
|
{
|
|
$conf = $this->getConfig();
|
|
$conf[$offset] = $value;
|
|
|
|
$this->setConfig($conf);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetGet($offset)
|
|
{
|
|
$conf = $this->getConfig();
|
|
|
|
return $conf[$offset];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetUnset($offset)
|
|
{
|
|
$conf = $this->getConfig();
|
|
unset($conf[$offset]);
|
|
|
|
$this->setConfig($conf);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function setDefault($name)
|
|
{
|
|
$defaultConfig = $this->loadDefaultConfiguration();
|
|
|
|
if (!isset($defaultConfig[$name])) {
|
|
throw new InvalidArgumentException(sprintf('%s is not a valid config name', $name));
|
|
}
|
|
|
|
$newConfig = $this->doSetDefault($this->getConfig(), $defaultConfig, func_get_args());
|
|
|
|
return $this->setConfig($newConfig);
|
|
}
|
|
|
|
private function doSetDefault($newConfig, $default, array $keys)
|
|
{
|
|
$name = array_shift($keys);
|
|
|
|
if (!isset($default[$name])) {
|
|
throw new InvalidArgumentException(sprintf('%s is not a valid config name', $name));
|
|
}
|
|
|
|
if (count($keys) === 0) {
|
|
$newConfig[$name] = $default[$name];
|
|
} else {
|
|
$newConfig[$name] = $this->doSetDefault($newConfig[$name], $default[$name], $keys);
|
|
}
|
|
|
|
return $newConfig;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
if (null !== $this->cache) {
|
|
return $this->cache;
|
|
}
|
|
|
|
if (!is_file($this->compiled) || ($this->isAutoReload() && !$this->isConfigFresh())) {
|
|
if (!$this->isSetup()) {
|
|
throw new RuntimeException('Configuration is not set up');
|
|
}
|
|
$this->writeCacheConfig($this->compiler->compile(
|
|
$this->parser->parse($this->loadFile($this->config))
|
|
));
|
|
}
|
|
|
|
return $this->cache = require $this->compiled;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function setConfig(array $config)
|
|
{
|
|
$this->cache = $config;
|
|
$this->dumpFile($this->config, $this->parser->dump($config, 7));
|
|
$this->writeCacheConfig($this->compiler->compile($config));
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function compileAndWrite()
|
|
{
|
|
$this->cache = null;
|
|
$this->writeCacheConfig($this->compiler->compile(
|
|
$this->parser->parse($this->loadFile($this->config))
|
|
));
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function delete()
|
|
{
|
|
$this->cache = null;
|
|
foreach ([
|
|
$this->config,
|
|
$this->compiled,
|
|
] as $file) {
|
|
$this->eraseFile($file);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function initialize()
|
|
{
|
|
$this->delete();
|
|
$this->dumpFile($this->config, $this->loadFile(__DIR__ . static::CONFIG_REF), 0600);
|
|
|
|
return $this->getConfig();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isSetup()
|
|
{
|
|
return file_exists($this->config);
|
|
}
|
|
|
|
private function isAutoReload()
|
|
{
|
|
return $this->autoReload;
|
|
}
|
|
|
|
public function getTestConnectionParameters()
|
|
{
|
|
return [
|
|
'driver' => 'pdo_sqlite',
|
|
'path' => '/tmp/db.sqlite',
|
|
'charset' => 'UTF8',
|
|
];
|
|
}
|
|
|
|
private function loadDefaultConfiguration()
|
|
{
|
|
return $this->parser->parse($this->loadFile(__DIR__ . static::CONFIG_REF));
|
|
}
|
|
|
|
private function writeCacheConfig($content)
|
|
{
|
|
$this->dumpFile($this->compiled, $content, 0600);
|
|
}
|
|
|
|
private function isConfigFresh()
|
|
{
|
|
return @filemtime($this->config) <= @filemtime($this->compiled);
|
|
}
|
|
|
|
private function loadFile($file)
|
|
{
|
|
if (!is_file($file) || !is_readable($file)) {
|
|
throw new RuntimeException(sprintf('Unable to read %s', $file));
|
|
}
|
|
|
|
return file_get_contents($file);
|
|
}
|
|
|
|
private function dumpFile($file, $content, $mod = 0600)
|
|
{
|
|
$tmpFile = tempnam(dirname($file), basename($file));
|
|
if (false !== @file_put_contents($tmpFile, $content)) {
|
|
// rename does not work on Win32 before 5.2.6
|
|
if (@rename($tmpFile, $file)) {
|
|
@chmod($file, $mod & ~umask());
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
unlink($tmpFile);
|
|
throw new RuntimeException(sprintf('Unable to write %s', $file));
|
|
}
|
|
|
|
private function eraseFile($file)
|
|
{
|
|
if (is_file($file)) {
|
|
unlink($file);
|
|
}
|
|
}
|
|
}
|