2007-08-17 06:33:52 -04:00
|
|
|
<?php
|
2007-10-30 17:40:30 -04:00
|
|
|
/**
|
2008-08-12 17:21:11 -04:00
|
|
|
* A simple set of functions to check our version 1.0 update service.
|
2007-10-30 17:40:30 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-09-18 13:32:18 -04:00
|
|
|
* @since 2.3.0
|
2007-10-30 17:40:30 -04:00
|
|
|
*/
|
2007-08-17 06:33:52 -04:00
|
|
|
|
2007-10-30 17:40:30 -04:00
|
|
|
/**
|
2008-08-12 17:21:11 -04:00
|
|
|
* Check WordPress version against the newest version.
|
|
|
|
*
|
2008-08-01 01:00:07 -04: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 17:40:30 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-27 02:45:13 -04:00
|
|
|
* @since 2.3.0
|
2007-10-30 17:40:30 -04: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 06:33:52 -04:00
|
|
|
function wp_version_check() {
|
2008-08-01 01:00:07 -04:00
|
|
|
if ( defined('WP_INSTALLING') )
|
2007-08-19 00:27:04 -04:00
|
|
|
return;
|
|
|
|
|
2011-04-07 06:04:45 -04:00
|
|
|
global $wpdb, $wp_local_package;
|
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2007-08-17 06:33:52 -04:00
|
|
|
$php_version = phpversion();
|
2007-09-03 19:19:20 -04:00
|
|
|
|
2010-01-08 15:49:55 -05:00
|
|
|
$current = get_site_transient( 'update_core' );
|
2009-05-05 17:51:48 -04:00
|
|
|
if ( ! is_object($current) ) {
|
2008-11-26 07:04:29 -05:00
|
|
|
$current = new stdClass;
|
2009-05-05 17:51:48 -04:00
|
|
|
$current->updates = array();
|
|
|
|
$current->version_checked = $wp_version;
|
|
|
|
}
|
2008-11-26 07:04:29 -05:00
|
|
|
|
2012-01-05 14:49:47 -05: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-11 19:37:33 -04:00
|
|
|
$locale = apply_filters( 'core_version_check_locale', get_locale() );
|
2007-08-17 06:33:52 -04:00
|
|
|
|
2008-11-26 06:48:05 -05:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
|
|
|
$current->last_checked = time();
|
2010-01-08 15:49:55 -05:00
|
|
|
set_site_transient( 'update_core', $current );
|
2008-11-26 06:48:05 -05:00
|
|
|
|
2008-08-26 18:30:56 -04:00
|
|
|
if ( method_exists( $wpdb, 'db_version' ) )
|
2009-12-09 07:00:55 -05:00
|
|
|
$mysql_version = preg_replace('/[^0-9.].*/', '', $wpdb->db_version());
|
2008-08-26 18:30:56 -04:00
|
|
|
else
|
|
|
|
$mysql_version = 'N/A';
|
2010-04-05 16:19:07 -04:00
|
|
|
|
|
|
|
if ( is_multisite( ) ) {
|
2010-11-29 00:27:01 -05:00
|
|
|
$user_count = get_user_count( );
|
2010-04-05 16:19:07 -04:00
|
|
|
$num_blogs = get_blog_count( );
|
|
|
|
$wp_install = network_site_url( );
|
|
|
|
$multisite_enabled = 1;
|
2010-11-29 00:27:01 -05:00
|
|
|
} else {
|
|
|
|
$user_count = count_users( );
|
|
|
|
$multisite_enabled = 0;
|
|
|
|
$num_blogs = 1;
|
|
|
|
$wp_install = home_url( '/' );
|
2010-04-05 16:19:07 -04:00
|
|
|
}
|
|
|
|
|
2011-09-17 05:14:27 -04: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,
|
|
|
|
'users' => $user_count['total_users'],
|
|
|
|
'multisite_enabled' => $multisite_enabled
|
|
|
|
);
|
|
|
|
|
|
|
|
$url = 'http://api.wordpress.org/core/version-check/1.6/?' . http_build_query( $query, null, '&' );
|
2008-08-01 01:00:07 -04:00
|
|
|
|
2008-12-21 16:52:15 -05:00
|
|
|
$options = array(
|
2010-04-05 16:19:07 -04: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 16:52:15 -05:00
|
|
|
);
|
2008-08-01 01:00:07 -04:00
|
|
|
|
2008-12-18 12:23:20 -05:00
|
|
|
$response = wp_remote_get($url, $options);
|
2008-08-12 17:21:11 -04:00
|
|
|
|
2011-05-14 15:45:07 -04:00
|
|
|
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
|
2008-08-12 17:21:11 -04:00
|
|
|
return false;
|
2008-08-01 01:00:07 -04:00
|
|
|
|
2011-05-14 15:45:07 -04:00
|
|
|
$body = trim( wp_remote_retrieve_body( $response ) );
|
2012-01-07 22:48:05 -05:00
|
|
|
$body = maybe_unserialize( $body );
|
|
|
|
|
|
|
|
if ( ! is_array( $body ) || ! isset( $body['offers'] ) )
|
2011-06-10 01:47:44 -04:00
|
|
|
return false;
|
2012-01-07 22:48:05 -05:00
|
|
|
|
2011-06-10 01:47:44 -04:00
|
|
|
$offers = $body['offers'];
|
|
|
|
|
|
|
|
foreach ( $offers as &$offer ) {
|
|
|
|
foreach ( $offer as $offer_key => $value ) {
|
|
|
|
if ( 'packages' == $offer_key )
|
2011-06-10 01:50:23 -04: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 01:47:44 -04:00
|
|
|
elseif ( 'download' == $offer_key )
|
|
|
|
$offer['download'] = esc_url( $value );
|
|
|
|
else
|
|
|
|
$offer[ $offer_key ] = esc_html( $value );
|
|
|
|
}
|
2011-06-10 02:22:33 -04: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 14:51:06 -04:00
|
|
|
}
|
|
|
|
|
2008-11-04 12:12:03 -05:00
|
|
|
$updates = new stdClass();
|
2011-06-10 01:47:44 -04:00
|
|
|
$updates->updates = $offers;
|
2008-11-04 12:12:03 -05:00
|
|
|
$updates->last_checked = time();
|
|
|
|
$updates->version_checked = $wp_version;
|
2010-01-08 15:49:55 -05:00
|
|
|
set_site_transient( 'update_core', $updates);
|
2007-08-17 06:33:52 -04:00
|
|
|
}
|
|
|
|
|
2008-07-11 18:04:03 -04:00
|
|
|
/**
|
2008-08-12 17:21:11 -04:00
|
|
|
* Check plugin versions against the latest versions hosted on WordPress.org.
|
2008-07-11 18:04:03 -04:00
|
|
|
*
|
2008-08-12 17:21:11 -04: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 13:32:18 -04:00
|
|
|
* api.wordpress.org. Will only check if WordPress isn't installing.
|
2008-07-11 18:04:03 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-27 02:45:13 -04:00
|
|
|
* @since 2.3.0
|
2011-01-06 04:06:55 -05:00
|
|
|
* @uses $wp_version Used to notify the WordPress version.
|
2008-07-11 18:04:03 -04:00
|
|
|
*
|
|
|
|
* @return mixed Returns null if update is unsupported. Returns false if check is too soon.
|
|
|
|
*/
|
|
|
|
function wp_update_plugins() {
|
2011-04-07 06:04:45 -04:00
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2008-08-12 17:21:11 -04:00
|
|
|
if ( defined('WP_INSTALLING') )
|
2008-07-11 18:04:03 -04:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// If running blog-side, bail unless we've not checked in the last 12 hours
|
2008-08-01 00:26:32 -04:00
|
|
|
if ( !function_exists( 'get_plugins' ) )
|
2008-07-11 18:04:03 -04:00
|
|
|
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
|
|
|
|
|
|
|
$plugins = get_plugins();
|
2010-01-26 13:39:12 -05:00
|
|
|
$active = get_option( 'active_plugins', array() );
|
2010-01-08 15:49:55 -05:00
|
|
|
$current = get_site_transient( 'update_plugins' );
|
2008-11-26 07:04:29 -05:00
|
|
|
if ( ! is_object($current) )
|
|
|
|
$current = new stdClass;
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2008-12-18 12:23:20 -05:00
|
|
|
$new_option = new stdClass;
|
2008-07-11 18:04:03 -04:00
|
|
|
$new_option->last_checked = time();
|
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
// Check for update on a different schedule, depending on the page.
|
|
|
|
switch ( current_filter() ) {
|
|
|
|
case 'load-update-core.php' :
|
|
|
|
$timeout = 60; // 1 min
|
|
|
|
break;
|
|
|
|
case 'load-plugins.php' :
|
|
|
|
case 'load-update.php' :
|
|
|
|
$timeout = 3600; // 1 hour
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$timeout = 43200; // 12 hours
|
2011-11-16 02:23:15 -05:00
|
|
|
}
|
2012-02-27 14:46:52 -05:00
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
$time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
|
2011-11-15 20:58:13 -05:00
|
|
|
|
2012-01-05 14:49:47 -05: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 02:23:15 -05:00
|
|
|
$plugin_changed = true;
|
2012-01-05 14:49:47 -05: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 02:23:15 -05:00
|
|
|
}
|
2008-07-16 17:53:32 -04:00
|
|
|
}
|
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
// Bail if we've checked recently and if nothing has changed
|
|
|
|
if ( ! $plugin_changed )
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-16 02:23:15 -05:00
|
|
|
|
2008-11-26 06:48:05 -05:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
|
|
|
$current->last_checked = time();
|
2010-01-08 15:49:55 -05:00
|
|
|
set_site_transient( 'update_plugins', $current );
|
2008-11-26 06:48:05 -05:00
|
|
|
|
2010-01-26 13:39:12 -05:00
|
|
|
$to_send = (object) compact('plugins', 'active');
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2008-12-21 16:52:15 -05:00
|
|
|
$options = array(
|
2009-08-16 02:30:52 -04:00
|
|
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
2008-12-21 16:52:15 -05:00
|
|
|
'body' => array( 'plugins' => serialize( $to_send ) ),
|
|
|
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
|
|
|
);
|
2008-08-12 17:21:11 -04:00
|
|
|
|
2008-12-18 12:23:20 -05:00
|
|
|
$raw_response = wp_remote_post('http://api.wordpress.org/plugins/update-check/1.0/', $options);
|
2008-08-12 17:21:11 -04:00
|
|
|
|
2011-05-14 15:45:07 -04:00
|
|
|
if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
|
2008-08-12 17:21:11 -04:00
|
|
|
return false;
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2012-01-07 22:48:05 -05:00
|
|
|
$response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2012-01-07 22:48:05 -05:00
|
|
|
if ( is_array( $response ) )
|
2008-07-11 18:04:03 -04:00
|
|
|
$new_option->response = $response;
|
2008-10-24 06:55:20 -04:00
|
|
|
else
|
|
|
|
$new_option->response = array();
|
2008-07-11 18:04:03 -04:00
|
|
|
|
2010-01-08 15:49:55 -05:00
|
|
|
set_site_transient( 'update_plugins', $new_option );
|
2008-07-11 18:04:03 -04:00
|
|
|
}
|
2008-08-01 00:26:32 -04:00
|
|
|
|
2008-09-15 12:21:15 -04:00
|
|
|
/**
|
|
|
|
* Check theme versions against the latest versions hosted on WordPress.org.
|
|
|
|
*
|
2008-12-09 13:03:31 -05:00
|
|
|
* A list of all themes installed in sent to WP. Checks against the
|
2008-09-18 13:32:18 -04:00
|
|
|
* WordPress server at api.wordpress.org. Will only check if WordPress isn't
|
|
|
|
* installing.
|
2008-09-15 12:21:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @since 2.7.0
|
2011-01-06 04:06:55 -05:00
|
|
|
* @uses $wp_version Used to notify the WordPress version.
|
2008-09-15 12:21:15 -04:00
|
|
|
*
|
|
|
|
* @return mixed Returns null if update is unsupported. Returns false if check is too soon.
|
|
|
|
*/
|
2011-04-07 06:04:45 -04:00
|
|
|
function wp_update_themes() {
|
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2008-09-15 12:21:15 -04:00
|
|
|
|
2010-01-29 13:53:32 -05:00
|
|
|
if ( defined( 'WP_INSTALLING' ) )
|
2008-09-15 12:21:15 -04: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: http://svn.automattic.com/wordpress/trunk@20029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-28 16:24:44 -05:00
|
|
|
$installed_themes = wp_get_themes();
|
2010-07-22 09:24:41 -04:00
|
|
|
$last_update = get_site_transient( 'update_themes' );
|
|
|
|
if ( ! is_object($last_update) )
|
|
|
|
$last_update = new stdClass;
|
2008-09-15 12:21:15 -04:00
|
|
|
|
2009-07-14 04:34:39 -04:00
|
|
|
$themes = array();
|
|
|
|
$checked = array();
|
2010-07-22 09:24:41 -04: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: http://svn.automattic.com/wordpress/trunk@20029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-28 16:24:44 -05: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 12:21:15 -04:00
|
|
|
}
|
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
// Check for update on a different schedule, depending on the page.
|
|
|
|
switch ( current_filter() ) {
|
|
|
|
case 'load-update-core.php' :
|
|
|
|
$timeout = 60; // 1 min
|
|
|
|
break;
|
|
|
|
case 'load-plugins.php' :
|
|
|
|
case 'load-update.php' :
|
|
|
|
$timeout = 3600; // 1 hour
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$timeout = 43200; // 12 hours
|
2011-11-16 02:23:15 -05:00
|
|
|
}
|
2012-02-27 14:46:52 -05:00
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
$time_not_changed = isset( $last_update->last_checked ) && $timeout > ( time( ) - $last_update->last_checked );
|
|
|
|
|
|
|
|
if ( $time_not_changed ) {
|
|
|
|
$theme_changed = false;
|
|
|
|
foreach ( $checked as $slug => $v ) {
|
|
|
|
$update_request->checked[ $slug ] = $v;
|
2011-11-15 20:58:13 -05:00
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
if ( !isset( $last_update->checked[ $slug ] ) || strval($last_update->checked[ $slug ]) !== strval($v) )
|
2011-11-16 02:23:15 -05:00
|
|
|
$theme_changed = true;
|
2012-01-05 14:49:47 -05: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 02:23:15 -05:00
|
|
|
}
|
2009-07-14 04:34:39 -04:00
|
|
|
}
|
|
|
|
|
2012-01-05 14:49:47 -05:00
|
|
|
// Bail if we've checked recently and if nothing has changed
|
|
|
|
if ( ! $theme_changed )
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-16 02:23:15 -05:00
|
|
|
|
2009-07-14 04:34:39 -04:00
|
|
|
// Update last_checked for current to prevent multiple blocking requests if request hangs
|
2010-07-22 09:24:41 -04:00
|
|
|
$last_update->last_checked = time();
|
|
|
|
set_site_transient( 'update_themes', $last_update );
|
2009-07-14 04:34:39 -04:00
|
|
|
|
2008-09-15 12:21:15 -04:00
|
|
|
$options = array(
|
2009-08-16 02:30:52 -04:00
|
|
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
2008-12-21 16:52:15 -05:00
|
|
|
'body' => array( 'themes' => serialize( $themes ) ),
|
|
|
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
2008-09-15 12:21:15 -04:00
|
|
|
);
|
|
|
|
|
2008-12-18 12:23:20 -05:00
|
|
|
$raw_response = wp_remote_post( 'http://api.wordpress.org/themes/update-check/1.0/', $options );
|
2008-09-15 12:21:15 -04:00
|
|
|
|
2011-05-14 15:45:07 -04:00
|
|
|
if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
|
2008-09-15 12:21:15 -04:00
|
|
|
return false;
|
|
|
|
|
2010-07-22 09:24:41 -04:00
|
|
|
$new_update = new stdClass;
|
|
|
|
$new_update->last_checked = time( );
|
2011-04-07 05:56:20 -04:00
|
|
|
$new_update->checked = $checked;
|
|
|
|
|
2012-01-07 22:48:05 -05:00
|
|
|
$response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
|
|
|
|
if ( is_array( $response ) )
|
2010-07-22 09:24:41 -04:00
|
|
|
$new_update->response = $response;
|
2008-09-15 12:21:15 -04:00
|
|
|
|
2010-07-22 09:24:41 -04:00
|
|
|
set_site_transient( 'update_themes', $new_update );
|
2008-09-15 12:21:15 -04:00
|
|
|
}
|
|
|
|
|
2011-07-26 14:39:57 -04: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'];
|
|
|
|
$update_title = array();
|
|
|
|
if ( $counts['wordpress'] )
|
|
|
|
$update_title[] = sprintf(__('%d WordPress Update'), $counts['wordpress']);
|
|
|
|
if ( $counts['plugins'] )
|
|
|
|
$update_title[] = sprintf(_n('%d Plugin Update', '%d Plugin Updates', $counts['plugins']), $counts['plugins']);
|
|
|
|
if ( $counts['themes'] )
|
|
|
|
$update_title[] = sprintf(_n('%d Theme Update', '%d Theme Updates', $counts['themes']), $counts['themes']);
|
|
|
|
|
|
|
|
$update_title = ! empty( $update_title ) ? esc_attr( implode( ', ', $update_title ) ) : '';
|
2011-10-24 15:13:23 -04:00
|
|
|
|
2011-07-26 14:39:57 -04:00
|
|
|
return array( 'counts' => $counts, 'title' => $update_title );
|
|
|
|
}
|
|
|
|
|
2009-02-16 19:13:25 -05:00
|
|
|
function _maybe_update_core() {
|
2011-04-07 06:04:45 -04:00
|
|
|
include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
|
2009-02-16 19:13:25 -05:00
|
|
|
|
2010-01-08 15:49:55 -05:00
|
|
|
$current = get_site_transient( 'update_core' );
|
2009-02-16 19:13:25 -05:00
|
|
|
|
|
|
|
if ( isset( $current->last_checked ) &&
|
|
|
|
43200 > ( time() - $current->last_checked ) &&
|
2009-04-15 15:55:41 -04:00
|
|
|
isset( $current->version_checked ) &&
|
2009-02-16 19:13:25 -05:00
|
|
|
$current->version_checked == $wp_version )
|
|
|
|
return;
|
|
|
|
|
|
|
|
wp_version_check();
|
|
|
|
}
|
2008-09-18 13:32:18 -04: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 00:26:32 -04:00
|
|
|
function _maybe_update_plugins() {
|
2010-01-08 15:49:55 -05:00
|
|
|
$current = get_site_transient( 'update_plugins' );
|
2008-08-01 00:26:32 -04:00
|
|
|
if ( isset( $current->last_checked ) && 43200 > ( time() - $current->last_checked ) )
|
|
|
|
return;
|
|
|
|
wp_update_plugins();
|
|
|
|
}
|
|
|
|
|
2008-09-18 13:32:18 -04: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
|
|
|
|
*/
|
2008-09-15 12:21:15 -04:00
|
|
|
function _maybe_update_themes( ) {
|
2010-01-08 15:49:55 -05:00
|
|
|
$current = get_site_transient( 'update_themes' );
|
2010-01-29 13:53:32 -05:00
|
|
|
if ( isset( $current->last_checked ) && 43200 > ( time( ) - $current->last_checked ) )
|
2008-09-15 12:21:15 -04:00
|
|
|
return;
|
|
|
|
|
2009-08-16 00:59:38 -04:00
|
|
|
wp_update_themes();
|
2008-09-15 12:21:15 -04:00
|
|
|
}
|
|
|
|
|
2010-10-20 12:50:57 -04: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 17:46:32 -05:00
|
|
|
if ( ( ! is_main_site() && ! is_network_admin() ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
|
2010-09-07 09:43:32 -04:00
|
|
|
return;
|
|
|
|
|
2009-05-05 17:51:48 -04:00
|
|
|
add_action( 'admin_init', '_maybe_update_core' );
|
|
|
|
add_action( 'wp_version_check', 'wp_version_check' );
|
2009-02-16 19:13:25 -05:00
|
|
|
|
2008-08-01 00:26:32 -04:00
|
|
|
add_action( 'load-plugins.php', 'wp_update_plugins' );
|
2008-11-19 14:25:53 -05:00
|
|
|
add_action( 'load-update.php', 'wp_update_plugins' );
|
2009-11-09 13:53:21 -05:00
|
|
|
add_action( 'load-update-core.php', 'wp_update_plugins' );
|
2008-08-01 00:26:32 -04:00
|
|
|
add_action( 'admin_init', '_maybe_update_plugins' );
|
|
|
|
add_action( 'wp_update_plugins', 'wp_update_plugins' );
|
|
|
|
|
2008-12-18 12:23:20 -05:00
|
|
|
add_action( 'load-themes.php', 'wp_update_themes' );
|
|
|
|
add_action( 'load-update.php', 'wp_update_themes' );
|
2010-03-12 23:05:54 -05:00
|
|
|
add_action( 'load-update-core.php', 'wp_update_themes' );
|
2008-09-15 12:21:15 -04:00
|
|
|
add_action( 'admin_init', '_maybe_update_themes' );
|
|
|
|
add_action( 'wp_update_themes', 'wp_update_themes' );
|
|
|
|
|
2010-10-20 12:50:57 -04:00
|
|
|
add_action('init', 'wp_schedule_update_checks');
|