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
24 * @ingroup Maintenance
25 * @see http://www.sitemaps.org/
26 * @see http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
29 require_once( dirname( __FILE__
) . '/Maintenance.php' );
31 class GenerateSitemap
extends Maintenance
{
36 * The maximum amount of urls in a sitemap file
38 * @link http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
45 * The maximum size of a sitemap file
47 * @link http://www.sitemaps.org/faq.php#faq_sitemap_size
54 * The path to prepend to the filename
61 * The URL path to prepend to filenames in the index; should resolve to the same directory as $fspath
68 * Whether or not to use compression
75 * The number of entries to save in each sitemap file
82 * Key => value entries of namespaces and their priorities
86 var $priorities = array();
89 * A one-dimensional array of namespaces in the wiki
93 var $namespaces = array();
96 * When this sitemap batch was generated
103 * A database slave object
110 * A resource pointing to the sitemap index file
118 * A resource pointing to a sitemap file
125 * Identifier to use in filenames, default $wgDBname
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 );
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
.= '/';
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' );
164 private function setNamespacePriorities() {
165 global $wgSitemapNamespacesPriorities;
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';
190 if ( $wgSitemapNamespacesPriorities !== false ) {
192 * @var $wgSitemapNamespacesPriorities array
194 foreach ( $wgSitemapNamespacesPriorities as $namespace => $priority ) {
195 $float = floatval( $priority );
196 if ( $float > 1.0 ) {
198 } elseif ( $float < 0.0 ) {
201 $this->priorities
[$namespace] = $priority;
207 * Create directory if it does not exist and return pathname with a trailing slash
208 * @param $fspath string
209 * @return null|string
211 private static function init_path( $fspath ) {
212 if ( !isset( $fspath ) ) {
215 # Create directory if needed
216 if ( $fspath && !is_dir( $fspath ) ) {
217 wfMkdirParents( $fspath, null, __METHOD__
) or die( "Can not create directory $fspath.\n" );
220 return realpath( $fspath ) . DIRECTORY_SEPARATOR
;
224 * Generate a one-dimensional array of existing namespaces
226 function generateNamespaces() {
227 // Only generate for specific namespaces if $wgSitemapNamespaces is an array.
228 global $wgSitemapNamespaces;
229 if ( is_array( $wgSitemapNamespaces ) ) {
230 $this->namespaces
= $wgSitemapNamespaces;
234 $res = $this->dbr
->select( 'page',
235 array( 'page_namespace' ),
239 'GROUP BY' => 'page_namespace',
240 'ORDER BY' => 'page_namespace',
244 foreach ( $res as $row )
245 $this->namespaces
[] = $row->page_namespace
;
249 * Get the priority of a given namespace
251 * @param $namespace Integer: the namespace to get the priority for
254 function priority( $namespace ) {
255 return isset( $this->priorities
[$namespace] ) ?
$this->priorities
[$namespace] : $this->guessPriority( $namespace );
259 * If the namespace isn't listed on the priority list return the
260 * default priority for the namespace, varies depending on whether it's
263 * @param $namespace Integer: the namespace to get the priority for
266 function guessPriority( $namespace ) {
267 return MWNamespace
::isSubject( $namespace ) ?
$this->priorities
[self
::GS_MAIN
] : $this->priorities
[self
::GS_TALK
];
271 * Return a database resolution of all the pages in a given namespace
273 * @param $namespace Integer: limit the query to this namespace
276 function getPageRes( $namespace ) {
277 return $this->dbr
->select( 'page',
283 array( 'page_namespace' => $namespace ),
291 public function main() {
294 fwrite( $this->findex
, $this->openIndex() );
296 foreach ( $this->namespaces
as $namespace ) {
297 $res = $this->getPageRes( $namespace );
299 $this->generateLimit( $namespace );
300 $length = $this->limit
[0];
303 $fns = $wgContLang->getFormattedNsText( $namespace );
304 $this->output( "$namespace ($fns)\n" );
305 foreach ( $res as $row ) {
306 if ( $i++
=== 0 ||
$i === $this->url_limit +
1 ||
$length +
$this->limit
[1] +
$this->limit
[2] > $this->size_limit
) {
307 if ( $this->file
!== false ) {
308 $this->write( $this->file
, $this->closeFile() );
309 $this->close( $this->file
);
311 $filename = $this->sitemapFilename( $namespace, $smcount++
);
312 $this->file
= $this->open( $this->fspath
. $filename, 'wb' );
313 $this->write( $this->file
, $this->openFile() );
314 fwrite( $this->findex
, $this->indexEntry( $filename ) );
315 $this->output( "\t$this->fspath$filename\n" );
316 $length = $this->limit
[0];
319 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
320 $date = wfTimestamp( TS_ISO_8601
, $row->page_touched
);
321 $entry = $this->fileEntry( $title->getCanonicalURL(), $date, $this->priority( $namespace ) );
322 $length +
= strlen( $entry );
323 $this->write( $this->file
, $entry );
324 // generate pages for language variants
325 if ( $wgContLang->hasVariants() ) {
326 $variants = $wgContLang->getVariants();
327 foreach ( $variants as $vCode ) {
328 if ( $vCode == $wgContLang->getCode() ) continue; // we don't want default variant
329 $entry = $this->fileEntry( $title->getCanonicalURL( '', $vCode ), $date, $this->priority( $namespace ) );
330 $length +
= strlen( $entry );
331 $this->write( $this->file
, $entry );
336 $this->write( $this->file
, $this->closeFile() );
337 $this->close( $this->file
);
340 fwrite( $this->findex
, $this->closeIndex() );
341 fclose( $this->findex
);
345 * gzopen() / fopen() wrapper
349 function open( $file, $flags ) {
350 $resource = $this->compress ?
gzopen( $file, $flags ) : fopen( $file, $flags );
351 if( $resource === false ) {
352 wfDebugDieBacktrace( __METHOD__
. " error opening file $file with flags $flags. Check permissions?" );
358 * gzwrite() / fwrite() wrapper
360 function write( &$handle, $str ) {
361 if( $handle === true ||
$handle === false ) {
362 wfDebugDieBacktrace( __METHOD__
. " was passed a boolean as a file handle.\n" );
364 if ( $this->compress
)
365 gzwrite( $handle, $str );
367 fwrite( $handle, $str );
371 * gzclose() / fclose() wrapper
373 function close( &$handle ) {
374 if ( $this->compress
)
381 * Get a sitemap filename
383 * @param $namespace Integer: the namespace
384 * @param $count Integer: the count
387 function sitemapFilename( $namespace, $count ) {
388 $ext = $this->compress ?
'.gz' : '';
389 return "sitemap-{$this->identifier}-NS_$namespace-$count.xml$ext";
393 * Return the XML required to open an XML file
398 return '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
402 * Return the XML schema being used
406 function xmlSchema() {
407 return 'http://www.sitemaps.org/schemas/sitemap/0.9';
411 * Return the XML required to open a sitemap index file
415 function openIndex() {
416 return $this->xmlHead() . '<sitemapindex xmlns="' . $this->xmlSchema() . '">' . "\n";
420 * Return the XML for a single sitemap indexfile entry
422 * @param $filename String: the filename of the sitemap file
425 function indexEntry( $filename ) {
428 "\t\t<loc>{$this->urlpath}$filename</loc>\n" .
429 "\t\t<lastmod>{$this->timestamp}</lastmod>\n" .
434 * Return the XML required to close a sitemap index file
438 function closeIndex() {
439 return "</sitemapindex>\n";
443 * Return the XML required to open a sitemap file
447 function openFile() {
448 return $this->xmlHead() . '<urlset xmlns="' . $this->xmlSchema() . '">' . "\n";
452 * Return the XML for a single sitemap entry
454 * @param $url String: an RFC 2396 compliant URL
455 * @param $date String: a ISO 8601 date
456 * @param $priority String: a priority indicator, 0.0 - 1.0 inclusive with a 0.1 stepsize
459 function fileEntry( $url, $date, $priority ) {
462 "\t\t<loc>$url</loc>\n" .
463 "\t\t<lastmod>$date</lastmod>\n" .
464 "\t\t<priority>$priority</priority>\n" .
469 * Return the XML required to close sitemap file
473 function closeFile() {
474 return "</urlset>\n";
478 * Populate $this->limit
480 function generateLimit( $namespace ) {
481 // bug 17961: make a title with the longest possible URL in this namespace
482 $title = Title
::makeTitle( $namespace, str_repeat( "\xf0\xa8\xae\x81", 63 ) . "\xe5\x96\x83" );
484 $this->limit
= array(
485 strlen( $this->openFile() ),
486 strlen( $this->fileEntry( $title->getCanonicalURL(), wfTimestamp( TS_ISO_8601
, wfTimestamp() ), $this->priority( $namespace ) ) ),
487 strlen( $this->closeFile() )
492 $maintClass = "GenerateSitemap";
493 require_once( RUN_MAINTENANCE_IF_MAIN
);