jetpack
Last commit date
3rd-party
7 years ago
_inc
6 years ago
bin
6 years ago
css
7 years ago
extensions
6 years ago
images
7 years ago
json-endpoints
7 years ago
languages
6 years ago
logs
9 years ago
modules
6 years ago
sal
7 years ago
scss
7 years ago
sync
7 years ago
vendor
6 years ago
views
7 years ago
wp-cli-templates
7 years ago
.svnignore
12 years ago
CODE-OF-CONDUCT.md
9 years ago
changelog.txt
6 years ago
class.frame-nonce-preview.php
9 years ago
class.jetpack-admin.php
7 years ago
class.jetpack-affiliate.php
7 years ago
class.jetpack-autoupdate.php
7 years ago
class.jetpack-bbpress-json-api-compat.php
9 years ago
class.jetpack-cli.php
7 years ago
class.jetpack-client-server.php
8 years ago
class.jetpack-client.php
7 years ago
class.jetpack-connection-banner.php
7 years ago
class.jetpack-constants.php
8 years ago
class.jetpack-data.php
6 years ago
class.jetpack-debugger.php
7 years ago
class.jetpack-error.php
10 years ago
class.jetpack-gutenberg.php
7 years ago
class.jetpack-heartbeat.php
7 years ago
class.jetpack-idc.php
7 years ago
class.jetpack-ixr-client.php
10 years ago
class.jetpack-jitm.php
7 years ago
class.jetpack-modules-list-table.php
7 years ago
class.jetpack-network-sites-list-table.php
9 years ago
class.jetpack-network.php
7 years ago
class.jetpack-options.php
7 years ago
class.jetpack-plan.php
7 years ago
class.jetpack-post-images.php
7 years ago
class.jetpack-signature.php
7 years ago
class.jetpack-tracks.php
7 years ago
class.jetpack-twitter-cards.php
7 years ago
class.jetpack-user-agent.php
7 years ago
class.jetpack-xmlrpc-server.php
7 years ago
class.jetpack.php
6 years ago
class.json-api-endpoints.php
7 years ago
class.json-api.php
7 years ago
class.photon.php
7 years ago
composer.json
6 years ago
functions.compat.php
7 years ago
functions.gallery.php
8 years ago
functions.global.php
7 years ago
functions.opengraph.php
7 years ago
functions.photon.php
7 years ago
jest.config.js
7 years ago
jetpack.php
6 years ago
json-api-config.php
10 years ago
json-endpoints.php
7 years ago
locales.php
7 years ago
readme.txt
6 years ago
require-lib.php
7 years ago
uninstall.php
7 years ago
wpml-config.xml
10 years ago
class.jetpack-autoupdate.php
306 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Handles items that have been selected for automatic updates. |
| 5 | * Hooks into WP_Automatic_Updater |
| 6 | */ |
| 7 | class Jetpack_Autoupdate { |
| 8 | |
| 9 | private $results = array(); |
| 10 | |
| 11 | private $expected = array(); |
| 12 | |
| 13 | private $success = array( |
| 14 | 'plugin' => array(), |
| 15 | 'theme' => array(), |
| 16 | ); |
| 17 | |
| 18 | private $failed = array( |
| 19 | 'plugin' => array(), |
| 20 | 'theme' => array(), |
| 21 | ); |
| 22 | |
| 23 | private static $instance = null; |
| 24 | |
| 25 | static function init() { |
| 26 | if ( is_null( self::$instance ) ) { |
| 27 | self::$instance = new Jetpack_Autoupdate; |
| 28 | } |
| 29 | |
| 30 | return self::$instance; |
| 31 | } |
| 32 | |
| 33 | private function __construct() { |
| 34 | if ( |
| 35 | /** This filter is documented in class.jetpack-json-api-endpoint.php */ |
| 36 | apply_filters( 'jetpack_json_manage_api_enabled', true ) |
| 37 | ) { |
| 38 | add_filter( 'auto_update_theme', array( $this, 'autoupdate_theme' ), 10, 2 ); |
| 39 | add_filter( 'auto_update_core', array( $this, 'autoupdate_core' ), 10, 2 ); |
| 40 | add_filter( 'auto_update_translation', array( $this, 'autoupdate_translation' ), 10, 2 ); |
| 41 | add_action( 'automatic_updates_complete', array( $this, 'automatic_updates_complete' ), 999, 1 ); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | public function autoupdate_translation( $update, $item ) { |
| 46 | // Autoupdate all translations |
| 47 | if ( Jetpack_Options::get_option( 'autoupdate_translations', false ) ) { |
| 48 | return true; |
| 49 | } |
| 50 | |
| 51 | // Themes |
| 52 | $autoupdate_themes_translations = Jetpack_Options::get_option( 'autoupdate_themes_translations', array() ); |
| 53 | $autoupdate_theme_list = Jetpack_Options::get_option( 'autoupdate_themes', array() ); |
| 54 | |
| 55 | /* |
| 56 | $item = { |
| 57 | "type":"theme", |
| 58 | "slug":"twentyfourteen", |
| 59 | "language":"en_CA", |
| 60 | "version":"1.8", |
| 61 | "updated":"2015-07-18 11:27:20", |
| 62 | "package":"https:\/\/downloads.wordpress.org\/translation\/theme\/twentyfourteen\/1.8\/en_CA.zip", |
| 63 | "autoupdate":true |
| 64 | } |
| 65 | */ |
| 66 | if ( ( in_array( $item->slug, $autoupdate_themes_translations ) |
| 67 | || in_array( $item->slug, $autoupdate_theme_list ) ) |
| 68 | && 'theme' === $item->type |
| 69 | ) { |
| 70 | $this->expect( $item->type . ':' . $item->slug, 'translation' ); |
| 71 | |
| 72 | return true; |
| 73 | } |
| 74 | |
| 75 | // Plugins |
| 76 | $autoupdate_plugin_translations = Jetpack_Options::get_option( 'autoupdate_plugins_translations', array() ); |
| 77 | $autoupdate_plugin_list = Jetpack_Options::get_option( 'autoupdate_plugins', array() ); |
| 78 | $plugin_files = array_unique( array_merge( $autoupdate_plugin_list, $autoupdate_plugin_translations ) ); |
| 79 | $plugin_slugs = array_map( array( __CLASS__, 'get_plugin_slug' ), $plugin_files ); |
| 80 | |
| 81 | if ( in_array( $item->slug, $plugin_slugs ) |
| 82 | && 'plugin' === $item->type |
| 83 | ) { |
| 84 | $this->expect( $item->type . ':' . $item->slug, 'translation' ); |
| 85 | return true; |
| 86 | } |
| 87 | |
| 88 | return $update; |
| 89 | } |
| 90 | |
| 91 | public function autoupdate_theme( $update, $item ) { |
| 92 | $autoupdate_theme_list = Jetpack_Options::get_option( 'autoupdate_themes', array() ); |
| 93 | if ( in_array( $item->theme, $autoupdate_theme_list ) ) { |
| 94 | $this->expect( $item->theme, 'theme' ); |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | return $update; |
| 99 | } |
| 100 | |
| 101 | public function autoupdate_core( $update, $item ) { |
| 102 | $autoupdate_core = Jetpack_Options::get_option( 'autoupdate_core', false ); |
| 103 | if ( $autoupdate_core ) { |
| 104 | return $autoupdate_core; |
| 105 | } |
| 106 | |
| 107 | return $update; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Stores the an item identifier to the expected array. |
| 112 | * |
| 113 | * @param string $item Example: 'jetpack/jetpack.php' for type 'plugin' or 'twentyfifteen' for type 'theme' |
| 114 | * @param string $type 'plugin' or 'theme' |
| 115 | */ |
| 116 | private function expect( $item, $type ) { |
| 117 | if ( ! isset( $this->expected[ $type ] ) ) { |
| 118 | $this->expected[ $type ] = array(); |
| 119 | } |
| 120 | $this->expected[ $type ][] = $item; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * On completion of an automatic update, let's store the results. |
| 125 | * |
| 126 | * @param $results - Sent by WP_Automatic_Updater after it completes an autoupdate action. Results may be empty. |
| 127 | */ |
| 128 | public function automatic_updates_complete( $results ) { |
| 129 | if ( empty( $this->expected ) ) { |
| 130 | return; |
| 131 | } |
| 132 | $this->results = empty( $results ) ? self::get_possible_failures() : $results; |
| 133 | |
| 134 | add_action( 'shutdown', array( $this, 'bump_stats' ) ); |
| 135 | |
| 136 | Jetpack::init(); |
| 137 | |
| 138 | $items_to_log = array( 'plugin', 'theme', 'translation' ); |
| 139 | foreach ( $items_to_log as $items ) { |
| 140 | $this->log_items( $items ); |
| 141 | } |
| 142 | |
| 143 | Jetpack::log( 'autoupdates', $this->get_log() ); |
| 144 | } |
| 145 | |
| 146 | public function get_log() { |
| 147 | return array( |
| 148 | 'results' => $this->results, |
| 149 | 'failed' => $this->failed, |
| 150 | 'success' => $this->success |
| 151 | ); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Iterates through expected items ( plugins or themes ) and compares them to actual results. |
| 156 | * |
| 157 | * @param $items 'plugin' or 'theme' |
| 158 | */ |
| 159 | private function log_items( $items ) { |
| 160 | if ( ! isset( $this->expected[ $items ] ) ) { |
| 161 | return; |
| 162 | } |
| 163 | |
| 164 | $item_results = $this->get_successful_updates( $items ); |
| 165 | |
| 166 | if ( is_array( $this->expected[ $items ] ) ) { |
| 167 | foreach ( $this->expected[ $items ] as $item ) { |
| 168 | if ( in_array( $item, $item_results ) ) { |
| 169 | $this->success[ $items ][] = $item; |
| 170 | } else { |
| 171 | $this->failed[ $items ][] = $item; |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | public function bump_stats() { |
| 178 | $instance = Jetpack::init(); |
| 179 | $log = array(); |
| 180 | // Bump numbers |
| 181 | |
| 182 | if ( ! empty( $this->success['theme'] ) ) { |
| 183 | $instance->stat( 'autoupdates/theme-success', count( $this->success['theme'] ) ); |
| 184 | $log['themes_success'] = $this->success['theme']; |
| 185 | } |
| 186 | |
| 187 | if ( ! empty( $this->failed['theme'] ) ) { |
| 188 | $instance->stat( 'autoupdates/theme-fail', count( $this->failed['theme'] ) ); |
| 189 | $log['themes_failed'] = $this->failed['theme']; |
| 190 | } |
| 191 | |
| 192 | $instance->do_stats( 'server_side' ); |
| 193 | |
| 194 | // Send a more detailed log to logstash |
| 195 | if ( ! empty( $log ) ) { |
| 196 | Jetpack::load_xml_rpc_client(); |
| 197 | $xml = new Jetpack_IXR_Client( array( |
| 198 | 'user_id' => get_current_user_id() |
| 199 | ) ); |
| 200 | $log['blog_id'] = Jetpack_Options::get_option( 'id' ); |
| 201 | $xml->query( 'jetpack.debug_autoupdate', $log ); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Parses the autoupdate results generated by WP_Automatic_Updater and returns a simple array of successful items |
| 207 | * |
| 208 | * @param string $type 'plugin' or 'theme' |
| 209 | * |
| 210 | * @return array |
| 211 | */ |
| 212 | private function get_successful_updates( $type ) { |
| 213 | $successful_updates = array(); |
| 214 | |
| 215 | if ( ! isset( $this->results[ $type ] ) ) { |
| 216 | return $successful_updates; |
| 217 | } |
| 218 | |
| 219 | foreach ( $this->results[ $type ] as $result ) { |
| 220 | if ( $result->result ) { |
| 221 | switch ( $type ) { |
| 222 | case 'theme': |
| 223 | $successful_updates[] = $result->item->theme; |
| 224 | break; |
| 225 | case 'translation': |
| 226 | $successful_updates[] = $result->item->type . ':' . $result->item->slug; |
| 227 | break; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return $successful_updates; |
| 233 | } |
| 234 | |
| 235 | static function get_possible_failures() { |
| 236 | $result = array(); |
| 237 | // Lets check some reasons why it might not be working as expected |
| 238 | include_once( ABSPATH . '/wp-admin/includes/admin.php' ); |
| 239 | include_once( ABSPATH . '/wp-admin/includes/class-wp-upgrader.php' ); |
| 240 | $upgrader = new WP_Automatic_Updater; |
| 241 | |
| 242 | if ( $upgrader->is_disabled() ) { |
| 243 | $result[] = 'autoupdates-disabled'; |
| 244 | } |
| 245 | if ( ! is_main_site() ) { |
| 246 | $result[] = 'is-not-main-site'; |
| 247 | } |
| 248 | if ( ! is_main_network() ) { |
| 249 | $result[] = 'is-not-main-network'; |
| 250 | } |
| 251 | if ( $upgrader->is_vcs_checkout( ABSPATH ) ) { |
| 252 | $result[] = 'site-on-vcs'; |
| 253 | } |
| 254 | if ( $upgrader->is_vcs_checkout( WP_PLUGIN_DIR ) ) { |
| 255 | $result[] = 'plugin-directory-on-vcs'; |
| 256 | } |
| 257 | if ( $upgrader->is_vcs_checkout( WP_CONTENT_DIR ) ) { |
| 258 | $result[] = 'content-directory-on-vcs'; |
| 259 | } |
| 260 | $lock = get_option( 'auto_updater.lock' ); |
| 261 | if ( $lock > ( time() - HOUR_IN_SECONDS ) ) { |
| 262 | $result[] = 'lock-is-set'; |
| 263 | } |
| 264 | $skin = new Automatic_Upgrader_Skin; |
| 265 | include_once( ABSPATH . 'wp-admin/includes/file.php' ); |
| 266 | include_once( ABSPATH . 'wp-admin/includes/template.php' ); |
| 267 | if ( ! $skin->request_filesystem_credentials( false, ABSPATH, false ) ) { |
| 268 | $result[] = 'no-system-write-access'; |
| 269 | } |
| 270 | if ( ! $skin->request_filesystem_credentials( false, WP_PLUGIN_DIR, false ) ) { |
| 271 | $result[] = 'no-plugin-directory-write-access'; |
| 272 | } |
| 273 | if ( ! $skin->request_filesystem_credentials( false, WP_CONTENT_DIR, false ) ) { |
| 274 | $result[] = 'no-wp-content-directory-write-access'; |
| 275 | } |
| 276 | |
| 277 | return $result; |
| 278 | } |
| 279 | |
| 280 | static function get_plugin_slug( $plugin_file ) { |
| 281 | $update_plugins = get_site_transient( 'update_plugins' ); |
| 282 | if ( isset( $update_plugins->no_update ) ) { |
| 283 | if ( isset( $update_plugins->no_update[ $plugin_file ] ) ) { |
| 284 | $slug = $update_plugins->no_update[ $plugin_file ]->slug; |
| 285 | } |
| 286 | } |
| 287 | if ( empty( $slug ) && isset( $update_plugins->response ) ) { |
| 288 | if ( isset( $update_plugins->response[ $plugin_file ] ) ) { |
| 289 | $slug = $update_plugins->response[ $plugin_file ]->slug; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | // Try to infer from the plugin file if not cached |
| 294 | if ( empty( $slug) ) { |
| 295 | $slug = dirname( $plugin_file ); |
| 296 | if ( '.' === $slug ) { |
| 297 | $slug = preg_replace("/(.+)\.php$/", "$1", $plugin_file ); |
| 298 | } |
| 299 | } |
| 300 | return $slug; |
| 301 | } |
| 302 | |
| 303 | } |
| 304 | |
| 305 | Jetpack_Autoupdate::init(); |
| 306 |