MediaWiki  1.34.0
exportSites.php
Go to the documentation of this file.
1 <?php
2 
3 $basePath = getenv( 'MW_INSTALL_PATH' ) !== false ? getenv( 'MW_INSTALL_PATH' ) : __DIR__ . '/..';
4 
5 require_once $basePath . '/maintenance/Maintenance.php';
6 
15 class ExportSites extends Maintenance {
16 
17  public function __construct() {
18  $this->addDescription( 'Exports site definitions the sites table to XML file' );
19 
20  $this->addArg( 'file', 'A file to write the XML to (see docs/sitelist.txt). ' .
21  'Use "php://stdout" to write to stdout.', true
22  );
23 
24  parent::__construct();
25  }
26 
30  public function execute() {
31  $file = $this->getArg( 0 );
32 
33  if ( $file === 'php://output' || $file === 'php://stdout' ) {
34  $this->mQuiet = true;
35  }
36 
37  $handle = fopen( $file, 'w' );
38 
39  if ( !$handle ) {
40  $this->fatalError( "Failed to open $file for writing.\n" );
41  }
42 
43  $exporter = new SiteExporter( $handle );
44 
45  $siteLookup = \MediaWiki\MediaWikiServices::getInstance()->getSiteLookup();
46  $exporter->exportSites( $siteLookup->getSites() );
47 
48  fclose( $handle );
49 
50  $this->output( "Exported sites to " . realpath( $file ) . ".\n" );
51  }
52 
53 }
54 
55 $maintClass = ExportSites::class;
56 require_once RUN_MAINTENANCE_IF_MAIN;
RUN_MAINTENANCE_IF_MAIN
const RUN_MAINTENANCE_IF_MAIN
Definition: Maintenance.php:39
$basePath
$basePath
Definition: exportSites.php:3
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:504
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:348
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition: router.php:42
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: Maintenance.php:82
ExportSites\__construct
__construct()
Default constructor.
Definition: exportSites.php:17
ExportSites\execute
execute()
Do the actual work.
Definition: exportSites.php:30
$maintClass
$maintClass
Definition: exportSites.php:55
SiteExporter
Definition: SiteExporter.php:30
Maintenance\addArg
addArg( $arg, $description, $required=true)
Add some args that are needed.
Definition: Maintenance.php:319
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:453
Maintenance\getArg
getArg( $argId=0, $default=null)
Get an argument.
Definition: Maintenance.php:371
ExportSites
Maintenance script for exporting site definitions from XML into the sites table.
Definition: exportSites.php:15