mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 03:53:13 +00:00
229 lines
5.6 KiB
PHP
229 lines
5.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Plugin\Management;
|
|
|
|
use Alchemy\Phrasea\Plugin\Exception\RegistrationFailureException;
|
|
|
|
class AutoloaderGenerator
|
|
{
|
|
private $pluginDirectory;
|
|
|
|
public function __construct($pluginDirectory)
|
|
{
|
|
$this->pluginDirectory = $pluginDirectory;
|
|
}
|
|
|
|
public function write($manifests)
|
|
{
|
|
$this
|
|
->doWrite('autoload.php', $this->createLoader($manifests))
|
|
->doWrite('services.php', $this->createServices($manifests))
|
|
->doWrite('commands.php', $this->createCommands($manifests))
|
|
->doWrite('twig-paths.php', $this->createTwigPathsMap($manifests))
|
|
->doWrite('login.less', $this->createLoginLess($manifests))
|
|
->doWrite('account.less', $this->createAccountLess($manifests));
|
|
|
|
return $this;
|
|
}
|
|
|
|
private function createLoginLess($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
// This file is automatically generated, please do not edit it.
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
$filepath = $this->pluginDirectory . DIRECTORY_SEPARATOR . $manifest->getName() . DIRECTORY_SEPARATOR . 'less' . DIRECTORY_SEPARATOR . 'login.less';
|
|
if (is_file($filepath)) {
|
|
$relativePath = $manifest->getName() . DIRECTORY_SEPARATOR . 'less' . DIRECTORY_SEPARATOR . 'login.less';
|
|
$buffer .= <<<EOF
|
|
|
|
@import "$relativePath";
|
|
EOF;
|
|
}
|
|
}
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
private function createAccountLess($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
// This file is automatically generated, please do not edit it.
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
$filepath = $this->pluginDirectory . DIRECTORY_SEPARATOR . $manifest->getName() . DIRECTORY_SEPARATOR . 'less' . DIRECTORY_SEPARATOR . 'account.less';
|
|
if (is_file($filepath)) {
|
|
$relativePath = $manifest->getName() . DIRECTORY_SEPARATOR . 'less' . DIRECTORY_SEPARATOR . 'account.less';
|
|
$buffer .= <<<EOF
|
|
|
|
@import "$relativePath";
|
|
EOF;
|
|
}
|
|
}
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
private function doWrite($file, $data)
|
|
{
|
|
if (false === file_put_contents($this->pluginDirectory . DIRECTORY_SEPARATOR . $file, $data)) {
|
|
throw new RegistrationFailureException(sprintf('Failed to write %s', $file));
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
private function createLoader($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
<?php
|
|
|
|
// This file is automatically generated, please do not edit it.
|
|
// To update configuration, use bin/console plugins:* commands.
|
|
|
|
return call_user_func(function () {
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
$autoloader = '/' . $manifest->getName() . DIRECTORY_SEPARATOR . "vendor" . DIRECTORY_SEPARATOR . "autoload.php";
|
|
$buffer .= <<<EOF
|
|
|
|
require __DIR__ . '$autoloader';
|
|
EOF;
|
|
}
|
|
|
|
// composer loader are preprent
|
|
$autoloader = '/../vendor/autoload.php';
|
|
$buffer .= <<<EOF
|
|
|
|
\$loader = require __DIR__ . '$autoloader';
|
|
|
|
return \$loader;\n});
|
|
|
|
EOF;
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
private function createServices($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
<?php
|
|
|
|
// This file is automatically generated, please do not edit it.
|
|
// To update configuration, use bin/console plugins:* commands.
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
|
|
return call_user_func(function (Application \$app) {
|
|
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
foreach ($manifest->getServices() as $service) {
|
|
$class = $service['class'];
|
|
$buffer .= <<<EOF
|
|
\$app->register($class::create(\$app));
|
|
EOF;
|
|
}
|
|
}
|
|
|
|
$buffer .= <<<EOF
|
|
|
|
return \$app;
|
|
}, \$app);
|
|
|
|
EOF;
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
private function createCommands($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
<?php
|
|
|
|
// This file is automatically generated, please do not edit it.
|
|
// To update configuration, use bin/console plugins:* commands.
|
|
|
|
use Alchemy\Phrasea\CLI;
|
|
|
|
return call_user_func(function (CLI \$cli) {
|
|
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
foreach ($manifest->getCommands() as $command) {
|
|
$class = $command['class'];
|
|
$buffer .= <<<EOF
|
|
\$cli->command($class::create());
|
|
EOF;
|
|
}
|
|
}
|
|
|
|
$buffer .= <<<EOF
|
|
|
|
return \$cli;
|
|
}, \$cli);
|
|
|
|
EOF;
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
public function createTwigPathsMap($manifests)
|
|
{
|
|
$buffer = <<<EOF
|
|
<?php
|
|
|
|
// This file is automatically generated, please do not edit it.
|
|
// To update configuration, use bin/console plugins:* commands.
|
|
|
|
return array(
|
|
|
|
EOF;
|
|
|
|
foreach ($manifests as $manifest) {
|
|
$namespace = $this->quote('plugin-' . $manifest->getName());
|
|
$path = $this->pluginDirectory . DIRECTORY_SEPARATOR . $manifest->getName() . DIRECTORY_SEPARATOR . 'views';
|
|
|
|
if (is_dir($path)) {
|
|
$path = $this->quote($path);
|
|
$buffer .= <<<EOF
|
|
$namespace => $path,
|
|
EOF;
|
|
}
|
|
|
|
foreach ($manifest->getTwigPaths() as $path) {
|
|
$path = $this->quote($this->pluginDirectory . DIRECTORY_SEPARATOR . $manifest->getName() . DIRECTORY_SEPARATOR . $path);
|
|
$buffer .= <<<EOF
|
|
$path,
|
|
EOF;
|
|
}
|
|
}
|
|
|
|
$buffer .= <<<EOF
|
|
);
|
|
|
|
EOF;
|
|
|
|
return $buffer;
|
|
}
|
|
|
|
private function quote($string)
|
|
{
|
|
return "'".str_replace("'", "\'", $string)."'";
|
|
}
|
|
}
|