]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/update.php
WordPress 4.0
[autoinstalls/wordpress.git] / wp-includes / update.php
index ead8e39885afab86f5c538147e368614e29d41f3..a9e25a87187b9d9509a9632a7435d8b5ce4bcbde 100644 (file)
@@ -13,7 +13,6 @@
  * WordPress server at api.wordpress.org server. Will only check if WordPress
  * isn't installing.
  *
- * @package WordPress
  * @since 2.3.0
  * @uses $wp_version Used to check against the newest WordPress version.
  *
@@ -26,7 +25,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
                return;
 
        global $wpdb, $wp_local_package;
-       include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
+       include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
        $php_version = phpversion();
 
        $current = get_site_transient( 'update_core' );
@@ -117,7 +116,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
 
        $response = wp_remote_post( $url, $options );
        if ( $ssl && is_wp_error( $response ) ) {
-               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
+               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
                $response = wp_remote_post( $http_url, $options );
        }
 
@@ -143,7 +142,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
                                $offer[ $offer_key ] = esc_html( $value );
                }
                $offer = (object) array_intersect_key( $offer, array_fill_keys( array( 'response', 'download', 'locale',
-                       'packages', 'current', 'version', 'php_version', 'mysql_version', 'new_bundled', 'partial_version', 'notify_email' ), '' ) );
+                       'packages', 'current', 'version', 'php_version', 'mysql_version', 'new_bundled', 'partial_version', 'notify_email', 'support_email' ), '' ) );
        }
 
        $updates = new stdClass();
@@ -154,7 +153,20 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
        if ( isset( $body['translations'] ) )
                $updates->translations = $body['translations'];
 
-       set_site_transient( 'update_core',  $updates);
+       set_site_transient( 'update_core', $updates );
+
+       if ( ! empty( $body['ttl'] ) ) {
+               $ttl = (int) $body['ttl'];
+               if ( $ttl && ( time() + $ttl < wp_next_scheduled( 'wp_version_check' ) ) ) {
+                       // Queue an event to re-run the update check in $ttl seconds.
+                       wp_schedule_single_event( time() + $ttl, 'wp_version_check' );
+               }
+       }
+
+       // Trigger a background updates check if running non-interactively, and we weren't called from the update handler.
+       if ( defined( 'DOING_CRON' ) && DOING_CRON && ! doing_action( 'wp_maybe_auto_update' ) ) {
+               do_action( 'wp_maybe_auto_update' );
+       }
 }
 
 /**
@@ -164,7 +176,6 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
  * all plugins installed. Checks against the WordPress server at
  * api.wordpress.org. Will only check if WordPress isn't installing.
  *
- * @package WordPress
  * @since 2.3.0
  * @uses $wp_version Used to notify the WordPress version.
  *
@@ -172,7 +183,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
  */
 function wp_update_plugins( $extra_stats = array() ) {
-       include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
+       include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
 
        if ( defined('WP_INSTALLING') )
                return false;
@@ -205,7 +216,11 @@ function wp_update_plugins( $extra_stats = array() ) {
                        $timeout = HOUR_IN_SECONDS;
                        break;
                default :
-                       $timeout = 12 * HOUR_IN_SECONDS;
+                       if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
+                               $timeout = 0;
+                       } else {
+                               $timeout = 12 * HOUR_IN_SECONDS;
+                       }
        }
 
        $time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked );
@@ -249,12 +264,20 @@ function wp_update_plugins( $extra_stats = array() ) {
         */
        $locales = apply_filters( 'plugins_update_check_locales', $locales );
 
+       if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
+               $timeout = 30;
+       } else {
+               // Three seconds, plus one extra second for every 10 plugins
+               $timeout = 3 + (int) ( count( $plugins ) / 10 );
+       }
+
        $options = array(
-               'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
+               'timeout' => $timeout,
                'body' => array(
                        'plugins'      => json_encode( $to_send ),
                        'translations' => json_encode( $translations ),
                        'locale'       => json_encode( $locales ),
+                       'all'          => json_encode( true ),
                ),
                'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
        );
@@ -269,7 +292,7 @@ function wp_update_plugins( $extra_stats = array() ) {
 
        $raw_response = wp_remote_post( $url, $options );
        if ( $ssl && is_wp_error( $raw_response ) ) {
-               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
+               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
                $raw_response = wp_remote_post( $http_url, $options );
        }
 
@@ -281,13 +304,20 @@ function wp_update_plugins( $extra_stats = array() ) {
                $plugin = (object) $plugin;
        }
        unset( $plugin );
+       foreach ( $response['no_update'] as &$plugin ) {
+               $plugin = (object) $plugin;
+       }
+       unset( $plugin );
 
        if ( is_array( $response ) ) {
                $new_option->response = $response['plugins'];
                $new_option->translations = $response['translations'];
+               // TODO: Perhaps better to store no_update in a separate transient with an expiry?
+               $new_option->no_update = $response['no_update'];
        } else {
                $new_option->response = array();
                $new_option->translations = array();
+               $new_option->no_update = array();
        }
 
        set_site_transient( 'update_plugins', $new_option );
@@ -300,7 +330,6 @@ function wp_update_plugins( $extra_stats = array() ) {
  * WordPress server at api.wordpress.org. Will only check if WordPress isn't
  * installing.
  *
- * @package WordPress
  * @since 2.7.0
  * @uses $wp_version Used to notify the WordPress version.
  *
@@ -308,7 +337,7 @@ function wp_update_plugins( $extra_stats = array() ) {
  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
  */
 function wp_update_themes( $extra_stats = array() ) {
-       include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
+       include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
 
        if ( defined( 'WP_INSTALLING' ) )
                return false;
@@ -352,7 +381,11 @@ function wp_update_themes( $extra_stats = array() ) {
                        $timeout = HOUR_IN_SECONDS;
                        break;
                default :
-                       $timeout = 12 * HOUR_IN_SECONDS;
+                       if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
+                               $timeout = 0;
+                       } else {
+                               $timeout = 12 * HOUR_IN_SECONDS;
+                       }
        }
 
        $time_not_changed = isset( $last_update->last_checked ) && $timeout > ( time() - $last_update->last_checked );
@@ -394,8 +427,15 @@ function wp_update_themes( $extra_stats = array() ) {
         */
        $locales = apply_filters( 'themes_update_check_locales', $locales );
 
+       if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
+               $timeout = 30;
+       } else {
+               // Three seconds, plus one extra second for every 10 themes
+               $timeout = 3 + (int) ( count( $themes ) / 10 );
+       }
+
        $options = array(
-               'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
+               'timeout' => $timeout,
                'body' => array(
                        'themes'       => json_encode( $request ),
                        'translations' => json_encode( $translations ),
@@ -414,7 +454,7 @@ function wp_update_themes( $extra_stats = array() ) {
 
        $raw_response = wp_remote_post( $url, $options );
        if ( $ssl && is_wp_error( $raw_response ) ) {
-               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
+               trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
                $raw_response = wp_remote_post( $http_url, $options );
        }
 
@@ -441,8 +481,8 @@ function wp_update_themes( $extra_stats = array() ) {
  * @since 3.7.0
  */
 function wp_maybe_auto_update() {
-       include_once ABSPATH . '/wp-admin/includes/admin.php';
-       include_once ABSPATH . '/wp-admin/includes/class-wp-upgrader.php';
+       include_once( ABSPATH . '/wp-admin/includes/admin.php' );
+       include_once( ABSPATH . '/wp-admin/includes/class-wp-upgrader.php' );
 
        $upgrader = new WP_Automatic_Updater;
        $upgrader->run();
@@ -532,7 +572,7 @@ function wp_get_update_data() {
 }
 
 function _maybe_update_core() {
-       include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
+       include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
 
        $current = get_site_transient( 'update_core' );