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 ;
2008-08-27 00:30:56 +02:00
global $wp_version , $wpdb ;
2007-08-17 12:33:52 +02:00
$php_version = phpversion ();
2007-09-04 01:19:20 +02:00
2007-08-17 12:33:52 +02:00
$current = get_option ( 'update_core' );
$locale = get_locale ();
2007-09-04 01:32:58 +02:00
if (
isset ( $current -> last_checked ) &&
43200 > ( time () - $current -> last_checked ) &&
2007-08-17 12:33:52 +02:00
$current -> version_checked == $wp_version
)
return false ;
$new_option = '' ;
$new_option -> last_checked = time (); // this gets set whether we get a response or not, so if something is down or misconfigured it won't delay the page load for more than 3 seconds, twice a day
$new_option -> version_checked = $wp_version ;
2008-08-27 00:30:56 +02:00
if ( method_exists ( $wpdb , 'db_version' ) )
$mysql_version = preg_replace ( '/[^0-9.].*/' , '' , $wpdb -> db_version ( $wpdb -> users ));
else
$mysql_version = 'N/A' ;
$url = " http://api.wordpress.org/core/version-check/1.2/?version= $wp_version &php= $php_version &locale= $locale &mysql= $mysql_version " ;
2008-08-01 07:00:07 +02:00
2008-08-12 23:21:11 +02:00
$options = array ( 'timeout' => 3 );
$options [ 'headers' ] = array (
2008-08-01 07:00:07 +02:00
'Content-Type' => 'application/x-www-form-urlencoded; charset=' . get_option ( 'blog_charset' ),
'User-Agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo ( 'url' )
);
2008-08-12 23:21:11 +02:00
$response = wp_remote_request ( $url , $options );
if ( is_wp_error ( $response ) )
return false ;
2008-08-01 07:00:07 +02:00
2008-08-09 00:49:35 +02:00
if ( 200 != $response [ 'response' ][ 'code' ] )
2008-08-01 07:00:07 +02:00
return false ;
2008-08-12 23:21:11 +02:00
$body = trim ( $response [ 'body' ] );
2008-08-01 07:00:07 +02:00
$body = str_replace ( array ( " \r \n " , " \r " ), " \n " , $body );
$returns = explode ( " \n " , $body );
$new_option -> response = attribute_escape ( $returns [ 0 ] );
if ( isset ( $returns [ 1 ] ) )
$new_option -> url = clean_url ( $returns [ 1 ] );
if ( isset ( $returns [ 2 ] ) )
2008-08-09 00:49:35 +02:00
$new_option -> package = clean_url ( $returns [ 2 ] );
if ( isset ( $returns [ 3 ] ) )
$new_option -> current = attribute_escape ( $returns [ 3 ] );
if ( isset ( $returns [ 4 ] ) )
$new_option -> locale = attribute_escape ( $returns [ 4 ] );
2008-08-01 07:00:07 +02:00
2007-08-17 12:33:52 +02:00
update_option ( 'update_core' , $new_option );
}
2008-02-20 03:55:36 +01:00
add_action ( 'init' , 'wp_version_check' );
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
2008-07-12 00:04:03 +02:00
* @ uses $wp_version Used to notidy the WordPress version .
*
* @ return mixed Returns null if update is unsupported . Returns false if check is too soon .
*/
function wp_update_plugins () {
global $wp_version ;
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 ();
$active = get_option ( 'active_plugins' );
2008-08-01 06:26:32 +02:00
$current = get_option ( 'update_plugins' );
2008-07-12 00:04:03 +02:00
$new_option = '' ;
$new_option -> last_checked = time ();
2008-08-01 06:26:32 +02:00
$time_not_changed = isset ( $current -> last_checked ) && 43200 > ( time () - $current -> last_checked );
2008-07-12 00:04:03 +02:00
$plugin_changed = false ;
foreach ( $plugins as $file => $p ) {
$new_option -> checked [ $file ] = $p [ 'Version' ];
if ( ! isset ( $current -> checked [ $file ] ) ) {
$plugin_changed = true ;
continue ;
}
if ( strval ( $current -> checked [ $file ]) !== strval ( $p [ 'Version' ]) )
$plugin_changed = true ;
}
2008-08-12 23:21:11 +02: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 ;
}
2008-07-16 23:53:32 +02:00
}
}
2008-07-12 00:04:03 +02:00
// Bail if we've checked in the last 12 hours and if nothing has changed
if ( $time_not_changed && ! $plugin_changed )
return false ;
$to_send -> plugins = $plugins ;
$to_send -> active = $active ;
$send = serialize ( $to_send );
2008-08-12 23:21:11 +02:00
$body = 'plugins=' . urlencode ( $send );
2008-07-12 00:04:03 +02:00
2008-08-12 23:21:11 +02:00
$options = array ( 'method' => 'POST' , 'timeout' => 3 , 'body' => $body );
$options [ 'headers' ] = array (
'Content-Type' => 'application/x-www-form-urlencoded; charset=' . get_option ( 'blog_charset' ),
'Content-Length' => strlen ( $body ),
'User-Agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo ( 'url' )
);
$raw_response = wp_remote_request ( 'http://api.wordpress.org/plugins/update-check/1.0/' , $options );
2008-08-14 01:37:42 +02:00
if ( is_wp_error ( $raw_response ) )
return false ;
2008-08-12 23:21:11 +02:00
if ( 200 != $raw_response [ 'response' ][ 'code' ] ) {
return false ;
2008-07-12 00:04:03 +02:00
}
2008-08-12 23:21:11 +02:00
$response = unserialize ( $raw_response [ 'body' ] );
2008-07-12 00:04:03 +02:00
if ( $response )
$new_option -> response = $response ;
update_option ( 'update_plugins' , $new_option );
}
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 .
*
* 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
* @ uses $wp_version Used to notidy the WordPress version .
*
* @ return mixed Returns null if update is unsupported . Returns false if check is too soon .
*/
function wp_update_themes ( ) {
global $wp_version ;
if ( defined ( 'WP_INSTALLING' ) )
return false ;
if ( ! function_exists ( 'get_themes' ) )
require_once ( ABSPATH . 'wp-includes/theme.php' );
$installed_themes = get_themes ( );
$current_theme = get_option ( 'update_themes' );
$new_option = '' ;
$new_option -> last_checked = time ( );
$time_not_changed = isset ( $current -> last_checked ) && 43200 > ( time ( ) - $current -> last_checked );
if ( $time_not_changed )
return false ;
$themes = array ( );
$themes [ 'current_theme' ] = $current_theme ;
foreach ( ( array ) $installed_themes as $theme_title => $theme ) {
$themes [ $theme [ 'Template' ]] = array ( );
foreach ( ( array ) $theme as $key => $value ) {
$themes [ $theme [ 'Template' ]][ $key ] = $value ;
}
}
$options = array (
'method' => 'POST' ,
'timeout' => 3 ,
'body' => 'themes=' . urlencode ( serialize ( $themes ) )
);
$options [ 'headers' ] = array (
'Content-Type' => 'application/x-www-form-urlencoded; charset=' . get_option ( 'blog_charset' ),
'Content-Length' => strlen ( $options [ 'body' ] ),
'User-Agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo ( 'url' )
);
$raw_response = wp_remote_request ( 'http://api.wordpress.org/themes/update-check/1.0/' , $options );
if ( is_wp_error ( $raw_response ) )
return false ;
if ( 200 != $raw_response [ 'response' ][ 'code' ] )
return false ;
$response = unserialize ( $raw_response [ 'body' ] );
if ( $response )
$new_option -> response = $response ;
update_option ( 'update_themes' , $new_option );
}
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 () {
$current = get_option ( 'update_plugins' );
if ( isset ( $current -> last_checked ) && 43200 > ( time () - $current -> last_checked ) )
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
*/
2008-09-15 18:21:15 +02:00
function _maybe_update_themes ( ) {
$current = get_option ( 'update_themes' );
if ( isset ( $current -> last_checked ) && 43200 > ( time ( ) - $current -> last_checked ) )
return ;
wp_update_themes ( );
}
2008-08-01 06:26:32 +02:00
add_action ( 'load-plugins.php' , 'wp_update_plugins' );
add_action ( 'admin_init' , '_maybe_update_plugins' );
add_action ( 'wp_update_plugins' , 'wp_update_plugins' );
2008-09-15 18:21:15 +02:00
add_action ( 'admin_init' , '_maybe_update_themes' );
add_action ( 'wp_update_themes' , 'wp_update_themes' );
2008-08-01 06:26:32 +02:00
if ( ! wp_next_scheduled ( 'wp_update_plugins' ) )
wp_schedule_event ( time (), 'twicedaily' , 'wp_update_plugins' );
2008-07-12 00:04:03 +02:00
2008-09-15 18:21:15 +02:00
if ( ! wp_next_scheduled ( 'wp_update_themes' ) )
wp_schedule_event ( time (), 'twicedaily' , 'wp_update_themes' );
2008-07-16 23:53:32 +02:00
?>