2007-08-17 12:33:52 +02:00
|
|
|
<?php
|
2007-10-30 22:40:30 +01:00
|
|
|
/**
|
2008-08-12 23:21:11 +02:00
|
|
|
* A simple set of functions to check our version 1.0 update service.
|
2007-10-30 22:40:30 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-09-18 19:32:18 +02:00
|
|
|
* @since 2.3.0
|
2007-10-30 22:40:30 +01:00
|
|
|
*/
|
2007-08-17 12:33:52 +02:00
|
|
|
|
2007-10-30 22:40:30 +01:00
|
|
|
/**
|
2008-08-12 23:21:11 +02:00
|
|
|
* Check WordPress version against the newest version.
|
|
|
|
*
|
2008-08-01 07:00:07 +02:00
|
|
|
* The WordPress version, PHP version, and Locale is sent. Checks against the
|
|
|
|
* WordPress server at api.wordpress.org server. Will only check if WordPress
|
|
|
|
* isn't installing.
|
2007-10-30 22:40:30 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-27 08:45:13 +02:00
|
|
|
* @since 2.3.0
|
2007-10-30 22:40:30 +01:00
|
|
|
* @uses $wp_version Used to check against the newest WordPress version.
|
|
|
|
*
|
|
|
|
* @return mixed Returns null if update is unsupported. Returns false if check is too soon.
|
|
|
|
*/
|
2007-08-17 12:33:52 +02:00
|
|
|
function wp_version_check() {
|
2008-08-01 07:00:07 +02:00
|
|
|
if ( defined('WP_INSTALLING') )
|
2007-08-19 06:27:04 +02:00
|
|
|
return;
|
|
|
|
|
2011-04-07 12:04:45 +02:00
|
|
|
global $wpdb, $wp_local_package;
|
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2007-08-17 12:33:52 +02:00
|
|
|
$php_version = phpversion();
|
2007-09-04 01:19:20 +02:00
|
|
|
|
2010-01-08 21:49:55 +01:00
|
|
|
$current = get_site_transient( 'update_core' );
|
2009-05-05 23:51:48 +02:00
|
|
|
if ( ! is_object($current) ) {
|
2008-11-26 13:04:29 +01:00
|
|
|
$current = new stdClass;
|
2009-05-05 23:51:48 +02:00
|
|
|
$current->updates = array();
|
|
|
|
$current->version_checked = $wp_version;
|
|
|
|
}
|
2008-11-26 13:04:29 +01:00
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
// Wait 60 seconds between multiple version check requests
|
|
|
|
$timeout = 60;
|
|
|
|
$time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
|
|
|
|
if ( $time_not_changed )
|
|
|
|
return false;
|
|
|
|
|
2009-03-12 00:37:33 +01:00
|
|
|
$locale = apply_filters( 'core_version_check_locale', get_locale() );
|
2007-08-17 12:33:52 +02:00
|
|
|
|
2008-11-26 12:48:05 +01:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
|
|
|
$current->last_checked = time();
|
2010-01-08 21:49:55 +01:00
|
|
|
set_site_transient( 'update_core', $current );
|
2008-11-26 12:48:05 +01:00
|
|
|
|
2008-08-27 00:30:56 +02:00
|
|
|
if ( method_exists( $wpdb, 'db_version' ) )
|
2009-12-09 13:00:55 +01:00
|
|
|
$mysql_version = preg_replace('/[^0-9.].*/', '', $wpdb->db_version());
|
2008-08-27 00:30:56 +02:00
|
|
|
else
|
|
|
|
$mysql_version = 'N/A';
|
2010-04-05 22:19:07 +02:00
|
|
|
|
2013-01-04 11:13:51 +01:00
|
|
|
if ( is_multisite() ) {
|
|
|
|
$user_count = get_user_count();
|
|
|
|
$num_blogs = get_blog_count();
|
|
|
|
$wp_install = network_site_url();
|
2010-04-05 22:19:07 +02:00
|
|
|
$multisite_enabled = 1;
|
2010-11-29 06:27:01 +01:00
|
|
|
} else {
|
2013-01-04 11:13:51 +01:00
|
|
|
$user_count = count_users();
|
2012-06-25 21:40:16 +02:00
|
|
|
$user_count = $user_count['total_users'];
|
2010-11-29 06:27:01 +01:00
|
|
|
$multisite_enabled = 0;
|
|
|
|
$num_blogs = 1;
|
|
|
|
$wp_install = home_url( '/' );
|
2010-04-05 22:19:07 +02:00
|
|
|
}
|
|
|
|
|
2011-09-17 11:14:27 +02:00
|
|
|
$query = array(
|
|
|
|
'version' => $wp_version,
|
|
|
|
'php' => $php_version,
|
|
|
|
'locale' => $locale,
|
|
|
|
'mysql' => $mysql_version,
|
|
|
|
'local_package' => isset( $wp_local_package ) ? $wp_local_package : '',
|
|
|
|
'blogs' => $num_blogs,
|
2012-06-25 21:40:16 +02:00
|
|
|
'users' => $user_count,
|
2011-09-17 11:14:27 +02:00
|
|
|
'multisite_enabled' => $multisite_enabled
|
|
|
|
);
|
|
|
|
|
|
|
|
$url = 'http://api.wordpress.org/core/version-check/1.6/?' . http_build_query( $query, null, '&' );
|
2008-08-01 07:00:07 +02:00
|
|
|
|
2008-12-21 22:52:15 +01:00
|
|
|
$options = array(
|
2010-04-05 22:19:07 +02:00
|
|
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
|
|
|
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url( '/' ),
|
|
|
|
'headers' => array(
|
|
|
|
'wp_install' => $wp_install,
|
|
|
|
'wp_blog' => home_url( '/' )
|
|
|
|
)
|
2008-12-21 22:52:15 +01:00
|
|
|
);
|
2008-08-01 07:00:07 +02:00
|
|
|
|
2008-12-18 18:23:20 +01:00
|
|
|
$response = wp_remote_get($url, $options);
|
2008-08-12 23:21:11 +02:00
|
|
|
|
2011-05-14 21:45:07 +02:00
|
|
|
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
|
2008-08-12 23:21:11 +02:00
|
|
|
return false;
|
2008-08-01 07:00:07 +02:00
|
|
|
|
2011-05-14 21:45:07 +02:00
|
|
|
$body = trim( wp_remote_retrieve_body( $response ) );
|
2012-01-08 04:48:05 +01:00
|
|
|
$body = maybe_unserialize( $body );
|
|
|
|
|
|
|
|
if ( ! is_array( $body ) || ! isset( $body['offers'] ) )
|
2011-06-10 07:47:44 +02:00
|
|
|
return false;
|
2012-01-08 04:48:05 +01:00
|
|
|
|
2011-06-10 07:47:44 +02:00
|
|
|
$offers = $body['offers'];
|
|
|
|
|
|
|
|
foreach ( $offers as &$offer ) {
|
|
|
|
foreach ( $offer as $offer_key => $value ) {
|
|
|
|
if ( 'packages' == $offer_key )
|
2011-06-10 07:50:23 +02:00
|
|
|
$offer['packages'] = (object) array_intersect_key( array_map( 'esc_url', $offer['packages'] ),
|
|
|
|
array_fill_keys( array( 'full', 'no_content', 'new_bundled', 'partial' ), '' ) );
|
2011-06-10 07:47:44 +02:00
|
|
|
elseif ( 'download' == $offer_key )
|
|
|
|
$offer['download'] = esc_url( $value );
|
|
|
|
else
|
|
|
|
$offer[ $offer_key ] = esc_html( $value );
|
|
|
|
}
|
2011-06-10 08:22:33 +02:00
|
|
|
$offer = (object) array_intersect_key( $offer, array_fill_keys( array( 'response', 'download', 'locale',
|
|
|
|
'packages', 'current', 'php_version', 'mysql_version', 'new_bundled', 'partial_version' ), '' ) );
|
2008-10-31 19:51:06 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 18:12:03 +01:00
|
|
|
$updates = new stdClass();
|
2011-06-10 07:47:44 +02:00
|
|
|
$updates->updates = $offers;
|
2008-11-04 18:12:03 +01:00
|
|
|
$updates->last_checked = time();
|
|
|
|
$updates->version_checked = $wp_version;
|
2010-01-08 21:49:55 +01:00
|
|
|
set_site_transient( 'update_core', $updates);
|
2007-08-17 12:33:52 +02:00
|
|
|
}
|
|
|
|
|
2008-07-12 00:04:03 +02:00
|
|
|
/**
|
2008-08-12 23:21:11 +02:00
|
|
|
* Check plugin versions against the latest versions hosted on WordPress.org.
|
2008-07-12 00:04:03 +02:00
|
|
|
*
|
2008-08-12 23:21:11 +02:00
|
|
|
* The WordPress version, PHP version, and Locale is sent along with a list of
|
|
|
|
* all plugins installed. Checks against the WordPress server at
|
2008-09-18 19:32:18 +02:00
|
|
|
* api.wordpress.org. Will only check if WordPress isn't installing.
|
2008-07-12 00:04:03 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-27 08:45:13 +02:00
|
|
|
* @since 2.3.0
|
2011-01-06 10:06:55 +01:00
|
|
|
* @uses $wp_version Used to notify the WordPress version.
|
2008-07-12 00:04:03 +02:00
|
|
|
*
|
|
|
|
* @return mixed Returns null if update is unsupported. Returns false if check is too soon.
|
|
|
|
*/
|
|
|
|
function wp_update_plugins() {
|
2011-04-07 12:04:45 +02:00
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2008-08-12 23:21:11 +02:00
|
|
|
if ( defined('WP_INSTALLING') )
|
2008-07-12 00:04:03 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// If running blog-side, bail unless we've not checked in the last 12 hours
|
2008-08-01 06:26:32 +02:00
|
|
|
if ( !function_exists( 'get_plugins' ) )
|
2008-07-12 00:04:03 +02:00
|
|
|
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
|
|
|
|
|
|
|
$plugins = get_plugins();
|
2010-01-26 19:39:12 +01:00
|
|
|
$active = get_option( 'active_plugins', array() );
|
2010-01-08 21:49:55 +01:00
|
|
|
$current = get_site_transient( 'update_plugins' );
|
2008-11-26 13:04:29 +01:00
|
|
|
if ( ! is_object($current) )
|
|
|
|
$current = new stdClass;
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2008-12-18 18:23:20 +01:00
|
|
|
$new_option = new stdClass;
|
2008-07-12 00:04:03 +02:00
|
|
|
$new_option->last_checked = time();
|
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
// Check for update on a different schedule, depending on the page.
|
|
|
|
switch ( current_filter() ) {
|
|
|
|
case 'load-update-core.php' :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = MINUTE_IN_SECONDS;
|
2012-01-05 20:49:47 +01:00
|
|
|
break;
|
|
|
|
case 'load-plugins.php' :
|
|
|
|
case 'load-update.php' :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = HOUR_IN_SECONDS;
|
2012-01-05 20:49:47 +01:00
|
|
|
break;
|
|
|
|
default :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = 12 * HOUR_IN_SECONDS;
|
2011-11-16 08:23:15 +01:00
|
|
|
}
|
2012-02-27 20:46:52 +01:00
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
$time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
|
2011-11-16 02:58:13 +01:00
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
if ( $time_not_changed ) {
|
|
|
|
$plugin_changed = false;
|
|
|
|
foreach ( $plugins as $file => $p ) {
|
|
|
|
$new_option->checked[ $file ] = $p['Version'];
|
|
|
|
|
|
|
|
if ( !isset( $current->checked[ $file ] ) || strval($current->checked[ $file ]) !== strval($p['Version']) )
|
2011-11-16 08:23:15 +01:00
|
|
|
$plugin_changed = true;
|
2012-01-05 20:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset ( $current->response ) && is_array( $current->response ) ) {
|
|
|
|
foreach ( $current->response as $plugin_file => $update_details ) {
|
|
|
|
if ( ! isset($plugins[ $plugin_file ]) ) {
|
|
|
|
$plugin_changed = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-16 08:23:15 +01:00
|
|
|
}
|
2008-07-16 23:53:32 +02:00
|
|
|
}
|
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
// Bail if we've checked recently and if nothing has changed
|
|
|
|
if ( ! $plugin_changed )
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-16 08:23:15 +01:00
|
|
|
|
2008-11-26 12:48:05 +01:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
|
|
|
$current->last_checked = time();
|
2010-01-08 21:49:55 +01:00
|
|
|
set_site_transient( 'update_plugins', $current );
|
2008-11-26 12:48:05 +01:00
|
|
|
|
2010-01-26 19:39:12 +01:00
|
|
|
$to_send = (object) compact('plugins', 'active');
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2008-12-21 22:52:15 +01:00
|
|
|
$options = array(
|
2009-08-16 08:30:52 +02:00
|
|
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
2008-12-21 22:52:15 +01:00
|
|
|
'body' => array( 'plugins' => serialize( $to_send ) ),
|
|
|
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
|
|
|
);
|
2008-08-12 23:21:11 +02:00
|
|
|
|
2008-12-18 18:23:20 +01:00
|
|
|
$raw_response = wp_remote_post('http://api.wordpress.org/plugins/update-check/1.0/', $options);
|
2008-08-12 23:21:11 +02:00
|
|
|
|
2011-05-14 21:45:07 +02:00
|
|
|
if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
|
2008-08-12 23:21:11 +02:00
|
|
|
return false;
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2012-01-08 04:48:05 +01:00
|
|
|
$response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2012-01-08 04:48:05 +01:00
|
|
|
if ( is_array( $response ) )
|
2008-07-12 00:04:03 +02:00
|
|
|
$new_option->response = $response;
|
2008-10-24 12:55:20 +02:00
|
|
|
else
|
|
|
|
$new_option->response = array();
|
2008-07-12 00:04:03 +02:00
|
|
|
|
2010-01-08 21:49:55 +01:00
|
|
|
set_site_transient( 'update_plugins', $new_option );
|
2008-07-12 00:04:03 +02:00
|
|
|
}
|
2008-08-01 06:26:32 +02:00
|
|
|
|
2008-09-15 18:21:15 +02:00
|
|
|
/**
|
|
|
|
* Check theme versions against the latest versions hosted on WordPress.org.
|
|
|
|
*
|
2008-12-09 19:03:31 +01:00
|
|
|
* A list of all themes installed in sent to WP. Checks against the
|
2008-09-18 19:32:18 +02:00
|
|
|
* WordPress server at api.wordpress.org. Will only check if WordPress isn't
|
|
|
|
* installing.
|
2008-09-15 18:21:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @since 2.7.0
|
2011-01-06 10:06:55 +01:00
|
|
|
* @uses $wp_version Used to notify the WordPress version.
|
2008-09-15 18:21:15 +02:00
|
|
|
*
|
|
|
|
* @return mixed Returns null if update is unsupported. Returns false if check is too soon.
|
|
|
|
*/
|
2011-04-07 12:04:45 +02:00
|
|
|
function wp_update_themes() {
|
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2008-09-15 18:21:15 +02:00
|
|
|
|
2010-01-29 19:53:32 +01:00
|
|
|
if ( defined( 'WP_INSTALLING' ) )
|
2008-09-15 18:21:15 +02:00
|
|
|
return false;
|
|
|
|
|
Introduce WP_Theme, wp_get_themes(), and wp_get_theme() to replace get_themes(), get_theme(), get_theme_data(), current_theme_info(), and others.
* Getters and Helpers: Introduces a series of methods to allow for easy generation of headers for display, and other theme metadata, including page templates.
* Screenshots: Handles support for multiple screenshots. (see # Additional screenshots must be PNG and start with screenshot-2.png, and be sequential to be counted. see #19816.
* Error Handling: Broken themes have a WP_Error object attached to them.
* Caching: Introduces a wp_cache_themes_persistently filter (also in [20020]) to enable persistent caching of all filesystem and sanitization operations normally handled by WP_Theme (and formerly get_file_data() and get_themes()). Themes are cached individually and across five different cache keys for different data pieces.
* Compatibility: A WP_Theme object is backwards compatible with a theme's array formerly returned by get_themes() and get_theme(), and an stdClass object formerly returned by current_theme_info().
* i18n/L10n: Theme headers are now localizable with proper Text Domain and Domain Path headers, like plugins. (Language packs may remove the requirement for headers.) For page templates, see #6007 (not fixed yet, but will be easy now). For headers, fixes #15858.
* PHP and CSS files: New methods that fetch a list of theme files (for the theme editor) only on demand, rather than only loading them into memory. fixes #11214.
Functions deprecated:
* get_themes(), get_allowed_themes() and get_broken_themes() -- use wp_get_themes()
* get_theme() and current_theme_info() -- use wp_get_theme()
* get_site_allowed_themes() -- use WP_Theme::get_allowed_on_network()
* wpmu_get_blog_allowedthemes() -- use WP_theme::get_allowed_on_site()
see also [20016], [20018], [20019], [20020], [20021], [20022], [20025], [20026], [20027]. also fixes #19244.
see #20103.
git-svn-id: https://develop.svn.wordpress.org/trunk@20029 602fd350-edb4-49c9-b593-d223f7449a82
2012-02-28 22:24:44 +01:00
|
|
|
$installed_themes = wp_get_themes();
|
2010-07-22 15:24:41 +02:00
|
|
|
$last_update = get_site_transient( 'update_themes' );
|
|
|
|
if ( ! is_object($last_update) )
|
|
|
|
$last_update = new stdClass;
|
2008-09-15 18:21:15 +02:00
|
|
|
|
2009-07-14 10:34:39 +02:00
|
|
|
$themes = array();
|
|
|
|
$checked = array();
|
2010-07-22 15:24:41 +02:00
|
|
|
|
|
|
|
// Put slug of current theme into request.
|
|
|
|
$themes['current_theme'] = get_option( 'stylesheet' );
|
|
|
|
|
Introduce WP_Theme, wp_get_themes(), and wp_get_theme() to replace get_themes(), get_theme(), get_theme_data(), current_theme_info(), and others.
* Getters and Helpers: Introduces a series of methods to allow for easy generation of headers for display, and other theme metadata, including page templates.
* Screenshots: Handles support for multiple screenshots. (see # Additional screenshots must be PNG and start with screenshot-2.png, and be sequential to be counted. see #19816.
* Error Handling: Broken themes have a WP_Error object attached to them.
* Caching: Introduces a wp_cache_themes_persistently filter (also in [20020]) to enable persistent caching of all filesystem and sanitization operations normally handled by WP_Theme (and formerly get_file_data() and get_themes()). Themes are cached individually and across five different cache keys for different data pieces.
* Compatibility: A WP_Theme object is backwards compatible with a theme's array formerly returned by get_themes() and get_theme(), and an stdClass object formerly returned by current_theme_info().
* i18n/L10n: Theme headers are now localizable with proper Text Domain and Domain Path headers, like plugins. (Language packs may remove the requirement for headers.) For page templates, see #6007 (not fixed yet, but will be easy now). For headers, fixes #15858.
* PHP and CSS files: New methods that fetch a list of theme files (for the theme editor) only on demand, rather than only loading them into memory. fixes #11214.
Functions deprecated:
* get_themes(), get_allowed_themes() and get_broken_themes() -- use wp_get_themes()
* get_theme() and current_theme_info() -- use wp_get_theme()
* get_site_allowed_themes() -- use WP_Theme::get_allowed_on_network()
* wpmu_get_blog_allowedthemes() -- use WP_theme::get_allowed_on_site()
see also [20016], [20018], [20019], [20020], [20021], [20022], [20025], [20026], [20027]. also fixes #19244.
see #20103.
git-svn-id: https://develop.svn.wordpress.org/trunk@20029 602fd350-edb4-49c9-b593-d223f7449a82
2012-02-28 22:24:44 +01:00
|
|
|
foreach ( $installed_themes as $theme ) {
|
|
|
|
$checked[ $theme->get_stylesheet() ] = $theme->get('Version');
|
|
|
|
|
|
|
|
$themes[ $theme->get_stylesheet() ] = array(
|
|
|
|
'Name' => $theme->get('Name'),
|
|
|
|
'Title' => $theme->get('Name'),
|
|
|
|
'Version' => $theme->get('Version'),
|
|
|
|
'Author' => $theme->get('Author'),
|
|
|
|
'Author URI' => $theme->get('AuthorURI'),
|
|
|
|
'Template' => $theme->get_template(),
|
|
|
|
'Stylesheet' => $theme->get_stylesheet(),
|
|
|
|
);
|
2008-09-15 18:21:15 +02:00
|
|
|
}
|
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
// Check for update on a different schedule, depending on the page.
|
|
|
|
switch ( current_filter() ) {
|
|
|
|
case 'load-update-core.php' :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = MINUTE_IN_SECONDS;
|
2012-01-05 20:49:47 +01:00
|
|
|
break;
|
2012-03-24 15:07:12 +01:00
|
|
|
case 'load-themes.php' :
|
2012-01-05 20:49:47 +01:00
|
|
|
case 'load-update.php' :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = HOUR_IN_SECONDS;
|
2012-01-05 20:49:47 +01:00
|
|
|
break;
|
|
|
|
default :
|
2012-09-25 07:26:19 +02:00
|
|
|
$timeout = 12 * HOUR_IN_SECONDS;
|
2011-11-16 08:23:15 +01:00
|
|
|
}
|
2012-02-27 20:46:52 +01:00
|
|
|
|
2013-01-04 11:13:51 +01:00
|
|
|
$time_not_changed = isset( $last_update->last_checked ) && $timeout > ( time() - $last_update->last_checked );
|
2012-01-05 20:49:47 +01:00
|
|
|
|
|
|
|
if ( $time_not_changed ) {
|
|
|
|
$theme_changed = false;
|
|
|
|
foreach ( $checked as $slug => $v ) {
|
|
|
|
if ( !isset( $last_update->checked[ $slug ] ) || strval($last_update->checked[ $slug ]) !== strval($v) )
|
2011-11-16 08:23:15 +01:00
|
|
|
$theme_changed = true;
|
2012-01-05 20:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset ( $last_update->response ) && is_array( $last_update->response ) ) {
|
|
|
|
foreach ( $last_update->response as $slug => $update_details ) {
|
|
|
|
if ( ! isset($checked[ $slug ]) ) {
|
|
|
|
$theme_changed = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-16 08:23:15 +01:00
|
|
|
}
|
2009-07-14 10:34:39 +02:00
|
|
|
}
|
|
|
|
|
2012-01-05 20:49:47 +01:00
|
|
|
// Bail if we've checked recently and if nothing has changed
|
|
|
|
if ( ! $theme_changed )
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-16 08:23:15 +01:00
|
|
|
|
2009-07-14 10:34:39 +02:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
2010-07-22 15:24:41 +02:00
|
|
|
$last_update->last_checked = time();
|
|
|
|
set_site_transient( 'update_themes', $last_update );
|
2009-07-14 10:34:39 +02:00
|
|
|
|
2008-09-15 18:21:15 +02:00
|
|
|
$options = array(
|
2009-08-16 08:30:52 +02:00
|
|
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
2008-12-21 22:52:15 +01:00
|
|
|
'body' => array( 'themes' => serialize( $themes ) ),
|
|
|
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
2008-09-15 18:21:15 +02:00
|
|
|
);
|
|
|
|
|
2008-12-18 18:23:20 +01:00
|
|
|
$raw_response = wp_remote_post( 'http://api.wordpress.org/themes/update-check/1.0/', $options );
|
2008-09-15 18:21:15 +02:00
|
|
|
|
2011-05-14 21:45:07 +02:00
|
|
|
if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
|
2008-09-15 18:21:15 +02:00
|
|
|
return false;
|
|
|
|
|
2010-07-22 15:24:41 +02:00
|
|
|
$new_update = new stdClass;
|
2013-01-04 11:13:51 +01:00
|
|
|
$new_update->last_checked = time();
|
2011-04-07 11:56:20 +02:00
|
|
|
$new_update->checked = $checked;
|
|
|
|
|
2012-01-08 04:48:05 +01:00
|
|
|
$response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
|
|
|
|
if ( is_array( $response ) )
|
2010-07-22 15:24:41 +02:00
|
|
|
$new_update->response = $response;
|
2008-09-15 18:21:15 +02:00
|
|
|
|
2010-07-22 15:24:41 +02:00
|
|
|
set_site_transient( 'update_themes', $new_update );
|
2008-09-15 18:21:15 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 20:39:57 +02:00
|
|
|
/*
|
|
|
|
* Collect counts and UI strings for available updates
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function wp_get_update_data() {
|
|
|
|
$counts = array( 'plugins' => 0, 'themes' => 0, 'wordpress' => 0 );
|
|
|
|
|
|
|
|
if ( current_user_can( 'update_plugins' ) ) {
|
|
|
|
$update_plugins = get_site_transient( 'update_plugins' );
|
|
|
|
if ( ! empty( $update_plugins->response ) )
|
|
|
|
$counts['plugins'] = count( $update_plugins->response );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'update_themes' ) ) {
|
|
|
|
$update_themes = get_site_transient( 'update_themes' );
|
|
|
|
if ( ! empty( $update_themes->response ) )
|
|
|
|
$counts['themes'] = count( $update_themes->response );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( function_exists( 'get_core_updates' ) && current_user_can( 'update_core' ) ) {
|
|
|
|
$update_wordpress = get_core_updates( array('dismissed' => false) );
|
|
|
|
if ( ! empty( $update_wordpress ) && ! in_array( $update_wordpress[0]->response, array('development', 'latest') ) && current_user_can('update_core') )
|
|
|
|
$counts['wordpress'] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$counts['total'] = $counts['plugins'] + $counts['themes'] + $counts['wordpress'];
|
2012-09-16 22:51:51 +02:00
|
|
|
$titles = array();
|
2011-07-26 20:39:57 +02:00
|
|
|
if ( $counts['wordpress'] )
|
2012-09-16 22:51:51 +02:00
|
|
|
$titles['wordpress'] = sprintf( __( '%d WordPress Update'), $counts['wordpress'] );
|
2011-07-26 20:39:57 +02:00
|
|
|
if ( $counts['plugins'] )
|
2012-09-16 22:51:51 +02:00
|
|
|
$titles['plugins'] = sprintf( _n( '%d Plugin Update', '%d Plugin Updates', $counts['plugins'] ), $counts['plugins'] );
|
2011-07-26 20:39:57 +02:00
|
|
|
if ( $counts['themes'] )
|
2012-09-16 22:51:51 +02:00
|
|
|
$titles['themes'] = sprintf( _n( '%d Theme Update', '%d Theme Updates', $counts['themes'] ), $counts['themes'] );
|
2011-07-26 20:39:57 +02:00
|
|
|
|
2012-09-16 22:51:51 +02:00
|
|
|
$update_title = $titles ? esc_attr( implode( ', ', $titles ) ) : '';
|
2011-10-24 21:13:23 +02:00
|
|
|
|
2012-09-16 22:51:51 +02:00
|
|
|
return apply_filters( 'wp_get_update_data', array( 'counts' => $counts, 'title' => $update_title ), $titles );
|
2011-07-26 20:39:57 +02:00
|
|
|
}
|
|
|
|
|
2009-02-17 01:13:25 +01:00
|
|
|
function _maybe_update_core() {
|
2011-04-07 12:04:45 +02:00
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2009-02-17 01:13:25 +01:00
|
|
|
|
2010-01-08 21:49:55 +01:00
|
|
|
$current = get_site_transient( 'update_core' );
|
2009-02-17 01:13:25 +01:00
|
|
|
|
|
|
|
if ( isset( $current->last_checked ) &&
|
2012-09-25 07:26:19 +02:00
|
|
|
12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) &&
|
2009-04-15 21:55:41 +02:00
|
|
|
isset( $current->version_checked ) &&
|
2009-02-17 01:13:25 +01:00
|
|
|
$current->version_checked == $wp_version )
|
|
|
|
return;
|
|
|
|
|
|
|
|
wp_version_check();
|
|
|
|
}
|
2008-09-18 19:32:18 +02:00
|
|
|
/**
|
|
|
|
* Check the last time plugins were run before checking plugin versions.
|
|
|
|
*
|
|
|
|
* This might have been backported to WordPress 2.6.1 for performance reasons.
|
|
|
|
* This is used for the wp-admin to check only so often instead of every page
|
|
|
|
* load.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access private
|
|
|
|
*/
|
2008-08-01 06:26:32 +02:00
|
|
|
function _maybe_update_plugins() {
|
2010-01-08 21:49:55 +01:00
|
|
|
$current = get_site_transient( 'update_plugins' );
|
2012-09-25 07:26:19 +02:00
|
|
|
if ( isset( $current->last_checked ) && 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) )
|
2008-08-01 06:26:32 +02:00
|
|
|
return;
|
|
|
|
wp_update_plugins();
|
|
|
|
}
|
|
|
|
|
2008-09-18 19:32:18 +02:00
|
|
|
/**
|
|
|
|
* Check themes versions only after a duration of time.
|
|
|
|
*
|
|
|
|
* This is for performance reasons to make sure that on the theme version
|
|
|
|
* checker is not run on every page load.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access private
|
|
|
|
*/
|
2013-01-04 11:13:51 +01:00
|
|
|
function _maybe_update_themes() {
|
2010-01-08 21:49:55 +01:00
|
|
|
$current = get_site_transient( 'update_themes' );
|
2013-01-04 11:13:51 +01:00
|
|
|
if ( isset( $current->last_checked ) && 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) )
|
2008-09-15 18:21:15 +02:00
|
|
|
return;
|
|
|
|
|
2009-08-16 06:59:38 +02:00
|
|
|
wp_update_themes();
|
2008-09-15 18:21:15 +02:00
|
|
|
}
|
|
|
|
|
2010-10-20 18:50:57 +02:00
|
|
|
/**
|
|
|
|
* Schedule core, theme, and plugin update checks.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
function wp_schedule_update_checks() {
|
|
|
|
if ( !wp_next_scheduled('wp_version_check') && !defined('WP_INSTALLING') )
|
|
|
|
wp_schedule_event(time(), 'twicedaily', 'wp_version_check');
|
|
|
|
|
|
|
|
if ( !wp_next_scheduled('wp_update_plugins') && !defined('WP_INSTALLING') )
|
|
|
|
wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins');
|
|
|
|
|
|
|
|
if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
|
|
|
|
wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
|
|
|
|
}
|
|
|
|
|
2012-01-05 23:46:32 +01:00
|
|
|
if ( ( ! is_main_site() && ! is_network_admin() ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
|
2010-09-07 15:43:32 +02:00
|
|
|
return;
|
|
|
|
|
2009-05-05 23:51:48 +02:00
|
|
|
add_action( 'admin_init', '_maybe_update_core' );
|
|
|
|
add_action( 'wp_version_check', 'wp_version_check' );
|
2009-02-17 01:13:25 +01:00
|
|
|
|
2008-08-01 06:26:32 +02:00
|
|
|
add_action( 'load-plugins.php', 'wp_update_plugins' );
|
2008-11-19 20:25:53 +01:00
|
|
|
add_action( 'load-update.php', 'wp_update_plugins' );
|
2009-11-09 19:53:21 +01:00
|
|
|
add_action( 'load-update-core.php', 'wp_update_plugins' );
|
2008-08-01 06:26:32 +02:00
|
|
|
add_action( 'admin_init', '_maybe_update_plugins' );
|
|
|
|
add_action( 'wp_update_plugins', 'wp_update_plugins' );
|
|
|
|
|
2008-12-18 18:23:20 +01:00
|
|
|
add_action( 'load-themes.php', 'wp_update_themes' );
|
|
|
|
add_action( 'load-update.php', 'wp_update_themes' );
|
2010-03-13 05:05:54 +01:00
|
|
|
add_action( 'load-update-core.php', 'wp_update_themes' );
|
2008-09-15 18:21:15 +02:00
|
|
|
add_action( 'admin_init', '_maybe_update_themes' );
|
|
|
|
add_action( 'wp_update_themes', 'wp_update_themes' );
|
|
|
|
|
2010-10-20 18:50:57 +02:00
|
|
|
add_action('init', 'wp_schedule_update_checks');
|