22 use Composer\Spdx\SpdxLicenses;
23 use JsonSchema\Validator;
24 use Seld\JsonLint\JsonParser;
25 use Seld\JsonLint\ParsingException;
58 if ( !class_exists( Validator::class ) ) {
59 call_user_func( $this->missingDepCallback,
60 'The JsonSchema library cannot be found, please install it through composer.'
65 if ( !class_exists( SpdxLicenses::class ) ) {
66 call_user_func( $this->missingDepCallback,
67 'The spdx-licenses library cannot be found, please install it through composer.'
72 if ( !class_exists( JsonParser::class ) ) {
73 call_user_func( $this->missingDepCallback,
74 'The JSON lint library cannot be found, please install it through composer.'
87 $contents = file_get_contents(
$path );
88 $jsonParser =
new JsonParser();
90 $data = $jsonParser->parse( $contents, JsonParser::DETECT_KEY_CONFLICTS );
91 }
catch ( ParsingException $e ) {
92 if ( $e instanceof \Seld\JsonLint\DuplicateKeyException ) {
98 if ( !isset( $data->manifest_version ) ) {
100 "$path does not have manifest_version set." );
103 $version = $data->manifest_version;
104 $schemaPath = __DIR__ .
"/../../docs/extension.schema.v$version.json";
109 "$path is using a non-supported schema version"
115 "$path is using a non-supported schema version"
121 if ( isset( $data->{
'license-name'} ) && is_string( $data->{
'license-name'} ) ) {
122 $licenses =
new SpdxLicenses();
123 $valid = $licenses->validate( $data->{
'license-name'} );
125 $extraErrors[] =
'[license-name] Invalid SPDX license identifier, '
126 .
'see <https://spdx.org/licenses/>';
129 if ( isset( $data->url ) && is_string( $data->url ) ) {
132 if ( $parsed[
'host'] ===
'www.mediawiki.org' ) {
134 } elseif ( $parsed[
'host'] ===
'mediawiki.org' ) {
136 $extraErrors[] =
'[url] Should use www.mediawiki.org domain';
139 if ( $mwoUrl && $parsed[
'scheme'] !==
'https' ) {
140 $extraErrors[] =
'[url] Should use HTTPS for www.mediawiki.org URLs';
145 if ( isset( $data->ParserTestFiles ) ) {
147 $extraErrors[] =
'[ParserTestFiles] DEPRECATED: see <https://www.mediawiki.org/wiki/Manual:Extension.json/Schema#ParserTestFiles>';
150 $validator =
new Validator;
151 $validator->check( $data, (
object)[
'$ref' =>
'file://' . $schemaPath ] );
152 if ( $validator->isValid() && !$extraErrors ) {
157 $out =
"$path did not pass validation.\n";
158 foreach ( $validator->getErrors() as $error ) {
159 $out .=
"[{$error['property']}] {$error['message']}\n";
161 if ( $extraErrors ) {
162 $out .= implode(
"\n", $extraErrors ) .
"\n";