123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863 |
- <?php
- define('XMLSITEMAP_MAX_SITEMAP_LINKS', 50000);
- define('XMLSITEMAP_MAX_SITEMAP_FILESIZE', 10485760);
- define('XMLSITEMAP_MAX_SITEMAP_CHUNKS', 1000);
- define('XMLSITEMAP_FREQUENCY_YEARLY', 31449600);
- define('XMLSITEMAP_FREQUENCY_MONTHLY', 2419200);
- define('XMLSITEMAP_FREQUENCY_WEEKLY', 604800);
- define('XMLSITEMAP_FREQUENCY_DAILY', 86400);
- define('XMLSITEMAP_FREQUENCY_HOURLY', 3600);
- define('XMLSITEMAP_FREQUENCY_ALWAYS', 60);
- function xmlsitemap_help($path, $arg) {
- $output = '';
- switch ($path) {
- case 'admin/help/xmlsitemap':
- return;
- case 'admin/help#xmlsitemap':
- $sitemaps = xmlsitemap_get_sitemaps(TRUE);
- $output .= '<p>' . format_plural(count($sitemaps), 'Your sitemap is located at !sitemap.', 'Your sitemaps are located at: !sitemaps', array('!sitemaps' => theme('item_list', array('items' => $sitemaps)), '!sitemap' => current($sitemaps))) . '</p>';
- break;
- case 'admin/config/search/xmlsitemap':
- break;
- case 'admin/config/search/xmlsitemap/rebuild':
- $output .= '<p>' . t("This action rebuilds your site's XML sitemap and regenerates the cached files, and may be a lengthy process. If you just installed XML sitemap, this can be helpful to import all your site's content into the sitemap. Otherwise, this should only be used in emergencies.") . '</p>';
- }
- if (arg(0) == 'admin' && strpos($path, 'xmlsitemap') !== FALSE) {
- if ($arg[1] == 'config' && user_access('administer xmlsitemap')) {
- module_load_install('xmlsitemap');
- xmlsitemap_check_status();
- }
- module_load_include('inc', 'xmlsitemap');
- if ($blurb = _xmlsitemap_get_blurb()) {
- $output .= $blurb;
- }
- }
- return $output;
- }
- function xmlsitemap_permission() {
- return array(
- 'administer xmlsitemap' => array(
- 'title' => t('Administer XML sitemap settings.'),
- ),
- );
- }
- function xmlsitemap_menu() {
- $items['admin/config/search/xmlsitemap'] = array(
- 'title' => 'XML sitemap',
- 'description' => 'Configure the XML sitemap.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('xmlsitemap_settings_form'),
- 'access arguments' => array('administer xmlsitemap'),
- 'file' => 'xmlsitemap.admin.inc',
- );
- $items['admin/config/search/xmlsitemap/settings'] = array(
- 'title' => 'Settings',
- 'access arguments' => array('administer xmlsitemap'),
- 'type' => MENU_DEFAULT_LOCAL_TASK,
- 'file' => 'xmlsitemap.admin.inc',
- 'weight' => -10,
- );
- $items['admin/config/search/xmlsitemap/rebuild'] = array(
- 'title' => 'Rebuild',
- 'description' => 'Rebuild the site map.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('xmlsitemap_rebuild_form'),
- 'access arguments' => array('administer xmlsitemap'),
- 'type' => MENU_LOCAL_TASK,
- 'file' => 'xmlsitemap.admin.inc',
- 'weight' => 10,
- );
- $items['sitemap.xml'] = array(
- 'page callback' => 'xmlsitemap_output_chunk',
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK,
- 'file' => 'xmlsitemap.pages.inc',
- );
- $chunks = xmlsitemap_get_chunk_count();
- if ($chunks > 1) {
- for ($i = 1; $i <= $chunks; $i++) {
- $items['sitemap-' . $i . '.xml'] = array(
- 'page callback' => 'xmlsitemap_output_chunk',
- 'page arguments' => array((string) $i),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK,
- 'file' => 'xmlsitemap.pages.inc',
- );
- }
- }
- $items['sitemap.xsl'] = array(
- 'page callback' => 'xmlsitemap_output_xsl',
- 'access callback' => TRUE,
- 'type' => MENU_CALLBACK,
- 'file' => 'xmlsitemap.pages.inc',
- );
- return $items;
- }
- function xmlsitemap_cron() {
-
- if (!variable_get('xmlsitemap_regenerate_needed', FALSE)) {
- return;
- }
-
- $lifetime = REQUEST_TIME - variable_get('xmlsitemap_generated_last', 0);
- if ($lifetime < variable_get('xmlsitemap_minimum_lifetime', 0)) {
- return;
- }
-
- module_load_include('inc', 'xmlsitemap');
- xmlsitemap_regenerate();
- }
- function xmlsitemap_xmlsitemap_links() {
-
- $links[] = array(
- 'type' => 'frontpage',
- 'id' => 0,
- 'loc' => '',
- );
- return $links;
- }
- function xmlsitemap_xmlsitemap_link_alter(&$link) {
-
- if ($link['type'] == 'frontpage' || $link['loc'] == '' || $link['loc'] == variable_get('site_frontpage', 'node')) {
- $link['priority'] = xmlsitemap_var('frontpage_priority');
- $link['changefreq'] = xmlsitemap_var('frontpage_changefreq');
- }
- }
- function xmlsitemap_robotstxt() {
- module_load_include('inc', 'xmlsitemap');
- $sitemaps = xmlsitemap_get_sitemaps();
- foreach ($sitemaps as $index => $sitemap) {
- $sitemaps[$index] = 'Sitemap: ' . $sitemap;
- }
- return $sitemaps;
- }
- function xmlsitemap_get_sitemaps($links = FALSE) {
- static $sitemaps = array();
- if (!$sitemaps) {
- $url_options = xmlsitemap_get_url_options();
- $sitemap_languages = xmlsitemap_var('languages');
- natsort($sitemap_languages);
- foreach ($sitemap_languages as $language) {
- $url_options['language'] = xmlsitemap_language_load($language);
- $sitemap = url('sitemap.xml', $url_options);
- $sitemaps[$language] = $links ? l($sitemap, $sitemap) : $sitemap;
- }
- }
- return $sitemaps;
- }
- function xmlsitemap_get_url_options($options = array()) {
- return $options + array(
- 'absolute' => TRUE,
- 'base_url' => xmlsitemap_var('base_url'),
- );
- }
- function xmlsitemap_get_changefreq($interval) {
- if ($interval <= 0 || !is_numeric($interval)) {
- return FALSE;
- }
- foreach (xmlsitemap_get_changefreq_options() as $value => $frequency) {
- if ($interval <= $value) {
- return $frequency;
- }
- }
- return 'never';
- }
- function xmlsitemap_get_chunk_count($reset = FALSE) {
- static $chunks;
- if (!isset($chunks) || $reset) {
- $count = max(xmlsitemap_get_link_count($reset), 1);
- $chunks = ceil($count / xmlsitemap_get_chunk_size($reset));
- }
- return $chunks;
- }
- function xmlsitemap_get_link_count($reset = FALSE) {
- static $count;
- if (!isset($count) || $reset) {
- $count = db_query("SELECT COUNT(id) FROM {xmlsitemap} WHERE access = 1 AND status = 1")->fetchField();
- }
- return $count;
- }
- function xmlsitemap_get_chunk_size($reset = FALSE) {
- static $size;
- if (!isset($size) || $reset) {
- $size = xmlsitemap_var('chunk_size');
- if ($size === 'auto') {
- $count = max(xmlsitemap_get_link_count($reset), 1);
- $size = min(ceil($count / 10000) * 5000, XMLSITEMAP_MAX_SITEMAP_LINKS);
- }
- }
- return $size;
- }
- function xmlsitemap_recalculate_changefreq(&$link) {
- $link['changefreq'] = round((($link['changefreq'] * $link['changecount']) + (REQUEST_TIME - $link['lastmod'])) / ($link['changecount'] + 1));
- $link['changecount']++;
- $link['lastmod'] = REQUEST_TIME;
- }
- function xmlsitemap_calculate_changefreq($timestamps) {
- sort($timestamps);
- $count = count($timestamps) - 1;
- $diff = 0;
- for ($i = 0; $i < $count; $i++) {
- $diff += $timestamps[$i + 1] - $timestamps[$i];
- }
- return $count > 0 ? round($diff / $count) : 0;
- }
- function _xmlsitemap_check_changed_links(array $conditions = array(), array $updates = array(), $flag = FALSE) {
-
- $conditions['status'] = (!empty($updates['status']) && empty($condition['status'])) ? 0 : 1;
- $conditions['access'] = (!empty($updates['access']) && empty($condition['access'])) ? 0 : 1;
- $query = db_select('xmlsitemap');
- $query->addExpression('1');
- foreach ($conditions as $field => $value) {
- $query->condition($field, $value);
- }
- $query->range(0, 1);
- $changed = $query->execute()->fetchField();
- if ($changed && $flag) {
- variable_set('xmlsitemap_regenerate_needed', TRUE);
- }
- return $changed;
- }
- function _xmlsitemap_check_changed_link(array $link, $original_link = NULL, $flag = FALSE) {
- $changed = FALSE;
- if ($original_link === NULL) {
-
- $original_link = db_query_range("SELECT loc, access, status, lastmod, priority, changefreq, changecount, language FROM {xmlsitemap} WHERE type = :type AND id = :id", 0, 1, array(':type' => $link['type'], ':id' => $link['id']))->fetchAssoc();
- }
- if (!$original_link) {
- if ($link['access'] && $link['status']) {
-
- $changed = TRUE;
- }
- }
- else {
- if (!($original_link['access'] && $original_link['status']) && $link['access'] && $link['status']) {
-
- $changed = TRUE;
- }
- elseif ($original_link['access'] && $original_link['status'] && array_diff_assoc($original_link, $link)) {
-
- $changed = TRUE;
- }
- }
- if ($changed && $flag) {
- variable_set('xmlsitemap_regenerate_needed', TRUE);
- }
- return $changed;
- }
- function xmlsitemap_load_link(array $conditions) {
- $query = db_select('xmlsitemap', 'x');
- $query->fields('x');
- foreach ($conditions as $field => $value) {
- $query->condition($field, $value);
- }
- $query->range(0, 1);
- $link = $query->execute()->fetchAssoc();
-
-
- return $link;
- }
- function xmlsitemap_save_link(array $link) {
- $link += array(
- 'access' => 1,
- 'status' => 1,
- 'status_override' => 0,
- 'lastmod' => 0,
- 'priority' => 0.5,
- 'priority_override' => 0,
- 'changefreq' => 0,
- 'changecount' => 0,
- 'language' => LANGUAGE_NONE,
- );
-
- drupal_alter('xmlsitemap_link', $link);
-
-
- if ($link['priority'] < 0 || $link['priority'] > 1) {
- trigger_error(t('Invalid sitemap link priority %priority.<br />@link', array('%priority' => $link['priority'], '@link' => var_export($link, TRUE))), E_USER_ERROR);
- }
- if ($link['changecount'] < 0) {
- trigger_error(t('Negative changecount value. Please report this to <a href="@516928">@516928</a>.<br />@link', array('@516928' => 'http://drupal.org/node/516928', '@link' => var_export($link, TRUE))), E_USER_ERROR);
- $link['changecount'] = 0;
- }
- $existing = db_query_range("SELECT loc, access, status, lastmod, priority, changefreq, changecount, language FROM {xmlsitemap} WHERE type = :type AND id = :id", 0, 1, array(':type' => $link['type'], ':id' => $link['id']))->fetchAssoc();
-
- if (!variable_get('xmlsitemap_regenerate_needed', FALSE)) {
- _xmlsitemap_check_changed_link($link, $existing, TRUE);
- }
- if ($existing) {
- drupal_write_record('xmlsitemap', $link, array('type', 'id'));
- }
- else {
- drupal_write_record('xmlsitemap', $link);
- }
-
-
- return $link;
- }
- function xmlsitemap_update_links($updates = array(), $conditions = array()) {
-
-
- if (!variable_get('xmlsitemap_regenerate_needed', FALSE)) {
- _xmlsitemap_check_changed_links($conditions, $updates, TRUE);
- }
-
- $query = db_update('xmlsitemap');
- $query->fields($updates);
- foreach ($conditions as $field => $value) {
- $query->condition($field, $value);
- }
- return $query->execute();
- }
- function xmlsitemap_delete_link(array $conditions) {
- if (!variable_get('xmlsitemap_regenerate_needed', TRUE)) {
- _xmlsitemap_check_changed_links($conditions, array(), TRUE);
- }
- $query = db_delete('xmlsitemap');
- foreach ($conditions as $field => $value) {
- $query->condition($field, $value);
- }
- return $query->execute();
- }
- function xmlsitemap_get_chunk_file($chunk = 0, $language = LANGUAGE_NONE, $extension = 'xml') {
- return xmlsitemap_get_directory() . "/xmlsitemap-{$language}-{$chunk}.{$extension}";
- }
- function xmlsitemap_form_alter(&$form, $form_state, $form_id) {
- $forms = array(
- 'locale_languages_overview_form',
- 'xmlsitemap_settings_form',
- );
- if (in_array($form_id, $forms)) {
- array_unshift($form['#submit'], 'xmlsitemap_form_submit_flag_regenerate');
- }
- }
- function xmlsitemap_form_submit_flag_regenerate($form, $form_state) {
- foreach ($form_state['values'] as $variable => $value) {
- $stored_value = variable_get($variable, 'not_a_variable');
- if (is_array($value) && !empty($form_state['values']['array_filter'])) {
- $value = array_keys(array_filter($value));
- }
- if ($stored_value != 'not_a_variable' && $stored_value != $value) {
- variable_set('xmlsitemap_regenerate_needed', TRUE);
- drupal_set_message(t('XML sitemap settings have been modified and the files should be regenerated. You can <a href="@run-cron">run cron manually</a> to regenerate the cached files.', array('@run-cron' => url('admin/reports/status/run-cron', array('query' => drupal_get_destination())))), 'warning', FALSE);
- return;
- }
- }
- }
- function xmlsitemap_variables() {
- return array(
- 'xmlsitemap_rebuild_needed' => FALSE,
- 'xmlsitemap_regenerate_needed' => FALSE,
- 'xmlsitemap_generated_last' => 0,
- 'xmlsitemap_minimum_lifetime' => 0,
- 'xmlsitemap_xsl' => TRUE,
- 'xmlsitemap_languages' => array(language_default('language')),
- 'xmlsitemap_chunk_size' => 'auto',
- 'xmlsitemap_batch_limit' => 100,
- 'xmlsitemap_path' => 'xmlsitemap',
- 'xmlsitemap_base_url' => $GLOBALS['base_url'],
- 'xmlsitemap_developer_mode' => FALSE,
- 'xmlsitemap_frontpage_priority' => '1.0',
- 'xmlsitemap_frontpage_changefreq' => XMLSITEMAP_FREQUENCY_DAILY,
-
- 'xmlsitemap_gz' => FALSE,
- 'xmlsitemap_regenerate_last' => NULL,
- 'xmlsitemap_custom_links' => NULL,
- 'xmlsitemap_priority_default' => NULL,
- );
- }
- function xmlsitemap_var($name, $default = NULL) {
- $defaults = &drupal_static(__FUNCTION__);
- if (!isset($defaults)) {
- $defaults = xmlsitemap_variables();
- }
- $name = 'xmlsitemap_'. $name;
-
- if (!isset($defaults[$name])) {
- trigger_error(strtr('Default variable for %variable not found.', array('%variable' => drupal_placeholder($name))));
- }
- return variable_get($name, isset($default) || !isset($defaults[$name]) ? $default : $defaults[$name]);
- }
- function xmlsitemap_switch_user($new_user = NULL) {
- global $user;
- $user_original = &drupal_static(__FUNCTION__);
- if (!isset($new_user)) {
- if (isset($user_original)) {
-
- $user = $user_original;
- $user_original = NULL;
- drupal_save_session(TRUE);
- }
- else {
- return FALSE;
- }
- }
- elseif (is_numeric($new_user) && $user->uid != $new_user) {
-
- if (!$new_user) {
- $new_user = drupal_anonymous_user();
- }
- elseif (!$new_user = user_load($new_user)) {
- return FALSE;
- }
-
- if (!isset($user_original)) {
- $user_original = $user;
- drupal_save_session(FALSE);
- }
- $user = $new_user;
- }
- elseif (is_object($new_user) && $user->uid != $new_user->uid) {
-
- if (!isset($user_original)) {
- $user_original = $user;
- drupal_save_session(FALSE);
- }
- $user = $new_user;
- }
- else {
- return FALSE;
- }
- return $user;
- }
- function xmlsitemap_restore_user() {
- return xmlsitemap_switch_user();
- }
- function xmlsitemap_process_form_link_options($form, &$form_state) {
- $link = &$form_state['values']['xmlsitemap'];
- $fields = array('status' => 1, 'priority' => 0.5);
- foreach ($fields as $field => $default) {
- if ($link[$field] === 'default') {
- $link[$field] = isset($link[$field . '_default']) ? $link[$field . '_default'] : $default;
- $link[$field . '_override'] = 0;
- }
- else {
- $link[$field . '_override'] = 1;
- }
- }
- }
- function xmlsitemap_get_changefreq_options() {
- return array(
- XMLSITEMAP_FREQUENCY_ALWAYS => 'always',
- XMLSITEMAP_FREQUENCY_HOURLY => 'hourly',
- XMLSITEMAP_FREQUENCY_DAILY => 'daily',
- XMLSITEMAP_FREQUENCY_WEEKLY => 'weekly',
- XMLSITEMAP_FREQUENCY_MONTHLY => 'monthly',
- XMLSITEMAP_FREQUENCY_YEARLY => 'yearly',
- );
- }
- function xmlsitemap_get_link_info($type = NULL) {
- global $language;
- $link_info = &drupal_static(__FUNCTION__);
- if (!isset($link_info)) {
- if ($cached = cache_get('xmlsitemap:link_info:' . $language->language)) {
- $link_info = $cached->data;
- }
- else {
- $link_info = array();
- foreach (module_implements('xmlsitemap_link_info') as $module) {
- $module_link_info = module_invoke($module, 'xmlsitemap_link_info');
- foreach ($module_link_info as $type => $info) {
- $module_link_info[$type] += array(
- 'type' => $type,
- 'module' => $module,
- 'purge' => TRUE,
- 'table' => FALSE,
- );
- }
- $link_info = array_merge($link_info, $module_link_info);
- }
- drupal_alter('xmlsitemap_link_info', $link_info);
- cache_set('xmlsitemap:link_info:' . $language->language, $link_info);
- }
- }
- if (isset($type)) {
- return isset($link_info[$type]) ? $link_info[$type] : NULL;
- }
- return $link_info;
- }
- function xmlsitemap_xmlsitemap_link_info() {
- return array(
- 'frontpage' => array(),
- );
- }
- function xmlsitemap_get_directory() {
- $directory = &drupal_static(__FUNCTION__);
- if (!isset($directory)) {
- $directory = file_directory_path() . '/' . variable_get('xmlsitemap_path', 'xmlsitemap');
- }
- return $directory;
- }
- function xmlsitemap_check_directory() {
- $directory = xmlsitemap_get_directory();
- $result = file_prepare_directory($directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
- if (!$result) {
- watchdog('file system', 'The directory %directory does not exist or is not writable.', array('%directory' => $directory), WATCHDOG_ERROR);
- }
- return $result;
- }
- function xmlsitemap_clear_directory($delete = FALSE) {
- $directory = xmlsitemap_get_directory();
- return _xmlsitemap_delete_recursive($directory, $delete);
- }
- function _xmlsitemap_delete_recursive($path, $delete_root = FALSE) {
-
- $path = drupal_realpath($path);
- if (is_dir($path)) {
- $dir = dir($path);
- while (($entry = $dir->read()) !== FALSE) {
- if ($entry == '.' || $entry == '..') {
- continue;
- }
- $entry_path = $path . '/' . $entry;
- file_unmanaged_delete_recursive($entry_path, TRUE);
- }
- $dir->close();
- return $delete_root ? rmdir($path) : TRUE;
- }
- return file_unmanaged_delete($path);
- }
- function xmlsitemap_language_load($language = LANGUAGE_NONE) {
- $languages = &drupal_static(__FUNCTION__);
- if (!isset($languages)) {
- $languages = language_list();
- $languages[LANGUAGE_NONE] = NULL;
- }
- return $languages[$language];
- }
|