(bug 30344) Add configuration variable for setting custom priorities when generating...
[lhc/web/wiklou.git] / maintenance / generateSitemap.php
1 <?php
2 /**
3 * Creates a sitemap for the site
4 *
5 * Copyright © 2005, Ævar Arnfjörð Bjarmason, Jens Frank <jeluf@gmx.de> and
6 * Brion Vibber <brion@pobox.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Maintenance
25 * @see http://www.sitemaps.org/
26 * @see http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
27 */
28
29 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
30
31 class GenerateSitemap extends Maintenance {
32 const GS_MAIN = -2;
33 const GS_TALK = -1;
34
35 /**
36 * The maximum amount of urls in a sitemap file
37 *
38 * @link http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
39 *
40 * @var int
41 */
42 var $url_limit;
43
44 /**
45 * The maximum size of a sitemap file
46 *
47 * @link http://www.sitemaps.org/faq.php#faq_sitemap_size
48 *
49 * @var int
50 */
51 var $size_limit;
52
53 /**
54 * The path to prepend to the filename
55 *
56 * @var string
57 */
58 var $fspath;
59
60 /**
61 * The URL path to prepend to filenames in the index; should resolve to the same directory as $fspath
62 *
63 * @var string
64 */
65 var $urlpath;
66
67 /**
68 * Whether or not to use compression
69 *
70 * @var bool
71 */
72 var $compress;
73
74 /**
75 * The number of entries to save in each sitemap file
76 *
77 * @var array
78 */
79 var $limit = array();
80
81 /**
82 * Key => value entries of namespaces and their priorities
83 *
84 * @var array
85 */
86 var $priorities = array();
87
88 /**
89 * A one-dimensional array of namespaces in the wiki
90 *
91 * @var array
92 */
93 var $namespaces = array();
94
95 /**
96 * When this sitemap batch was generated
97 *
98 * @var string
99 */
100 var $timestamp;
101
102 /**
103 * A database slave object
104 *
105 * @var object
106 */
107 var $dbr;
108
109 /**
110 * A resource pointing to the sitemap index file
111 *
112 * @var resource
113 */
114 var $findex;
115
116
117 /**
118 * A resource pointing to a sitemap file
119 *
120 * @var resource
121 */
122 var $file;
123
124 /**
125 * Identifier to use in filenames, default $wgDBname
126 *
127 * @var string
128 */
129 private $identifier;
130
131 /**
132 * Constructor
133 */
134 public function __construct() {
135 parent::__construct();
136 $this->mDescription = "Creates a sitemap for the site";
137 $this->addOption( 'fspath', 'The file system path to save to, e.g. /tmp/sitemap; defaults to current directory', false, true );
138 $this->addOption( 'urlpath', 'The URL path corresponding to --fspath, prepended to filenames in the index; defaults to an empty string', false, true );
139 $this->addOption( 'compress', 'Compress the sitemap files, can take value yes|no, default yes', false, true );
140 $this->addOption( 'identifier', 'What site identifier to use for the wiki, defaults to $wgDBname', false, true );
141 }
142
143 /**
144 * Execute
145 */
146 public function execute() {
147 $this->setNamespacePriorities();
148 $this->url_limit = 50000;
149 $this->size_limit = pow( 2, 20 ) * 10;
150 $this->fspath = self::init_path( $this->getOption( 'fspath', getcwd() ) );
151 $this->urlpath = $this->getOption( 'urlpath', "" );
152 if ( $this->urlpath !== "" && substr( $this->urlpath, -1 ) !== '/' ) {
153 $this->urlpath .= '/';
154 }
155 $this->identifier = $this->getOption( 'identifier', wfWikiID() );
156 $this->compress = $this->getOption( 'compress', 'yes' ) !== 'no';
157 $this->dbr = wfGetDB( DB_SLAVE );
158 $this->generateNamespaces();
159 $this->timestamp = wfTimestamp( TS_ISO_8601, wfTimestampNow() );
160 $this->findex = fopen( "{$this->fspath}sitemap-index-{$this->identifier}.xml", 'wb' );
161 $this->main();
162 }
163
164 private function setNamespacePriorities() {
165 global $wgSitemapNamespacesPriorities;
166
167 // Custom main namespaces
168 $this->priorities[self::GS_MAIN] = '0.5';
169 // Custom talk namesspaces
170 $this->priorities[self::GS_TALK] = '0.1';
171 // MediaWiki standard namespaces
172 $this->priorities[NS_MAIN] = '1.0';
173 $this->priorities[NS_TALK] = '0.1';
174 $this->priorities[NS_USER] = '0.5';
175 $this->priorities[NS_USER_TALK] = '0.1';
176 $this->priorities[NS_PROJECT] = '0.5';
177 $this->priorities[NS_PROJECT_TALK] = '0.1';
178 $this->priorities[NS_FILE] = '0.5';
179 $this->priorities[NS_FILE_TALK] = '0.1';
180 $this->priorities[NS_MEDIAWIKI] = '0.0';
181 $this->priorities[NS_MEDIAWIKI_TALK] = '0.1';
182 $this->priorities[NS_TEMPLATE] = '0.0';
183 $this->priorities[NS_TEMPLATE_TALK] = '0.1';
184 $this->priorities[NS_HELP] = '0.5';
185 $this->priorities[NS_HELP_TALK] = '0.1';
186 $this->priorities[NS_CATEGORY] = '0.5';
187 $this->priorities[NS_CATEGORY_TALK] = '0.1';
188
189 // Custom priorities
190 if ( $wgSitemapNamespacesPriorities !== false ) {
191 foreach ( $wgSitemapNamespacesPriorities as $namespace => $priority ) {
192 $float = floatval( $priority );
193 if ( $float > 1.0 ) {
194 $priority = '1.0';
195 } elseif ( $float < 0.0 ) {
196 $priority = '0.0';
197 }
198 $this->priorities[$namespace] = $priority;
199 }
200 }
201 }
202
203 /**
204 * Create directory if it does not exist and return pathname with a trailing slash
205 */
206 private static function init_path( $fspath ) {
207 if ( !isset( $fspath ) ) {
208 return null;
209 }
210 # Create directory if needed
211 if ( $fspath && !is_dir( $fspath ) ) {
212 wfMkdirParents( $fspath, null, __METHOD__ ) or die( "Can not create directory $fspath.\n" );
213 }
214
215 return realpath( $fspath ) . DIRECTORY_SEPARATOR ;
216 }
217
218 /**
219 * Generate a one-dimensional array of existing namespaces
220 */
221 function generateNamespaces() {
222 // Only generate for specific namespaces if $wgSitemapNamespaces is an array.
223 global $wgSitemapNamespaces;
224 if ( is_array( $wgSitemapNamespaces ) ) {
225 $this->namespaces = $wgSitemapNamespaces;
226 return;
227 }
228
229 $res = $this->dbr->select( 'page',
230 array( 'page_namespace' ),
231 array(),
232 __METHOD__,
233 array(
234 'GROUP BY' => 'page_namespace',
235 'ORDER BY' => 'page_namespace',
236 )
237 );
238
239 foreach ( $res as $row )
240 $this->namespaces[] = $row->page_namespace;
241 }
242
243 /**
244 * Get the priority of a given namespace
245 *
246 * @param $namespace Integer: the namespace to get the priority for
247 * @return String
248 */
249 function priority( $namespace ) {
250 return isset( $this->priorities[$namespace] ) ? $this->priorities[$namespace] : $this->guessPriority( $namespace );
251 }
252
253 /**
254 * If the namespace isn't listed on the priority list return the
255 * default priority for the namespace, varies depending on whether it's
256 * a talkpage or not.
257 *
258 * @param $namespace Integer: the namespace to get the priority for
259 * @return String
260 */
261 function guessPriority( $namespace ) {
262 return MWNamespace::isMain( $namespace ) ? $this->priorities[self::GS_MAIN] : $this->priorities[self::GS_TALK];
263 }
264
265 /**
266 * Return a database resolution of all the pages in a given namespace
267 *
268 * @param $namespace Integer: limit the query to this namespace
269 * @return Resource
270 */
271 function getPageRes( $namespace ) {
272 return $this->dbr->select( 'page',
273 array(
274 'page_namespace',
275 'page_title',
276 'page_touched',
277 ),
278 array( 'page_namespace' => $namespace ),
279 __METHOD__
280 );
281 }
282
283 /**
284 * Main loop
285 */
286 public function main() {
287 global $wgContLang;
288
289 fwrite( $this->findex, $this->openIndex() );
290
291 foreach ( $this->namespaces as $namespace ) {
292 $res = $this->getPageRes( $namespace );
293 $this->file = false;
294 $this->generateLimit( $namespace );
295 $length = $this->limit[0];
296 $i = $smcount = 0;
297
298 $fns = $wgContLang->getFormattedNsText( $namespace );
299 $this->output( "$namespace ($fns)\n" );
300 foreach ( $res as $row ) {
301 if ( $i++ === 0 || $i === $this->url_limit + 1 || $length + $this->limit[1] + $this->limit[2] > $this->size_limit ) {
302 if ( $this->file !== false ) {
303 $this->write( $this->file, $this->closeFile() );
304 $this->close( $this->file );
305 }
306 $filename = $this->sitemapFilename( $namespace, $smcount++ );
307 $this->file = $this->open( $this->fspath . $filename, 'wb' );
308 $this->write( $this->file, $this->openFile() );
309 fwrite( $this->findex, $this->indexEntry( $filename ) );
310 $this->output( "\t$this->fspath$filename\n" );
311 $length = $this->limit[0];
312 $i = 1;
313 }
314 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
315 $date = wfTimestamp( TS_ISO_8601, $row->page_touched );
316 $entry = $this->fileEntry( $title->getCanonicalURL(), $date, $this->priority( $namespace ) );
317 $length += strlen( $entry );
318 $this->write( $this->file, $entry );
319 // generate pages for language variants
320 if ( $wgContLang->hasVariants() ) {
321 $variants = $wgContLang->getVariants();
322 foreach ( $variants as $vCode ) {
323 if ( $vCode == $wgContLang->getCode() ) continue; // we don't want default variant
324 $entry = $this->fileEntry( $title->getCanonicalURL( '', $vCode ), $date, $this->priority( $namespace ) );
325 $length += strlen( $entry );
326 $this->write( $this->file, $entry );
327 }
328 }
329 }
330 if ( $this->file ) {
331 $this->write( $this->file, $this->closeFile() );
332 $this->close( $this->file );
333 }
334 }
335 fwrite( $this->findex, $this->closeIndex() );
336 fclose( $this->findex );
337 }
338
339 /**
340 * gzopen() / fopen() wrapper
341 *
342 * @return Resource
343 */
344 function open( $file, $flags ) {
345 return $this->compress ? gzopen( $file, $flags ) : fopen( $file, $flags );
346 }
347
348 /**
349 * gzwrite() / fwrite() wrapper
350 */
351 function write( &$handle, $str ) {
352 if ( $this->compress )
353 gzwrite( $handle, $str );
354 else
355 fwrite( $handle, $str );
356 }
357
358 /**
359 * gzclose() / fclose() wrapper
360 */
361 function close( &$handle ) {
362 if ( $this->compress )
363 gzclose( $handle );
364 else
365 fclose( $handle );
366 }
367
368 /**
369 * Get a sitemap filename
370 *
371 * @param $namespace Integer: the namespace
372 * @param $count Integer: the count
373 * @return String
374 */
375 function sitemapFilename( $namespace, $count ) {
376 $ext = $this->compress ? '.gz' : '';
377 return "sitemap-{$this->identifier}-NS_$namespace-$count.xml$ext";
378 }
379
380 /**
381 * Return the XML required to open an XML file
382 *
383 * @return string
384 */
385 function xmlHead() {
386 return '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
387 }
388
389 /**
390 * Return the XML schema being used
391 *
392 * @return String
393 */
394 function xmlSchema() {
395 return 'http://www.sitemaps.org/schemas/sitemap/0.9';
396 }
397
398 /**
399 * Return the XML required to open a sitemap index file
400 *
401 * @return String
402 */
403 function openIndex() {
404 return $this->xmlHead() . '<sitemapindex xmlns="' . $this->xmlSchema() . '">' . "\n";
405 }
406
407 /**
408 * Return the XML for a single sitemap indexfile entry
409 *
410 * @param $filename String: the filename of the sitemap file
411 * @return String
412 */
413 function indexEntry( $filename ) {
414 return
415 "\t<sitemap>\n" .
416 "\t\t<loc>{$this->urlpath}$filename</loc>\n" .
417 "\t\t<lastmod>{$this->timestamp}</lastmod>\n" .
418 "\t</sitemap>\n";
419 }
420
421 /**
422 * Return the XML required to close a sitemap index file
423 *
424 * @return String
425 */
426 function closeIndex() {
427 return "</sitemapindex>\n";
428 }
429
430 /**
431 * Return the XML required to open a sitemap file
432 *
433 * @return String
434 */
435 function openFile() {
436 return $this->xmlHead() . '<urlset xmlns="' . $this->xmlSchema() . '">' . "\n";
437 }
438
439 /**
440 * Return the XML for a single sitemap entry
441 *
442 * @param $url String: an RFC 2396 compliant URL
443 * @param $date String: a ISO 8601 date
444 * @param $priority String: a priority indicator, 0.0 - 1.0 inclusive with a 0.1 stepsize
445 * @return String
446 */
447 function fileEntry( $url, $date, $priority ) {
448 return
449 "\t<url>\n" .
450 "\t\t<loc>$url</loc>\n" .
451 "\t\t<lastmod>$date</lastmod>\n" .
452 "\t\t<priority>$priority</priority>\n" .
453 "\t</url>\n";
454 }
455
456 /**
457 * Return the XML required to close sitemap file
458 *
459 * @return String
460 */
461 function closeFile() {
462 return "</urlset>\n";
463 }
464
465 /**
466 * Populate $this->limit
467 */
468 function generateLimit( $namespace ) {
469 // bug 17961: make a title with the longest possible URL in this namespace
470 $title = Title::makeTitle( $namespace, str_repeat( "\xf0\xa8\xae\x81", 63 ) . "\xe5\x96\x83" );
471
472 $this->limit = array(
473 strlen( $this->openFile() ),
474 strlen( $this->fileEntry( $title->getCanonicalURL(), wfTimestamp( TS_ISO_8601, wfTimestamp() ), $this->priority( $namespace ) ) ),
475 strlen( $this->closeFile() )
476 );
477 }
478 }
479
480 $maintClass = "GenerateSitemap";
481 require_once( RUN_MAINTENANCE_IF_MAIN );