MediaWiki master
manageForeignResources.php
Go to the documentation of this file.
1<?php
24
25// @codeCoverageIgnoreStart
26require_once __DIR__ . '/Maintenance.php';
27// @codeCoverageIgnoreEnd
28
41 public function __construct() {
42 parent::__construct();
43 $this->addDescription( <<<TEXT
44Manage foreign resources registered with ResourceLoader.
45
46This helps developers with downloading, verifying, and updating local copies of
47upstream libraries registered as ResourceLoader modules. See
48https://www.mediawiki.org/wiki/Foreign_resources
49
50Use the "update" action to download urls specified in foreign-resources.yaml,
51and unpack them to the resources directory. This will also verify them against
52the integrity hashes.
53
54Use the "verify" action to verify the files currently in the resources directory
55match what "update" would replace them with. This is effectively a dry-run and
56will not change any module resources on disk.
57
58Use the "make-sri" action to compute an integrity hash for upstreams that do not
59publish one themselves. Add or update the urls foreign-resources.yaml as needed,
60but omit (or leave empty) the "integrity" key. Then, run the "make-sri" action
61for the module and copy the integrity into the file. Then, you can use "verify"
62or "update" normally.
63
64The "make-cdx" option generates a CycloneDX SBOM file.
65TEXT
66 );
67 $this->addArg( 'action', 'One of "update", "verify", "make-sri" or "make-cdx"', true );
68 $this->addArg( 'module', 'Name of a single module (Default: all)', false );
69 $this->addOption( 'extension', 'Manage foreign resources for the given extension, instead of core',
70 false, true );
71 $this->addOption( 'skin', 'Manage foreign resources for the given skin, instead of core',
72 false, true );
73 $this->addOption( 'verbose', 'Be verbose', false, false, 'v' );
74 }
75
79 public function execute() {
80 global $IP;
81
82 $component = $this->getOption( 'extension' ) ?? $this->getOption( 'skin' ) ?? '#core';
83 $foreignResourcesDirs = ExtensionRegistry::getInstance()->getAttribute( 'ForeignResourcesDir' )
84 + [ '#core' => "{$IP}/resources/lib" ];
85 if ( !array_key_exists( $component, $foreignResourcesDirs ) ) {
86 $this->fatalError( "Unknown component: $component\n" );
87 }
88 $foreignResourcesFile = "{$foreignResourcesDirs[$component]}/foreign-resources.yaml";
89
90 $frm = new ForeignResourceManager(
91 $foreignResourcesFile,
92 dirname( $foreignResourcesFile ),
93 function ( $text ) {
94 $this->output( $text );
95 },
96 function ( $text ) {
97 $this->error( $text );
98 },
99 function ( $text ) {
100 if ( $this->hasOption( 'verbose' ) ) {
101 $this->output( $text );
102 }
103 }
104 );
105
106 $action = $this->getArg( 0 );
107 $module = $this->getArg( 1, 'all' );
108
109 try {
110 return $frm->run( $action, $module );
111 } catch ( Exception $e ) {
112 $this->fatalError( "Error: {$e->getMessage()}" );
113 }
114 }
115}
116
117// @codeCoverageIgnoreStart
118$maintClass = ManageForeignResources::class;
119require_once RUN_MAINTENANCE_IF_MAIN;
120// @codeCoverageIgnoreEnd
if(!defined( 'MEDIAWIKI')) if(ini_get('mbstring.func_overload')) if(!defined( 'MW_ENTRY_POINT')) global $IP
Environment checks.
Definition Setup.php:108
Manage foreign resources registered with ResourceLoader.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true, $multi=false)
Add some args that are needed.
getArg( $argId=0, $default=null)
Get an argument.
output( $out, $channel=null)
Throw some output to the user.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
hasOption( $name)
Checks to see if a particular option was set.
getOption( $name, $default=null)
Get an option, or return the default.
error( $err, $die=0)
Throw an error to the user.
addDescription( $text)
Set the description text.
Load JSON files, and uses a Processor to extract information.
Manage foreign resources registered with ResourceLoader.