Completed
Push — add/remove-sync-data-on-removi... ( 7f1e72...04da85 )
by
unknown
81:55 queued 72:25
created

Jetpack_Sync_Client::uninstall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 10
rs 9.4285
1
<?php
2
require_once dirname( __FILE__ ) . '/class.jetpack-sync-deflate-codec.php';
3
require_once dirname( __FILE__ ) . '/class.jetpack-sync-queue.php';
4
require_once dirname( __FILE__ ) . '/class.jetpack-sync-functions.php';
5
require_once dirname( __FILE__ ) . '/class.jetpack-sync-full.php';
6
require_once dirname( __FILE__ ) . '/class.jetpack-sync-defaults.php';
7
8
class Jetpack_Sync_Client {
9
10
	const CONSTANTS_CHECKSUM_OPTION_NAME = 'jetpack_constants_sync_checksum';
11
	const CALLABLES_CHECKSUM_OPTION_NAME = 'jetpack_callables_sync_checksum';
12
	const SYNC_THROTTLE_OPTION_NAME = 'jetpack_sync_min_wait';
13
	const LAST_SYNC_TIME_OPTION_NAME = 'jetpack_last_sync_time';
14
	const CALLABLES_AWAIT_TRANSIENT_NAME = 'jetpack_sync_callables_await';
15
	const CONSTANTS_AWAIT_TRANSIENT_NAME = 'jetpack_sync_constants_await';
16
	const SETTINGS_OPTION_PREFIX = 'jetpack_sync_settings_';
17
	
18
	private static $valid_settings = array( 'dequeue_max_bytes' => true, 'upload_max_bytes' => true, 'upload_max_rows' => true, 'sync_wait_time' => true );
19
20
	private $dequeue_max_bytes;
21
	private $upload_max_bytes;
22
	private $upload_max_rows;
23
	private $sync_queue;
24
	private $full_sync_client;
25
	private $codec;
26
	private $options_whitelist;
27
	private $constants_whitelist;
28
	private $meta_types = array( 'post', 'comment' );
29
	private $callable_whitelist;
30
	private $network_options_whitelist;
31
	private $taxonomy_whitelist;
32
	private $is_multisite;
33
34
	// singleton functions
35
	private static $instance;
36
37
	public static function getInstance() {
38
		if ( null === self::$instance ) {
39
			self::$instance = new self();
40
		}
41
42
		return self::$instance;
43
	}
44
45
	// this is necessary because you can't use "new" when you declare instance properties >:(
46
	protected function __construct() {
47
		$this->set_defaults();
48
		$this->init();
49
	}
50
51
	private function init() {
52
53
		$handler = array( $this, 'action_handler' );
54
55
		/**
56
		 * Most of the following hooks are sent to the same $handler
57
		 * for immediate serialization and queuing be sent to the server.
58
		 * The only exceptions are actions which need additional processing.
59
		 */
60
61
		// constants
62
		add_action( 'jetpack_sync_constant', $handler, 10, 2 );
63
64
		// callables
65
		add_action( 'jetpack_sync_callable', $handler, 10, 2 );
66
67
		// posts
68
		add_action( 'wp_insert_post', $handler, 10, 3 );
69
		add_action( 'deleted_post', $handler, 10 );
70
		add_filter( 'jetpack_sync_before_send_wp_insert_post', array( $this, 'expand_wp_insert_post' ) );
71
72
		add_action( 'jetpack_publicize_post', $handler );
73
74
		// attachments
75
76
		add_action( 'edit_attachment', array( $this, 'send_attachment_info' ) );
77
		// Once we don't have to support 4.3 we can start using add_action( 'attachment_updated', $handler, 10, 3 ); instead
78
		add_action( 'add_attachment', array( $this, 'send_attachment_info' ) );
79
		add_action( 'jetpack_sync_save_add_attachment', $handler, 10, 2 );
80
81
		// comments
82
		add_action( 'wp_insert_comment', $handler, 10, 2 );
83
		add_action( 'deleted_comment', $handler, 10 );
84
		add_action( 'trashed_comment', $handler, 10 );
85
		add_action( 'spammed_comment', $handler, 10 );
86
		add_filter( 'jetpack_sync_before_send_wp_insert_comment', array( $this, 'expand_wp_insert_comment' ) );
87
88
		// even though it's messy, we implement these hooks because
89
		// the edit_comment hook doesn't include the data
90
		// so this saves us a DB read for every comment event
91
		foreach ( array( '', 'trackback', 'pingback' ) as $comment_type ) {
92
			foreach ( array( 'unapproved', 'approved' ) as $comment_status ) {
93
				$comment_action_name = "comment_{$comment_status}_{$comment_type}";
94
				add_action( $comment_action_name, $handler, 10, 2 );
95
				add_filter( "jetpack_sync_before_send_{$comment_action_name}", array( $this, 'expand_wp_comment_status_change' ) );
96
			}
97
		}
98
99
		// options
100
		add_action( 'added_option', $handler, 10, 2 );
101
		add_action( 'updated_option', $handler, 10, 3 );
102
		add_action( 'deleted_option', $handler, 10, 1 );
103
104
		// Sync Core Icon: Detect changes in Core's Site Icon and make it syncable.
105
		add_action( 'add_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
106
		add_action( 'update_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
107
		add_action( 'delete_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
108
109
		// wordpress version
110
		add_action( 'upgrader_process_complete', array( $this, 'send_wp_version' ), 10, 2 );
111
		add_action( 'jetpack_sync_wp_version', $handler );
112
113
		// themes
114
		add_action( 'switch_theme', array( $this, 'send_theme_info' ) );
115
		add_action( 'jetpack_sync_current_theme_support', $handler, 10 ); // custom hook, see meta-hooks below
116
117
		// post-meta, and in the future - other meta?
118
		foreach ( $this->meta_types as $meta_type ) {
119
			add_action( "added_{$meta_type}_meta", $handler, 10, 4 );
120
			add_action( "updated_{$meta_type}_meta", $handler, 10, 4 );
121
			add_action( "deleted_{$meta_type}_meta", $handler, 10, 4 );
122
		}
123
124
		// terms
125
		add_action( 'created_term', array( $this, 'save_term_handler' ), 10, 3 );
126
		add_action( 'edited_term', array( $this, 'save_term_handler' ), 10, 3 );
127
		add_action( 'jetpack_sync_save_term', $handler, 10, 4 );
128
		add_action( 'delete_term', $handler, 10, 4 );
129
		add_action( 'set_object_terms', $handler, 10, 6 );
130
		add_action( 'deleted_term_relationships', $handler, 10, 2 );
131
132
		// users
133
		add_action( 'user_register', array( $this, 'save_user_handler' ) );
134
		add_action( 'profile_update', array( $this, 'save_user_handler' ), 10, 2 );
135
		add_action( 'jetpack_sync_save_user', $handler, 10, 2 );
136
		add_action( 'deleted_user', $handler, 10, 2 );
137
138
		// user roles
139
		add_action( 'add_user_role', array( $this, 'save_user_role_handler' ), 10, 2 );
140
		add_action( 'set_user_role', array( $this, 'save_user_role_handler' ), 10, 3 );
141
		add_action( 'remove_user_role', array( $this, 'save_user_role_handler' ), 10, 2 );
142
143
144
		// user capabilities
145
		add_action( 'added_user_meta', array( $this, 'save_user_cap_handler' ), 10, 4 );
146
		add_action( 'updated_user_meta', array( $this, 'save_user_cap_handler' ), 10, 4 );
147
		add_action( 'deleted_user_meta', array( $this, 'save_user_cap_handler' ), 10, 4 );
148
149
		// themes
150
		add_action( 'set_site_transient_update_plugins', $handler, 10, 1 );
151
		add_action( 'set_site_transient_update_themes', $handler, 10, 1 );
152
		add_action( 'set_site_transient_update_core', $handler, 10, 1 );
153
154
		add_filter( 'jetpack_sync_before_enqueue_set_site_transient_update_plugins', array( $this, 'filter_update_keys' ), 10, 2 );
155
156
		// multi site network options
157
		if ( $this->is_multisite ) {
158
			add_action( 'add_site_option', $handler, 10, 2 );
159
			add_action( 'update_site_option', $handler, 10, 3 );
160
			add_action( 'delete_site_option', $handler, 10, 1 );
161
		}
162
163
		// synthetic actions for full sync
164
		add_action( 'jetpack_full_sync_start', $handler );
165
		add_action( 'jetpack_full_sync_end', $handler );
166
		add_action( 'jetpack_full_sync_options', $handler );
167
		add_action( 'jetpack_full_sync_posts', $handler ); // also sends post meta
168
		add_action( 'jetpack_full_sync_comments', $handler ); // also send comments meta
169
		add_action( 'jetpack_full_sync_constants', $handler );
170
		add_action( 'jetpack_full_sync_callables', $handler );
171
		add_action( 'jetpack_full_sync_updates', $handler );
172
173
		add_action( 'jetpack_full_sync_users', $handler );
174
		add_action( 'jetpack_full_sync_terms', $handler, 10, 2 );
175
		if ( is_multisite() ) {
176
			add_action( 'jetpack_full_sync_network_options', $handler );
177
		}
178
179
		// Module Activation
180
		add_action( 'jetpack_activate_module', $handler );
181
		add_action( 'jetpack_deactivate_module', $handler );
182
183
		/**
184
		 * Sync all pending actions with server
185
		 */
186
		add_action( 'jetpack_sync_actions', array( $this, 'do_sync' ) );
187
	}
188
189
	// removes unnecessary keys from synced updates data
190
	function filter_update_keys( $args ) {
191
		$updates = $args[0];
192
193
		if ( isset( $updates->no_update ) ) {
194
			unset( $updates->no_update );
195
		}
196
197
		return $args;
198
	}
199
200
	function set_options_whitelist( $options ) {
201
		$this->options_whitelist = $options;
202
	}
203
204
	function get_options_whitelist() {
205
		return $this->options_whitelist;
206
	}
207
208
	function set_constants_whitelist( $constants ) {
209
		$this->constants_whitelist = $constants;
210
	}
211
212
	function get_constants_whitelist() {
213
		return $this->constants_whitelist;
214
	}
215
216
	function set_callable_whitelist( $callables ) {
217
		$this->callable_whitelist = $callables;
218
	}
219
220
	function get_callable_whitelist() {
221
		return $this->callable_whitelist;
222
	}
223
224
	function set_network_options_whitelist( $options ) {
225
		$this->network_options_whitelist = $options;
226
	}
227
228
	function get_network_options_whitelist() {
229
		return $this->network_options_whitelist;
230
	}
231
232
	function set_dequeue_max_bytes( $size ) {
233
		$this->dequeue_max_bytes = $size;
234
	}
235
236
	// in bytes
237
	function set_upload_max_bytes( $max_bytes ) {
238
		$this->upload_max_bytes = $max_bytes;
239
	}
240
241
	// in rows
242
	function set_upload_max_rows( $max_rows ) {
243
		$this->upload_max_rows = $max_rows;
244
	}
245
246
	// in seconds
247
	function set_sync_wait_time( $seconds ) {
248
		update_option( self::SYNC_THROTTLE_OPTION_NAME, $seconds, true );
249
	}
250
251
	function get_sync_wait_time() {
252
		return get_option( self::SYNC_THROTTLE_OPTION_NAME );
253
	}
254
255
	private function get_last_sync_time() {
256
		return (double) get_option( self::LAST_SYNC_TIME_OPTION_NAME );
257
	}
258
259
	private function set_last_sync_time() {
260
		return update_option( self::LAST_SYNC_TIME_OPTION_NAME, microtime( true ), true );
261
	}
262
263
	function set_taxonomy_whitelist( $taxonomies ) {
264
		$this->taxonomy_whitelist = $taxonomies;
265
	}
266
267
	function is_whitelisted_option( $option ) {
268
		return in_array( $option, $this->options_whitelist );
269
	}
270
271
	function is_whitelisted_network_option( $option ) {
272
		return $this->is_multisite && in_array( $option, $this->network_options_whitelist );
273
	}
274
275
	function set_codec( iJetpack_Sync_Codec $codec ) {
276
		$this->codec = $codec;
277
	}
278
279
	function set_full_sync_client( $full_sync_client ) {
280
		if ( $this->full_sync_client ) {
281
			remove_action( 'jetpack_sync_full', array( $this->full_sync_client, 'start' ) );
282
		}
283
284
		$this->full_sync_client = $full_sync_client;
285
286
		/**
287
		 * Sync all objects in the database with the server
288
		 */
289
		add_action( 'jetpack_sync_full', array( $this->full_sync_client, 'start' ) );
290
	}
291
292
	function get_full_sync_client() {
293
		return $this->full_sync_client;
294
	}
295
296
	function action_handler() {
297
		
298
		$current_filter = current_filter();
299
		$args           = func_get_args();
300
301
		if ( $current_filter === 'wp_insert_post' && $args[1]->post_type === 'revision' ) {
302
			return;
303
		}
304
305
		if ( in_array( $current_filter, array( 'deleted_option', 'added_option', 'updated_option' ) )
306
		     &&
307
		     ! $this->is_whitelisted_option( $args[0] )
308
		) {
309
			return;
310
		}
311
312
		if ( in_array( $current_filter, array( 'delete_site_option', 'add_site_option', 'update_site_option' ) )
313
		     &&
314
		     ! $this->is_whitelisted_network_option( $args[0] )
315
		) {
316
			return;
317
		}
318
319
		// don't sync private meta
320
		if ( preg_match( '/^(added|updated|deleted)_.*_meta$/', $current_filter )
321
		     && $args[2][0] === '_'
322
		     && ! in_array( $args[2], Jetpack_Sync_Defaults::$default_whitelist_meta_keys )
0 ignored issues
show
Bug introduced by
The property default_whitelist_meta_keys cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
323
		) {
324
			return;
325
		}
326
327
		/**
328
		 * Modify the data within an action before it is enqueued locally.
329
		 *
330
		 * @since 4.2.0
331
		 *
332
		 * @param array The action parameters
333
		 */
334
		$args = apply_filters( "jetpack_sync_before_enqueue_$current_filter", $args );
335
336
		// if we add any items to the queue, we should 
337
		// try to ensure that our script can't be killed before
338
		// they are sent
339
		if ( function_exists( 'ignore_user_abort' ) ) {
340
			ignore_user_abort( true );
341
		}
342
343
		$this->sync_queue->add( array(
344
			$current_filter,
345
			$args,
346
			get_current_user_id(),
347
			microtime( true )
348
		) );
349
	}
350
351
	function send_theme_info() {
352
		global $_wp_theme_features;
353
354
		$theme_support = array();
355
356
		foreach ( Jetpack_Sync_Defaults::$default_theme_support_whitelist as $theme_feature ) {
0 ignored issues
show
Bug introduced by
The property default_theme_support_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
357
			$has_support = current_theme_supports( $theme_feature );
358
			if ( $has_support ) {
359
				$theme_support[ $theme_feature ] = $_wp_theme_features[ $theme_feature ];
360
			}
361
362
		}
363
364
		/**
365
		 * Fires when the client needs to sync theme support info
366
		 * Only sends theme support attributes whitelisted in Jetpack_Sync_Defaults::$default_theme_support_whitelist
367
		 *
368
		 * @since 4.2.0
369
		 *
370
		 * @param object the theme support hash
371
		 */
372
		do_action( 'jetpack_sync_current_theme_support', $theme_support );
373
		return 1; // The number of actions enqueued
374
	}
375
376
	function send_wp_version( $update, $meta_data ) {
377
		if ( 'update' === $meta_data['action'] && 'core' === $meta_data['type'] ) {
378
			$this->force_sync_callables();
379
		}
380
	}
381
382
	function save_term_handler( $term_id, $tt_id, $taxonomy ) {
383
		if ( class_exists( 'WP_Term' ) ) {
384
			$term_object = WP_Term::get_instance( $term_id, $taxonomy );
385
		} else {
386
			$term_object = get_term_by( 'id', $term_id, $taxonomy );
387
		}
388
389
		/**
390
		 * Fires when the client needs to sync a new term
391
		 *
392
		 * @since 4.2.0
393
		 *
394
		 * @param object the Term object
395
		 */
396
		do_action( 'jetpack_sync_save_term', $term_object );
397
	}
398
399
	function send_attachment_info( $attachment_id ) {
400
		$attachment = get_post( $attachment_id );
401
402
		/**
403
		 * Fires when the client needs to sync an attachment for a post
404
		 *
405
		 * @since 4.2.0
406
		 *
407
		 * @param int The attachment ID
408
		 * @param object The attachment
409
		 */
410
		do_action( 'jetpack_sync_save_add_attachment', $attachment_id, $attachment );
411
	}
412
413
	function save_user_handler( $user_id, $old_user_data = null ) {
414
		$user = $this->sanitize_user( get_user_by( 'id', $user_id ) );
415
416
		// Older versions of WP don't pass the old_user_data in ->data
417
		if ( isset( $old_user_data->data ) ) {
418
			$old_user = $old_user_data->data;
419
		} else {
420
			$old_user = $old_user_data;
421
		}
422
423
		if ( $old_user !== null ) {
424
			unset( $old_user->user_pass );
425
			if ( serialize( $old_user ) === serialize( $user->data ) ) {
426
				return;
427
			}
428
		}
429
430
		/**
431
		 * Fires when the client needs to sync an updated user
432
		 *
433
		 * @since 4.2.0
434
		 *
435
		 * @param object The WP_User object
436
		 */
437
		do_action( 'jetpack_sync_save_user', $user );
438
	}
439
440
	function save_user_role_handler( $user_id, $role, $old_roles = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $role is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $old_roles is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
441
		$user = $this->sanitize_user( get_user_by( 'id', $user_id ) );
442
443
		/**
444
		 * Fires when the client needs to sync an updated user
445
		 *
446
		 * @since 4.2.0
447
		 *
448
		 * @param object The WP_User object
449
		 */
450
		do_action( 'jetpack_sync_save_user', $user );
451
	}
452
453
	function save_user_cap_handler( $meta_id, $user_id, $meta_key, $capabilities ) {
0 ignored issues
show
Unused Code introduced by
The parameter $capabilities is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
454
		$user = $this->sanitize_user( get_user_by( 'id', $user_id ) );
455
		if ( $meta_key === $user->cap_key ) {
456
			/**
457
			 * Fires when the client needs to sync an updated user
458
			 *
459
			 * @since 4.2.0
460
			 *
461
			 * @param object The WP_User object
462
			 */
463
			do_action( 'jetpack_sync_save_user', $user );
464
		}
465
	}
466
467
	public function sanitize_user( $user ) {
468
		unset( $user->data->user_pass );
469
470
		return $user;
471
	}
472
473
474
	function do_sync() {
475
		// don't sync if importing
476
		if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) {
477
			$this->schedule_sync( "+1 minute" );
478
479
			return false;
480
		}
481
482
		// don't sync if we are throttled
483
		$sync_wait = $this->get_sync_wait_time();
484
		$last_sync = $this->get_last_sync_time();
485
486
		if ( $last_sync && $sync_wait && $last_sync + $sync_wait > microtime( true ) ) {
487
			return false;
488
		}
489
490
		$this->set_last_sync_time();
491
		$this->maybe_sync_constants();
492
		$this->maybe_sync_callables();
493
494
		if ( $this->sync_queue->size() === 0 ) {
495
			return false;
496
		}
497
498
		// now that we're sure we are about to sync, try to
499
		// ignore user abort so we can avoid getting into a
500
		// bad state
501
		if ( function_exists( 'ignore_user_abort' ) ) {
502
			ignore_user_abort( true );
503
		}
504
505
		$buffer = $this->sync_queue->checkout_with_memory_limit( $this->dequeue_max_bytes, $this->upload_max_rows );
506
507
		if ( ! $buffer ) {
508
			// buffer has no items
509
			return false;
510
		}
511
512
		if ( is_wp_error( $buffer ) ) {
513
			// another buffer is currently sending
514
			return false;
515
		}
516
517
		$upload_size   = 0;
518
		$items_to_send = array();
519
		$actions_to_send = array();
520
		// we estimate the total encoded size as we go by encoding each item individually
521
		// this is expensive, but the only way to really know :/
522
		foreach ( $buffer->get_items() as $key => $item ) {
523
			/**
524
			 * Modify the data within an action before it is serialized and sent to the server
525
			 * For example, during full sync this expands Post ID's into full Post objects,
526
			 * so that we don't have to serialize the whole object into the queue.
527
			 *
528
			 * @since 4.2.0
529
			 *
530
			 * @param array The action parameters
531
			 */
532
			$item[1] = apply_filters( "jetpack_sync_before_send_" . $item[0], $item[1] );
533
534
			$encoded_item = $this->codec->encode( $item );
535
536
			$upload_size += strlen( $encoded_item );
537
538
			if ( $upload_size > $this->upload_max_bytes && count( $items_to_send ) > 0 ) {
539
				break;
540
			}
541
542
			$items_to_send[ $key ] = $encoded_item;
543
			$actions_to_send[ $key ] = $item[0];
544
		}
545
546
		/**
547
		 * Fires when data is ready to send to the server.
548
		 * Return false or WP_Error to abort the sync (e.g. if there's an error)
549
		 * The items will be automatically re-sent later
550
		 *
551
		 * @since 4.2.0
552
		 *
553
		 * @param array $data The action buffer
554
		 */
555
		$result = apply_filters( 'jetpack_sync_client_send_data', $items_to_send );
556
557
		if ( ! $result || is_wp_error( $result ) ) {
558
			// error_log("There was an error sending data:");
559
			// error_log(print_r($result, 1));
560
			$result = $this->sync_queue->checkin( $buffer );
561
562
			if ( is_wp_error( $result ) ) {
563
				error_log( "Error checking in buffer: " . $result->get_error_message() );
564
				$this->sync_queue->force_checkin();
565
			}
566
			// try again in 1 minute
567
			$this->schedule_sync( "+1 minute" );
568
		} else {
569
			$processed_actions = array();
570
			foreach( $result as $result_id ) {
571
				if ( isset( $actions_to_send[ $result_id ] ) ) {
572
					$processed_actions[] =  $actions_to_send[ $result_id ];
573
				}
574
			}
575
576
			/**
577
			 * Allows us to keep track of all the actions that have been sent.
578
			 * Allows us to calculate the progress of specific actions.
579
			 *
580
			 * @since 4.2.0
581
			 *
582
			 * @param array $processed_actions The actions that we send successfully.
583
			 */
584
			do_action( 'jetpack_sync_processed_actions', $processed_actions );
585
586
587
			$this->sync_queue->close( $buffer, $result );
588
			// check if there are any more events in the buffer
589
			// if so, schedule a cron job to happen soon
590
			if ( $this->sync_queue->has_any_items() ) {
591
				$this->schedule_sync( "+1 minute" );
592
			}
593
		}
594
	}
595
596
	function expand_wp_insert_post( $args ) {
597
		return array( $args[0], $this->filter_post_content_and_add_links( $args[1] ), $args[2] );
598
	}
599
600
	// Expands wp_insert_post to include filtered content
601
	function filter_post_content_and_add_links( $post ) {
602
		if ( 0 < strlen( $post->post_password ) ) {
603
			$post->post_password = 'auto-' . wp_generate_password( 10, false );
604
		}
605
		/** This filter is already documented in core. wp-includes/post-template.php */
606
		$post->post_content_filtered   = apply_filters( 'the_content', $post->post_content );
607
		$post->post_excerpt_filtered   = apply_filters( 'the_content', $post->post_excerpt );
608
		$post->permalink               = get_permalink( $post->ID );
609
		$post->shortlink               = wp_get_shortlink( $post->ID );
610
		
611
		// legacy fields until we fully sync users
612
		$extra = array();
613
		$extra['author_email']            = get_the_author_meta( 'email', $post->post_author );
614
		$extra['author_display_name']     = get_the_author_meta( 'display_name', $post->post_author );
615
		$extra['dont_email_post_to_subs'] = get_post_meta( $post->ID, '_jetpack_dont_email_post_to_subs', true );
616
		$post->extra = $extra;
617
618
		return $post;
619
	}
620
621
	function expand_wp_comment_status_change( $args ) {
622
		return array( $args[0], $this->filter_comment_and_add_hc_meta( $args[1] ) );
623
	}
624
625
	function expand_wp_insert_comment( $args ) {
626
		return array( $args[0], $this->filter_comment_and_add_hc_meta( $args[1] ) );
627
	}
628
629
	function filter_comment_and_add_hc_meta( $comment ) {
630
		// add meta-property with Highlander Comment meta, which we 
631
		// we need to process synchronously on .com
632
		$hc_post_as = get_comment_meta( $comment->comment_ID, 'hc_post_as', true );
633
		if ( 'wordpress' === $hc_post_as ) {
634
			$meta = array();
635
			$meta['hc_post_as']         = $hc_post_as;
636
			$meta['hc_wpcom_id_sig']    = get_comment_meta( $comment->comment_ID, 'hc_wpcom_id_sig', true );
637
			$meta['hc_foreign_user_id'] = get_comment_meta( $comment->comment_ID, 'hc_foreign_user_id', true );
638
			$comment->meta = $meta;	
639
		}
640
641
		return $comment;
642
	}
643
644
	private function schedule_sync( $when ) {
645
		wp_schedule_single_event( strtotime( $when ), 'jetpack_sync_actions' );
646
	}
647
648
	function force_sync_constants() {
649
		delete_option( self::CONSTANTS_CHECKSUM_OPTION_NAME );
650
		delete_transient( self::CONSTANTS_AWAIT_TRANSIENT_NAME );
651
		$this->maybe_sync_constants();
652
653
	}
654
655
	function full_sync_constants() {
656
		/**
657
		 * Tells the client to sync all constants to the server
658
		 *
659
		 * @since 4.1
660
		 *
661
		 * @param boolean Whether to expand constants (should always be true)
662
		 */
663
		do_action( 'jetpack_full_sync_constants', true );
664
		return 1; // The number of actions enqueued
665
	}
666
667
	function force_sync_options() {
668
		/**
669
		 * Tells the client to sync all options to the server
670
		 *
671
		 * @since 4.2.0
672
		 *
673
		 * @param boolean Whether to expand options (should always be true)
674
		 */
675
		do_action( 'jetpack_full_sync_options', true );
676
		return 1; // The number of actions enqueued
677
	}
678
679
	function force_sync_network_options() {
680
		/**
681
		 * Tells the client to sync all network options to the server
682
		 *
683
		 * @since 4.2.0
684
		 *
685
		 * @param boolean Whether to expand options (should always be true)
686
		 */
687
		do_action( 'jetpack_full_sync_network_options', true );
688
		return 1; // The number of actions enqueued
689
	}
690
691
	public function full_sync_callables() {
692
		/**
693
		 * Tells the client to sync all callables to the server
694
		 *
695
		 * @since 4.1
696
		 *
697
		 * @param boolean Whether to expand callables (should always be true)
698
		 */
699
		do_action( 'jetpack_full_sync_callables', true );
700
		return 1; // The number of actions enqueued
701
	}
702
703
	public function full_sync_updates() {
704
		/**
705
		 * Tells the client to sync all updates to the server
706
		 *
707
		 * @since 4.1
708
		 *
709
		 * @param boolean Whether to expand callables (should always be true)
710
		 */
711
		do_action( 'jetpack_full_sync_updates', true );
712
		return 1; // The number of actions enqueued
713
	}
714
715 View Code Duplication
	private function maybe_sync_constants() {
716
		if ( get_transient( self::CONSTANTS_AWAIT_TRANSIENT_NAME ) ) {
717
			return;
718
		}
719
720
		$constants = $this->get_all_constants();
721
		if ( empty( $constants ) ) {
722
			return;
723
		}
724
725
		set_transient( self::CONSTANTS_AWAIT_TRANSIENT_NAME, microtime( true ), Jetpack_Sync_Defaults::$default_sync_constants_wait_time );
0 ignored issues
show
Bug introduced by
The property default_sync_constants_wait_time cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
726
		$constants_checksums = get_option( self::CONSTANTS_CHECKSUM_OPTION_NAME, array() );
727
		// only send the constants that have changed
728
		foreach ( $constants as $name => $value ) {
729
			$checksum = $this->get_check_sum( $value );
730
731
			// explicitly not using Identical comparison as get_option returns a string
732
			if ( ! $this->still_valid_checksum( $constants_checksums, $name, $checksum ) ) {
733
				/**
734
				 * Tells the client to sync a constant to the server
735
				 *
736
				 * @since 4.2.0
737
				 *
738
				 * @param string The name of the constant
739
				 * @param mixed The value of the constant
740
				 */
741
				do_action( 'jetpack_sync_constant', $name, $value );
742
				$constants_checksums[ $name ] = $checksum;
743
			}
744
		}
745
746
		update_option( self::CONSTANTS_CHECKSUM_OPTION_NAME, $constants_checksums );
747
	}
748
	// public so that we don't have to store an option for each constant
749
	function get_all_constants() {
750
		return array_combine(
751
			$this->constants_whitelist,
752
			array_map( array( $this, 'get_constant' ), $this->constants_whitelist )
753
		);
754
	}
755
756
	private function get_constant( $constant ) {
757
		return ( defined( $constant ) ) ?
758
			constant( $constant ) 
759
			: null;
760
	}
761
762
	public function get_all_updates() {
763
		return array(
764
			'core' => get_site_transient( 'update_core' ),
765
			'plugins' => get_site_transient( 'update_plugins' ),
766
			'themes' => get_site_transient( 'update_themes' ),
767
		);
768
	}
769
770
	public function force_sync_callables() {
771
		delete_option( self::CALLABLES_CHECKSUM_OPTION_NAME );
772
		delete_transient( self::CALLABLES_AWAIT_TRANSIENT_NAME );
773
		$this->maybe_sync_callables();
774
	}
775
776 View Code Duplication
	private function maybe_sync_callables() {
777
		if ( get_transient( self::CALLABLES_AWAIT_TRANSIENT_NAME ) ) {
778
			return;
779
		}
780
781
		$callables = $this->get_all_callables();
782
		if ( empty( $callables ) ) {
783
			return;
784
		}
785
786
		set_transient( self::CALLABLES_AWAIT_TRANSIENT_NAME, microtime( true ), Jetpack_Sync_Defaults::$default_sync_callables_wait_time );
0 ignored issues
show
Bug introduced by
The property default_sync_callables_wait_time cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
787
788
		$callable_checksums = get_option( self::CALLABLES_CHECKSUM_OPTION_NAME , array() );
789
790
		// only send the callables that have changed
791
		foreach ( $callables as $name => $value ) {
792
			$checksum = $this->get_check_sum( $value );
793
			// explicitly not using Identical comparison as get_option returns a string
794
			if ( ! $this->still_valid_checksum( $callable_checksums, $name, $checksum ) ) {
795
				/**
796
				 * Tells the client to sync a callable (aka function) to the server
797
				 *
798
				 * @since 4.2.0
799
				 *
800
				 * @param string The name of the callable
801
				 * @param mixed The value of the callable
802
				 */
803
				do_action( 'jetpack_sync_callable', $name, $value );
804
				$callable_checksums[ $name ] = $checksum;
805
			}
806
		}
807
		update_option( self::CALLABLES_CHECKSUM_OPTION_NAME , $callable_checksums );
808
	}
809
810
	private function still_valid_checksum( $sums_to_check, $name, $new_sum ) {
811
		if ( isset( $sums_to_check[ $name ] ) && $sums_to_check[ $name ] === $new_sum ) {
812
			return true;
813
		}
814
		return false;
815
	}
816
817
	public function get_all_callables() {
818
		return array_combine(
819
			array_keys( $this->callable_whitelist ),
820
			array_map( array( $this, 'get_callable' ), array_values( $this->callable_whitelist ) )
821
		);
822
	}
823
824
	private function get_callable( $callable ) {
825
		return call_user_func( $callable );
826
	}
827
828
	// Is public so that we don't have to store so much data all the options twice.
829
	function get_all_options() {
830
		$options = array();
831
		foreach ( $this->options_whitelist as $option ) {
832
			$options[ $option ] = get_option( $option );
833
		}
834
835
		return $options;
836
	}
837
838
	function get_all_network_options() {
839
		$options = array();
840
		foreach ( $this->network_options_whitelist as $option ) {
841
			$options[ $option ] = get_site_option( $option );
842
		}
843
844
		return $options;
845
	}
846
847
	private function get_check_sum( $values ) {
848
		return crc32( json_encode( $values ) );
849
	}
850
851
	function jetpack_sync_core_icon() {
852
		if ( function_exists( 'get_site_icon_url' ) ) {
853
			$url = get_site_icon_url();
854
		} else {
855
			return;
856
		}
857
858
		require_once( JETPACK__PLUGIN_DIR . 'modules/site-icon/site-icon-functions.php' );
859
		// If there's a core icon, maybe update the option.  If not, fall back to Jetpack's.
860
		if ( ! empty( $url ) && $url !== jetpack_site_icon_url() ) {
861
			// This is the option that is synced with dotcom
862
			Jetpack_Options::update_option( 'site_icon_url', $url );
863
		} else if ( empty( $url ) ) {
864
			Jetpack_Options::delete_option( 'site_icon_url' );
865
		}
866
	}
867
868
	function get_sync_queue() {
869
		return $this->sync_queue;
870
	}
871
872
	function reset_sync_queue() {
873
		$this->sync_queue->reset();
874
	}
875
876
	function get_settings() {
877
		$settings = array();
878
		foreach( array_keys( self::$valid_settings ) as $setting ) {
879
			$default_name = "default_$setting"; // e.g. default_dequeue_max_bytes
880
			$settings[ $setting ] = (int) get_option( self::SETTINGS_OPTION_PREFIX.$setting, Jetpack_Sync_Defaults::$$default_name );
881
		}
882
		return $settings;
883
	}
884
885
	function update_settings( $new_settings ) {
886
		$validated_settings = array_intersect_key( $new_settings, self::$valid_settings );
887
		foreach( $validated_settings as $setting => $value ) {
888
			update_option( self::SETTINGS_OPTION_PREFIX.$setting, $value, true );
889
		}
890
	}
891
892
	function update_options_whitelist() {
893
		/** This filter is already documented in json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php */
894
		$this->options_whitelist = apply_filters( 'jetpack_options_whitelist', Jetpack_Sync_Defaults::$default_options_whitelist );
0 ignored issues
show
Bug introduced by
The property default_options_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
895
	}
896
897
	function set_defaults() {
898
		$this->sync_queue = new Jetpack_Sync_Queue( 'sync' );
899
900
		// saved settings
901
		$settings = $this->get_settings();
902
		$this->set_dequeue_max_bytes( $settings['dequeue_max_bytes'] );
903
		$this->set_upload_max_bytes( $settings['upload_max_bytes'] );
904
		$this->set_upload_max_rows( $settings['upload_max_rows'] );
905
		$this->set_sync_wait_time( $settings['sync_wait_time'] );
906
907
		$this->set_full_sync_client( Jetpack_Sync_Full::getInstance() );
908
		$this->codec                     = new Jetpack_Sync_Deflate_Codec();
909
		$this->constants_whitelist       = Jetpack_Sync_Defaults::$default_constants_whitelist;
0 ignored issues
show
Bug introduced by
The property default_constants_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
910
		$this->update_options_whitelist();
911
		$this->network_options_whitelist = Jetpack_Sync_Defaults::$default_network_options_whitelist;
0 ignored issues
show
Bug introduced by
The property default_network_options_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
912
		$this->taxonomy_whitelist        = Jetpack_Sync_Defaults::$default_taxonomy_whitelist;
0 ignored issues
show
Bug introduced by
The property default_taxonomy_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
913
		$this->is_multisite              = is_multisite();
914
915
		// theme mod varies from theme to theme.
916
		$this->options_whitelist[] = 'theme_mods_' . get_option( 'stylesheet' );
917
		if ( $this->is_multisite ) {
918
			$this->callable_whitelist = array_merge( Jetpack_Sync_Defaults::$default_callable_whitelist, Jetpack_Sync_Defaults::$default_multisite_callable_whitelist );
0 ignored issues
show
Bug introduced by
The property default_callable_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
Bug introduced by
The property default_multisite_callable_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
919
		} else {
920
			$this->callable_whitelist = Jetpack_Sync_Defaults::$default_callable_whitelist;
0 ignored issues
show
Bug introduced by
The property default_callable_whitelist cannot be accessed from this context as it is declared private in class Jetpack_Sync_Defaults.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
921
		}
922
	}
923
924
	function reset_data() {
925
		$this->reset_sync_queue();
926
927
928
		delete_option( self::CONSTANTS_CHECKSUM_OPTION_NAME );
929
		delete_option( self::CALLABLES_CHECKSUM_OPTION_NAME );
930
931
		delete_transient( self::CALLABLES_AWAIT_TRANSIENT_NAME );
932
		delete_transient( self::CONSTANTS_AWAIT_TRANSIENT_NAME );
933
934
		delete_option( self::SYNC_THROTTLE_OPTION_NAME );
935
		delete_option( self::LAST_SYNC_TIME_OPTION_NAME );
936
937
		$valid_settings  = self::$valid_settings;
938
		$settings_prefix =  self::SETTINGS_OPTION_PREFIX;
939
		foreach ( $valid_settings as $option => $value ) {
940
			delete_option( $settings_prefix . $option );
941
		}
942
	}
943
944
	function uninstall() {
945
		// Lets delete all the other fun stuff like transient and option and the sync queue
946
		$this->reset_data();
947
948
		// delete the full sync status
949
		delete_option( 'jetpack_full_sync_status' );
950
951
		// clear the sync cron.
952
		wp_clear_scheduled_hook( 'jetpack_sync_actions' );
953
	}
954
}
955