Completed
Push — branch-4.2 ( c453bb...01ac6e )
by
unknown
281:24 queued 272:20
created

Jetpack_Sync_Module_Full_Sync::start()   C

Complexity

Conditions 8
Paths 16

Size

Total Lines 47
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 9
Bugs 5 Features 1
Metric Value
cc 8
eloc 18
c 9
b 5
f 1
nc 16
nop 1
dl 0
loc 47
rs 5.7377
1
<?php
2
3
/**
4
 * This class does a full resync of the database by
5
 * enqueuing an outbound action for every single object
6
 * that we care about.
7
 *
8
 * This class, and its related class Jetpack_Sync_Module, contain a few non-obvious optimisations that should be explained:
9
 * - we fire an action called jetpack_full_sync_start so that WPCOM can erase the contents of the cached database
10
 * - for each object type, we page through the object IDs and enqueue them by firing some monitored actions
11
 * - we load the full objects for those IDs in chunks of Jetpack_Sync_Module::ARRAY_CHUNK_SIZE (to reduce the number of MySQL calls)
12
 * - we fire a trigger for the entire array which the Jetpack_Sync_Listener then serializes and queues.
13
 */
14
15
require_once 'class.jetpack-sync-wp-replicastore.php';
16
17
class Jetpack_Sync_Module_Full_Sync extends Jetpack_Sync_Module {
18
	const STATUS_OPTION_PREFIX = 'jetpack_sync_full_';
19
	const FULL_SYNC_TIMEOUT = 3600;
20
21
	public function name() {
22
		return 'full-sync';
23
	}
24
25
	function init_full_sync_listeners( $callable ) {
26
		// synthetic actions for full sync
27
		add_action( 'jetpack_full_sync_start', $callable );
28
		add_action( 'jetpack_full_sync_end', $callable );
29
		add_action( 'jetpack_full_sync_cancelled', $callable );
30
	}
31
32
	function init_before_send() {
33
		// this is triggered after actions have been processed on the server
34
		add_action( 'jetpack_sync_processed_actions', array( $this, 'update_sent_progress_action' ) );
35
	}
36
37
	function start( $modules = null ) {
38
		$was_already_running = $this->is_started() && ! $this->is_finished();
39
40
		// remove all evidence of previous full sync items and status
41
		$this->reset_data();
42
43
		if ( $was_already_running ) {
44
			do_action( 'jetpack_full_sync_cancelled' );
45
		}
46
47
		/**
48
		 * Fires when a full sync begins. This action is serialized
49
		 * and sent to the server so that it knows a full sync is coming.
50
		 *
51
		 * @since 4.2.0
52
		 */
53
		do_action( 'jetpack_full_sync_start' );
54
		$this->update_status_option( "started", time() );
55
56
		foreach ( Jetpack_Sync_Modules::get_modules() as $module ) {
57
			$module_name = $module->name();
58
			if ( is_array( $modules ) && ! in_array( $module_name, $modules ) ) {
59
				continue;
60
			}
61
62
			$items_enqueued = $module->enqueue_full_sync_actions();
63
			if ( ! is_null( $items_enqueued ) && $items_enqueued > 0 ) {
64
				// TODO: only update this once every N items, then at end - why cause all that DB churn?
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
65
				$this->update_status_option( "{$module->name()}_queued", $items_enqueued );
66
			}
67
		}
68
69
		$this->update_status_option( "queue_finished", time() );
70
71
		$store = new Jetpack_Sync_WP_Replicastore();
72
73
		/**
74
		 * Fires when a full sync ends. This action is serialized
75
		 * and sent to the server with checksums so that we can confirm the
76
		 * sync was successful.
77
		 *
78
		 * @since 4.2.0
79
		 */
80
		do_action( 'jetpack_full_sync_end', $store->checksum_all() );
81
82
		return true;
83
	}
84
85
	function update_sent_progress_action( $actions ) {
86
87
		// quick way to map to first items with an array of arrays
88
		$actions_with_counts = array_count_values( array_map( 'reset', $actions ) );
89
90
		if ( ! $this->is_started() || $this->is_finished() ) {
91
			return;
92
		}
93
94
		if ( isset( $actions_with_counts['jetpack_full_sync_start'] ) ) {
95
			$this->update_status_option( "sent_started", time() );
96
		}
97
98
		foreach ( Jetpack_Sync_Modules::get_modules() as $module ) {
99
			$module_actions = $module->get_full_sync_actions();
100
			$items_sent     = 0;
101
			foreach ( $module_actions as $module_action ) {
102
				if ( isset( $actions_with_counts[ $module_action ] ) ) {
103
					$items_sent += $actions_with_counts[ $module_action ];
104
				}
105
			}
106
107
			if ( $items_sent > 0 ) {
108
				$this->update_status_option( "{$module->name()}_sent", $items_sent );
109
			}	
110
		}
111
112
		if ( isset( $actions_with_counts['jetpack_full_sync_end'] ) ) {
113
			$this->update_status_option( "finished", time() );
114
		}
115
	}
116
117
	public function is_started() {
118
		return !! $this->get_status_option( "started" );
119
	}
120
121
	public function is_finished() {
122
		return !! $this->get_status_option( "finished" );
123
	}
124
125
	public function get_status() {
126
		$status = array(
127
			'started'        => $this->get_status_option( 'started' ),
128
			'queue_finished' => $this->get_status_option( 'queue_finished' ),
129
			'sent_started'   => $this->get_status_option( 'sent_started' ),
130
			'finished'       => $this->get_status_option( 'finished' ),
131
			'sent'           => array(),
132
			'queue'          => array(),
133
		);
134
135
		foreach ( Jetpack_Sync_Modules::get_modules() as $module ) {
136
			$queued = $this->get_status_option( "{$module->name()}_queued" );
137
			$sent   = $this->get_status_option( "{$module->name()}_sent" );
138
139
			if ( $queued ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $queued of type null|integer is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
140
				$status[ 'queue' ][ $module->name() ] = $queued;
141
			}
142
			
143
			if ( $sent ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $sent of type null|integer is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
144
				$status[ 'sent' ][ $module->name() ] = $sent;
145
			}
146
		}
147
148
		return $status;
149
	}
150
151
	public function clear_status() {
152
		$prefix = self::STATUS_OPTION_PREFIX;
153
		delete_option( "{$prefix}_started" );
154
		delete_option( "{$prefix}_queue_finished" );
155
		delete_option( "{$prefix}_sent_started" );
156
		delete_option( "{$prefix}_finished" );
157
158
		foreach ( Jetpack_Sync_Modules::get_modules() as $module ) {
159
			delete_option( "{$prefix}_{$module->name()}_queued" );
160
			delete_option( "{$prefix}_{$module->name()}_sent" );
161
		}
162
	}
163
164
	public function reset_data() {
165
		$this->clear_status();
166
		require_once dirname( __FILE__ ) . '/class.jetpack-sync-listener.php';
167
		$listener = Jetpack_Sync_Listener::get_instance();
168
		$listener->get_full_sync_queue()->reset();
169
	}
170
171
	private function get_status_option( $option ) {
172
		$prefix = self::STATUS_OPTION_PREFIX;
173
174
		$value = get_option( "{$prefix}_{$option}", null );
175
		
176
		if ( ! $value ) {
177
			return null;
178
		}
179
180
		return intval( $value );
181
	}
182
183
	private function update_status_option( $name, $value ) {
184
		$prefix = self::STATUS_OPTION_PREFIX;
185
		update_option( "{$prefix}_{$name}", $value, false );
186
	}
187
}
188