Merge r55331 from wmf-deployment (which was merged from a live hack)
[lhc/web/wiklou.git] / maintenance / addwiki.php
1 <?php
2 /**
3 * Add a new wiki
4 * Wikimedia specific!
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @defgroup Wikimedia Wikimedia
22 * @ingroup Maintenance
23 * @ingroup Wikimedia
24 */
25
26 require_once( dirname(__FILE__) . '/Maintenance.php' );
27
28 class AddWiki extends Maintenance {
29 public function __construct() {
30 parent::__construct();
31 $this->mDescription = "Add a new wiki to the family. Wikimedia specific!";
32 $this->addArg( 'language', 'Language code of new site' );
33 $this->addArg( 'site', 'Type of site' );
34 $this->addArg( 'dbname', 'Name of database to create' );
35 }
36
37 protected function getDbType() {
38 return Maintenance::DB_ADMIN;
39 }
40
41 public function execute() {
42 global $IP, $wgLanguageNames, $wgDefaultExternalStore, $wgNoDBParam;
43
44 $wgNoDBParam = true;
45 $lang = $this->getArg(0);
46 $site = $this->getArg(1);
47 $dbName = $this->getArg(2);
48
49 if ( !isset( $wgLanguageNames[$lang] ) ) {
50 $this->error( "Language $lang not found in \$wgLanguageNames", true );
51 }
52 $name = $wgLanguageNames[$lang];
53
54 $dbw = wfGetDB( DB_MASTER );
55 $common = "/home/wikipedia/common";
56
57 $this->output( "Creating database $dbName for $lang.$site ($name)\n" );
58
59 # Set up the database
60 $dbw->query( "SET table_type=Innodb" );
61 $dbw->query( "CREATE DATABASE $dbName" );
62 $dbw->selectDB( $dbName );
63
64 $this->output( "Initialising tables\n" );
65 $dbw->sourceFile( $this->getDir() . '/tables.sql' );
66 $dbw->sourceFile( "$IP/extensions/OAI/update_table.sql" );
67 $dbw->sourceFile( "$IP/extensions/AntiSpoof/sql/patch-antispoof.mysql.sql" );
68 $dbw->sourceFile( "$IP/extensions/CheckUser/cu_changes.sql" );
69 $dbw->sourceFile( "$IP/extensions/CheckUser/cu_log.sql" );
70 $dbw->sourceFile( "$IP/extensions/TitleKey/titlekey.sql" );
71 $dbw->sourceFile( "$IP/extensions/Oversight/hidden.sql" );
72 $dbw->sourceFile( "$IP/extensions/GlobalBlocking/localdb_patches/setup-global_block_whitelist.sql" );
73 $dbw->sourceFile( "$IP/extensions/AbuseFilter/abusefilter.tables.sql" );
74 $dbw->sourceFile( "$IP/extensions/UsabilityInitiative/PrefStats/PrefStats.sql" );
75
76 $dbw->query( "INSERT INTO site_stats(ss_row_id) VALUES (1)" );
77
78 # Initialise external storage
79 if ( is_array( $wgDefaultExternalStore ) ) {
80 $stores = $wgDefaultExternalStore;
81 } elseif ( $stores ) {
82 $stores = array( $wgDefaultExternalStore );
83 } else {
84 $stores = array();
85 }
86 if ( count( $stores ) ) {
87 global $wgDBuser, $wgDBpassword, $wgExternalServers;
88 foreach ( $stores as $storeURL ) {
89 $m = array();
90 if ( !preg_match( '!^DB://(.*)$!', $storeURL, $m ) ) {
91 continue;
92 }
93
94 $cluster = $m[1];
95 $this->output( "Initialising external storage $cluster...\n" );
96
97 # Hack
98 $wgExternalServers[$cluster][0]['user'] = $wgDBuser;
99 $wgExternalServers[$cluster][0]['password'] = $wgDBpassword;
100
101 $store = new ExternalStoreDB;
102 $extdb = $store->getMaster( $cluster );
103 $extdb->query( "SET table_type=InnoDB" );
104 $extdb->query( "CREATE DATABASE $dbName" );
105 $extdb->selectDB( $dbName );
106
107 # Hack x2
108 $blobsTable = $store->getTable( $extdb );
109 $sedCmd = "sed s/blobs\\\\\\>/$blobsTable/ " . $this->getDir() . "/storage/blobs.sql";
110 $blobsFile = popen( $sedCmd, 'r' );
111 $extdb->sourceStream( $blobsFile );
112 pclose( $blobsFile );
113 $extdb->immediateCommit();
114 }
115 }
116
117 global $wgTitle, $wgArticle;
118 $wgTitle = Title::newFromText( wfMsgWeirdKey( "mainpage/$lang" ) );
119 $this->output( "Writing main page to " . $wgTitle->getPrefixedDBkey() . "\n" );
120 $wgArticle = new Article( $wgTitle );
121 $ucsite = ucfirst( $site );
122
123 $wgArticle->insertNewArticle( $this->getFirstArticle( $ucsite, $name ), '', false, false );
124
125 $this->output( "Adding to dblists\n" );
126
127 # Add to dblist
128 $file = fopen( "$common/all.dblist", "a" );
129 fwrite( $file, "$dbName\n" );
130 fclose( $file );
131
132 # Update the sublists
133 shell_exec("cd $common && ./refresh-dblist");
134
135 #print "Constructing interwiki SQL\n";
136 # Rebuild interwiki tables
137 #passthru( '/home/wikipedia/conf/interwiki/update' );
138
139 $this->output( "Script ended. You still have to:
140 * Add any required settings in InitialiseSettings.php
141 * Run sync-common-all
142 * Run /home/wikipedia/conf/interwiki/update
143 " );
144 }
145
146 private function getFirstArticle( $ucsite, $name ) {
147 return <<<EOT
148 ==This subdomain is reserved for the creation of a [[wikimedia:Our projects|$ucsite]] in '''[[w:en:{$name}|{$name}]]''' language==
149
150 * 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.
151
152 * 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]].
153
154 * 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]].
155
156 == Sister projects ==
157 <span class="plainlinks">
158 [http://www.wikipedia.org Wikipedia] |
159 [http://www.wiktionary.org Wiktonary] |
160 [http://www.wikibooks.org Wikibooks] |
161 [http://www.wikinews.org Wikinews] |
162 [http://www.wikiquote.org Wikiquote] |
163 [http://www.wikisource.org Wikisource]
164 [http://www.wikiversity.org Wikiversity]
165 </span>
166
167 See Wikimedia's [[m:|Meta-Wiki]] for the coordination of these projects.
168
169 [[aa:]]
170 [[af:]]
171 [[als:]]
172 [[ar:]]
173 [[de:]]
174 [[en:]]
175 [[as:]]
176 [[ast:]]
177 [[ay:]]
178 [[az:]]
179 [[bcl:]]
180 [[be:]]
181 [[bg:]]
182 [[bn:]]
183 [[bo:]]
184 [[bs:]]
185 [[cs:]]
186 [[co:]]
187 [[cs:]]
188 [[cy:]]
189 [[da:]]
190 [[el:]]
191 [[eo:]]
192 [[es:]]
193 [[et:]]
194 [[eu:]]
195 [[fa:]]
196 [[fi:]]
197 [[fr:]]
198 [[fy:]]
199 [[ga:]]
200 [[gl:]]
201 [[gn:]]
202 [[gu:]]
203 [[he:]]
204 [[hi:]]
205 [[hr:]]
206 [[hsb:]]
207 [[hy:]]
208 [[ia:]]
209 [[id:]]
210 [[is:]]
211 [[it:]]
212 [[ja:]]
213 [[ka:]]
214 [[kk:]]
215 [[km:]]
216 [[kn:]]
217 [[ko:]]
218 [[ks:]]
219 [[ku:]]
220 [[ky:]]
221 [[la:]]
222 [[ln:]]
223 [[lo:]]
224 [[lt:]]
225 [[lv:]]
226 [[hu:]]
227 [[mi:]]
228 [[mk:]]
229 [[ml:]]
230 [[mn:]]
231 [[mr:]]
232 [[ms:]]
233 [[mt:]]
234 [[my:]]
235 [[na:]]
236 [[nah:]]
237 [[nds:]]
238 [[ne:]]
239 [[nl:]]
240 [[no:]]
241 [[oc:]]
242 [[om:]]
243 [[pa:]]
244 [[pl:]]
245 [[ps:]]
246 [[pt:]]
247 [[qu:]]
248 [[ro:]]
249 [[ru:]]
250 [[sa:]]
251 [[si:]]
252 [[sk:]]
253 [[sl:]]
254 [[sq:]]
255 [[sr:]]
256 [[sv:]]
257 [[sw:]]
258 [[ta:]]
259 [[te:]]
260 [[tg:]]
261 [[th:]]
262 [[tk:]]
263 [[tl:]]
264 [[tr:]]
265 [[tt:]]
266 [[ug:]]
267 [[uk:]]
268 [[ur:]]
269 [[uz:]]
270 [[vi:]]
271 [[vo:]]
272 [[xh:]]
273 [[yo:]]
274 [[za:]]
275 [[zh:]]
276 [[zu:]]
277
278 EOT;
279 }
280 }
281
282 $maintClass = "AddWiki";
283 require_once( DO_MAINTENANCE );