]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/update.php
Wordpress 3.5.2-scripts
[autoinstalls/wordpress.git] / wp-includes / update.php
1 <?php
2 /**
3  * A simple set of functions to check our version 1.0 update service.
4  *
5  * @package WordPress
6  * @since 2.3.0
7  */
8
9 /**
10  * Check WordPress version against the newest version.
11  *
12  * The WordPress version, PHP version, and Locale is sent. Checks against the
13  * WordPress server at api.wordpress.org server. Will only check if WordPress
14  * isn't installing.
15  *
16  * @package WordPress
17  * @since 2.3.0
18  * @uses $wp_version Used to check against the newest WordPress version.
19  *
20  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
21  */
22 function wp_version_check() {
23         if ( defined('WP_INSTALLING') )
24                 return;
25
26         global $wpdb, $wp_local_package;
27         include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
28         $php_version = phpversion();
29
30         $current = get_site_transient( 'update_core' );
31         if ( ! is_object($current) ) {
32                 $current = new stdClass;
33                 $current->updates = array();
34                 $current->version_checked = $wp_version;
35         }
36
37         // Wait 60 seconds between multiple version check requests
38         $timeout = 60;
39         $time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
40         if ( $time_not_changed )
41                 return false;
42
43         $locale = apply_filters( 'core_version_check_locale', get_locale() );
44
45         // Update last_checked for current to prevent multiple blocking requests if request hangs
46         $current->last_checked = time();
47         set_site_transient( 'update_core', $current );
48
49         if ( method_exists( $wpdb, 'db_version' ) )
50                 $mysql_version = preg_replace('/[^0-9.].*/', '', $wpdb->db_version());
51         else
52                 $mysql_version = 'N/A';
53
54         if ( is_multisite( ) ) {
55                 $user_count = get_user_count( );
56                 $num_blogs = get_blog_count( );
57                 $wp_install = network_site_url( );
58                 $multisite_enabled = 1;
59         } else {
60                 $user_count = count_users( );
61                 $user_count = $user_count['total_users'];
62                 $multisite_enabled = 0;
63                 $num_blogs = 1;
64                 $wp_install = home_url( '/' );
65         }
66
67         $query = array(
68                 'version'           => $wp_version,
69                 'php'               => $php_version,
70                 'locale'            => $locale,
71                 'mysql'             => $mysql_version,
72                 'local_package'     => isset( $wp_local_package ) ? $wp_local_package : '',
73                 'blogs'             => $num_blogs,
74                 'users'             => $user_count,
75                 'multisite_enabled' => $multisite_enabled
76         );
77
78         $url = 'http://api.wordpress.org/core/version-check/1.6/?' . http_build_query( $query, null, '&' );
79
80         $options = array(
81                 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
82                 'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url( '/' ),
83                 'headers' => array(
84                         'wp_install' => $wp_install,
85                         'wp_blog' => home_url( '/' )
86                 )
87         );
88
89         $response = wp_remote_get($url, $options);
90
91         if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
92                 return false;
93
94         $body = trim( wp_remote_retrieve_body( $response ) );
95         $body = maybe_unserialize( $body );
96
97         if ( ! is_array( $body ) || ! isset( $body['offers'] ) )
98                 return false;
99
100         $offers = $body['offers'];
101
102         foreach ( $offers as &$offer ) {
103                 foreach ( $offer as $offer_key => $value ) {
104                         if ( 'packages' == $offer_key )
105                                 $offer['packages'] = (object) array_intersect_key( array_map( 'esc_url', $offer['packages'] ),
106                                         array_fill_keys( array( 'full', 'no_content', 'new_bundled', 'partial' ), '' ) );
107                         elseif ( 'download' == $offer_key )
108                                 $offer['download'] = esc_url( $value );
109                         else
110                                 $offer[ $offer_key ] = esc_html( $value );
111                 }
112                 $offer = (object) array_intersect_key( $offer, array_fill_keys( array( 'response', 'download', 'locale',
113                         'packages', 'current', 'php_version', 'mysql_version', 'new_bundled', 'partial_version' ), '' ) );
114         }
115
116         $updates = new stdClass();
117         $updates->updates = $offers;
118         $updates->last_checked = time();
119         $updates->version_checked = $wp_version;
120         set_site_transient( 'update_core',  $updates);
121 }
122
123 /**
124  * Check plugin versions against the latest versions hosted on WordPress.org.
125  *
126  * The WordPress version, PHP version, and Locale is sent along with a list of
127  * all plugins installed. Checks against the WordPress server at
128  * api.wordpress.org. Will only check if WordPress isn't installing.
129  *
130  * @package WordPress
131  * @since 2.3.0
132  * @uses $wp_version Used to notify the WordPress version.
133  *
134  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
135  */
136 function wp_update_plugins() {
137         include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
138
139         if ( defined('WP_INSTALLING') )
140                 return false;
141
142         // If running blog-side, bail unless we've not checked in the last 12 hours
143         if ( !function_exists( 'get_plugins' ) )
144                 require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
145
146         $plugins = get_plugins();
147         $active  = get_option( 'active_plugins', array() );
148         $current = get_site_transient( 'update_plugins' );
149         if ( ! is_object($current) )
150                 $current = new stdClass;
151
152         $new_option = new stdClass;
153         $new_option->last_checked = time();
154
155         // Check for update on a different schedule, depending on the page.
156         switch ( current_filter() ) {
157                 case 'load-update-core.php' :
158                         $timeout = MINUTE_IN_SECONDS;
159                         break;
160                 case 'load-plugins.php' :
161                 case 'load-update.php' :
162                         $timeout = HOUR_IN_SECONDS;
163                         break;
164                 default :
165                         $timeout = 12 * HOUR_IN_SECONDS;
166         }
167
168         $time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
169
170         if ( $time_not_changed ) {
171                 $plugin_changed = false;
172                 foreach ( $plugins as $file => $p ) {
173                         $new_option->checked[ $file ] = $p['Version'];
174
175                         if ( !isset( $current->checked[ $file ] ) || strval($current->checked[ $file ]) !== strval($p['Version']) )
176                                 $plugin_changed = true;
177                 }
178
179                 if ( isset ( $current->response ) && is_array( $current->response ) ) {
180                         foreach ( $current->response as $plugin_file => $update_details ) {
181                                 if ( ! isset($plugins[ $plugin_file ]) ) {
182                                         $plugin_changed = true;
183                                         break;
184                                 }
185                         }
186                 }
187
188                 // Bail if we've checked recently and if nothing has changed
189                 if ( ! $plugin_changed )
190                         return false;
191         }
192
193         // Update last_checked for current to prevent multiple blocking requests if request hangs
194         $current->last_checked = time();
195         set_site_transient( 'update_plugins', $current );
196
197         $to_send = (object) compact('plugins', 'active');
198
199         $options = array(
200                 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
201                 'body' => array( 'plugins' => serialize( $to_send ) ),
202                 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
203         );
204
205         $raw_response = wp_remote_post('http://api.wordpress.org/plugins/update-check/1.0/', $options);
206
207         if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
208                 return false;
209
210         $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
211
212         if ( is_array( $response ) )
213                 $new_option->response = $response;
214         else
215                 $new_option->response = array();
216
217         set_site_transient( 'update_plugins', $new_option );
218 }
219
220 /**
221  * Check theme versions against the latest versions hosted on WordPress.org.
222  *
223  * A list of all themes installed in sent to WP. Checks against the
224  * WordPress server at api.wordpress.org. Will only check if WordPress isn't
225  * installing.
226  *
227  * @package WordPress
228  * @since 2.7.0
229  * @uses $wp_version Used to notify the WordPress version.
230  *
231  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
232  */
233 function wp_update_themes() {
234         include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
235
236         if ( defined( 'WP_INSTALLING' ) )
237                 return false;
238
239         $installed_themes = wp_get_themes();
240         $last_update = get_site_transient( 'update_themes' );
241         if ( ! is_object($last_update) )
242                 $last_update = new stdClass;
243
244         $themes = array();
245         $checked = array();
246
247         // Put slug of current theme into request.
248         $themes['current_theme'] = get_option( 'stylesheet' );
249
250         foreach ( $installed_themes as $theme ) {
251                 $checked[ $theme->get_stylesheet() ] = $theme->get('Version');
252
253                 $themes[ $theme->get_stylesheet() ] = array(
254                         'Name'       => $theme->get('Name'),
255                         'Title'      => $theme->get('Name'),
256                         'Version'    => $theme->get('Version'),
257                         'Author'     => $theme->get('Author'),
258                         'Author URI' => $theme->get('AuthorURI'),
259                         'Template'   => $theme->get_template(),
260                         'Stylesheet' => $theme->get_stylesheet(),
261                 );
262         }
263
264         // Check for update on a different schedule, depending on the page.
265         switch ( current_filter() ) {
266                 case 'load-update-core.php' :
267                         $timeout = MINUTE_IN_SECONDS;
268                         break;
269                 case 'load-themes.php' :
270                 case 'load-update.php' :
271                         $timeout = HOUR_IN_SECONDS;
272                         break;
273                 default :
274                         $timeout = 12 * HOUR_IN_SECONDS;
275         }
276
277         $time_not_changed = isset( $last_update->last_checked ) && $timeout > ( time( ) - $last_update->last_checked );
278
279         if ( $time_not_changed ) {
280                 $theme_changed = false;
281                 foreach ( $checked as $slug => $v ) {
282                         if ( !isset( $last_update->checked[ $slug ] ) || strval($last_update->checked[ $slug ]) !== strval($v) )
283                                 $theme_changed = true;
284                 }
285
286                 if ( isset ( $last_update->response ) && is_array( $last_update->response ) ) {
287                         foreach ( $last_update->response as $slug => $update_details ) {
288                                 if ( ! isset($checked[ $slug ]) ) {
289                                         $theme_changed = true;
290                                         break;
291                                 }
292                         }
293                 }
294
295                 // Bail if we've checked recently and if nothing has changed
296                 if ( ! $theme_changed )
297                         return false;
298         }
299
300         // Update last_checked for current to prevent multiple blocking requests if request hangs
301         $last_update->last_checked = time();
302         set_site_transient( 'update_themes', $last_update );
303
304         $options = array(
305                 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
306                 'body'                  => array( 'themes' => serialize( $themes ) ),
307                 'user-agent'    => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
308         );
309
310         $raw_response = wp_remote_post( 'http://api.wordpress.org/themes/update-check/1.0/', $options );
311
312         if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) )
313                 return false;
314
315         $new_update = new stdClass;
316         $new_update->last_checked = time( );
317         $new_update->checked = $checked;
318
319         $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
320         if ( is_array( $response ) )
321                 $new_update->response = $response;
322
323         set_site_transient( 'update_themes', $new_update );
324 }
325
326 /*
327  * Collect counts and UI strings for available updates
328  *
329  * @since 3.3.0
330  *
331  * @return array
332  */
333 function wp_get_update_data() {
334         $counts = array( 'plugins' => 0, 'themes' => 0, 'wordpress' => 0 );
335
336         if ( current_user_can( 'update_plugins' ) ) {
337                 $update_plugins = get_site_transient( 'update_plugins' );
338                 if ( ! empty( $update_plugins->response ) )
339                         $counts['plugins'] = count( $update_plugins->response );
340         }
341
342         if ( current_user_can( 'update_themes' ) ) {
343                 $update_themes = get_site_transient( 'update_themes' );
344                 if ( ! empty( $update_themes->response ) )
345                         $counts['themes'] = count( $update_themes->response );
346         }
347
348         if ( function_exists( 'get_core_updates' ) && current_user_can( 'update_core' ) ) {
349                 $update_wordpress = get_core_updates( array('dismissed' => false) );
350                 if ( ! empty( $update_wordpress ) && ! in_array( $update_wordpress[0]->response, array('development', 'latest') ) && current_user_can('update_core') )
351                         $counts['wordpress'] = 1;
352         }
353
354         $counts['total'] = $counts['plugins'] + $counts['themes'] + $counts['wordpress'];
355         $titles = array();
356         if ( $counts['wordpress'] )
357                 $titles['wordpress'] = sprintf( __( '%d WordPress Update'), $counts['wordpress'] );
358         if ( $counts['plugins'] )
359                 $titles['plugins'] = sprintf( _n( '%d Plugin Update', '%d Plugin Updates', $counts['plugins'] ), $counts['plugins'] );
360         if ( $counts['themes'] )
361                 $titles['themes'] = sprintf( _n( '%d Theme Update', '%d Theme Updates', $counts['themes'] ), $counts['themes'] );
362
363         $update_title = $titles ? esc_attr( implode( ', ', $titles ) ) : '';
364
365         return apply_filters( 'wp_get_update_data', array( 'counts' => $counts, 'title' => $update_title ), $titles );
366 }
367
368 function _maybe_update_core() {
369         include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
370
371         $current = get_site_transient( 'update_core' );
372
373         if ( isset( $current->last_checked ) &&
374                 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) &&
375                 isset( $current->version_checked ) &&
376                 $current->version_checked == $wp_version )
377                 return;
378
379         wp_version_check();
380 }
381 /**
382  * Check the last time plugins were run before checking plugin versions.
383  *
384  * This might have been backported to WordPress 2.6.1 for performance reasons.
385  * This is used for the wp-admin to check only so often instead of every page
386  * load.
387  *
388  * @since 2.7.0
389  * @access private
390  */
391 function _maybe_update_plugins() {
392         $current = get_site_transient( 'update_plugins' );
393         if ( isset( $current->last_checked ) && 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) )
394                 return;
395         wp_update_plugins();
396 }
397
398 /**
399  * Check themes versions only after a duration of time.
400  *
401  * This is for performance reasons to make sure that on the theme version
402  * checker is not run on every page load.
403  *
404  * @since 2.7.0
405  * @access private
406  */
407 function _maybe_update_themes( ) {
408         $current = get_site_transient( 'update_themes' );
409         if ( isset( $current->last_checked ) && 12 * HOUR_IN_SECONDS > ( time( ) - $current->last_checked ) )
410                 return;
411
412         wp_update_themes();
413 }
414
415 /**
416  * Schedule core, theme, and plugin update checks.
417  *
418  * @since 3.1.0
419  */
420 function wp_schedule_update_checks() {
421         if ( !wp_next_scheduled('wp_version_check') && !defined('WP_INSTALLING') )
422                 wp_schedule_event(time(), 'twicedaily', 'wp_version_check');
423
424         if ( !wp_next_scheduled('wp_update_plugins') && !defined('WP_INSTALLING') )
425                 wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins');
426
427         if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
428                 wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
429 }
430
431 if ( ( ! is_main_site() && ! is_network_admin() ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
432         return;
433
434 add_action( 'admin_init', '_maybe_update_core' );
435 add_action( 'wp_version_check', 'wp_version_check' );
436
437 add_action( 'load-plugins.php', 'wp_update_plugins' );
438 add_action( 'load-update.php', 'wp_update_plugins' );
439 add_action( 'load-update-core.php', 'wp_update_plugins' );
440 add_action( 'admin_init', '_maybe_update_plugins' );
441 add_action( 'wp_update_plugins', 'wp_update_plugins' );
442
443 add_action( 'load-themes.php', 'wp_update_themes' );
444 add_action( 'load-update.php', 'wp_update_themes' );
445 add_action( 'load-update-core.php', 'wp_update_themes' );
446 add_action( 'admin_init', '_maybe_update_themes' );
447 add_action( 'wp_update_themes', 'wp_update_themes' );
448
449 add_action('init', 'wp_schedule_update_checks');