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