Merge "Adds the SidebarBeforeOutput hook"
[mediawiki.git] / maintenance / generateSitemap.php
blobc43851e6f2ac5edc1d424c37e2d9615643707b33
1 <?php
2 /**
3 * Creates a sitemap for the site.
5 * Copyright © 2005, Ævar Arnfjörð Bjarmason, Jens Frank <jeluf@gmx.de> and
6 * Brion Vibber <brion@pobox.com>
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.
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.
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
23 * @file
24 * @ingroup Maintenance
25 * @see http://www.sitemaps.org/
26 * @see http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
29 require_once __DIR__ . '/Maintenance.php';
31 /**
32 * Maintenance script that generates a sitemap for the site.
34 * @ingroup Maintenance
36 class GenerateSitemap extends Maintenance {
37 const GS_MAIN = -2;
38 const GS_TALK = -1;
40 /**
41 * The maximum amount of urls in a sitemap file
43 * @link http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
45 * @var int
47 public $url_limit;
49 /**
50 * The maximum size of a sitemap file
52 * @link http://www.sitemaps.org/faq.php#faq_sitemap_size
54 * @var int
56 public $size_limit;
58 /**
59 * The path to prepend to the filename
61 * @var string
63 public $fspath;
65 /**
66 * The URL path to prepend to filenames in the index;
67 * should resolve to the same directory as $fspath.
69 * @var string
71 public $urlpath;
73 /**
74 * Whether or not to use compression
76 * @var bool
78 public $compress;
80 /**
81 * Whether or not to include redirection pages
83 * @var bool
85 public $skipRedirects;
87 /**
88 * The number of entries to save in each sitemap file
90 * @var array
92 public $limit = array();
94 /**
95 * Key => value entries of namespaces and their priorities
97 * @var array
99 public $priorities = array();
102 * A one-dimensional array of namespaces in the wiki
104 * @var array
106 public $namespaces = array();
109 * When this sitemap batch was generated
111 * @var string
113 public $timestamp;
116 * A database slave object
118 * @var object
120 public $dbr;
123 * A resource pointing to the sitemap index file
125 * @var resource
127 public $findex;
130 * A resource pointing to a sitemap file
132 * @var resource
134 public $file;
137 * Identifier to use in filenames, default $wgDBname
139 * @var string
141 private $identifier;
144 * Constructor
146 public function __construct() {
147 parent::__construct();
148 $this->mDescription = "Creates a sitemap for the site";
149 $this->addOption(
150 'fspath',
151 'The file system path to save to, e.g. /tmp/sitemap; defaults to current directory',
152 false,
153 true
155 $this->addOption(
156 'urlpath',
157 'The URL path corresponding to --fspath, prepended to filenames in the index; '
158 . 'defaults to an empty string',
159 false,
160 true
162 $this->addOption(
163 'compress',
164 'Compress the sitemap files, can take value yes|no, default yes',
165 false,
166 true
168 $this->addOption( 'skip-redirects', 'Do not include redirecting articles in the sitemap' );
169 $this->addOption(
170 'identifier',
171 'What site identifier to use for the wiki, defaults to $wgDBname',
172 false,
173 true
178 * Execute
180 public function execute() {
181 $this->setNamespacePriorities();
182 $this->url_limit = 50000;
183 $this->size_limit = pow( 2, 20 ) * 10;
184 $this->fspath = self::init_path( $this->getOption( 'fspath', getcwd() ) );
185 $this->urlpath = $this->getOption( 'urlpath', "" );
186 if ( $this->urlpath !== "" && substr( $this->urlpath, -1 ) !== '/' ) {
187 $this->urlpath .= '/';
189 $this->identifier = $this->getOption( 'identifier', wfWikiID() );
190 $this->compress = $this->getOption( 'compress', 'yes' ) !== 'no';
191 $this->skipRedirects = $this->getOption( 'skip-redirects', false ) !== false;
192 $this->dbr = wfGetDB( DB_SLAVE );
193 $this->generateNamespaces();
194 $this->timestamp = wfTimestamp( TS_ISO_8601, wfTimestampNow() );
195 $this->findex = fopen( "{$this->fspath}sitemap-index-{$this->identifier}.xml", 'wb' );
196 $this->main();
199 private function setNamespacePriorities() {
200 global $wgSitemapNamespacesPriorities;
202 // Custom main namespaces
203 $this->priorities[self::GS_MAIN] = '0.5';
204 // Custom talk namesspaces
205 $this->priorities[self::GS_TALK] = '0.1';
206 // MediaWiki standard namespaces
207 $this->priorities[NS_MAIN] = '1.0';
208 $this->priorities[NS_TALK] = '0.1';
209 $this->priorities[NS_USER] = '0.5';
210 $this->priorities[NS_USER_TALK] = '0.1';
211 $this->priorities[NS_PROJECT] = '0.5';
212 $this->priorities[NS_PROJECT_TALK] = '0.1';
213 $this->priorities[NS_FILE] = '0.5';
214 $this->priorities[NS_FILE_TALK] = '0.1';
215 $this->priorities[NS_MEDIAWIKI] = '0.0';
216 $this->priorities[NS_MEDIAWIKI_TALK] = '0.1';
217 $this->priorities[NS_TEMPLATE] = '0.0';
218 $this->priorities[NS_TEMPLATE_TALK] = '0.1';
219 $this->priorities[NS_HELP] = '0.5';
220 $this->priorities[NS_HELP_TALK] = '0.1';
221 $this->priorities[NS_CATEGORY] = '0.5';
222 $this->priorities[NS_CATEGORY_TALK] = '0.1';
224 // Custom priorities
225 if ( $wgSitemapNamespacesPriorities !== false ) {
227 * @var $wgSitemapNamespacesPriorities array
229 foreach ( $wgSitemapNamespacesPriorities as $namespace => $priority ) {
230 $float = floatval( $priority );
231 if ( $float > 1.0 ) {
232 $priority = '1.0';
233 } elseif ( $float < 0.0 ) {
234 $priority = '0.0';
236 $this->priorities[$namespace] = $priority;
242 * Create directory if it does not exist and return pathname with a trailing slash
243 * @param string $fspath
244 * @return null|string
246 private static function init_path( $fspath ) {
247 if ( !isset( $fspath ) ) {
248 return null;
250 # Create directory if needed
251 if ( $fspath && !is_dir( $fspath ) ) {
252 wfMkdirParents( $fspath, null, __METHOD__ ) or die( "Can not create directory $fspath.\n" );
255 return realpath( $fspath ) . DIRECTORY_SEPARATOR;
259 * Generate a one-dimensional array of existing namespaces
261 function generateNamespaces() {
262 // Only generate for specific namespaces if $wgSitemapNamespaces is an array.
263 global $wgSitemapNamespaces;
264 if ( is_array( $wgSitemapNamespaces ) ) {
265 $this->namespaces = $wgSitemapNamespaces;
267 return;
270 $res = $this->dbr->select( 'page',
271 array( 'page_namespace' ),
272 array(),
273 __METHOD__,
274 array(
275 'GROUP BY' => 'page_namespace',
276 'ORDER BY' => 'page_namespace',
280 foreach ( $res as $row ) {
281 $this->namespaces[] = $row->page_namespace;
286 * Get the priority of a given namespace
288 * @param int $namespace The namespace to get the priority for
289 * @return string
291 function priority( $namespace ) {
292 return isset( $this->priorities[$namespace] )
293 ? $this->priorities[$namespace]
294 : $this->guessPriority( $namespace );
298 * If the namespace isn't listed on the priority list return the
299 * default priority for the namespace, varies depending on whether it's
300 * a talkpage or not.
302 * @param int $namespace The namespace to get the priority for
303 * @return string
305 function guessPriority( $namespace ) {
306 return MWNamespace::isSubject( $namespace )
307 ? $this->priorities[self::GS_MAIN]
308 : $this->priorities[self::GS_TALK];
312 * Return a database resolution of all the pages in a given namespace
314 * @param int $namespace Limit the query to this namespace
315 * @return Resource
317 function getPageRes( $namespace ) {
318 return $this->dbr->select( 'page',
319 array(
320 'page_namespace',
321 'page_title',
322 'page_touched',
323 'page_is_redirect'
325 array( 'page_namespace' => $namespace ),
326 __METHOD__
331 * Main loop
333 public function main() {
334 global $wgContLang;
336 fwrite( $this->findex, $this->openIndex() );
338 foreach ( $this->namespaces as $namespace ) {
339 $res = $this->getPageRes( $namespace );
340 $this->file = false;
341 $this->generateLimit( $namespace );
342 $length = $this->limit[0];
343 $i = $smcount = 0;
345 $fns = $wgContLang->getFormattedNsText( $namespace );
346 $this->output( "$namespace ($fns)\n" );
347 $skippedRedirects = 0; // Number of redirects skipped for that namespace
348 foreach ( $res as $row ) {
349 if ( $this->skipRedirects && $row->page_is_redirect ) {
350 $skippedRedirects++;
351 continue;
354 if ( $i++ === 0
355 || $i === $this->url_limit + 1
356 || $length + $this->limit[1] + $this->limit[2] > $this->size_limit
358 if ( $this->file !== false ) {
359 $this->write( $this->file, $this->closeFile() );
360 $this->close( $this->file );
362 $filename = $this->sitemapFilename( $namespace, $smcount++ );
363 $this->file = $this->open( $this->fspath . $filename, 'wb' );
364 $this->write( $this->file, $this->openFile() );
365 fwrite( $this->findex, $this->indexEntry( $filename ) );
366 $this->output( "\t$this->fspath$filename\n" );
367 $length = $this->limit[0];
368 $i = 1;
370 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
371 $date = wfTimestamp( TS_ISO_8601, $row->page_touched );
372 $entry = $this->fileEntry( $title->getCanonicalURL(), $date, $this->priority( $namespace ) );
373 $length += strlen( $entry );
374 $this->write( $this->file, $entry );
375 // generate pages for language variants
376 if ( $wgContLang->hasVariants() ) {
377 $variants = $wgContLang->getVariants();
378 foreach ( $variants as $vCode ) {
379 if ( $vCode == $wgContLang->getCode() ) {
380 continue; // we don't want default variant
382 $entry = $this->fileEntry(
383 $title->getCanonicalURL( '', $vCode ),
384 $date,
385 $this->priority( $namespace )
387 $length += strlen( $entry );
388 $this->write( $this->file, $entry );
393 if ( $this->skipRedirects && $skippedRedirects > 0 ) {
394 $this->output( " skipped $skippedRedirects redirect(s)\n" );
397 if ( $this->file ) {
398 $this->write( $this->file, $this->closeFile() );
399 $this->close( $this->file );
402 fwrite( $this->findex, $this->closeIndex() );
403 fclose( $this->findex );
407 * gzopen() / fopen() wrapper
409 * @param string $file
410 * @param string $flags
411 * @return resource
413 function open( $file, $flags ) {
414 $resource = $this->compress ? gzopen( $file, $flags ) : fopen( $file, $flags );
415 if ( $resource === false ) {
416 throw new MWException( __METHOD__
417 . " error opening file $file with flags $flags. Check permissions?" );
420 return $resource;
424 * gzwrite() / fwrite() wrapper
426 * @param resource $handle
427 * @param string $str
429 function write( &$handle, $str ) {
430 if ( $handle === true || $handle === false ) {
431 throw new MWException( __METHOD__ . " was passed a boolean as a file handle.\n" );
433 if ( $this->compress ) {
434 gzwrite( $handle, $str );
435 } else {
436 fwrite( $handle, $str );
441 * gzclose() / fclose() wrapper
443 * @param resource $handle
445 function close( &$handle ) {
446 if ( $this->compress ) {
447 gzclose( $handle );
448 } else {
449 fclose( $handle );
454 * Get a sitemap filename
456 * @param int $namespace The namespace
457 * @param int $count The count
458 * @return string
460 function sitemapFilename( $namespace, $count ) {
461 $ext = $this->compress ? '.gz' : '';
463 return "sitemap-{$this->identifier}-NS_$namespace-$count.xml$ext";
467 * Return the XML required to open an XML file
469 * @return string
471 function xmlHead() {
472 return '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
476 * Return the XML schema being used
478 * @return string
480 function xmlSchema() {
481 return 'http://www.sitemaps.org/schemas/sitemap/0.9';
485 * Return the XML required to open a sitemap index file
487 * @return string
489 function openIndex() {
490 return $this->xmlHead() . '<sitemapindex xmlns="' . $this->xmlSchema() . '">' . "\n";
494 * Return the XML for a single sitemap indexfile entry
496 * @param string $filename The filename of the sitemap file
497 * @return string
499 function indexEntry( $filename ) {
500 return
501 "\t<sitemap>\n" .
502 "\t\t<loc>{$this->urlpath}$filename</loc>\n" .
503 "\t\t<lastmod>{$this->timestamp}</lastmod>\n" .
504 "\t</sitemap>\n";
508 * Return the XML required to close a sitemap index file
510 * @return string
512 function closeIndex() {
513 return "</sitemapindex>\n";
517 * Return the XML required to open a sitemap file
519 * @return string
521 function openFile() {
522 return $this->xmlHead() . '<urlset xmlns="' . $this->xmlSchema() . '">' . "\n";
526 * Return the XML for a single sitemap entry
528 * @param string $url An RFC 2396 compliant URL
529 * @param string $date A ISO 8601 date
530 * @param string $priority A priority indicator, 0.0 - 1.0 inclusive with a 0.1 stepsize
531 * @return string
533 function fileEntry( $url, $date, $priority ) {
534 return
535 "\t<url>\n" .
536 // bug 34666: $url may contain bad characters such as ampersands.
537 "\t\t<loc>" . htmlspecialchars( $url ) . "</loc>\n" .
538 "\t\t<lastmod>$date</lastmod>\n" .
539 "\t\t<priority>$priority</priority>\n" .
540 "\t</url>\n";
544 * Return the XML required to close sitemap file
546 * @return string
548 function closeFile() {
549 return "</urlset>\n";
553 * Populate $this->limit
555 * @param int $namespace
557 function generateLimit( $namespace ) {
558 // bug 17961: make a title with the longest possible URL in this namespace
559 $title = Title::makeTitle( $namespace, str_repeat( "\xf0\xa8\xae\x81", 63 ) . "\xe5\x96\x83" );
561 $this->limit = array(
562 strlen( $this->openFile() ),
563 strlen( $this->fileEntry(
564 $title->getCanonicalURL(),
565 wfTimestamp( TS_ISO_8601, wfTimestamp() ),
566 $this->priority( $namespace )
567 ) ),
568 strlen( $this->closeFile() )
573 $maintClass = "GenerateSitemap";
574 require_once RUN_MAINTENANCE_IF_MAIN;