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/mysql/patch-antispoof.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 );
53 $dbw->query( "INSERT INTO site_stats(ss_row_id) VALUES (1)" );
55 # Initialise external storage
56 if ( is_array( $wgDefaultExternalStore ) ) {
57 $stores = $wgDefaultExternalStore;
58 } elseif ( $stores ) {
59 $stores = array( $wgDefaultExternalStore );
63 if ( count( $stores ) ) {
64 require_once( 'ExternalStoreDB.php' );
65 print "Initialising external storage $store...\n";
66 global $wgDBuser, $wgDBpassword, $wgExternalServers;
67 foreach ( $stores as $storeURL ) {
69 if ( !preg_match( '!^DB://(.*)$!', $storeURL, $m ) ) {
76 $wgExternalServers[$cluster][0]['user'] = $wgDBuser;
77 $wgExternalServers[$cluster][0]['password'] = $wgDBpassword;
79 $store = new ExternalStoreDB
;
80 $extdb =& $store->getMaster( $cluster );
81 $extdb->query( "SET table_type=InnoDB" );
82 $extdb->query( "CREATE DATABASE $dbName" );
83 $extdb->selectDB( $dbName );
84 dbsource( "$maintenance/storage/blobs.sql", $extdb );
85 $extdb->immediateCommit();
89 global $wgTitle, $wgArticle;
90 $wgTitle = Title
::newFromText( wfMsgWeirdKey( "mainpage/$lang" ) );
91 print "Writing main page to " . $wgTitle->getPrefixedDBkey() . "\n";
92 $wgArticle = new Article( $wgTitle );
93 $ucsite = ucfirst( $site );
95 $wgArticle->insertNewArticle( <<<EOT
96 ==This subdomain is reserved for the creation of a [[wikimedia:Our projects|$ucsite]] in '''[[w:en:{$name}|{$name}]]''' language==
98 * 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.
100 * 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]].
102 * 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]].
104 == Sister projects ==
105 <span class="plainlinks">
106 [http://www.wikipedia.org Wikipedia] |
107 [http://www.wiktionary.org Wiktonary] |
108 [http://www.wikibooks.org Wikibooks] |
109 [http://www.wikinews.org Wikinews] |
110 [http://www.wikiquote.org Wikiquote] |
111 [http://www.wikisource.org Wikisource]
112 [http://www.wikiversity.org Wikiversity]
115 See Wikimedia's [[m:|Meta-Wiki]] for the coordination of these projects.
227 , '', false, false );
229 print "Adding to dblists\n";
232 $file = fopen( "$common/all.dblist", "a" );
233 fwrite( $file, "$dbName\n" );
236 # Update the sublists
237 shell_exec("cd $common && ./refresh-dblist");
239 #print "Constructing interwiki SQL\n";
240 # Rebuild interwiki tables
241 #passthru( '/home/wikipedia/conf/interwiki/update' );
243 # Create the upload dir
244 $uploadDir = "/mnt/upload3/$site/$lang";
245 if( file_exists( $uploadDir ) ) {
246 echo "$uploadDir already exists.\n";
248 echo "Creating $uploadDir...\n";
249 mkdir( $uploadDir, 0777 );
250 chmod( $uploadDir, 0777 );
253 print "Script ended. You still have to:
254 * Add any required settings in InitialiseSettings.php
255 * Run sync-common-all
256 * Run /home/wikipedia/conf/interwiki/update