$project) { $url = _update_build_fetch_url($project, $site_key); $fetch_url_base = _update_get_fetch_url_base($project); if (empty($fail[$fetch_url_base]) || count($fail[$fetch_url_base]) < $max_fetch_attempts) { $xml = drupal_http_request($url); if (isset($xml->data)) { $data[] = $xml->data; } else { // Connection likely broken; prepare to give up. $fail[$fetch_url_base][$key] = 1; } } else { // Didn't bother trying to fetch. $fail[$fetch_url_base][$key] = 1; } } if ($data) { $available = update_parse_xml($data); } if (!empty($available) && is_array($available)) { // Record the projects where we failed to fetch data. foreach ($fail as $fetch_url_base => $failures) { foreach ($failures as $key => $value) { $available[$key]['project_status'] = 'not-fetched'; } } $frequency = variable_get('update_check_frequency', 1); _update_cache_set('update_available_releases', $available, REQUEST_TIME + (60 * 60 * 24 * $frequency)); watchdog('update', 'Attempted to fetch information about all available new releases and updates.', array(), WATCHDOG_NOTICE, l(t('view'), 'admin/reports/updates')); } else { watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l(t('view'), 'admin/reports/updates')); } // Whether this worked or not, we did just (try to) check for updates. variable_set('update_last_check', REQUEST_TIME); return $available; } /** * Generates the URL to fetch information about project updates. * * This figures out the right URL to use, based on the project's .info file * and the global defaults. Appends optional query arguments when the site is * configured to report usage stats. * * @param $project * The array of project information from update_get_projects(). * @param $site_key * The anonymous site key hash (optional). * * @see update_refresh() * @see update_get_projects() */ function _update_build_fetch_url($project, $site_key = '') { $name = $project['name']; $url = _update_get_fetch_url_base($project); $url .= '/' . $name . '/' . DRUPAL_CORE_COMPATIBILITY; // Only append a site_key and the version information if we have a site_key // in the first place, and if this is not a disabled module or theme. We do // not want to record usage statistics for disabled code. if (!empty($site_key) && (strpos($project['project_type'], 'disabled') === FALSE)) { $url .= (strpos($url, '?') === TRUE) ? '&' : '?'; $url .= 'site_key='; $url .= rawurlencode($site_key); if (!empty($project['info']['version'])) { $url .= '&version='; $url .= rawurlencode($project['info']['version']); } } return $url; } /** * Return the base of the URL to fetch available update data for a project. * * @param $project * The array of project information from update_get_projects(). * @return * The base of the URL used for fetching available update data. This does * not include the path elements to specify a particular project, version, * site_key, etc. * * @see _update_build_fetch_url() */ function _update_get_fetch_url_base($project) { return isset($project['info']['project status url']) ? $project['info']['project status url'] : variable_get('update_fetch_url', UPDATE_DEFAULT_URL); } /** * Perform any notifications that should be done once cron fetches new data. * * This method checks the status of the site using the new data and depending * on the configuration of the site, notifies administrators via email if there * are new releases or missing security updates. * * @see update_requirements() */ function _update_cron_notify() { include_once DRUPAL_ROOT . '/includes/install.inc'; $status = update_requirements('runtime'); $params = array(); $notify_all = (variable_get('update_notification_threshold', 'all') == 'all'); foreach (array('core', 'contrib') as $report_type) { $type = 'update_' . $report_type; if (isset($status[$type]['severity']) && ($status[$type]['severity'] == REQUIREMENT_ERROR || ($notify_all && $status[$type]['reason'] == UPDATE_NOT_CURRENT))) { $params[$report_type] = $status[$type]['reason']; } } if (!empty($params)) { $notify_list = variable_get('update_notify_emails', ''); if (!empty($notify_list)) { $default_language = language_default(); foreach ($notify_list as $target) { if ($target_user = user_load_by_mail($target)) { $target_language = user_preferred_language($target_user); } else { $target_language = $default_language; } drupal_mail('update', 'status_notify', $target, $target_language, $params); } } } } /** * Parse the XML of the Drupal release history info files. * * @param $raw_xml_list * Array of raw XML strings, one for each fetched project. * * @return * Nested array of parsed data about projects and releases. */ function update_parse_xml($raw_xml_list) { $data = array(); foreach ($raw_xml_list as $raw_xml) { $xml = new SimpleXMLElement($raw_xml); $short_name = (string)$xml->short_name; $data[$short_name] = array(); foreach ($xml as $k => $v) { $data[$short_name][$k] = (string)$v; } $data[$short_name]['releases'] = array(); foreach ($xml->releases->children() as $release) { $version = (string)$release->version; $data[$short_name]['releases'][$version] = array(); foreach ($release->children() as $k => $v) { $data[$short_name]['releases'][$version][$k] = (string)$v; } $data[$short_name]['releases'][$version]['terms'] = array(); if ($release->terms) { foreach ($release->terms->children() as $term) { if (!isset($data[$short_name]['releases'][$version]['terms'][(string)$term->name])) { $data[$short_name]['releases'][$version]['terms'][(string)$term->name] = array(); } $data[$short_name]['releases'][$version]['terms'][(string)$term->name][] = (string)$term->value; } } } } return $data; }