12 require_once( "commandLine.inc" );
13 require_once( "rebuildInterwiki.inc" );
14 require_once( "languages/Names.php" );
15 if ( count( $args ) != 3 ) {
16 wfDie( "Usage: php addwiki.php <language> <site> <dbname>\nThe site for Wikipedia is 'wikipedia'.\n" );
19 addWiki( $args[0], $args[1], $args[2] );
21 # -----------------------------------------------------------------
23 function addWiki( $lang, $site, $dbName )
25 global $IP, $wgLanguageNames, $wgDefaultExternalStore;
27 if ( !isset( $wgLanguageNames[$lang] ) ) {
28 print "Language $lang not found in \$wgLanguageNames\n";
31 $name = $wgLanguageNames[$lang];
33 $dbw = wfGetDB( DB_MASTER
);
34 $common = "/home/wikipedia/common";
35 $maintenance = "$IP/maintenance";
37 print "Creating database $dbName for $lang.$site ($name)\n";
40 $dbw->query( "SET table_type=Innodb" );
41 $dbw->query( "CREATE DATABASE $dbName" );
42 $dbw->selectDB( $dbName );
44 print "Initialising tables\n";
45 dbsource( "$maintenance/tables.sql", $dbw );
46 dbsource( "$IP/extensions/OAI/update_table.sql", $dbw );
47 dbsource( "$IP/extensions/AntiSpoof/sql/patch-antispoof.mysql.sql", $dbw );
48 dbsource( "$IP/extensions/CheckUser/cu_changes.sql", $dbw );
49 dbsource( "$IP/extensions/CheckUser/cu_log.sql", $dbw );
50 dbsource( "$IP/extensions/TitleKey/titlekey.sql", $dbw );
51 dbsource( "$IP/extensions/Oversight/hidden.sql", $dbw );
52 dbsource( "$IP/extensions/GlobalBlocking/localdb_patches/setup-global_block_whitelist.sql", $dbw );
54 $dbw->query( "INSERT INTO site_stats(ss_row_id) VALUES (1)" );
56 # Initialise external storage
57 if ( is_array( $wgDefaultExternalStore ) ) {
58 $stores = $wgDefaultExternalStore;
59 } elseif ( $stores ) {
60 $stores = array( $wgDefaultExternalStore );
64 if ( count( $stores ) ) {
65 require_once( 'ExternalStoreDB.php' );
66 print "Initialising external storage $store...\n";
67 global $wgDBuser, $wgDBpassword, $wgExternalServers;
68 foreach ( $stores as $storeURL ) {
70 if ( !preg_match( '!^DB://(.*)$!', $storeURL, $m ) ) {
77 $wgExternalServers[$cluster][0]['user'] = $wgDBuser;
78 $wgExternalServers[$cluster][0]['password'] = $wgDBpassword;
80 $store = new ExternalStoreDB
;
81 $extdb =& $store->getMaster( $cluster );
82 $extdb->query( "SET table_type=InnoDB" );
83 $extdb->query( "CREATE DATABASE $dbName" );
84 $extdb->selectDB( $dbName );
85 dbsource( "$maintenance/storage/blobs.sql", $extdb );
86 $extdb->immediateCommit();
90 global $wgTitle, $wgArticle;
91 $wgTitle = Title
::newFromText( wfMsgWeirdKey( "mainpage/$lang" ) );
92 print "Writing main page to " . $wgTitle->getPrefixedDBkey() . "\n";
93 $wgArticle = new Article( $wgTitle );
94 $ucsite = ucfirst( $site );
96 $wgArticle->insertNewArticle( <<<EOT
97 ==This subdomain is reserved for the creation of a [[wikimedia:Our projects|$ucsite]] in '''[[w:en:{$name}|{$name}]]''' language==
99 * Please '''do not start editing''' this new site. This site has a test project on the [[incubator:|Wikimedia Incubator]] (or on the [[betawikiversity:|BetaWikiversity]] or on the [[oldwikisource:|Old Wikisource]]) and it will be imported to here.
101 * If you would like to help translating the interface to this language, please do not translate here, but go to [[betawiki:|Betawiki]], a special wiki for translating the interface. That way everyone can use it on every wiki using the [[mw:|same software]].
103 * For information about how to edit and for other general help, see [[m:Help:Contents|Help on Wikimedia's Meta-Wiki]] or [[mw:Help:Contents|Help on MediaWiki.org]].
105 == Sister projects ==
106 <span class="plainlinks">
107 [http://www.wikipedia.org Wikipedia] |
108 [http://www.wiktionary.org Wiktonary] |
109 [http://www.wikibooks.org Wikibooks] |
110 [http://www.wikinews.org Wikinews] |
111 [http://www.wikiquote.org Wikiquote] |
112 [http://www.wikisource.org Wikisource]
113 [http://www.wikiversity.org Wikiversity]
116 See Wikimedia's [[m:|Meta-Wiki]] for the coordination of these projects.
228 , '', false, false );
230 print "Adding to dblists\n";
233 $file = fopen( "$common/all.dblist", "a" );
234 fwrite( $file, "$dbName\n" );
237 # Update the sublists
238 shell_exec("cd $common && ./refresh-dblist");
240 #print "Constructing interwiki SQL\n";
241 # Rebuild interwiki tables
242 #passthru( '/home/wikipedia/conf/interwiki/update' );
244 print "Script ended. You still have to:
245 * Add any required settings in InitialiseSettings.php
246 * Run sync-common-all
247 * Run /home/wikipedia/conf/interwiki/update