' . t('Here you can find information about available updates for your installed modules and themes. Note that each module or theme is part of a "project", which may or may not have the same name, and might include multiple modules or themes within it.') . '

'; $output .= '

' . t('To extend the functionality or to change the look of your site, a number of contributed modules and themes are available.', array('@modules' => 'http://drupal.org/project/modules', '@themes' => 'http://drupal.org/project/themes')) . '

'; return $output; case 'admin/build/themes': case 'admin/build/modules': include_once DRUPAL_ROOT . '/includes/install.inc'; $status = update_requirements('runtime'); foreach (array('core', 'contrib') as $report_type) { $type = 'update_' . $report_type; if (isset($status[$type]['severity'])) { if ($status[$type]['severity'] == REQUIREMENT_ERROR) { drupal_set_message($status[$type]['description'], 'error'); } elseif ($status[$type]['severity'] == REQUIREMENT_WARNING) { drupal_set_message($status[$type]['description'], 'warning'); } } } case 'admin/reports/updates/settings': case 'admin/reports/status': // These two pages don't need additional nagging. break; case 'admin/help#update': $output = '

' . t("The Update status module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts you to available updates.") . '

'; $output .= '

' . t('The report of available updates will alert you when new releases are available for download. You may configure options for update checking frequency and notifications at the Update status module settings page.', array('@update-report' => url('admin/reports/updates'), '@update-settings' => url('admin/reports/updates/settings'))) . '

'; $output .= '

' . t('Please note that in order to provide this information, anonymous usage statistics are sent to drupal.org. If desired, you may disable the Update status module from the module administration page.', array('@modules' => url('admin/build/modules'))) . '

'; $output .= '

' . t('For more information, see the online handbook entry for Update status module.', array('@update' => 'http://drupal.org/handbook/modules/update')) . '

'; return $output; default: // Otherwise, if we're on *any* admin page and there's a security // update missing, print an error message about it. if (arg(0) == 'admin' && strpos($path, '#') === FALSE && user_access('administer site configuration')) { include_once DRUPAL_ROOT . '/includes/install.inc'; $status = update_requirements('runtime'); foreach (array('core', 'contrib') as $report_type) { $type = 'update_' . $report_type; if (isset($status[$type]) && isset($status[$type]['reason']) && $status[$type]['reason'] === UPDATE_NOT_SECURE) { drupal_set_message($status[$type]['description'], 'error'); } } } } } /** * Implementation of hook_menu(). */ function update_menu() { $items = array(); $items['admin/reports/updates'] = array( 'title' => 'Available updates', 'description' => 'Get a status report about available updates for your installed modules and themes.', 'page callback' => 'update_status', 'access arguments' => array('administer site configuration'), 'weight' => 10, ); $items['admin/settings/updates'] = array( 'title' => 'Updates', 'description' => 'Change frequency of checks for available updates to your installed modules and themes, and how you would like to be notified.', 'page callback' => 'drupal_get_form', 'page arguments' => array('update_settings'), 'access arguments' => array('administer site configuration'), ); $items['admin/reports/updates/check'] = array( 'title' => 'Manual update check', 'page callback' => 'update_manual_status', 'access arguments' => array('administer site configuration'), 'type' => MENU_CALLBACK, ); return $items; } /** * Implementation of the hook_theme() registry. */ function update_theme() { return array( 'update_settings' => array( 'arguments' => array('form' => NULL), ), 'update_report' => array( 'arguments' => array('data' => NULL), ), 'update_version' => array( 'arguments' => array('version' => NULL, 'tag' => NULL, 'class' => NULL), ), ); } /** * Implementation of hook_requirements(). * * @return * An array describing the status of the site regarding available updates. * If there is no update data, only one record will be returned, indicating * that the status of core can't be determined. If data is available, there * will be two records: one for core, and another for all of contrib * (assuming there are any contributed modules or themes enabled on the * site). In addition to the fields expected by hook_requirements ('value', * 'severity', and optionally 'description'), this array will contain a * 'reason' attribute, which is an integer constant to indicate why the * given status is being returned (UPDATE_NOT_SECURE, UPDATE_NOT_CURRENT, or * UPDATE_UNKNOWN). This is used for generating the appropriate e-mail * notification messages during update_cron(), and might be useful for other * modules that invoke update_requirements() to find out if the site is up * to date or not. * * @see _update_message_text() * @see _update_cron_notify() */ function update_requirements($phase) { if ($phase == 'runtime') { if ($available = update_get_available(FALSE)) { module_load_include('inc', 'update', 'update.compare'); $data = update_calculate_project_data($available); // First, populate the requirements for core: $requirements['update_core'] = _update_requirement_check($data['drupal'], 'core'); // We don't want to check drupal a second time. unset($data['drupal']); if (!empty($data)) { // Now, sort our $data array based on each project's status. The // status constants are numbered in the right order of precedence, so // we just need to make sure the projects are sorted in ascending // order of status, and we can look at the first project we find. uasort($data, '_update_project_status_sort'); $first_project = reset($data); $requirements['update_contrib'] = _update_requirement_check($first_project, 'contrib'); } } else { $requirements['update_core']['title'] = t('Drupal core update status'); $requirements['update_core']['value'] = t('No update data available'); $requirements['update_core']['severity'] = REQUIREMENT_WARNING; $requirements['update_core']['reason'] = UPDATE_UNKNOWN; $requirements['update_core']['description'] = _update_no_data(); } return $requirements; } } /** * Private helper method to fill in the requirements array. * * This is shared for both core and contrib to generate the right elements in * the array for hook_requirements(). * * @param $project * Array of information about the project we're testing as returned by * update_calculate_project_data(). * @param $type * What kind of project is this ('core' or 'contrib'). * * @return * An array to be included in the nested $requirements array. * * @see hook_requirements() * @see update_requirements() * @see update_calculate_project_data() */ function _update_requirement_check($project, $type) { $requirement = array(); if ($type == 'core') { $requirement['title'] = t('Drupal core update status'); } else { $requirement['title'] = t('Module and theme update status'); } $status = $project['status']; if ($status != UPDATE_CURRENT) { $requirement['reason'] = $status; $requirement['description'] = _update_message_text($type, $status, TRUE); $requirement['severity'] = REQUIREMENT_ERROR; } switch ($status) { case UPDATE_NOT_SECURE: $requirement_label = t('Not secure!'); break; case UPDATE_REVOKED: $requirement_label = t('Revoked!'); break; case UPDATE_NOT_SUPPORTED: $requirement_label = t('Unsupported release'); break; case UPDATE_NOT_CURRENT: $requirement_label = t('Out of date'); $requirement['severity'] = variable_get('update_notification_threshold', 'all') == 'all' ? REQUIREMENT_ERROR : REQUIREMENT_WARNING; break; case UPDATE_UNKNOWN: case UPDATE_NOT_CHECKED: $requirement_label = isset($project['reason']) ? $project['reason'] : t('Can not determine status'); $requirement['severity'] = REQUIREMENT_WARNING; break; default: $requirement_label = t('Up to date'); } if ($status != UPDATE_CURRENT && $type == 'core' && isset($project['recommended'])) { $requirement_label .= ' ' . t('(version @version available)', array('@version' => $project['recommended'])); } $requirement['value'] = l($requirement_label, 'admin/reports/updates'); return $requirement; } /** * Implementation of hook_cron(). */ function update_cron() { $frequency = variable_get('update_check_frequency', 1); $interval = 60 * 60 * 24 * $frequency; // Cron should check for updates if there is no update data cached or if the configured // update interval has elapsed. if (!cache_get('update_info', 'cache_update') || ((REQUEST_TIME - variable_get('update_last_check', 0)) > $interval)) { update_refresh(); _update_cron_notify(); } } /** * Implementation of hook_form_alter(). * * Adds a submit handler to the system modules and themes forms, so that if a * site admin saves either form, we invalidate the cache of available updates. * * @see update_invalidate_cache() */ function update_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'system_modules' || $form_id == 'system_themes' ) { $form['#submit'][] = 'update_invalidate_cache'; } } /** * Prints a warning message when there is no data about available updates. */ function _update_no_data() { $destination = drupal_get_destination(); return t('No information is available about potential new releases for currently installed modules and themes. To check for updates, you may need to run cron or you can check manually. Please note that checking for available updates can take a long time, so please be patient.', array( '@run_cron' => url('admin/reports/status/run-cron', array('query' => $destination)), '@check_manually' => url('admin/reports/updates/check', array('query' => $destination)), )); } /** * Internal helper to try to get the update information from the cache * if possible, and to refresh the cache when necessary. * * In addition to checking the cache lifetime, this function also ensures that * there are no .info files for enabled modules or themes that have a newer * modification timestamp than the last time we checked for available update * data. If any .info file was modified, it almost certainly means a new * version of something was installed. Without fresh available update data, * the logic in update_calculate_project_data() will be wrong and produce * confusing, bogus results. * * @param $refresh * Boolean to indicate if this method should refresh the cache automatically * if there's no data. * * @see update_refresh() * @see update_get_projects() */ function update_get_available($refresh = FALSE) { module_load_include('inc', 'update', 'update.compare'); $available = array(); // First, make sure that none of the .info files have a change time // newer than the last time we checked for available updates. $needs_refresh = FALSE; $last_check = variable_get('update_last_check', 0); $projects = update_get_projects(); foreach ($projects as $key => $project) { if ($project['info']['_info_file_ctime'] > $last_check) { $needs_refresh = TRUE; break; } } if (!$needs_refresh && ($cache = cache_get('update_info', 'cache_update')) && $cache->expire > REQUEST_TIME) { $available = $cache->data; } elseif ($needs_refresh || $refresh) { // If we need to refresh due to a newer .info file, ignore the argument // and force the refresh (e.g., even for update_requirements()) to prevent // bogus results. $available = update_refresh(); } return $available; } /** * Implementation of hook_flush_caches(). * * The function update.php (among others) calls this hook to flush the caches. * Since we're running update.php, we are likely to install a new version of * something, in which case, we want to check for available update data again. */ function update_flush_caches() { return array('cache_update'); } /** * Invalidates any cached data relating to update status. */ function update_invalidate_cache() { cache_clear_all('*', 'cache_update', TRUE); } /** * Wrapper to load the include file and then refresh the release data. */ function update_refresh() { module_load_include('inc', 'update', 'update.fetch'); return _update_refresh(); } /** * Implementation of hook_mail(). * * Constructs the email notification message when the site is out of date. * * @param $key * Unique key to indicate what message to build, always 'status_notify'. * @param $message * Reference to the message array being built. * @param $params * Array of parameters to indicate what kind of text to include in the * message body. This is a keyed array of message type ('core' or 'contrib') * as the keys, and the status reason constant (UPDATE_NOT_SECURE, etc) for * the values. * * @see drupal_mail() * @see _update_cron_notify() * @see _update_message_text() */ function update_mail($key, &$message, $params) { $language = $message['language']; $langcode = $language->language; $message['subject'] .= t('New release(s) available for !site_name', array('!site_name' => variable_get('site_name', 'Drupal')), $langcode); foreach ($params as $msg_type => $msg_reason) { $message['body'][] = _update_message_text($msg_type, $msg_reason, FALSE, $language); } $message['body'][] = t('See the available updates page for more information:', array(), $langcode) . "\n" . url('admin/reports/updates', array('absolute' => TRUE, 'language' => $language)); } /** * Helper function to return the appropriate message text when the site is out * of date or missing a security update. * * These error messages are shared by both update_requirements() for the * site-wide status report at admin/reports/status and in the body of the * notification emails generated by update_cron(). * * @param $msg_type * String to indicate what kind of message to generate. Can be either * 'core' or 'contrib'. * @param $msg_reason * Integer constant specifying why message is generated. * @param $report_link * Boolean that controls if a link to the updates report should be added. * @param $language * An optional language object to use. * @return * The properly translated error message for the given key. */ function _update_message_text($msg_type, $msg_reason, $report_link = FALSE, $language = NULL) { $langcode = isset($language) ? $language->language : NULL; $text = ''; switch ($msg_reason) { case UPDATE_NOT_SECURE: if ($msg_type == 'core') { $text = t('There is a security update available for your version of Drupal. To ensure the security of your server, you should update immediately!', array(), $langcode); } else { $text = t('There are security updates available for one or more of your modules or themes. To ensure the security of your server, you should update immediately!', array(), $langcode); } break; case UPDATE_REVOKED: if ($msg_type == 'core') { $text = t('Your version of Drupal has been revoked and is no longer available for download. Upgrading is strongly recommended!', array(), $langcode); } else { $text = t('The installed version of at least one of your modules or themes has been revoked and is no longer available for download. Upgrading or disabling is strongly recommended!', array(), $langcode); } break; case UPDATE_NOT_SUPPORTED: if ($msg_type == 'core') { $text = t('Your version of Drupal is no longer supported. Upgrading is strongly recommended!', array(), $langcode); } else { $text = t('The installed version of at least one of your modules or themes is no longer supported. Upgrading or disabling is strongly recommended! Please see the project homepage for more details.', array(), $langcode); } break; case UPDATE_NOT_CURRENT: if ($msg_type == 'core') { $text = t('There are updates available for your version of Drupal. To ensure the proper functioning of your site, you should update as soon as possible.', array(), $langcode); } else { $text = t('There are updates available for one or more of your modules or themes. To ensure the proper functioning of your site, you should update as soon as possible.', array(), $langcode); } break; case UPDATE_UNKNOWN: case UPDATE_NOT_CHECKED: if ($msg_type == 'core') { $text = t('There was a problem determining the status of available updates for your version of Drupal.', array(), $langcode); } else { $text = t('There was a problem determining the status of available updates for one or more of your modules or themes.', array(), $langcode); } break; } if ($report_link) { $text .= ' ' . t('See the available updates page for more information.', array('@available_updates' => url('admin/reports/updates', array('language' => $language))), $langcode); } return $text; } /** * Private sort function to order projects based on their status. * * @see update_requirements() * @see uasort() */ function _update_project_status_sort($a, $b) { // The status constants are numerically in the right order, so we can // usually subtract the two to compare in the order we want. However, // negative status values should be treated as if they are huge, since we // always want them at the bottom of the list. $a_status = $a['status'] > 0 ? $a['status'] : (-10 * $a['status']); $b_status = $b['status'] > 0 ? $b['status'] : (-10 * $b['status']); return $a_status - $b_status; }