| 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 = (array) get_site_option( 'auto_update_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 |
$xml = new Jetpack_IXR_Client( |
| 197 |
array( |
| 198 |
'user_id' => get_current_user_id(), |
| 199 |
) |
| 200 |
); |
| 201 |
$log['blog_id'] = Jetpack_Options::get_option( 'id' ); |
| 202 |
$xml->query( 'jetpack.debug_autoupdate', $log ); |
| 203 |
} |
| 204 |
} |
| 205 |
|
| 206 |
/** |
| 207 |
* Parses the autoupdate results generated by WP_Automatic_Updater and returns a simple array of successful items |
| 208 |
* |
| 209 |
* @param string $type 'plugin' or 'theme' |
| 210 |
* |
| 211 |
* @return array |
| 212 |
*/ |
| 213 |
private function get_successful_updates( $type ) { |
| 214 |
$successful_updates = array(); |
| 215 |
|
| 216 |
if ( ! isset( $this->results[ $type ] ) ) { |
| 217 |
return $successful_updates; |
| 218 |
} |
| 219 |
|
| 220 |
foreach ( $this->results[ $type ] as $result ) { |
| 221 |
if ( $result->result ) { |
| 222 |
switch ( $type ) { |
| 223 |
case 'theme': |
| 224 |
$successful_updates[] = $result->item->theme; |
| 225 |
break; |
| 226 |
case 'translation': |
| 227 |
$successful_updates[] = $result->item->type . ':' . $result->item->slug; |
| 228 |
break; |
| 229 |
} |
| 230 |
} |
| 231 |
} |
| 232 |
|
| 233 |
return $successful_updates; |
| 234 |
} |
| 235 |
|
| 236 |
static function get_possible_failures() { |
| 237 |
$result = array(); |
| 238 |
// Lets check some reasons why it might not be working as expected |
| 239 |
include_once ABSPATH . '/wp-admin/includes/admin.php'; |
| 240 |
include_once ABSPATH . '/wp-admin/includes/class-wp-upgrader.php'; |
| 241 |
$upgrader = new WP_Automatic_Updater(); |
| 242 |
|
| 243 |
if ( $upgrader->is_disabled() ) { |
| 244 |
$result[] = 'autoupdates-disabled'; |
| 245 |
} |
| 246 |
if ( ! is_main_site() ) { |
| 247 |
$result[] = 'is-not-main-site'; |
| 248 |
} |
| 249 |
if ( ! is_main_network() ) { |
| 250 |
$result[] = 'is-not-main-network'; |
| 251 |
} |
| 252 |
if ( $upgrader->is_vcs_checkout( ABSPATH ) ) { |
| 253 |
$result[] = 'site-on-vcs'; |
| 254 |
} |
| 255 |
if ( $upgrader->is_vcs_checkout( WP_PLUGIN_DIR ) ) { |
| 256 |
$result[] = 'plugin-directory-on-vcs'; |
| 257 |
} |
| 258 |
if ( $upgrader->is_vcs_checkout( WP_CONTENT_DIR ) ) { |
| 259 |
$result[] = 'content-directory-on-vcs'; |
| 260 |
} |
| 261 |
$lock = get_option( 'auto_updater.lock' ); |
| 262 |
if ( $lock > ( time() - HOUR_IN_SECONDS ) ) { |
| 263 |
$result[] = 'lock-is-set'; |
| 264 |
} |
| 265 |
$skin = new Automatic_Upgrader_Skin(); |
| 266 |
include_once ABSPATH . 'wp-admin/includes/file.php'; |
| 267 |
include_once ABSPATH . 'wp-admin/includes/template.php'; |
| 268 |
if ( ! $skin->request_filesystem_credentials( false, ABSPATH, false ) ) { |
| 269 |
$result[] = 'no-system-write-access'; |
| 270 |
} |
| 271 |
if ( ! $skin->request_filesystem_credentials( false, WP_PLUGIN_DIR, false ) ) { |
| 272 |
$result[] = 'no-plugin-directory-write-access'; |
| 273 |
} |
| 274 |
if ( ! $skin->request_filesystem_credentials( false, WP_CONTENT_DIR, false ) ) { |
| 275 |
$result[] = 'no-wp-content-directory-write-access'; |
| 276 |
} |
| 277 |
|
| 278 |
return $result; |
| 279 |
} |
| 280 |
|
| 281 |
static function get_plugin_slug( $plugin_file ) { |
| 282 |
$update_plugins = get_site_transient( 'update_plugins' ); |
| 283 |
if ( isset( $update_plugins->no_update ) ) { |
| 284 |
if ( isset( $update_plugins->no_update[ $plugin_file ] ) ) { |
| 285 |
$slug = $update_plugins->no_update[ $plugin_file ]->slug; |
| 286 |
} |
| 287 |
} |
| 288 |
if ( empty( $slug ) && isset( $update_plugins->response ) ) { |
| 289 |
if ( isset( $update_plugins->response[ $plugin_file ] ) ) { |
| 290 |
$slug = $update_plugins->response[ $plugin_file ]->slug; |
| 291 |
} |
| 292 |
} |
| 293 |
|
| 294 |
// Try to infer from the plugin file if not cached |
| 295 |
if ( empty( $slug ) ) { |
| 296 |
$slug = dirname( $plugin_file ); |
| 297 |
if ( '.' === $slug ) { |
| 298 |
$slug = preg_replace( '/(.+)\.php$/', '$1', $plugin_file ); |
| 299 |
} |
| 300 |
} |
| 301 |
return $slug; |
| 302 |
} |
| 303 |
|
| 304 |
} |
| 305 |
|
| 306 |
Jetpack_Autoupdate::init(); |
| 307 |
|