MediaWiki master
importSites.php
Go to the documentation of this file.
1<?php
2
3require_once __DIR__ . '/Maintenance.php';
4
6
15class ImportSites extends Maintenance {
16
17 public function __construct() {
18 parent::__construct();
19
20 $this->addDescription( 'Imports site definitions from XML into the sites table.' );
21
22 $this->addArg( 'file', 'An XML file containing site definitions (see docs/sitelist.md). ' .
23 'Use "php://stdin" to read from stdin.', true
24 );
25 }
26
30 public function execute() {
31 $file = $this->getArg( 0 );
32
33 $siteStore = $this->getServiceContainer()->getSiteStore();
34 $importer = new SiteImporter( $siteStore );
35 $importer->setExceptionCallback( [ $this, 'reportException' ] );
36
37 $importer->importFromFile( $file );
38
39 $this->output( "Done.\n" );
40 }
41
47 public function reportException( Exception $ex ) {
48 $msg = $ex->getMessage();
49 $this->output( "$msg\n" );
50 }
51}
52
53$maintClass = ImportSites::class;
54require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script for importing site definitions from XML into the sites table.
reportException(Exception $ex)
Outputs a message via the output() method.
execute()
Do the import.
__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.
output( $out, $channel=null)
Throw some output to the user.
getServiceContainer()
Returns the main service container.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
Utility for importing site entries from XML.
$maintClass