1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<?php
use MediaWiki\MediaWikiServices;
$basePath = getenv( 'MW_INSTALL_PATH' ) !== false ? getenv( 'MW_INSTALL_PATH' ) : __DIR__ . '/..';
require_once $basePath . '/maintenance/Maintenance.php';
/**
* Maintenance script for adding a site definition into the sites table.
*
* @since 1.29
*
* @license GPL-2.0-or-later
* @author Florian Schmidt
*/
class AddSite extends Maintenance {
public function __construct() {
$this->addDescription( 'Add a site definition into the sites table.' );
$this->addArg( 'globalid', 'The global id of the site to add, e.g. "wikipedia".', true );
$this->addArg( 'group', 'In which group this site should be sorted in.', true );
$this->addOption( 'language', 'The language code of the site, e.g. "de".' );
$this->addOption( 'interwiki-id', 'The interwiki ID of the site.' );
$this->addOption( 'navigation-id', 'The navigation ID of the site.' );
$this->addOption( 'pagepath', 'The URL to pages of this site, e.g.' .
' https://example.com/wiki/\$1.' );
$this->addOption( 'filepath', 'The URL to files of this site, e.g. https://example
.com/w/\$1.' );
parent::__construct();
}
/**
* Imports the site described by the parameters (see self::__construct()) passed to this
* maintenance sccript into the sites table of MediaWiki.
* @return bool
*/
public function execute() {
$siteStore = MediaWikiServices::getInstance()->getSiteStore();
$siteStore->reset();
$globalId = $this->getArg( 0 );
$group = $this->getArg( 1 );
$language = $this->getOption( 'language' );
$interwikiId = $this->getOption( 'interwiki-id' );
$navigationId = $this->getOption( 'navigation-id' );
$pagepath = $this->getOption( 'pagepath' );
$filepath = $this->getOption( 'filepath' );
if ( !is_string( $globalId ) || !is_string( $group ) ) {
echo "Arguments globalid and group need to be strings.\n";
return false;
}
if ( $siteStore->getSite( $globalId ) !== null ) {
echo "Site with global id $globalId already exists.\n";
return false;
}
$site = new MediaWikiSite();
$site->setGlobalId( $globalId );
$site->setGroup( $group );
if ( $language !== null ) {
$site->setLanguageCode( $language );
}
if ( $interwikiId !== null ) {
$site->addInterwikiId( $interwikiId );
}
if ( $navigationId !== null ) {
$site->addNavigationId( $navigationId );
}
if ( $pagepath !== null ) {
$site->setPagePath( $pagepath );
}
if ( $filepath !== null ) {
$site->setFilePath( $filepath );
}
$siteStore->saveSites( [ $site ] );
if ( method_exists( $siteStore, 'reset' ) ) {
$siteStore->reset();
}
echo "Done.\n";
}
}
$maintClass = AddSite::class;
require_once RUN_MAINTENANCE_IF_MAIN;
|