Files
Phraseanet/lib/Alchemy/Phrasea/Plugin/Management/ComposerInstaller.php
Jean-Yves Gaulier 1106e28603 PHRAS-3008_multiple-definitions-warnings_4.1
- fix : removed composer.phar after plugin add.
2020-04-02 14:57:05 +02:00

84 lines
2.4 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 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\ComposerInstallException;
use Alchemy\Phrasea\Utilities\ComposerSetup;
use Symfony\Component\Process\ProcessBuilder;
use Symfony\Component\Process\Exception\ExceptionInterface as ProcessException;
class ComposerInstaller
{
private $composer;
private $phpExecutable;
private $setup;
public function __construct(ComposerSetup $setup, $pluginsDirectory, $phpExecutable)
{
if (!is_executable($phpExecutable)) {
throw new ComposerInstallException(sprintf('`%s` is not a valid PHP executable', $phpExecutable));
}
$this->setup = $setup;
$this->phpExecutable = $phpExecutable;
$this->composer = $pluginsDirectory . DIRECTORY_SEPARATOR . 'composer.phar';
}
public function __destruct()
{
@unlink($this->composer);
}
public function install($directory)
{
$process = $this->createProcessBuilder()
->setTimeout(null)
->add('install')
->add('--working-dir')
->add($directory)
->add('--no-dev')
->add('--optimize-autoloader')
->getProcess();
try {
$process->run();
} catch (ProcessException $e) {
throw new ComposerInstallException(sprintf('Unable to composer install %s', $directory), $e->getCode(), $e);
}
if (!$process->isSuccessful()) {
throw new ComposerInstallException(sprintf('Unable to composer install %s', $directory));
}
}
/**
* @return ProcessBuilder
*/
private function createProcessBuilder()
{
if (!file_exists($this->composer)) {
try {
$this->setup->setup($this->composer);
} catch (RuntimeException $e) {
throw new ComposerInstallException('Unable to install composer.', $e->getCode(), $e);
}
} else {
$process = ProcessBuilder::create([
$this->phpExecutable, $this->composer, 'self-update'
])->getProcess();
$process->run();
}
return ProcessBuilder::create([$this->phpExecutable, $this->composer]);
}
}