167 lines
5.7 KiB
PHP
167 lines
5.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Composer.
|
|
*
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Composer\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Composer\Json\JsonFile;
|
|
use Composer\Json\JsonValidationException;
|
|
use Composer\Package\Loader\ValidatingArrayLoader;
|
|
use Composer\Package\Loader\ArrayLoader;
|
|
use Composer\Util\RemoteFilesystem;
|
|
use Composer\Util\SpdxLicenseIdentifier;
|
|
|
|
/**
|
|
* ValidateCommand
|
|
*
|
|
* @author Robert Schönthal <seroscho@googlemail.com>
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*/
|
|
class ValidateCommand extends Command
|
|
{
|
|
/**
|
|
* configure
|
|
*/
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setName('validate')
|
|
->setDescription('Validates a composer.json')
|
|
->setDefinition(array(
|
|
new InputArgument('file', InputArgument::OPTIONAL, 'path to composer.json file', './composer.json')
|
|
))
|
|
->setHelp(<<<EOT
|
|
The validate command validates a given composer.json
|
|
|
|
EOT
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
*
|
|
* @return int
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$file = $input->getArgument('file');
|
|
|
|
if (!file_exists($file)) {
|
|
$output->writeln('<error>' . $file . ' not found.</error>');
|
|
|
|
return 1;
|
|
}
|
|
if (!is_readable($file)) {
|
|
$output->writeln('<error>' . $file . ' is not readable.</error>');
|
|
|
|
return 1;
|
|
}
|
|
|
|
$errors = array();
|
|
$publishErrors = array();
|
|
$warnings = array();
|
|
|
|
// validate json schema
|
|
$laxValid = false;
|
|
$valid = false;
|
|
try {
|
|
$json = new JsonFile($file, new RemoteFilesystem($this->getIO()));
|
|
$manifest = $json->read();
|
|
|
|
$json->validateSchema(JsonFile::LAX_SCHEMA);
|
|
$laxValid = true;
|
|
$json->validateSchema();
|
|
$valid = true;
|
|
} catch (JsonValidationException $e) {
|
|
foreach ($e->getErrors() as $message) {
|
|
if ($laxValid) {
|
|
$publishErrors[] = '<error>Publish Error: ' . $message . '</error>';
|
|
} else {
|
|
$errors[] = '<error>' . $message . '</error>';
|
|
}
|
|
}
|
|
} catch (\Exception $e) {
|
|
$output->writeln('<error>' . $e->getMessage() . '</error>');
|
|
|
|
return 1;
|
|
}
|
|
|
|
// validate actual data
|
|
if (!empty($manifest['license'])) {
|
|
$licenseValidator = new SpdxLicenseIdentifier();
|
|
if (!$licenseValidator->validate($manifest['license'])) {
|
|
$warnings[] = sprintf(
|
|
'License %s is not a valid SPDX license identifier, see http://www.spdx.org/licenses/ if you use an open license',
|
|
json_encode($manifest['license'])
|
|
);
|
|
}
|
|
} else {
|
|
$warnings[] = 'No license specified, it is recommended to do so';
|
|
}
|
|
|
|
if (!empty($manifest['name']) && preg_match('{[A-Z]}', $manifest['name'])) {
|
|
$suggestName = preg_replace('{(?:([a-z])([A-Z])|([A-Z])([A-Z][a-z]))}', '\\1\\3-\\2\\4', $manifest['name']);
|
|
$suggestName = strtolower($suggestName);
|
|
|
|
$warnings[] = sprintf(
|
|
'Name "%s" does not match the best practice (e.g. lower-cased/with-dashes). We suggest using "%s" instead. As such you will not be able to submit it to Packagist.',
|
|
$manifest['name'],
|
|
$suggestName
|
|
);
|
|
}
|
|
|
|
// TODO validate package repositories' packages using the same technique as below
|
|
try {
|
|
$loader = new ValidatingArrayLoader(new ArrayLoader(), false);
|
|
if (!isset($manifest['version'])) {
|
|
$manifest['version'] = '1.0.0';
|
|
}
|
|
if (!isset($manifest['name'])) {
|
|
$manifest['name'] = 'dummy/dummy';
|
|
}
|
|
$loader->load($manifest);
|
|
} catch (\Exception $e) {
|
|
$errors = array_merge($errors, explode("\n", $e->getMessage()));
|
|
}
|
|
|
|
// output errors/warnings
|
|
if (!$errors && !$publishErrors && !$warnings) {
|
|
$output->writeln('<info>' . $file . ' is valid</info>');
|
|
} elseif (!$errors && !$publishErrors) {
|
|
$output->writeln('<info>' . $file . ' is valid, but with a few warnings</info>');
|
|
$output->writeln('<warning>See http://getcomposer.org/doc/04-schema.md for details on the schema</warning>');
|
|
} elseif (!$errors) {
|
|
$output->writeln('<info>' . $file . ' is valid for simple usage with composer but has</info>');
|
|
$output->writeln('<info>strict errors that make it unable to be published as a package:</info>');
|
|
$output->writeln('<warning>See http://getcomposer.org/doc/04-schema.md for details on the schema</warning>');
|
|
} else {
|
|
$output->writeln('<error>' . $file . ' is invalid, the following errors/warnings were found:</error>');
|
|
}
|
|
|
|
$messages = array(
|
|
'error' => array_merge($errors, $publishErrors),
|
|
'warning' => $warnings,
|
|
);
|
|
|
|
foreach ($messages as $style => $msgs) {
|
|
foreach ($msgs as $msg) {
|
|
$output->writeln('<' . $style . '>' . $msg . '</' . $style . '>');
|
|
}
|
|
}
|
|
|
|
return $errors || $publishErrors ? 1 : 0;
|
|
}
|
|
}
|