Completed
Push — add/carousel-lightbox-single-i... ( 204ac6...43c884 )
by
unknown
09:26
created

class.jetpack-options.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class Jetpack_Options {
4
5
	/**
6
	 * An array that maps a grouped option type to an option name.
7
	 * @var array
8
	 */
9
	private static $grouped_options = array(
10
		'compact' => 'jetpack_options',
11
		'private' => 'jetpack_private_options'
12
	);
13
14
	/**
15
	 * Returns an array of option names for a given type.
16
	 *
17
	 * @param string $type The type of option to return. Defaults to 'compact'.
18
	 *
19
	 * @return array
20
	 */
21
	public static function get_option_names( $type = 'compact' ) {
22
		switch ( $type ) {
23
		case 'non-compact' :
24
		case 'non_compact' :
25
			return array(
26
				'activated',
27
				'active_modules',
28
				'available_modules',
29
				'do_activate',
30
				'log',
31
				'publicize',
32
				'slideshow_background_color',
33
				'widget_twitter',
34
				'wpcc_options',
35
				'relatedposts',
36
				'file_data',
37
				'autoupdate_plugins',          // (array)  An array of plugin ids ( eg. jetpack/jetpack ) that should be autoupdated
38
				'autoupdate_plugins_translations', // (array)  An array of plugin ids ( eg. jetpack/jetpack ) that should be autoupdated translation files.
39
				'autoupdate_themes',           // (array)  An array of theme ids ( eg. twentyfourteen ) that should be autoupdated
40
				'autoupdate_themes_translations', // (array)  An array of theme ids ( eg. twentyfourteen ) that should autoupdated translation files.
41
				'autoupdate_core',             // (bool)   Whether or not to autoupdate core
42
				'json_api_full_management',    // (bool)   Allow full management (eg. Activate, Upgrade plugins) of the site via the JSON API.
43
				'sync_non_public_post_stati',  // (bool)   Allow synchronisation of posts and pages with non-public status.
44
				'site_icon_url',               // (string) url to the full site icon
45
				'site_icon_id',                // (int)    Attachment id of the site icon file
46
				'dismissed_manage_banner',     // (bool) Dismiss Jetpack manage banner allows the user to dismiss the banner permanently
47
				'restapi_stats_cache',         // (array) Stats Cache data.
48
				'unique_connection',           // (array)  A flag to determine a unique connection to wordpress.com two values "connected" and "disconnected" with values for how many times each has occured
49
				'protect_whitelist',           // (array) IP Address for the Protect module to ignore
50
				'sync_error_idc',              // (bool|array) false or array containing the site's home and siteurl at time of IDC error
51
				'safe_mode_confirmed',         // (bool) True if someone confirms that this site was correctly put into safe mode automatically after an identity crisis is discovered.
52
				'migrate_for_idc',             // (bool) True if someone confirms that this site should migrate stats and subscribers from its previous URL
53
				'connection_banner_ab',        // (int) 1 or 2, which will represent which connection banner to show.
54
			);
55
56
		case 'private' :
57
			return array(
58
				'register',
59
				'authorize',
60
				'activate_manage',
61
				'blog_token',                  // (string) The Client Secret/Blog Token of this site.
62
				'user_token',                  // (string) The User Token of this site. (deprecated)
63
				'user_tokens'                  // (array)  User Tokens for each user of this site who has connected to jetpack.wordpress.com.
64
			);
65
		}
66
67
		return array(
68
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
69
			'publicize_connections',        // (array)  An array of Publicize connections from WordPress.com
70
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
71
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
72
			'old_version',                  // (string) Used to determine which modules are the most recently added. previous_version:time
73
			'fallback_no_verify_ssl_certs', // (int)    Flag for determining if this host must skip SSL Certificate verification due to misconfigured SSL.
74
			'time_diff',                    // (int)    Offset between Jetpack server's clocks and this server's clocks. Jetpack Server Time = time() + (int) Jetpack_Options::get_option( 'time_diff' )
75
			'public',                       // (int|bool) If we think this site is public or not (1, 0), false if we haven't yet tried to figure it out.
76
			'videopress',                   // (array)  VideoPress options array.
77
			'is_network_site',              // (int|bool) If we think this site is a network or a single blog (1, 0), false if we haven't yet tried to figue it out.
78
			'social_links',                 // (array)  The specified links for each social networking site.
79
			'identity_crisis_whitelist',    // (array)  An array of options, each having an array of the values whitelisted for it.
80
			'gplus_authors',                // (array)  The Google+ authorship information for connected users.
81
			'last_heartbeat',               // (int)    The timestamp of the last heartbeat that fired.
82
			'jumpstart',                    // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
83
			'hide_jitm'                     // (array)  A list of just in time messages that we should not show because they have been dismissed by the user
84
		);
85
	}
86
87
	/**
88
	 * Is the option name valid?
89
	 *
90
	 * @param string      $name  The name of the option
91
	 * @param string|null $group The name of the group that the option is in. Default to null, which will search non_compact.
92
	 *
93
	 * @return bool Is the option name valid?
94
	 */
95
	public static function is_valid( $name, $group = null ) {
96
		if ( is_array( $name ) ) {
97
			$compact_names = array();
98
			foreach ( array_keys( self::$grouped_options ) as $_group ) {
99
				$compact_names = array_merge( $compact_names, self::get_option_names( $_group ) );
100
			}
101
102
			$result = array_diff( $name, self::get_option_names( 'non_compact' ), $compact_names );
103
104
			return empty( $result );
105
		}
106
107 View Code Duplication
		if ( is_null( $group ) || 'non_compact' === $group ) {
108
			if ( in_array( $name, self::get_option_names( $group ) ) ) {
109
				return true;
110
			}
111
		}
112
113
		foreach ( array_keys( self::$grouped_options ) as $_group ) {
114 View Code Duplication
			if ( is_null( $group ) || $group === $_group ) {
115
				if ( in_array( $name, self::get_option_names( $_group ) ) ) {
116
					return true;
117
				}
118
			}
119
		}
120
121
		return false;
122
	}
123
124
	/**
125
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
126
	 *
127
	 * @param string $name Option name
128
	 * @param mixed $default (optional)
129
	 *
130
	 * @return mixed
131
	 */
132
	public static function get_option( $name, $default = false ) {
133
		if ( self::is_valid( $name, 'non_compact' ) ) {
134
			return get_option( "jetpack_$name", $default );
135
		}
136
137
		foreach ( array_keys( self::$grouped_options ) as $group ) {
138
			if ( self::is_valid( $name, $group ) ) {
139
				return self::get_grouped_option( $group, $name, $default );
140
			}
141
		}
142
143
		trigger_error( sprintf( 'Invalid Jetpack option name: %s', $name ), E_USER_WARNING );
144
145
		return $default;
146
	}
147
148
	/**
149
	 * Returns the requested option, and ensures it's autoloaded in the future.
150
	 * This does _not_ adjust the prefix in any way (does not prefix jetpack_%)
151
	 *
152
	 * @param string $name Option name
153
	 * @param mixed $default (optional)
154
	 *
155
	 * @return mixed|void
156
	 */
157
	public static function get_option_and_ensure_autoload( $name, $default ) {
158
		$value = get_option( $name );
159
160
		if ( $value === false && $default !== false ) {
161
			update_option( $name, $default );
162
			$value = $default;
163
		}
164
165
		return $value;
166
	}
167
168
	private static function update_grouped_option( $group, $name, $value ) {
169
		$options = get_option( self::$grouped_options[ $group ] );
170
		if ( ! is_array( $options ) ) {
171
			$options = array();
172
		}
173
		$options[ $name ] = $value;
174
175
		return update_option( self::$grouped_options[ $group ], $options );
176
	}
177
178
	/**
179
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
180
	 *
181
	 * @param string $name Option name
182
	 * @param mixed $value Option value
183
	 * @param string $autoload If not compact option, allows specifying whether to autoload or not.
184
	 *
185
	 * @return bool Was the option successfully updated?
186
	 */
187
	public static function update_option( $name, $value, $autoload = null ) {
188
		/**
189
		 * Fires before Jetpack updates a specific option.
190
		 *
191
		 * @since 3.0.0
192
		 *
193
		 * @param str $name The name of the option being updated.
194
		 * @param mixed $value The new value of the option.
195
		 */
196
		do_action( 'pre_update_jetpack_option_' . $name, $name, $value );
197
		if ( self::is_valid( $name, 'non_compact' ) ) {
198
			return update_option( "jetpack_$name", $value, $autoload );
199
		}
200
201
		foreach ( array_keys( self::$grouped_options ) as $group ) {
202
			if ( self::is_valid( $name, $group ) ) {
203
				return self::update_grouped_option( $group, $name, $value );
204
			}
205
		}
206
207
		trigger_error( sprintf( 'Invalid Jetpack option name: %s', $name ), E_USER_WARNING );
208
209
		return false;
210
	}
211
212
	/**
213
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
214
	 *
215
	 * @param array $array array( option name => option value, ... )
216
	 */
217
	public static function update_options( $array ) {
218
		$names = array_keys( $array );
219
220
		foreach ( array_diff( $names, self::get_option_names(), self::get_option_names( 'non_compact' ), self::get_option_names( 'private' ) ) as $unknown_name ) {
221
			trigger_error( sprintf( 'Invalid Jetpack option name: %s', $unknown_name ), E_USER_WARNING );
222
			unset( $array[ $unknown_name ] );
223
		}
224
225
		foreach ( $names as $name ) {
226
			self::update_option( $name, $array[ $name ] );
227
		}
228
	}
229
230
	/**
231
	 * Deletes the given option.  May be passed multiple option names as an array.
232
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
233
	 *
234
	 * @param string|array $names
235
	 *
236
	 * @return bool Was the option successfully deleted?
237
	 */
238
	public static function delete_option( $names ) {
239
		$result = true;
240
		$names  = (array) $names;
241
242
		if ( ! self::is_valid( $names ) ) {
0 ignored issues
show
$names is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
243
			trigger_error( sprintf( 'Invalid Jetpack option names: %s', print_r( $names, 1 ) ), E_USER_WARNING );
244
			return false;
245
		}
246
247
		foreach ( array_intersect( $names, self::get_option_names( 'non_compact' ) ) as $name ) {
248
			if ( ! delete_option( "jetpack_$name" ) ) {
249
				$result = false;
250
			}
251
		}
252
253
		foreach ( array_keys( self::$grouped_options ) as $group ) {
254
			if ( ! self::delete_grouped_option( $group, $names ) ) {
255
				$result = false;
256
			}
257
		}
258
259
		return $result;
260
	}
261
262
	private static function get_grouped_option( $group, $name, $default ) {
263
		$options = get_option( self::$grouped_options[ $group ] );
264
		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
265
			return $options[ $name ];
266
		}
267
268
		return $default;
269
	}
270
271
	private static function delete_grouped_option( $group, $names ) {
272
		$options = get_option( self::$grouped_options[ $group ], array() );
273
274
		$to_delete = array_intersect( $names, self::get_option_names( $group ), array_keys( $options ) );
275
		if ( $to_delete ) {
276
			foreach ( $to_delete as $name ) {
277
				unset( $options[ $name ] );
278
			}
279
280
			return update_option( self::$grouped_options[ $group ], $options );
281
		}
282
283
		return true;
284
	}
285
286
}
287