Completed
Push — add/vr-shortcode ( 1ed1cb...271979 )
by
unknown
47:57 queued 41:56
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
	private static $grouped_options = array(
6
		'compact' => 'jetpack_options',
7
		'private' => 'jetpack_private_options'
8
	);
9
10
	public static function get_option_names( $type = 'compact' ) {
11
		switch ( $type ) {
12
		case 'non-compact' :
13
		case 'non_compact' :
14
			return array(
15
				'activated',
16
				'active_modules',
17
				'available_modules',
18
				'do_activate',
19
				'log',
20
				'publicize',
21
				'slideshow_background_color',
22
				'widget_twitter',
23
				'wpcc_options',
24
				'relatedposts',
25
				'file_data',
26
				'security_report',
27
				'autoupdate_plugins',          // (array)  An array of plugin ids ( eg. jetpack/jetpack ) that should be autoupdated
28
				'autoupdate_themes',           // (array)  An array of theme ids ( eg. twentyfourteen ) that should be autoupdated
29
				'autoupdate_core',             // (bool)   Whether or not to autoupdate core
30
				'json_api_full_management',    // (bool)   Allow full management (eg. Activate, Upgrade plugins) of the site via the JSON API.
31
				'sync_non_public_post_stati',  // (bool)   Allow synchronisation of posts and pages with non-public status.
32
				'site_icon_url',               // (string) url to the full site icon
33
				'site_icon_id',                // (int)    Attachment id of the site icon file
34
				'dismissed_manage_banner',     // (bool) Dismiss Jetpack manage banner allows the user to dismiss the banner permanently
35
				'updates',                     // (array) information about available updates to plugins, theme, WordPress core, and if site is under version control
36
			);
37
		case 'private' :
38
			return array(
39
				'register',
40
				'blog_token',                  // (string) The Client Secret/Blog Token of this site.
41
				'user_token',                  // (string) The User Token of this site. (deprecated)
42
				'user_tokens'                  // (array)  User Tokens for each user of this site who has connected to jetpack.wordpress.com.
43
			);
44
		}
45
46
		return array(
47
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
48
			'publicize_connections',        // (array)  An array of Publicize connections from WordPress.com
49
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
50
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
51
			'old_version',                  // (string) Used to determine which modules are the most recently added. previous_version:time
52
			'fallback_no_verify_ssl_certs', // (int)    Flag for determining if this host must skip SSL Certificate verification due to misconfigured SSL.
53
			'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' )
54
			'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.
55
			'videopress',                   // (array)  VideoPress options array.
56
			'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.
57
			'social_links',                 // (array)  The specified links for each social networking site.
58
			'identity_crisis_whitelist',    // (array)  An array of options, each having an array of the values whitelisted for it.
59
			'gplus_authors',                // (array)  The Google+ authorship information for connected users.
60
			'last_heartbeat',               // (int)    The timestamp of the last heartbeat that fired.
61
			'last_security_report',         // (int)    The timestamp of the last security report that was run.
62
			'sync_bulk_reindexing',         // (bool)   If a bulk reindex is currently underway.
63
			'jumpstart'                     // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
64
		);
65
	}
66
67
	public static function is_valid( $name, $group = null ) {
68
		if ( is_array( $name ) ) {
69
			$compact_names = array();
70
			foreach ( array_keys( self::$grouped_options ) as $_group ) {
71
				$compact_names = array_merge( $compact_names, self::get_option_names( $_group ) );
72
			}
73
74
			$result = array_diff( $name, self::get_option_names( 'non_compact' ), $compact_names );
75
76
			return empty( $result );
77
		}
78
79 View Code Duplication
		if ( is_null( $group ) || 'non_compact' === $group ) {
80
			if ( in_array( $name, self::get_option_names( $group ) ) ) {
81
				return true;
82
			}
83
		}
84
85
		foreach ( array_keys( self::$grouped_options ) as $_group ) {
86 View Code Duplication
			if ( is_null( $group ) || $group === $_group ) {
87
				if ( in_array( $name, self::get_option_names( $_group ) ) ) {
88
					return true;
89
				}
90
			}
91
		}
92
93
		return false;
94
	}
95
96
	/**
97
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
98
	 *
99
	 * @param string $name Option name
100
	 * @param mixed $default (optional)
101
	 */
102 View Code Duplication
	public static function get_option( $name, $default = false ) {
103
		if ( self::is_valid( $name, 'non_compact' ) ) {
104
			return get_option( "jetpack_$name", $default );
105
		}
106
107
		foreach ( array_keys( self::$grouped_options ) as $group ) {
108
			if ( self::is_valid( $name, $group ) ) {
109
				return self::get_grouped_option( $group, $name, $default );
110
			}
111
		}
112
113
		trigger_error( sprintf( 'Invalid Jetpack option name: %s', $name ), E_USER_WARNING );
114
115
		return $default;
116
	}
117
118
	private static function update_grouped_option( $group, $name, $value ) {
119
		$options = get_option( self::$grouped_options[ $group ] );
120
		if ( ! is_array( $options ) ) {
121
			$options = array();
122
		}
123
		$options[ $name ] = $value;
124
125
		return update_option( self::$grouped_options[ $group ], $options );
126
	}
127
128
	/**
129
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
130
	 *
131
	 * @param string $name Option name
132
	 * @param mixed $value Option value
133
	 */
134 View Code Duplication
	public static function update_option( $name, $value ) {
135
		do_action( 'pre_update_jetpack_option_' . $name, $name, $value );
136
		if ( self::is_valid( $name, 'non_compact' ) ) {
137
			return update_option( "jetpack_$name", $value );
138
		}
139
140
		foreach ( array_keys( self::$grouped_options ) as $group ) {
141
			if ( self::is_valid( $name, $group ) ) {
142
				return self::update_grouped_option( $group, $name, $value );
143
			}
144
		}
145
146
		trigger_error( sprintf( 'Invalid Jetpack option name: %s', $name ), E_USER_WARNING );
147
148
		return false;
149
	}
150
151
	/**
152
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
153
	 *
154
	 * @param array $array array( option name => option value, ... )
155
	 */
156
	public static function update_options( $array ) {
157
		$names = array_keys( $array );
158
159
		foreach ( array_diff( $names, self::get_option_names(), self::get_option_names( 'non_compact' ), self::get_option_names( 'private' ) ) as $unknown_name ) {
160
			trigger_error( sprintf( 'Invalid Jetpack option name: %s', $unknown_name ), E_USER_WARNING );
161
			unset( $array[ $unknown_name ] );
162
		}
163
164
		foreach ( $names as $name ) {
165
			self::update_option( $name, $array[ $name ] );
166
		}
167
	}
168
169
	/**
170
	 * Deletes the given option.  May be passed multiple option names as an array.
171
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
172
	 *
173
	 * @param string|array $names
174
	 */
175
	public static function delete_option( $names ) {
176
		$result = true;
177
		$names  = (array) $names;
178
179
		if ( ! self::is_valid( $names ) ) {
180
			trigger_error( sprintf( 'Invalid Jetpack option names: %s', print_r( $names, 1 ) ), E_USER_WARNING );
181
182
			return false;
183
		}
184
185
		foreach ( array_intersect( $names, self::get_option_names( 'non_compact' ) ) as $name ) {
186
			if ( ! delete_option( "jetpack_$name" ) ) {
187
				$result = false;
188
			}
189
		}
190
191
		foreach ( array_keys( self::$grouped_options ) as $group ) {
192
			if ( ! self::delete_grouped_option( $group, $names ) ) {
193
				$result = false;
194
			}
195
		}
196
197
		return $result;
198
	}
199
200
	private static function get_grouped_option( $group, $name, $default ) {
201
		$options = get_option( self::$grouped_options[ $group ] );
202
		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
203
			return $options[ $name ];
204
		}
205
206
		return $default;
207
	}
208
209
	private static function delete_grouped_option( $group, $names ) {
210
		$options = get_option( self::$grouped_options[ $group ], array() );
211
212
		$to_delete = array_intersect( $names, self::get_option_names( $group ), array_keys( $options ) );
213
		if ( $to_delete ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $to_delete of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
214
			foreach ( $to_delete as $name ) {
215
				unset( $options[ $name ] );
216
			}
217
218
			return update_option( self::$grouped_options[ $group ], $options );
219
		}
220
221
		return true;
222
	}
223
224
}
225