87 lines
2.7 KiB
PHP
87 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Drush integration functions for the xmlsitemap module.
|
|
*
|
|
* @ingroup xmlsitemap
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_drush_command().
|
|
*/
|
|
function xmlsitemap_drush_command() {
|
|
$items['xmlsitemap-regenerate'] = array(
|
|
'description' => 'Regenerate the XML sitemap files.',
|
|
'callback' => 'drush_xmlsitemap_regenerate',
|
|
'drupal dependencies' => array('xmlsitemap'),
|
|
);
|
|
$items['xmlsitemap-rebuild'] = array(
|
|
'description' => 'Dump and re-process all possible XML sitemap data, and then regenerate the files.',
|
|
'callback' => 'drush_xmlsitemap_rebuild',
|
|
'drupal dependencies' => array('xmlsitemap'),
|
|
);
|
|
$items['xmlsitemap-index'] = array(
|
|
'description' => 'Process un-indexed XML sitemap links.',
|
|
'callback' => 'drush_xmlsitemap_index',
|
|
'drupal dependencies' => array('xmlsitemap'),
|
|
'options' => array(
|
|
'--limit' => 'The limit of links of each type to process. Default value: ' . variable_get('xmlsitemap_batch_limit', 100),
|
|
),
|
|
);
|
|
return $items;
|
|
}
|
|
|
|
/**
|
|
* Regenerate the sitemap files from existing data.
|
|
*/
|
|
function drush_xmlsitemap_regenerate() {
|
|
module_load_include('generate.inc', 'xmlsitemap');
|
|
|
|
// Run the batch process.
|
|
xmlsitemap_run_unprogressive_batch('xmlsitemap_regenerate_batch');
|
|
|
|
$vars = array(
|
|
'@timer' => timer_read('xmlsitemap_regenerate'),
|
|
'@memory-peak' => format_size(memory_get_peak_usage(TRUE)),
|
|
);
|
|
drush_print(dt('XML sitemap files regenerated in @timer ms. Peak memory usage: @memory-peak.', $vars));
|
|
}
|
|
|
|
/**
|
|
* Dump and rebuild all the sitemap data, then regenerate the files.
|
|
*/
|
|
function drush_xmlsitemap_rebuild() {
|
|
module_load_include('generate.inc', 'xmlsitemap');
|
|
|
|
// Build a list of rebuildable link types.
|
|
$rebuild_types = xmlsitemap_get_rebuildable_link_types();
|
|
|
|
// Run the batch process.
|
|
xmlsitemap_run_unprogressive_batch('xmlsitemap_rebuild_batch', $rebuild_types, TRUE);
|
|
|
|
$vars = array(
|
|
'@timer' => timer_read('xmlsitemap_rebuild'),
|
|
'@memory-peak' => format_size(memory_get_peak_usage(TRUE)),
|
|
);
|
|
drush_print(dt('XML sitemap files rebuilt in @timer ms. Peak memory usage: @memory-peak.', $vars));
|
|
}
|
|
|
|
/**
|
|
* Process un-indexed XML sitemap links.
|
|
*/
|
|
function drush_xmlsitemap_index() {
|
|
$limit = (int) drush_get_option('limit', variable_get('xmlsitemap_batch_limit', 100));
|
|
$count_before = db_query("SELECT COUNT(id) FROM {xmlsitemap}")->fetchField();
|
|
|
|
module_invoke_all('xmlsitemap_index_links', $limit);
|
|
$count_after = db_query("SELECT COUNT(id) FROM {xmlsitemap}")->fetchField();
|
|
|
|
if ($count_after == $count_before) {
|
|
drush_print(dt('No new XML sitemap links to index.'));
|
|
}
|
|
else {
|
|
drush_print(dt('Indexed @count new XML sitemap links.', array('@count' => $count_after - $count_before)));
|
|
}
|
|
}
|