mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00
81 lines
2.2 KiB
PHP
81 lines
2.2 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\Schema;
|
|
|
|
use Alchemy\Phrasea\Plugin\Schema\ManifestValidator;
|
|
use Alchemy\Phrasea\Plugin\Schema\Manifest;
|
|
use Alchemy\Phrasea\Plugin\Exception\PluginValidationException;
|
|
use Alchemy\Phrasea\Plugin\Exception\JsonValidationException;
|
|
|
|
class PluginValidator
|
|
{
|
|
private $manifestValidator;
|
|
|
|
public function __construct(ManifestValidator $manifestValidator)
|
|
{
|
|
$this->manifestValidator = $manifestValidator;
|
|
}
|
|
|
|
public function validatePlugin($directory)
|
|
{
|
|
$this->ensureComposer($directory);
|
|
$this->ensureManifest($directory);
|
|
|
|
$manifest = $directory . DIRECTORY_SEPARATOR . 'manifest.json';
|
|
$data = @json_decode(@file_get_contents($manifest));
|
|
|
|
if (JSON_ERROR_NONE !== json_last_error()) {
|
|
throw new PluginValidationException(sprintf('Unable to parse file %s', $manifest));
|
|
}
|
|
|
|
try {
|
|
$this->manifestValidator->validate($data);
|
|
} catch (JsonValidationException $e) {
|
|
throw new PluginValidationException('Manifest file is invalid', $e->getCode(), $e);
|
|
}
|
|
|
|
return new Manifest($this->objectToArray($data));
|
|
}
|
|
|
|
private function ensureManifest($directory)
|
|
{
|
|
$manifest = $directory . DIRECTORY_SEPARATOR . 'manifest.json';
|
|
$this->ensureFile($manifest);
|
|
}
|
|
|
|
private function ensureComposer($directory)
|
|
{
|
|
$composer = $directory . DIRECTORY_SEPARATOR . 'composer.json';
|
|
$this->ensureFile($composer);
|
|
}
|
|
|
|
private function ensureFile($file)
|
|
{
|
|
if (!file_exists($file) || !is_file($file) || !is_readable($file)) {
|
|
throw new PluginValidationException(sprintf('Required file %s is not present.', $file));
|
|
}
|
|
}
|
|
|
|
private function objectToArray($data)
|
|
{
|
|
if (is_object($data)) {
|
|
$data = get_object_vars($data);
|
|
}
|
|
|
|
if (is_array($data)) {
|
|
return array_map(array($this, 'objectToArray'), $data);
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|