Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Jetpack often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Jetpack, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | class Jetpack { |
||
26 | public $xmlrpc_server = null; |
||
27 | |||
28 | private $xmlrpc_verification = null; |
||
29 | private $rest_authentication_status = null; |
||
30 | |||
31 | public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA'] |
||
32 | |||
33 | /** |
||
34 | * @var array The handles of styles that are concatenated into jetpack.css |
||
35 | */ |
||
36 | public $concatenated_style_handles = array( |
||
37 | 'jetpack-carousel', |
||
38 | 'grunion.css', |
||
39 | 'the-neverending-homepage', |
||
40 | 'jetpack_likes', |
||
41 | 'jetpack_related-posts', |
||
42 | 'sharedaddy', |
||
43 | 'jetpack-slideshow', |
||
44 | 'presentations', |
||
45 | 'jetpack-subscriptions', |
||
46 | 'jetpack-responsive-videos-style', |
||
47 | 'jetpack-social-menu', |
||
48 | 'tiled-gallery', |
||
49 | 'jetpack_display_posts_widget', |
||
50 | 'gravatar-profile-widget', |
||
51 | 'goodreads-widget', |
||
52 | 'jetpack_social_media_icons_widget', |
||
53 | 'jetpack-top-posts-widget', |
||
54 | 'jetpack_image_widget', |
||
55 | 'jetpack-my-community-widget', |
||
56 | 'wordads', |
||
57 | ); |
||
58 | |||
59 | public $plugins_to_deactivate = array( |
||
60 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
61 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
62 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), |
||
63 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), |
||
64 | 'after-the-deadline' => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ), |
||
65 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), |
||
66 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), |
||
67 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), |
||
68 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), |
||
69 | 'videopress' => array( 'video/video.php', 'VideoPress' ), |
||
70 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), |
||
71 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), |
||
72 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), |
||
73 | 'omnisearch' => array( 'jetpack-omnisearch/omnisearch.php', 'Jetpack Omnisearch' ), |
||
74 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), |
||
75 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) |
||
76 | ); |
||
77 | |||
78 | static $capability_translations = array( |
||
|
|||
79 | 'administrator' => 'manage_options', |
||
80 | 'editor' => 'edit_others_posts', |
||
81 | 'author' => 'publish_posts', |
||
82 | 'contributor' => 'edit_posts', |
||
83 | 'subscriber' => 'read', |
||
84 | ); |
||
85 | |||
86 | /** |
||
87 | * Map of modules that have conflicts with plugins and should not be auto-activated |
||
88 | * if the plugins are active. Used by filter_default_modules |
||
89 | * |
||
90 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, |
||
91 | * change `module-slug` and add this to your plugin: |
||
92 | * |
||
93 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); |
||
94 | * function my_jetpack_get_default_modules( $modules ) { |
||
95 | * return array_diff( $modules, array( 'module-slug' ) ); |
||
96 | * } |
||
97 | * |
||
98 | * @var array |
||
99 | */ |
||
100 | private $conflicting_plugins = array( |
||
101 | 'comments' => array( |
||
102 | 'Intense Debate' => 'intensedebate/intensedebate.php', |
||
103 | 'Disqus' => 'disqus-comment-system/disqus.php', |
||
104 | 'Livefyre' => 'livefyre-comments/livefyre.php', |
||
105 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', |
||
106 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', |
||
107 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', |
||
108 | ), |
||
109 | 'contact-form' => array( |
||
110 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', |
||
111 | 'Gravity Forms' => 'gravityforms/gravityforms.php', |
||
112 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', |
||
113 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', |
||
114 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', |
||
115 | ), |
||
116 | 'minileven' => array( |
||
117 | 'WPtouch' => 'wptouch/wptouch.php', |
||
118 | ), |
||
119 | 'latex' => array( |
||
120 | 'LaTeX for WordPress' => 'latex/latex.php', |
||
121 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', |
||
122 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', |
||
123 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', |
||
124 | 'Enable Latex' => 'enable-latex/enable-latex.php', |
||
125 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', |
||
126 | ), |
||
127 | 'protect' => array( |
||
128 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', |
||
129 | 'Captcha' => 'captcha/captcha.php', |
||
130 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', |
||
131 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', |
||
132 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', |
||
133 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', |
||
134 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', |
||
135 | 'Security-protection' => 'security-protection/security-protection.php', |
||
136 | 'Login Security' => 'login-security/login-security.php', |
||
137 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', |
||
138 | 'Wordfence Security' => 'wordfence/wordfence.php', |
||
139 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', |
||
140 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', |
||
141 | ), |
||
142 | 'random-redirect' => array( |
||
143 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', |
||
144 | ), |
||
145 | 'related-posts' => array( |
||
146 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', |
||
147 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', |
||
148 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', |
||
149 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', |
||
150 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', |
||
151 | 'outbrain' => 'outbrain/outbrain.php', |
||
152 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
153 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', |
||
154 | ), |
||
155 | 'sharedaddy' => array( |
||
156 | 'AddThis' => 'addthis/addthis_social_widget.php', |
||
157 | 'Add To Any' => 'add-to-any/add-to-any.php', |
||
158 | 'ShareThis' => 'share-this/sharethis.php', |
||
159 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
160 | ), |
||
161 | 'seo-tools' => array( |
||
162 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
163 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
164 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
165 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
166 | ), |
||
167 | 'verification-tools' => array( |
||
168 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
169 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
170 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
171 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
172 | ), |
||
173 | 'widget-visibility' => array( |
||
174 | 'Widget Logic' => 'widget-logic/widget_logic.php', |
||
175 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', |
||
176 | ), |
||
177 | 'sitemaps' => array( |
||
178 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', |
||
179 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', |
||
180 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', |
||
181 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', |
||
182 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', |
||
183 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
184 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
185 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
186 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
187 | 'Sitemap' => 'sitemap/sitemap.php', |
||
188 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', |
||
189 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', |
||
190 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', |
||
191 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', |
||
192 | ), |
||
193 | ); |
||
194 | |||
195 | /** |
||
196 | * Plugins for which we turn off our Facebook OG Tags implementation. |
||
197 | * |
||
198 | * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate |
||
199 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. |
||
200 | * |
||
201 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: |
||
202 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); |
||
203 | */ |
||
204 | private $open_graph_conflicting_plugins = array( |
||
205 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', |
||
206 | // 2 Click Social Media Buttons |
||
207 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook |
||
208 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags |
||
209 | 'autodescription/autodescription.php', // The SEO Framework |
||
210 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail |
||
211 | 'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php', |
||
212 | // Open Graph Meta Tags by Heateor |
||
213 | 'facebook/facebook.php', // Facebook (official plugin) |
||
214 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one |
||
215 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', |
||
216 | // Facebook Featured Image & OG Meta Tags |
||
217 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags |
||
218 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', |
||
219 | // Facebook Open Graph Meta Tags for WordPress |
||
220 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag |
||
221 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer |
||
222 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', |
||
223 | // Fedmich's Facebook Open Graph Meta |
||
224 | 'header-footer/plugin.php', // Header and Footer |
||
225 | 'network-publisher/networkpub.php', // Network Publisher |
||
226 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG |
||
227 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', |
||
228 | // NextScripts SNAP |
||
229 | 'og-tags/og-tags.php', // OG Tags |
||
230 | 'opengraph/opengraph.php', // Open Graph |
||
231 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', |
||
232 | // Open Graph Protocol Framework |
||
233 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments |
||
234 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate |
||
235 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic |
||
236 | 'shareaholic/sexy-bookmarks.php', // Shareaholic |
||
237 | 'sharepress/sharepress.php', // SharePress |
||
238 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect |
||
239 | 'social-discussions/social-discussions.php', // Social Discussions |
||
240 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit |
||
241 | 'socialize/socialize.php', // Socialize |
||
242 | 'squirrly-seo/squirrly.php', // SEO by SQUIRRLY™ |
||
243 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', |
||
244 | // Tweet, Like, Google +1 and Share |
||
245 | 'wordbooker/wordbooker.php', // Wordbooker |
||
246 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization |
||
247 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver |
||
248 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', |
||
249 | // WP Facebook Like Send & Open Graph Meta |
||
250 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol |
||
251 | 'wp-ogp/wp-ogp.php', // WP-OGP |
||
252 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin |
||
253 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php' // WP Facebook Like Button |
||
254 | ); |
||
255 | |||
256 | /** |
||
257 | * Plugins for which we turn off our Twitter Cards Tags implementation. |
||
258 | */ |
||
259 | private $twitter_cards_conflicting_plugins = array( |
||
260 | // 'twitter/twitter.php', // The official one handles this on its own. |
||
261 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php |
||
262 | 'eewee-twitter-card/index.php', // Eewee Twitter Card |
||
263 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards |
||
264 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards |
||
265 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', |
||
266 | // Pure Web Brilliant's Social Graph Twitter Cards Extension |
||
267 | 'twitter-cards/twitter-cards.php', // Twitter Cards |
||
268 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta |
||
269 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards |
||
270 | ); |
||
271 | |||
272 | /** |
||
273 | * Message to display in admin_notice |
||
274 | * @var string |
||
275 | */ |
||
276 | public $message = ''; |
||
277 | |||
278 | /** |
||
279 | * Error to display in admin_notice |
||
280 | * @var string |
||
281 | */ |
||
282 | public $error = ''; |
||
283 | |||
284 | /** |
||
285 | * Modules that need more privacy description. |
||
286 | * @var string |
||
287 | */ |
||
288 | public $privacy_checks = ''; |
||
289 | |||
290 | /** |
||
291 | * Stats to record once the page loads |
||
292 | * |
||
293 | * @var array |
||
294 | */ |
||
295 | public $stats = array(); |
||
296 | |||
297 | /** |
||
298 | * Jetpack_Sync object |
||
299 | */ |
||
300 | public $sync; |
||
301 | |||
302 | /** |
||
303 | * Verified data for JSON authorization request |
||
304 | */ |
||
305 | public $json_api_authorization_request = array(); |
||
306 | |||
307 | /** |
||
308 | * Holds the singleton instance of this class |
||
309 | * @since 2.3.3 |
||
310 | * @var Jetpack |
||
311 | */ |
||
312 | static $instance = false; |
||
313 | |||
314 | /** |
||
315 | * Singleton |
||
316 | * @static |
||
317 | */ |
||
318 | public static function init() { |
||
319 | if ( ! self::$instance ) { |
||
320 | self::$instance = new Jetpack; |
||
321 | |||
322 | self::$instance->plugin_upgrade(); |
||
323 | } |
||
324 | |||
325 | return self::$instance; |
||
326 | } |
||
327 | |||
328 | /** |
||
329 | * Must never be called statically |
||
330 | */ |
||
331 | function plugin_upgrade() { |
||
332 | if ( Jetpack::is_active() ) { |
||
333 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
334 | if ( JETPACK__VERSION != $version ) { |
||
335 | |||
336 | // Check which active modules actually exist and remove others from active_modules list |
||
337 | $unfiltered_modules = Jetpack::get_active_modules(); |
||
338 | $modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) ); |
||
339 | if ( array_diff( $unfiltered_modules, $modules ) ) { |
||
340 | Jetpack::update_active_modules( $modules ); |
||
341 | } |
||
342 | |||
343 | add_action( 'init', array( __CLASS__, 'activate_new_modules' ) ); |
||
344 | |||
345 | // Upgrade to 4.3.0 |
||
346 | if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) { |
||
347 | Jetpack_Options::delete_option( 'identity_crisis_whitelist' ); |
||
348 | } |
||
349 | |||
350 | Jetpack::maybe_set_version_option(); |
||
351 | } |
||
352 | } |
||
353 | } |
||
354 | |||
355 | static function activate_manage( ) { |
||
356 | if ( did_action( 'init' ) || current_filter() == 'init' ) { |
||
357 | self::activate_module( 'manage', false, false ); |
||
358 | } else if ( ! has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) { |
||
359 | add_action( 'init', array( __CLASS__, 'activate_manage' ) ); |
||
360 | } |
||
361 | } |
||
362 | |||
363 | static function update_active_modules( $modules ) { |
||
364 | $current_modules = Jetpack_Options::get_option( 'active_modules', array() ); |
||
365 | |||
366 | $success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) ); |
||
367 | |||
368 | if ( is_array( $modules ) && is_array( $current_modules ) ) { |
||
369 | $new_active_modules = array_diff( $modules, $current_modules ); |
||
370 | foreach( $new_active_modules as $module ) { |
||
371 | /** |
||
372 | * Fires when a specific module is activated. |
||
373 | * |
||
374 | * @since 1.9.0 |
||
375 | * |
||
376 | * @param string $module Module slug. |
||
377 | * @param boolean $success whether the module was activated. @since 4.2 |
||
378 | */ |
||
379 | do_action( 'jetpack_activate_module', $module, $success ); |
||
380 | |||
381 | /** |
||
382 | * Fires when a module is activated. |
||
383 | * The dynamic part of the filter, $module, is the module slug. |
||
384 | * |
||
385 | * @since 1.9.0 |
||
386 | * |
||
387 | * @param string $module Module slug. |
||
388 | */ |
||
389 | do_action( "jetpack_activate_module_$module", $module ); |
||
390 | } |
||
391 | |||
392 | $new_deactive_modules = array_diff( $current_modules, $modules ); |
||
393 | foreach( $new_deactive_modules as $module ) { |
||
394 | /** |
||
395 | * Fired after a module has been deactivated. |
||
396 | * |
||
397 | * @since 4.2.0 |
||
398 | * |
||
399 | * @param string $module Module slug. |
||
400 | * @param boolean $success whether the module was deactivated. |
||
401 | */ |
||
402 | do_action( 'jetpack_deactivate_module', $module, $success ); |
||
403 | /** |
||
404 | * Fires when a module is deactivated. |
||
405 | * The dynamic part of the filter, $module, is the module slug. |
||
406 | * |
||
407 | * @since 1.9.0 |
||
408 | * |
||
409 | * @param string $module Module slug. |
||
410 | */ |
||
411 | do_action( "jetpack_deactivate_module_$module", $module ); |
||
412 | } |
||
413 | } |
||
414 | |||
415 | return $success; |
||
416 | } |
||
417 | |||
418 | static function delete_active_modules() { |
||
419 | self::update_active_modules( array() ); |
||
420 | } |
||
421 | |||
422 | /** |
||
423 | * Constructor. Initializes WordPress hooks |
||
424 | */ |
||
425 | private function __construct() { |
||
426 | /* |
||
427 | * Check for and alert any deprecated hooks |
||
428 | */ |
||
429 | add_action( 'init', array( $this, 'deprecated_hooks' ) ); |
||
430 | |||
431 | |||
432 | /* |
||
433 | * Load things that should only be in Network Admin. |
||
434 | * |
||
435 | * For now blow away everything else until a more full |
||
436 | * understanding of what is needed at the network level is |
||
437 | * available |
||
438 | */ |
||
439 | if( is_multisite() ) { |
||
440 | Jetpack_Network::init(); |
||
441 | } |
||
442 | |||
443 | add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 ); |
||
444 | |||
445 | // Unlink user before deleting the user from .com |
||
446 | add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 ); |
||
447 | add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 ); |
||
448 | |||
449 | // define a few REST endpoints for getting through the connection process |
||
450 | // without XMLRPC |
||
451 | add_action( 'rest_api_init', function () { |
||
452 | register_rest_route( 'jetpack/v1', '/verify_registration', array( |
||
453 | 'methods' => 'POST', |
||
454 | 'callback' => array( $this, 'rest_verify_registration' ), |
||
455 | ) ); |
||
456 | } ); |
||
457 | |||
458 | if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) { |
||
459 | @ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed. |
||
460 | |||
461 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php'; |
||
462 | $this->xmlrpc_server = new Jetpack_XMLRPC_Server(); |
||
463 | |||
464 | $this->require_jetpack_authentication(); |
||
465 | |||
466 | if ( Jetpack::is_active() ) { |
||
467 | // Hack to preserve $HTTP_RAW_POST_DATA |
||
468 | add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) ); |
||
469 | |||
470 | $signed = $this->verify_xml_rpc_signature(); |
||
471 | if ( $signed && ! is_wp_error( $signed ) ) { |
||
472 | // The actual API methods. |
||
473 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) ); |
||
474 | } else { |
||
475 | // The jetpack.authorize method should be available for unauthenticated users on a site with an |
||
476 | // active Jetpack connection, so that additional users can link their account. |
||
477 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) ); |
||
478 | } |
||
479 | } else { |
||
480 | // The bootstrap API methods. |
||
481 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) ); |
||
482 | } |
||
483 | |||
484 | // Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on. |
||
485 | add_filter( 'pre_option_enable_xmlrpc', '__return_true' ); |
||
486 | } elseif ( is_admin() && isset( $_POST['action'] ) && 'jetpack_upload_file' == $_POST['action'] ) { |
||
487 | $this->require_jetpack_authentication(); |
||
488 | $this->add_remote_request_handlers(); |
||
489 | } else { |
||
490 | if ( Jetpack::is_active() ) { |
||
491 | add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) ); |
||
492 | add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) ); |
||
493 | } |
||
494 | } |
||
495 | |||
496 | if ( Jetpack::is_active() ) { |
||
497 | Jetpack_Heartbeat::init(); |
||
498 | } |
||
499 | |||
500 | add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) ); |
||
501 | add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) ); |
||
502 | |||
503 | add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) ); |
||
504 | if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) { |
||
505 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); |
||
506 | } |
||
507 | |||
508 | add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) ); |
||
509 | |||
510 | add_action( 'admin_init', array( $this, 'admin_init' ) ); |
||
511 | add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) ); |
||
512 | |||
513 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
||
514 | |||
515 | add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) ); |
||
516 | // Filter the dashboard meta box order to swap the new one in in place of the old one. |
||
517 | add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) ); |
||
518 | |||
519 | // returns HTTPS support status |
||
520 | add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) ); |
||
521 | |||
522 | // If any module option is updated before Jump Start is dismissed, hide Jump Start. |
||
523 | add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) ); |
||
524 | |||
525 | // JITM AJAX callback function |
||
526 | add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) ); |
||
527 | |||
528 | // Universal ajax callback for all tracking events triggered via js |
||
529 | add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) ); |
||
530 | |||
531 | add_action( 'wp_loaded', array( $this, 'register_assets' ) ); |
||
532 | add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
533 | add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
534 | add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
535 | |||
536 | add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 ); |
||
537 | |||
538 | /** |
||
539 | * These actions run checks to load additional files. |
||
540 | * They check for external files or plugins, so they need to run as late as possible. |
||
541 | */ |
||
542 | add_action( 'wp_head', array( $this, 'check_open_graph' ), 1 ); |
||
543 | add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ), 999 ); |
||
544 | add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 ); |
||
545 | |||
546 | add_filter( 'plugins_url', array( 'Jetpack', 'maybe_min_asset' ), 1, 3 ); |
||
547 | add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 ); |
||
548 | |||
549 | add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 ); |
||
550 | |||
551 | add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) ); |
||
552 | add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 ); |
||
553 | |||
554 | // A filter to control all just in time messages |
||
555 | add_filter( 'jetpack_just_in_time_msgs', '__return_true' ); |
||
556 | |||
557 | // Update the Jetpack plan from API on heartbeats |
||
558 | add_action( 'jetpack_heartbeat', array( $this, 'refresh_active_plan_from_wpcom' ) ); |
||
559 | |||
560 | /** |
||
561 | * This is the hack to concatinate all css files into one. |
||
562 | * For description and reasoning see the implode_frontend_css method |
||
563 | * |
||
564 | * Super late priority so we catch all the registered styles |
||
565 | */ |
||
566 | if( !is_admin() ) { |
||
567 | add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first |
||
568 | add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles` |
||
569 | } |
||
570 | } |
||
571 | |||
572 | function rest_verify_registration( $request ) { |
||
573 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php'; |
||
574 | $xmlrpc_server = new Jetpack_XMLRPC_Server(); |
||
575 | return $xmlrpc_server->verify_registration( array( $request['secret_1'], $request['state'] ) ); |
||
576 | } |
||
577 | |||
578 | function jetpack_admin_ajax_tracks_callback() { |
||
579 | // Check for nonce |
||
580 | if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) { |
||
581 | wp_die( 'Permissions check failed.' ); |
||
582 | } |
||
583 | |||
584 | if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] ) ) { |
||
585 | wp_die( 'No valid event name or type.' ); |
||
586 | } |
||
587 | |||
588 | $tracks_data = array(); |
||
589 | if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) { |
||
590 | $tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] ); |
||
591 | } |
||
592 | |||
593 | JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data ); |
||
594 | wp_send_json_success(); |
||
595 | wp_die(); |
||
596 | } |
||
597 | |||
598 | /** |
||
599 | * The callback for the JITM ajax requests. |
||
600 | */ |
||
601 | function jetpack_jitm_ajax_callback() { |
||
658 | |||
659 | /** |
||
660 | * If there are any stats that need to be pushed, but haven't been, push them now. |
||
661 | */ |
||
662 | function __destruct() { |
||
667 | |||
668 | function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { |
||
669 | switch( $cap ) { |
||
670 | case 'jetpack_connect' : |
||
671 | case 'jetpack_reconnect' : |
||
672 | if ( Jetpack::is_development_mode() ) { |
||
673 | $caps = array( 'do_not_allow' ); |
||
674 | break; |
||
675 | } |
||
676 | /** |
||
677 | * Pass through. If it's not development mode, these should match disconnect. |
||
678 | * Let users disconnect if it's development mode, just in case things glitch. |
||
679 | */ |
||
680 | case 'jetpack_disconnect' : |
||
681 | /** |
||
682 | * In multisite, can individual site admins manage their own connection? |
||
683 | * |
||
684 | * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class. |
||
685 | */ |
||
686 | if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
687 | if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) { |
||
688 | /** |
||
689 | * We need to update the option name -- it's terribly unclear which |
||
690 | * direction the override goes. |
||
691 | * |
||
692 | * @todo: Update the option name to `sub-sites-can-manage-own-connections` |
||
693 | */ |
||
694 | $caps = array( 'do_not_allow' ); |
||
695 | break; |
||
696 | } |
||
697 | } |
||
698 | |||
699 | $caps = array( 'manage_options' ); |
||
700 | break; |
||
701 | case 'jetpack_manage_modules' : |
||
702 | case 'jetpack_activate_modules' : |
||
703 | case 'jetpack_deactivate_modules' : |
||
704 | $caps = array( 'manage_options' ); |
||
705 | break; |
||
706 | case 'jetpack_configure_modules' : |
||
707 | $caps = array( 'manage_options' ); |
||
708 | break; |
||
709 | case 'jetpack_network_admin_page': |
||
710 | case 'jetpack_network_settings_page': |
||
711 | $caps = array( 'manage_network_plugins' ); |
||
712 | break; |
||
713 | case 'jetpack_network_sites_page': |
||
714 | $caps = array( 'manage_sites' ); |
||
715 | break; |
||
716 | case 'jetpack_admin_page' : |
||
717 | if ( Jetpack::is_development_mode() ) { |
||
718 | $caps = array( 'manage_options' ); |
||
719 | break; |
||
720 | } else { |
||
721 | $caps = array( 'read' ); |
||
722 | } |
||
723 | break; |
||
724 | case 'jetpack_connect_user' : |
||
725 | if ( Jetpack::is_development_mode() ) { |
||
726 | $caps = array( 'do_not_allow' ); |
||
727 | break; |
||
728 | } |
||
729 | $caps = array( 'read' ); |
||
730 | break; |
||
731 | } |
||
732 | return $caps; |
||
733 | } |
||
734 | |||
735 | function require_jetpack_authentication() { |
||
736 | // Don't let anyone authenticate |
||
737 | $_COOKIE = array(); |
||
738 | remove_all_filters( 'authenticate' ); |
||
739 | remove_all_actions( 'wp_login_failed' ); |
||
740 | |||
741 | if ( Jetpack::is_active() ) { |
||
742 | // Allow Jetpack authentication |
||
743 | add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 ); |
||
744 | } |
||
745 | } |
||
746 | |||
747 | /** |
||
748 | * Load language files |
||
749 | * @action plugins_loaded |
||
750 | */ |
||
751 | public static function plugin_textdomain() { |
||
752 | // Note to self, the third argument must not be hardcoded, to account for relocated folders. |
||
753 | load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' ); |
||
754 | } |
||
755 | |||
756 | /** |
||
757 | * Register assets for use in various modules and the Jetpack admin page. |
||
758 | * |
||
759 | * @uses wp_script_is, wp_register_script, plugins_url |
||
760 | * @action wp_loaded |
||
761 | * @return null |
||
762 | */ |
||
763 | public function register_assets() { |
||
764 | if ( ! wp_script_is( 'spin', 'registered' ) ) { |
||
765 | wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' ); |
||
766 | } |
||
767 | |||
768 | View Code Duplication | if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) { |
|
769 | wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' ); |
||
770 | } |
||
771 | |||
772 | View Code Duplication | if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { |
|
773 | wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' ); |
||
774 | } |
||
775 | |||
776 | View Code Duplication | if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) { |
|
777 | wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true ); |
||
778 | } |
||
779 | |||
780 | if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) { |
||
781 | wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true ); |
||
782 | |||
783 | /** This filter is documented in modules/sharedaddy/sharing-sources.php */ |
||
784 | $fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ); |
||
785 | if ( ! is_numeric( $fb_app_id ) ) { |
||
786 | $fb_app_id = ''; |
||
787 | } |
||
788 | wp_localize_script( |
||
789 | 'jetpack-facebook-embed', |
||
790 | 'jpfbembed', |
||
791 | array( |
||
792 | 'appid' => $fb_app_id, |
||
793 | 'locale' => $this->get_locale(), |
||
794 | ) |
||
795 | ); |
||
796 | } |
||
797 | |||
798 | /** |
||
799 | * As jetpack_register_genericons is by default fired off a hook, |
||
800 | * the hook may have already fired by this point. |
||
801 | * So, let's just trigger it manually. |
||
802 | */ |
||
803 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); |
||
804 | jetpack_register_genericons(); |
||
805 | |||
806 | /** |
||
807 | * Register the social logos |
||
808 | */ |
||
809 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); |
||
810 | jetpack_register_social_logos(); |
||
811 | |||
812 | View Code Duplication | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) |
|
813 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
||
814 | } |
||
815 | |||
816 | /** |
||
817 | * Guess locale from language code. |
||
818 | * |
||
819 | * @param string $lang Language code. |
||
820 | * @return string|bool |
||
821 | */ |
||
822 | View Code Duplication | function guess_locale_from_lang( $lang ) { |
|
861 | |||
862 | /** |
||
863 | * Get the locale. |
||
864 | * |
||
865 | * @return string|bool |
||
866 | */ |
||
867 | function get_locale() { |
||
876 | |||
877 | /** |
||
878 | * Device Pixels support |
||
879 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. |
||
880 | */ |
||
881 | function devicepx() { |
||
886 | |||
887 | /** |
||
888 | * Return the network_site_url so that .com knows what network this site is a part of. |
||
889 | * @param bool $option |
||
890 | * @return string |
||
891 | */ |
||
892 | public function jetpack_main_network_site_option( $option ) { |
||
895 | /** |
||
896 | * Network Name. |
||
897 | */ |
||
898 | static function network_name( $option = null ) { |
||
902 | /** |
||
903 | * Does the network allow new user and site registrations. |
||
904 | * @return string |
||
905 | */ |
||
906 | static function network_allow_new_registrations( $option = null ) { |
||
909 | /** |
||
910 | * Does the network allow admins to add new users. |
||
911 | * @return boolian |
||
912 | */ |
||
913 | static function network_add_new_users( $option = null ) { |
||
916 | /** |
||
917 | * File upload psace left per site in MB. |
||
918 | * -1 means NO LIMIT. |
||
919 | * @return number |
||
920 | */ |
||
921 | static function network_site_upload_space( $option = null ) { |
||
925 | |||
926 | /** |
||
927 | * Network allowed file types. |
||
928 | * @return string |
||
929 | */ |
||
930 | static function network_upload_file_types( $option = null ) { |
||
933 | |||
934 | /** |
||
935 | * Maximum file upload size set by the network. |
||
936 | * @return number |
||
937 | */ |
||
938 | static function network_max_upload_file_size( $option = null ) { |
||
942 | |||
943 | /** |
||
944 | * Lets us know if a site allows admins to manage the network. |
||
945 | * @return array |
||
946 | */ |
||
947 | static function network_enable_administration_menus( $option = null ) { |
||
950 | |||
951 | /** |
||
952 | * If a user has been promoted to or demoted from admin, we need to clear the |
||
953 | * jetpack_other_linked_admins transient. |
||
954 | * |
||
955 | * @since 4.3.2 |
||
956 | * @since 4.4.0 $old_roles is null by default and if it's not passed, the transient is cleared. |
||
957 | * |
||
958 | * @param int $user_id The user ID whose role changed. |
||
959 | * @param string $role The new role. |
||
960 | * @param array $old_roles An array of the user's previous roles. |
||
961 | */ |
||
962 | function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) { |
||
963 | if ( 'administrator' == $role |
||
964 | || ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) ) |
||
965 | || is_null( $old_roles ) |
||
966 | ) { |
||
967 | delete_transient( 'jetpack_other_linked_admins' ); |
||
968 | } |
||
969 | } |
||
970 | |||
971 | /** |
||
972 | * Checks to see if there are any other users available to become primary |
||
973 | * Users must both: |
||
974 | * - Be linked to wpcom |
||
975 | * - Be an admin |
||
976 | * |
||
977 | * @return mixed False if no other users are linked, Int if there are. |
||
978 | */ |
||
979 | static function get_other_linked_admins() { |
||
980 | $other_linked_users = get_transient( 'jetpack_other_linked_admins' ); |
||
981 | |||
982 | if ( false === $other_linked_users ) { |
||
983 | $admins = get_users( array( 'role' => 'administrator' ) ); |
||
984 | if ( count( $admins ) > 1 ) { |
||
985 | $available = array(); |
||
986 | foreach ( $admins as $admin ) { |
||
987 | if ( Jetpack::is_user_connected( $admin->ID ) ) { |
||
988 | $available[] = $admin->ID; |
||
989 | } |
||
990 | } |
||
991 | |||
992 | $count_connected_admins = count( $available ); |
||
993 | if ( count( $available ) > 1 ) { |
||
994 | $other_linked_users = $count_connected_admins; |
||
995 | } else { |
||
996 | $other_linked_users = 0; |
||
997 | } |
||
998 | } else { |
||
999 | $other_linked_users = 0; |
||
1000 | } |
||
1001 | |||
1002 | set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS ); |
||
1003 | } |
||
1004 | |||
1005 | return ( 0 === $other_linked_users ) ? false : $other_linked_users; |
||
1006 | } |
||
1007 | |||
1008 | /** |
||
1009 | * Return whether we are dealing with a multi network setup or not. |
||
1010 | * The reason we are type casting this is because we want to avoid the situation where |
||
1011 | * the result is false since when is_main_network_option return false it cases |
||
1012 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the |
||
1013 | * database which could be set to anything as opposed to what this function returns. |
||
1014 | * @param bool $option |
||
1015 | * |
||
1016 | * @return boolean |
||
1017 | */ |
||
1018 | public function is_main_network_option( $option ) { |
||
1019 | // return '1' or '' |
||
1020 | return (string) (bool) Jetpack::is_multi_network(); |
||
1021 | } |
||
1022 | |||
1023 | /** |
||
1024 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
||
1025 | * |
||
1026 | * @param string $option |
||
1027 | * @return boolean |
||
1028 | */ |
||
1029 | public function is_multisite( $option ) { |
||
1030 | return (string) (bool) is_multisite(); |
||
1031 | } |
||
1032 | |||
1033 | /** |
||
1034 | * Implemented since there is no core is multi network function |
||
1035 | * Right now there is no way to tell if we which network is the dominant network on the system |
||
1036 | * |
||
1037 | * @since 3.3 |
||
1038 | * @return boolean |
||
1039 | */ |
||
1040 | public static function is_multi_network() { |
||
1041 | global $wpdb; |
||
1042 | |||
1043 | // if we don't have a multi site setup no need to do any more |
||
1044 | if ( ! is_multisite() ) { |
||
1045 | return false; |
||
1046 | } |
||
1047 | |||
1048 | $num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); |
||
1049 | if ( $num_sites > 1 ) { |
||
1050 | return true; |
||
1051 | } else { |
||
1052 | return false; |
||
1053 | } |
||
1054 | } |
||
1055 | |||
1056 | /** |
||
1057 | * Trigger an update to the main_network_site when we update the siteurl of a site. |
||
1058 | * @return null |
||
1059 | */ |
||
1060 | function update_jetpack_main_network_site_option() { |
||
1061 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1062 | } |
||
1063 | /** |
||
1064 | * Triggered after a user updates the network settings via Network Settings Admin Page |
||
1065 | * |
||
1066 | */ |
||
1067 | function update_jetpack_network_settings() { |
||
1068 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1069 | // Only sync this info for the main network site. |
||
1070 | } |
||
1071 | |||
1072 | /** |
||
1073 | * Get back if the current site is single user site. |
||
1074 | * |
||
1075 | * @return bool |
||
1076 | */ |
||
1077 | public static function is_single_user_site() { |
||
1078 | global $wpdb; |
||
1079 | |||
1080 | View Code Duplication | if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) { |
|
1081 | $some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" ); |
||
1082 | set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS ); |
||
1083 | } |
||
1084 | return 1 === (int) $some_users; |
||
1085 | } |
||
1086 | |||
1087 | /** |
||
1088 | * Returns true if the site has file write access false otherwise. |
||
1089 | * @return string ( '1' | '0' ) |
||
1090 | **/ |
||
1091 | public static function file_system_write_access() { |
||
1092 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
||
1093 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
||
1094 | } |
||
1095 | |||
1096 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
||
1097 | |||
1098 | $filesystem_method = get_filesystem_method(); |
||
1099 | if ( $filesystem_method === 'direct' ) { |
||
1100 | return 1; |
||
1101 | } |
||
1102 | |||
1103 | ob_start(); |
||
1104 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); |
||
1105 | ob_end_clean(); |
||
1106 | if ( $filesystem_credentials_are_stored ) { |
||
1107 | return 1; |
||
1108 | } |
||
1109 | return 0; |
||
1110 | } |
||
1111 | |||
1112 | /** |
||
1113 | * Finds out if a site is using a version control system. |
||
1114 | * @return string ( '1' | '0' ) |
||
1115 | **/ |
||
1116 | public static function is_version_controlled() { |
||
1117 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' ); |
||
1118 | return (string) (int) Jetpack_Sync_Functions::is_version_controlled(); |
||
1119 | } |
||
1120 | |||
1121 | /** |
||
1122 | * Determines whether the current theme supports featured images or not. |
||
1123 | * @return string ( '1' | '0' ) |
||
1124 | */ |
||
1125 | public static function featured_images_enabled() { |
||
1126 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1127 | return current_theme_supports( 'post-thumbnails' ) ? '1' : '0'; |
||
1128 | } |
||
1129 | |||
1130 | /** |
||
1131 | * jetpack_updates is saved in the following schema: |
||
1132 | * |
||
1133 | * array ( |
||
1134 | * 'plugins' => (int) Number of plugin updates available. |
||
1135 | * 'themes' => (int) Number of theme updates available. |
||
1136 | * 'wordpress' => (int) Number of WordPress core updates available. |
||
1137 | * 'translations' => (int) Number of translation updates available. |
||
1138 | * 'total' => (int) Total of all available updates. |
||
1139 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. |
||
1140 | * ) |
||
1141 | * @return array |
||
1142 | */ |
||
1143 | public static function get_updates() { |
||
1144 | $update_data = wp_get_update_data(); |
||
1145 | |||
1146 | // Stores the individual update counts as well as the total count. |
||
1147 | if ( isset( $update_data['counts'] ) ) { |
||
1148 | $updates = $update_data['counts']; |
||
1149 | } |
||
1150 | |||
1151 | // If we need to update WordPress core, let's find the latest version number. |
||
1152 | View Code Duplication | if ( ! empty( $updates['wordpress'] ) ) { |
|
1153 | $cur = get_preferred_from_update_core(); |
||
1154 | if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { |
||
1155 | $updates['wp_update_version'] = $cur->current; |
||
1156 | } |
||
1157 | } |
||
1158 | return isset( $updates ) ? $updates : array(); |
||
1159 | } |
||
1160 | |||
1161 | public static function get_update_details() { |
||
1162 | $update_details = array( |
||
1163 | 'update_core' => get_site_transient( 'update_core' ), |
||
1164 | 'update_plugins' => get_site_transient( 'update_plugins' ), |
||
1165 | 'update_themes' => get_site_transient( 'update_themes' ), |
||
1166 | ); |
||
1167 | return $update_details; |
||
1168 | } |
||
1169 | |||
1170 | public static function refresh_update_data() { |
||
1171 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1172 | |||
1173 | } |
||
1174 | |||
1175 | public static function refresh_theme_data() { |
||
1176 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1177 | } |
||
1178 | |||
1179 | /** |
||
1180 | * Is Jetpack active? |
||
1181 | */ |
||
1182 | public static function is_active() { |
||
1183 | return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
1184 | } |
||
1185 | |||
1186 | /** |
||
1187 | * Make an API call to WordPress.com for plan status |
||
1188 | * |
||
1189 | * @uses Jetpack_Options::get_option() |
||
1190 | * @uses Jetpack_Client::wpcom_json_api_request_as_blog() |
||
1191 | * @uses update_option() |
||
1192 | * |
||
1193 | * @access public |
||
1194 | * @static |
||
1195 | * |
||
1196 | * @return bool True if plan is updated, false if no update |
||
1197 | */ |
||
1198 | public static function refresh_active_plan_from_wpcom() { |
||
1199 | // Make the API request |
||
1200 | $request = sprintf( '/sites/%d', Jetpack_Options::get_option( 'id' ) ); |
||
1201 | $response = Jetpack_Client::wpcom_json_api_request_as_blog( $request, '1.1' ); |
||
1202 | |||
1203 | // Bail if there was an error or malformed response |
||
1204 | if ( is_wp_error( $response ) || ! is_array( $response ) || ! isset( $response['body'] ) ) { |
||
1205 | return false; |
||
1206 | } |
||
1207 | |||
1208 | // Decode the results |
||
1209 | $results = json_decode( $response['body'], true ); |
||
1210 | |||
1211 | // Bail if there were no results or plan details returned |
||
1212 | if ( ! is_array( $results ) || ! isset( $results['plan'] ) ) { |
||
1213 | return false; |
||
1214 | } |
||
1215 | |||
1216 | // Store the option and return true if updated |
||
1217 | return update_option( 'jetpack_active_plan', $results['plan'] ); |
||
1218 | } |
||
1219 | |||
1220 | /** |
||
1221 | * Get the plan that this Jetpack site is currently using |
||
1222 | * |
||
1223 | * @uses get_option() |
||
1224 | * |
||
1225 | * @access public |
||
1226 | * @static |
||
1227 | * |
||
1228 | * @return array Active Jetpack plan details |
||
1229 | */ |
||
1230 | public static function get_active_plan() { |
||
1231 | $plan = get_option( 'jetpack_active_plan' ); |
||
1232 | |||
1233 | // Set the default options |
||
1234 | if ( ! $plan ) { |
||
1235 | $plan = array( |
||
1236 | 'product_slug' => 'jetpack_free', |
||
1237 | 'supports' => array(), |
||
1238 | 'class' => 'free', |
||
1239 | ); |
||
1240 | } |
||
1241 | |||
1242 | // Define what paid modules are supported by personal plans |
||
1243 | $personal_plans = array( |
||
1244 | 'jetpack_personal', |
||
1245 | 'jetpack_personal_monthly', |
||
1246 | ); |
||
1247 | |||
1248 | if ( in_array( $plan['product_slug'], $personal_plans ) ) { |
||
1249 | $plan['supports'] = array( |
||
1250 | 'akismet', |
||
1251 | ); |
||
1252 | $plan['class'] = 'personal'; |
||
1253 | } |
||
1254 | |||
1255 | // Define what paid modules are supported by premium plans |
||
1256 | $premium_plans = array( |
||
1257 | 'jetpack_premium', |
||
1258 | 'jetpack_premium_monthly', |
||
1259 | ); |
||
1260 | |||
1261 | View Code Duplication | if ( in_array( $plan['product_slug'], $premium_plans ) ) { |
|
1262 | $plan['supports'] = array( |
||
1263 | 'videopress', |
||
1264 | 'akismet', |
||
1265 | 'vaultpress', |
||
1266 | 'wordads', |
||
1267 | ); |
||
1268 | $plan['class'] = 'premium'; |
||
1269 | } |
||
1270 | |||
1271 | // Define what paid modules are supported by professional plans |
||
1272 | $business_plans = array( |
||
1273 | 'jetpack_business', |
||
1274 | 'jetpack_business_monthly', |
||
1275 | ); |
||
1276 | |||
1277 | View Code Duplication | if ( in_array( $plan['product_slug'], $business_plans ) ) { |
|
1278 | $plan['supports'] = array( |
||
1279 | 'videopress', |
||
1280 | 'akismet', |
||
1281 | 'vaultpress', |
||
1282 | 'seo-tools', |
||
1283 | 'google-analytics', |
||
1284 | 'wordads', |
||
1285 | ); |
||
1286 | $plan['class'] = 'business'; |
||
1287 | } |
||
1288 | |||
1289 | // Make sure we have an array here in the event database data is stale |
||
1290 | if ( ! isset( $plan['supports'] ) ) { |
||
1291 | $plan['supports'] = array(); |
||
1292 | } |
||
1293 | |||
1294 | return $plan; |
||
1295 | } |
||
1296 | |||
1297 | /** |
||
1298 | * Determine whether the active plan supports a particular feature |
||
1299 | * |
||
1300 | * @uses Jetpack::get_active_plan() |
||
1301 | * |
||
1302 | * @access public |
||
1303 | * @static |
||
1304 | * |
||
1305 | * @return bool True if plan supports feature, false if not |
||
1306 | */ |
||
1307 | public static function active_plan_supports( $feature ) { |
||
1308 | $plan = Jetpack::get_active_plan(); |
||
1309 | |||
1310 | if ( in_array( $feature, $plan['supports'] ) ) { |
||
1311 | return true; |
||
1312 | } |
||
1313 | |||
1314 | return false; |
||
1315 | } |
||
1316 | |||
1317 | /** |
||
1318 | * Is Jetpack in development (offline) mode? |
||
1319 | */ |
||
1320 | public static function is_development_mode() { |
||
1321 | $development_mode = false; |
||
1322 | |||
1323 | if ( defined( 'JETPACK_DEV_DEBUG' ) ) { |
||
1324 | $development_mode = JETPACK_DEV_DEBUG; |
||
1325 | } elseif ( $site_url = site_url() ) { |
||
1326 | $development_mode = false === strpos( $site_url, '.' ); |
||
1327 | } |
||
1328 | |||
1329 | /** |
||
1330 | * Filters Jetpack's development mode. |
||
1331 | * |
||
1332 | * @see https://jetpack.com/support/development-mode/ |
||
1333 | * |
||
1334 | * @since 2.2.1 |
||
1335 | * |
||
1336 | * @param bool $development_mode Is Jetpack's development mode active. |
||
1337 | */ |
||
1338 | return apply_filters( 'jetpack_development_mode', $development_mode ); |
||
1339 | } |
||
1340 | |||
1341 | /** |
||
1342 | * Get Jetpack development mode notice text and notice class. |
||
1343 | * |
||
1344 | * Mirrors the checks made in Jetpack::is_development_mode |
||
1345 | * |
||
1346 | */ |
||
1347 | public static function show_development_mode_notice() { |
||
1348 | if ( Jetpack::is_development_mode() ) { |
||
1349 | if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) { |
||
1350 | $notice = sprintf( |
||
1351 | /* translators: %s is a URL */ |
||
1352 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ), |
||
1353 | 'https://jetpack.com/support/development-mode/' |
||
1354 | ); |
||
1355 | } elseif ( site_url() && false === strpos( site_url(), '.' ) ) { |
||
1356 | $notice = sprintf( |
||
1357 | /* translators: %s is a URL */ |
||
1358 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ), |
||
1359 | 'https://jetpack.com/support/development-mode/' |
||
1360 | ); |
||
1361 | } else { |
||
1362 | $notice = sprintf( |
||
1363 | /* translators: %s is a URL */ |
||
1364 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ), |
||
1365 | 'https://jetpack.com/support/development-mode/' |
||
1366 | ); |
||
1367 | } |
||
1368 | |||
1369 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1370 | } |
||
1371 | |||
1372 | // Throw up a notice if using a development version and as for feedback. |
||
1373 | if ( Jetpack::is_development_version() ) { |
||
1374 | /* translators: %s is a URL */ |
||
1375 | $notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), 'https://jetpack.com/contact-support/beta-group/' ); |
||
1376 | |||
1377 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1378 | } |
||
1379 | // Throw up a notice if using staging mode |
||
1380 | if ( Jetpack::is_staging_site() ) { |
||
1381 | /* translators: %s is a URL */ |
||
1382 | $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' ); |
||
1383 | |||
1384 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1385 | } |
||
1386 | } |
||
1387 | |||
1388 | /** |
||
1389 | * Whether Jetpack's version maps to a public release, or a development version. |
||
1390 | */ |
||
1391 | public static function is_development_version() { |
||
1392 | /** |
||
1393 | * Allows filtering whether this is a development version of Jetpack. |
||
1394 | * |
||
1395 | * This filter is especially useful for tests. |
||
1396 | * |
||
1397 | * @since 4.3.0 |
||
1398 | * |
||
1399 | * @param bool $development_version Is this a develoment version of Jetpack? |
||
1400 | */ |
||
1401 | return (bool) apply_filters( |
||
1402 | 'jetpack_development_version', |
||
1403 | ! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) ) |
||
1404 | ); |
||
1405 | } |
||
1406 | |||
1407 | /** |
||
1408 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? |
||
1409 | */ |
||
1410 | public static function is_user_connected( $user_id = false ) { |
||
1411 | $user_id = false === $user_id ? get_current_user_id() : absint( $user_id ); |
||
1412 | if ( ! $user_id ) { |
||
1413 | return false; |
||
1414 | } |
||
1415 | |||
1416 | return (bool) Jetpack_Data::get_access_token( $user_id ); |
||
1417 | } |
||
1418 | |||
1419 | /** |
||
1420 | * Get the wpcom user data of the current|specified connected user. |
||
1421 | */ |
||
1422 | public static function get_connected_user_data( $user_id = null ) { |
||
1423 | if ( ! $user_id ) { |
||
1424 | $user_id = get_current_user_id(); |
||
1425 | } |
||
1426 | |||
1427 | $transient_key = "jetpack_connected_user_data_$user_id"; |
||
1428 | |||
1429 | if ( $cached_user_data = get_transient( $transient_key ) ) { |
||
1430 | return $cached_user_data; |
||
1431 | } |
||
1432 | |||
1433 | Jetpack::load_xml_rpc_client(); |
||
1434 | $xml = new Jetpack_IXR_Client( array( |
||
1435 | 'user_id' => $user_id, |
||
1436 | ) ); |
||
1437 | $xml->query( 'wpcom.getUser' ); |
||
1438 | if ( ! $xml->isError() ) { |
||
1439 | $user_data = $xml->getResponse(); |
||
1440 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); |
||
1441 | return $user_data; |
||
1442 | } |
||
1443 | |||
1444 | return false; |
||
1445 | } |
||
1446 | |||
1447 | /** |
||
1448 | * Get the wpcom email of the current|specified connected user. |
||
1449 | */ |
||
1450 | View Code Duplication | public static function get_connected_user_email( $user_id = null ) { |
|
1451 | if ( ! $user_id ) { |
||
1452 | $user_id = get_current_user_id(); |
||
1453 | } |
||
1454 | Jetpack::load_xml_rpc_client(); |
||
1455 | $xml = new Jetpack_IXR_Client( array( |
||
1456 | 'user_id' => $user_id, |
||
1457 | ) ); |
||
1458 | $xml->query( 'wpcom.getUserEmail' ); |
||
1459 | if ( ! $xml->isError() ) { |
||
1460 | return $xml->getResponse(); |
||
1461 | } |
||
1462 | return false; |
||
1463 | } |
||
1464 | |||
1465 | /** |
||
1466 | * Get the wpcom email of the master user. |
||
1467 | */ |
||
1468 | public static function get_master_user_email() { |
||
1469 | $master_user_id = Jetpack_Options::get_option( 'master_user' ); |
||
1470 | if ( $master_user_id ) { |
||
1471 | return self::get_connected_user_email( $master_user_id ); |
||
1472 | } |
||
1473 | return ''; |
||
1474 | } |
||
1475 | |||
1476 | function current_user_is_connection_owner() { |
||
1477 | $user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
1478 | return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id; |
||
1479 | } |
||
1480 | |||
1481 | /** |
||
1482 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. |
||
1483 | */ |
||
1484 | function extra_oembed_providers() { |
||
1485 | // Cloudup: https://dev.cloudup.com/#oembed |
||
1486 | wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' ); |
||
1487 | wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' ); |
||
1488 | wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true ); |
||
1489 | wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true ); |
||
1490 | wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true ); |
||
1491 | } |
||
1492 | |||
1493 | /** |
||
1494 | * Synchronize connected user role changes |
||
1495 | */ |
||
1496 | function user_role_change( $user_id ) { |
||
1497 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' ); |
||
1498 | Jetpack_Sync_Users::user_role_change( $user_id ); |
||
1499 | } |
||
1500 | |||
1501 | /** |
||
1502 | * Loads the currently active modules. |
||
1503 | */ |
||
1504 | public static function load_modules() { |
||
1505 | if ( ! self::is_active() && !self::is_development_mode() ) { |
||
1506 | if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) { |
||
1507 | return; |
||
1508 | } |
||
1509 | } |
||
1510 | |||
1511 | $version = Jetpack_Options::get_option( 'version' ); |
||
1512 | View Code Duplication | if ( ! $version ) { |
|
1513 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
1514 | /** This action is documented in class.jetpack.php */ |
||
1515 | do_action( 'updating_jetpack_version', $version, false ); |
||
1516 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
1517 | } |
||
1518 | list( $version ) = explode( ':', $version ); |
||
1519 | |||
1520 | $modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) ); |
||
1521 | |||
1522 | $modules_data = array(); |
||
1523 | |||
1524 | // Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check. |
||
1525 | if ( version_compare( $version, JETPACK__VERSION, '<' ) ) { |
||
1526 | $updated_modules = array(); |
||
1527 | foreach ( $modules as $module ) { |
||
1528 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
1529 | if ( ! isset( $modules_data[ $module ]['changed'] ) ) { |
||
1530 | continue; |
||
1531 | } |
||
1532 | |||
1533 | if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) { |
||
1534 | continue; |
||
1535 | } |
||
1536 | |||
1537 | $updated_modules[] = $module; |
||
1538 | } |
||
1539 | |||
1540 | $modules = array_diff( $modules, $updated_modules ); |
||
1541 | } |
||
1542 | |||
1543 | $is_development_mode = Jetpack::is_development_mode(); |
||
1544 | |||
1545 | foreach ( $modules as $index => $module ) { |
||
1546 | // If we're in dev mode, disable modules requiring a connection |
||
1547 | if ( $is_development_mode ) { |
||
1548 | // Prime the pump if we need to |
||
1549 | if ( empty( $modules_data[ $module ] ) ) { |
||
1550 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
1551 | } |
||
1552 | // If the module requires a connection, but we're in local mode, don't include it. |
||
1553 | if ( $modules_data[ $module ]['requires_connection'] ) { |
||
1554 | continue; |
||
1555 | } |
||
1556 | } |
||
1557 | |||
1558 | if ( did_action( 'jetpack_module_loaded_' . $module ) ) { |
||
1559 | continue; |
||
1560 | } |
||
1561 | |||
1562 | if ( ! @include( Jetpack::get_module_path( $module ) ) ) { |
||
1563 | unset( $modules[ $index ] ); |
||
1564 | self::update_active_modules( array_values( $modules ) ); |
||
1565 | continue; |
||
1566 | } |
||
1567 | |||
1568 | /** |
||
1569 | * Fires when a specific module is loaded. |
||
1570 | * The dynamic part of the hook, $module, is the module slug. |
||
1571 | * |
||
1572 | * @since 1.1.0 |
||
1573 | */ |
||
1574 | do_action( 'jetpack_module_loaded_' . $module ); |
||
1575 | } |
||
1576 | |||
1577 | /** |
||
1578 | * Fires when all the modules are loaded. |
||
1579 | * |
||
1580 | * @since 1.1.0 |
||
1581 | */ |
||
1582 | do_action( 'jetpack_modules_loaded' ); |
||
1583 | |||
1584 | // Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme. |
||
1585 | if ( Jetpack::is_active() || Jetpack::is_development_mode() ) |
||
1586 | require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' ); |
||
1587 | } |
||
1588 | |||
1589 | /** |
||
1590 | * Check if Jetpack's REST API compat file should be included |
||
1591 | * @action plugins_loaded |
||
1592 | * @return null |
||
1593 | */ |
||
1594 | public function check_rest_api_compat() { |
||
1595 | /** |
||
1596 | * Filters the list of REST API compat files to be included. |
||
1597 | * |
||
1598 | * @since 2.2.5 |
||
1599 | * |
||
1600 | * @param array $args Array of REST API compat files to include. |
||
1601 | */ |
||
1602 | $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() ); |
||
1603 | |||
1604 | if ( function_exists( 'bbpress' ) ) |
||
1605 | $_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php'; |
||
1606 | |||
1607 | foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include ) |
||
1608 | require_once $_jetpack_rest_api_compat_include; |
||
1609 | } |
||
1610 | |||
1611 | /** |
||
1612 | * Gets all plugins currently active in values, regardless of whether they're |
||
1613 | * traditionally activated or network activated. |
||
1614 | * |
||
1615 | * @todo Store the result in core's object cache maybe? |
||
1616 | */ |
||
1617 | public static function get_active_plugins() { |
||
1618 | $active_plugins = (array) get_option( 'active_plugins', array() ); |
||
1619 | |||
1620 | if ( is_multisite() ) { |
||
1621 | // Due to legacy code, active_sitewide_plugins stores them in the keys, |
||
1622 | // whereas active_plugins stores them in the values. |
||
1623 | $network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); |
||
1624 | if ( $network_plugins ) { |
||
1625 | $active_plugins = array_merge( $active_plugins, $network_plugins ); |
||
1626 | } |
||
1627 | } |
||
1628 | |||
1629 | sort( $active_plugins ); |
||
1630 | |||
1631 | return array_unique( $active_plugins ); |
||
1632 | } |
||
1633 | |||
1634 | /** |
||
1635 | * Gets and parses additional plugin data to send with the heartbeat data |
||
1636 | * |
||
1637 | * @since 3.8.1 |
||
1638 | * |
||
1639 | * @return array Array of plugin data |
||
1640 | */ |
||
1641 | public static function get_parsed_plugin_data() { |
||
1642 | if ( ! function_exists( 'get_plugins' ) ) { |
||
1643 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
||
1644 | } |
||
1645 | /** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */ |
||
1646 | $all_plugins = apply_filters( 'all_plugins', get_plugins() ); |
||
1647 | $active_plugins = Jetpack::get_active_plugins(); |
||
1648 | |||
1649 | $plugins = array(); |
||
1650 | foreach ( $all_plugins as $path => $plugin_data ) { |
||
1651 | $plugins[ $path ] = array( |
||
1652 | 'is_active' => in_array( $path, $active_plugins ), |
||
1653 | 'file' => $path, |
||
1654 | 'name' => $plugin_data['Name'], |
||
1655 | 'version' => $plugin_data['Version'], |
||
1656 | 'author' => $plugin_data['Author'], |
||
1657 | ); |
||
1658 | } |
||
1659 | |||
1660 | return $plugins; |
||
1661 | } |
||
1662 | |||
1663 | /** |
||
1664 | * Gets and parses theme data to send with the heartbeat data |
||
1665 | * |
||
1666 | * @since 3.8.1 |
||
1667 | * |
||
1668 | * @return array Array of theme data |
||
1669 | */ |
||
1670 | public static function get_parsed_theme_data() { |
||
1671 | $all_themes = wp_get_themes( array( 'allowed' => true ) ); |
||
1672 | $header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' ); |
||
1673 | |||
1674 | $themes = array(); |
||
1675 | foreach ( $all_themes as $slug => $theme_data ) { |
||
1676 | $theme_headers = array(); |
||
1677 | foreach ( $header_keys as $header_key ) { |
||
1678 | $theme_headers[ $header_key ] = $theme_data->get( $header_key ); |
||
1679 | } |
||
1680 | |||
1681 | $themes[ $slug ] = array( |
||
1682 | 'is_active_theme' => $slug == wp_get_theme()->get_template(), |
||
1683 | 'slug' => $slug, |
||
1684 | 'theme_root' => $theme_data->get_theme_root_uri(), |
||
1685 | 'parent' => $theme_data->parent(), |
||
1686 | 'headers' => $theme_headers |
||
1687 | ); |
||
1688 | } |
||
1689 | |||
1690 | return $themes; |
||
1691 | } |
||
1692 | |||
1693 | /** |
||
1694 | * Checks whether a specific plugin is active. |
||
1695 | * |
||
1696 | * We don't want to store these in a static variable, in case |
||
1697 | * there are switch_to_blog() calls involved. |
||
1698 | */ |
||
1699 | public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { |
||
1700 | return in_array( $plugin, self::get_active_plugins() ); |
||
1701 | } |
||
1702 | |||
1703 | /** |
||
1704 | * Check if Jetpack's Open Graph tags should be used. |
||
1705 | * If certain plugins are active, Jetpack's og tags are suppressed. |
||
1706 | * |
||
1707 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
1708 | * @action plugins_loaded |
||
1709 | * @return null |
||
1710 | */ |
||
1711 | public function check_open_graph() { |
||
1712 | if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) { |
||
1713 | add_filter( 'jetpack_enable_open_graph', '__return_true', 0 ); |
||
1714 | } |
||
1715 | |||
1716 | $active_plugins = self::get_active_plugins(); |
||
1717 | |||
1718 | if ( ! empty( $active_plugins ) ) { |
||
1719 | foreach ( $this->open_graph_conflicting_plugins as $plugin ) { |
||
1720 | if ( in_array( $plugin, $active_plugins ) ) { |
||
1721 | add_filter( 'jetpack_enable_open_graph', '__return_false', 99 ); |
||
1722 | break; |
||
1723 | } |
||
1724 | } |
||
1725 | } |
||
1726 | |||
1727 | /** |
||
1728 | * Allow the addition of Open Graph Meta Tags to all pages. |
||
1729 | * |
||
1730 | * @since 2.0.3 |
||
1731 | * |
||
1732 | * @param bool false Should Open Graph Meta tags be added. Default to false. |
||
1733 | */ |
||
1734 | if ( apply_filters( 'jetpack_enable_open_graph', false ) ) { |
||
1735 | require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php'; |
||
1736 | } |
||
1737 | } |
||
1738 | |||
1739 | /** |
||
1740 | * Check if Jetpack's Twitter tags should be used. |
||
1741 | * If certain plugins are active, Jetpack's twitter tags are suppressed. |
||
1742 | * |
||
1743 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
1744 | * @action plugins_loaded |
||
1745 | * @return null |
||
1746 | */ |
||
1747 | public function check_twitter_tags() { |
||
1748 | |||
1749 | $active_plugins = self::get_active_plugins(); |
||
1750 | |||
1751 | if ( ! empty( $active_plugins ) ) { |
||
1752 | foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) { |
||
1753 | if ( in_array( $plugin, $active_plugins ) ) { |
||
1754 | add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 ); |
||
1755 | break; |
||
1756 | } |
||
1757 | } |
||
1758 | } |
||
1759 | |||
1760 | /** |
||
1761 | * Allow Twitter Card Meta tags to be disabled. |
||
1762 | * |
||
1763 | * @since 2.6.0 |
||
1764 | * |
||
1765 | * @param bool true Should Twitter Card Meta tags be disabled. Default to true. |
||
1766 | */ |
||
1767 | if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) { |
||
1768 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php'; |
||
1769 | } |
||
1770 | } |
||
1771 | |||
1772 | /** |
||
1773 | * Allows plugins to submit security reports. |
||
1774 | * |
||
1775 | * @param string $type Report type (login_form, backup, file_scanning, spam) |
||
1776 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data |
||
1777 | * @param array $args See definitions above |
||
1778 | */ |
||
1779 | public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { |
||
1780 | _deprecated_function( __FUNCTION__, 'jetpack-4.2', null ); |
||
1781 | } |
||
1782 | |||
1783 | /* Jetpack Options API */ |
||
1784 | |||
1785 | public static function get_option_names( $type = 'compact' ) { |
||
1786 | return Jetpack_Options::get_option_names( $type ); |
||
1787 | } |
||
1788 | |||
1789 | /** |
||
1790 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. |
||
1791 | * |
||
1792 | * @param string $name Option name |
||
1793 | * @param mixed $default (optional) |
||
1794 | */ |
||
1795 | public static function get_option( $name, $default = false ) { |
||
1796 | return Jetpack_Options::get_option( $name, $default ); |
||
1797 | } |
||
1798 | |||
1799 | /** |
||
1800 | * Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action |
||
1801 | * Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted |
||
1802 | * $name must be a registered option name. |
||
1803 | */ |
||
1804 | public static function create_nonce( $name ) { |
||
1805 | $secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 ); |
||
1806 | |||
1807 | Jetpack_Options::update_option( $name, $secret ); |
||
1808 | @list( $secret_1, $secret_2, $eol ) = explode( ':', Jetpack_Options::get_option( $name ) ); |
||
1809 | if ( empty( $secret_1 ) || empty( $secret_2 ) || $eol < time() ) |
||
1810 | return new Jetpack_Error( 'missing_secrets' ); |
||
1811 | |||
1812 | return array( |
||
1813 | 'secret_1' => $secret_1, |
||
1814 | 'secret_2' => $secret_2, |
||
1815 | 'eol' => $eol, |
||
1816 | ); |
||
1817 | } |
||
1818 | |||
1819 | /** |
||
1820 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. |
||
1821 | * |
||
1822 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. |
||
1823 | * @param string $name Option name |
||
1824 | * @param mixed $value Option value |
||
1825 | */ |
||
1826 | public static function update_option( $name, $value ) { |
||
1827 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' ); |
||
1828 | return Jetpack_Options::update_option( $name, $value ); |
||
1829 | } |
||
1830 | |||
1831 | /** |
||
1832 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. |
||
1833 | * |
||
1834 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. |
||
1835 | * @param array $array array( option name => option value, ... ) |
||
1836 | */ |
||
1837 | public static function update_options( $array ) { |
||
1838 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' ); |
||
1839 | return Jetpack_Options::update_options( $array ); |
||
1840 | } |
||
1841 | |||
1842 | /** |
||
1843 | * Deletes the given option. May be passed multiple option names as an array. |
||
1844 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. |
||
1845 | * |
||
1846 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. |
||
1847 | * @param string|array $names |
||
1848 | */ |
||
1849 | public static function delete_option( $names ) { |
||
1850 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' ); |
||
1851 | return Jetpack_Options::delete_option( $names ); |
||
1852 | } |
||
1853 | |||
1854 | /** |
||
1855 | * Enters a user token into the user_tokens option |
||
1856 | * |
||
1857 | * @param int $user_id |
||
1858 | * @param string $token |
||
1859 | * return bool |
||
1860 | */ |
||
1861 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
||
1862 | // not designed for concurrent updates |
||
1863 | $user_tokens = Jetpack_Options::get_option( 'user_tokens' ); |
||
1864 | if ( ! is_array( $user_tokens ) ) |
||
1865 | $user_tokens = array(); |
||
1866 | $user_tokens[$user_id] = $token; |
||
1867 | if ( $is_master_user ) { |
||
1868 | $master_user = $user_id; |
||
1869 | $options = compact( 'user_tokens', 'master_user' ); |
||
1870 | } else { |
||
1871 | $options = compact( 'user_tokens' ); |
||
1872 | } |
||
1873 | return Jetpack_Options::update_options( $options ); |
||
1874 | } |
||
1875 | |||
1876 | /** |
||
1877 | * Returns an array of all PHP files in the specified absolute path. |
||
1878 | * Equivalent to glob( "$absolute_path/*.php" ). |
||
1879 | * |
||
1880 | * @param string $absolute_path The absolute path of the directory to search. |
||
1881 | * @return array Array of absolute paths to the PHP files. |
||
1882 | */ |
||
1883 | public static function glob_php( $absolute_path ) { |
||
1884 | if ( function_exists( 'glob' ) ) { |
||
1885 | return glob( "$absolute_path/*.php" ); |
||
1886 | } |
||
1887 | |||
1888 | $absolute_path = untrailingslashit( $absolute_path ); |
||
1889 | $files = array(); |
||
1890 | if ( ! $dir = @opendir( $absolute_path ) ) { |
||
1891 | return $files; |
||
1892 | } |
||
1893 | |||
1894 | while ( false !== $file = readdir( $dir ) ) { |
||
1895 | if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) { |
||
1896 | continue; |
||
1897 | } |
||
1898 | |||
1899 | $file = "$absolute_path/$file"; |
||
1900 | |||
1901 | if ( ! is_file( $file ) ) { |
||
1902 | continue; |
||
1903 | } |
||
1904 | |||
1905 | $files[] = $file; |
||
1906 | } |
||
1907 | |||
1908 | closedir( $dir ); |
||
1909 | |||
1910 | return $files; |
||
1911 | } |
||
1912 | |||
1913 | public static function activate_new_modules( $redirect = false ) { |
||
1914 | if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { |
||
1915 | return; |
||
1916 | } |
||
1917 | |||
1918 | $jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic] |
||
1919 | View Code Duplication | if ( ! $jetpack_old_version ) { |
|
1920 | $jetpack_old_version = $version = $old_version = '1.1:' . time(); |
||
1921 | /** This action is documented in class.jetpack.php */ |
||
1922 | do_action( 'updating_jetpack_version', $version, false ); |
||
1923 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
1924 | } |
||
1925 | |||
1926 | list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic] |
||
1927 | |||
1928 | if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) { |
||
1929 | return; |
||
1930 | } |
||
1931 | |||
1932 | $active_modules = Jetpack::get_active_modules(); |
||
1933 | $reactivate_modules = array(); |
||
1934 | foreach ( $active_modules as $active_module ) { |
||
1935 | $module = Jetpack::get_module( $active_module ); |
||
1936 | if ( ! isset( $module['changed'] ) ) { |
||
1937 | continue; |
||
1938 | } |
||
1939 | |||
1940 | if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) { |
||
1941 | continue; |
||
1942 | } |
||
1943 | |||
1944 | $reactivate_modules[] = $active_module; |
||
1945 | Jetpack::deactivate_module( $active_module ); |
||
1946 | } |
||
1947 | |||
1948 | $new_version = JETPACK__VERSION . ':' . time(); |
||
1949 | /** This action is documented in class.jetpack.php */ |
||
1950 | do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version ); |
||
1951 | Jetpack_Options::update_options( |
||
1952 | array( |
||
1953 | 'version' => $new_version, |
||
1954 | 'old_version' => $jetpack_old_version, |
||
1955 | ) |
||
1956 | ); |
||
1957 | |||
1958 | Jetpack::state( 'message', 'modules_activated' ); |
||
1959 | Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules ); |
||
1960 | |||
1961 | if ( $redirect ) { |
||
1962 | $page = 'jetpack'; // make sure we redirect to either settings or the jetpack page |
||
1963 | if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) { |
||
1964 | $page = $_GET['page']; |
||
1965 | } |
||
1966 | |||
1967 | wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) ); |
||
1968 | exit; |
||
1969 | } |
||
1970 | } |
||
1971 | |||
1972 | /** |
||
1973 | * List available Jetpack modules. Simply lists .php files in /modules/. |
||
1974 | * Make sure to tuck away module "library" files in a sub-directory. |
||
1975 | */ |
||
1976 | public static function get_available_modules( $min_version = false, $max_version = false ) { |
||
1977 | static $modules = null; |
||
1978 | |||
1979 | if ( ! isset( $modules ) ) { |
||
1980 | $available_modules_option = Jetpack_Options::get_option( 'available_modules', array() ); |
||
1981 | // Use the cache if we're on the front-end and it's available... |
||
1982 | if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) { |
||
1983 | $modules = $available_modules_option[ JETPACK__VERSION ]; |
||
1984 | } else { |
||
1985 | $files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' ); |
||
1986 | |||
1987 | $modules = array(); |
||
1988 | |||
1989 | foreach ( $files as $file ) { |
||
1990 | if ( ! $headers = Jetpack::get_module( $file ) ) { |
||
1991 | continue; |
||
1992 | } |
||
1993 | |||
1994 | $modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced']; |
||
1995 | } |
||
1996 | |||
1997 | Jetpack_Options::update_option( 'available_modules', array( |
||
1998 | JETPACK__VERSION => $modules, |
||
1999 | ) ); |
||
2000 | } |
||
2001 | } |
||
2002 | |||
2003 | /** |
||
2004 | * Filters the array of modules available to be activated. |
||
2005 | * |
||
2006 | * @since 2.4.0 |
||
2007 | * |
||
2008 | * @param array $modules Array of available modules. |
||
2009 | * @param string $min_version Minimum version number required to use modules. |
||
2010 | * @param string $max_version Maximum version number required to use modules. |
||
2011 | */ |
||
2012 | $mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version ); |
||
2013 | |||
2014 | if ( ! $min_version && ! $max_version ) { |
||
2015 | return array_keys( $mods ); |
||
2016 | } |
||
2017 | |||
2018 | $r = array(); |
||
2019 | foreach ( $mods as $slug => $introduced ) { |
||
2020 | if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) { |
||
2021 | continue; |
||
2022 | } |
||
2023 | |||
2024 | if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) { |
||
2025 | continue; |
||
2026 | } |
||
2027 | |||
2028 | $r[] = $slug; |
||
2029 | } |
||
2030 | |||
2031 | return $r; |
||
2032 | } |
||
2033 | |||
2034 | /** |
||
2035 | * Default modules loaded on activation. |
||
2036 | */ |
||
2037 | public static function get_default_modules( $min_version = false, $max_version = false ) { |
||
2038 | $return = array(); |
||
2039 | |||
2040 | foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) { |
||
2041 | $module_data = Jetpack::get_module( $module ); |
||
2042 | |||
2043 | switch ( strtolower( $module_data['auto_activate'] ) ) { |
||
2044 | case 'yes' : |
||
2045 | $return[] = $module; |
||
2046 | break; |
||
2047 | case 'public' : |
||
2048 | if ( Jetpack_Options::get_option( 'public' ) ) { |
||
2049 | $return[] = $module; |
||
2050 | } |
||
2051 | break; |
||
2052 | case 'no' : |
||
2053 | default : |
||
2054 | break; |
||
2055 | } |
||
2056 | } |
||
2057 | /** |
||
2058 | * Filters the array of default modules. |
||
2059 | * |
||
2060 | * @since 2.5.0 |
||
2061 | * |
||
2062 | * @param array $return Array of default modules. |
||
2063 | * @param string $min_version Minimum version number required to use modules. |
||
2064 | * @param string $max_version Maximum version number required to use modules. |
||
2065 | */ |
||
2066 | return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version ); |
||
2067 | } |
||
2068 | |||
2069 | /** |
||
2070 | * Checks activated modules during auto-activation to determine |
||
2071 | * if any of those modules are being deprecated. If so, close |
||
2072 | * them out, and add any replacement modules. |
||
2073 | * |
||
2074 | * Runs at priority 99 by default. |
||
2075 | * |
||
2076 | * This is run late, so that it can still activate a module if |
||
2077 | * the new module is a replacement for another that the user |
||
2078 | * currently has active, even if something at the normal priority |
||
2079 | * would kibosh everything. |
||
2080 | * |
||
2081 | * @since 2.6 |
||
2082 | * @uses jetpack_get_default_modules filter |
||
2083 | * @param array $modules |
||
2084 | * @return array |
||
2085 | */ |
||
2086 | function handle_deprecated_modules( $modules ) { |
||
2087 | $deprecated_modules = array( |
||
2088 | 'debug' => null, // Closed out and moved to ./class.jetpack-debugger.php |
||
2089 | 'wpcc' => 'sso', // Closed out in 2.6 -- SSO provides the same functionality. |
||
2090 | 'gplus-authorship' => null, // Closed out in 3.2 -- Google dropped support. |
||
2091 | ); |
||
2092 | |||
2093 | // Don't activate SSO if they never completed activating WPCC. |
||
2094 | if ( Jetpack::is_module_active( 'wpcc' ) ) { |
||
2095 | $wpcc_options = Jetpack_Options::get_option( 'wpcc_options' ); |
||
2096 | if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) { |
||
2097 | $deprecated_modules['wpcc'] = null; |
||
2098 | } |
||
2099 | } |
||
2100 | |||
2101 | foreach ( $deprecated_modules as $module => $replacement ) { |
||
2102 | if ( Jetpack::is_module_active( $module ) ) { |
||
2103 | self::deactivate_module( $module ); |
||
2104 | if ( $replacement ) { |
||
2105 | $modules[] = $replacement; |
||
2106 | } |
||
2107 | } |
||
2108 | } |
||
2109 | |||
2110 | return array_unique( $modules ); |
||
2111 | } |
||
2112 | |||
2113 | /** |
||
2114 | * Checks activated plugins during auto-activation to determine |
||
2115 | * if any of those plugins are in the list with a corresponding module |
||
2116 | * that is not compatible with the plugin. The module will not be allowed |
||
2117 | * to auto-activate. |
||
2118 | * |
||
2119 | * @since 2.6 |
||
2120 | * @uses jetpack_get_default_modules filter |
||
2121 | * @param array $modules |
||
2122 | * @return array |
||
2123 | */ |
||
2124 | function filter_default_modules( $modules ) { |
||
2125 | |||
2126 | $active_plugins = self::get_active_plugins(); |
||
2127 | |||
2128 | if ( ! empty( $active_plugins ) ) { |
||
2129 | |||
2130 | // For each module we'd like to auto-activate... |
||
2131 | foreach ( $modules as $key => $module ) { |
||
2132 | // If there are potential conflicts for it... |
||
2133 | if ( ! empty( $this->conflicting_plugins[ $module ] ) ) { |
||
2134 | // For each potential conflict... |
||
2135 | foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) { |
||
2136 | // If that conflicting plugin is active... |
||
2137 | if ( in_array( $plugin, $active_plugins ) ) { |
||
2138 | // Remove that item from being auto-activated. |
||
2139 | unset( $modules[ $key ] ); |
||
2140 | } |
||
2141 | } |
||
2142 | } |
||
2143 | } |
||
2144 | } |
||
2145 | |||
2146 | return $modules; |
||
2147 | } |
||
2148 | |||
2149 | /** |
||
2150 | * Extract a module's slug from its full path. |
||
2151 | */ |
||
2152 | public static function get_module_slug( $file ) { |
||
2153 | return str_replace( '.php', '', basename( $file ) ); |
||
2154 | } |
||
2155 | |||
2156 | /** |
||
2157 | * Generate a module's path from its slug. |
||
2158 | */ |
||
2159 | public static function get_module_path( $slug ) { |
||
2160 | return JETPACK__PLUGIN_DIR . "modules/$slug.php"; |
||
2161 | } |
||
2162 | |||
2163 | /** |
||
2164 | * Load module data from module file. Headers differ from WordPress |
||
2165 | * plugin headers to avoid them being identified as standalone |
||
2166 | * plugins on the WordPress plugins page. |
||
2167 | */ |
||
2168 | public static function get_module( $module ) { |
||
2169 | $headers = array( |
||
2170 | 'name' => 'Module Name', |
||
2171 | 'description' => 'Module Description', |
||
2172 | 'jumpstart_desc' => 'Jumpstart Description', |
||
2173 | 'sort' => 'Sort Order', |
||
2174 | 'recommendation_order' => 'Recommendation Order', |
||
2175 | 'introduced' => 'First Introduced', |
||
2176 | 'changed' => 'Major Changes In', |
||
2177 | 'deactivate' => 'Deactivate', |
||
2178 | 'free' => 'Free', |
||
2179 | 'requires_connection' => 'Requires Connection', |
||
2180 | 'auto_activate' => 'Auto Activate', |
||
2181 | 'module_tags' => 'Module Tags', |
||
2182 | 'feature' => 'Feature', |
||
2183 | 'additional_search_queries' => 'Additional Search Queries', |
||
2184 | ); |
||
2185 | |||
2186 | $file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) ); |
||
2187 | |||
2188 | $mod = Jetpack::get_file_data( $file, $headers ); |
||
2189 | if ( empty( $mod['name'] ) ) { |
||
2190 | return false; |
||
2191 | } |
||
2192 | |||
2193 | $mod['sort'] = empty( $mod['sort'] ) ? 10 : (int) $mod['sort']; |
||
2194 | $mod['recommendation_order'] = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order']; |
||
2195 | $mod['deactivate'] = empty( $mod['deactivate'] ); |
||
2196 | $mod['free'] = empty( $mod['free'] ); |
||
2197 | $mod['requires_connection'] = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true; |
||
2198 | |||
2199 | if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) { |
||
2200 | $mod['auto_activate'] = 'No'; |
||
2201 | } else { |
||
2202 | $mod['auto_activate'] = (string) $mod['auto_activate']; |
||
2203 | } |
||
2204 | |||
2205 | if ( $mod['module_tags'] ) { |
||
2206 | $mod['module_tags'] = explode( ',', $mod['module_tags'] ); |
||
2207 | $mod['module_tags'] = array_map( 'trim', $mod['module_tags'] ); |
||
2208 | $mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] ); |
||
2209 | } else { |
||
2210 | $mod['module_tags'] = array( self::translate_module_tag( 'Other' ) ); |
||
2211 | } |
||
2212 | |||
2213 | if ( $mod['feature'] ) { |
||
2214 | $mod['feature'] = explode( ',', $mod['feature'] ); |
||
2215 | $mod['feature'] = array_map( 'trim', $mod['feature'] ); |
||
2216 | } else { |
||
2217 | $mod['feature'] = array( self::translate_module_tag( 'Other' ) ); |
||
2218 | } |
||
2219 | |||
2220 | /** |
||
2221 | * Filters the feature array on a module. |
||
2222 | * |
||
2223 | * This filter allows you to control where each module is filtered: Recommended, |
||
2224 | * Jumpstart, and the default "Other" listing. |
||
2225 | * |
||
2226 | * @since 3.5.0 |
||
2227 | * |
||
2228 | * @param array $mod['feature'] The areas to feature this module: |
||
2229 | * 'Jumpstart' adds to the "Jumpstart" option to activate many modules at once. |
||
2230 | * 'Recommended' shows on the main Jetpack admin screen. |
||
2231 | * 'Other' should be the default if no other value is in the array. |
||
2232 | * @param string $module The slug of the module, e.g. sharedaddy. |
||
2233 | * @param array $mod All the currently assembled module data. |
||
2234 | */ |
||
2235 | $mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod ); |
||
2236 | |||
2237 | /** |
||
2238 | * Filter the returned data about a module. |
||
2239 | * |
||
2240 | * This filter allows overriding any info about Jetpack modules. It is dangerous, |
||
2241 | * so please be careful. |
||
2242 | * |
||
2243 | * @since 3.6.0 |
||
2244 | * |
||
2245 | * @param array $mod The details of the requested module. |
||
2246 | * @param string $module The slug of the module, e.g. sharedaddy |
||
2247 | * @param string $file The path to the module source file. |
||
2248 | */ |
||
2249 | return apply_filters( 'jetpack_get_module', $mod, $module, $file ); |
||
2250 | } |
||
2251 | |||
2252 | /** |
||
2253 | * Like core's get_file_data implementation, but caches the result. |
||
2254 | */ |
||
2255 | public static function get_file_data( $file, $headers ) { |
||
2256 | //Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated |
||
2257 | $file_name = basename( $file ); |
||
2258 | $file_data_option = Jetpack_Options::get_option( 'file_data', array() ); |
||
2259 | $key = md5( $file_name . serialize( $headers ) ); |
||
2260 | $refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 ); |
||
2261 | |||
2262 | // If we don't need to refresh the cache, and already have the value, short-circuit! |
||
2263 | if ( ! $refresh_cache && isset( $file_data_option[ JETPACK__VERSION ][ $key ] ) ) { |
||
2264 | return $file_data_option[ JETPACK__VERSION ][ $key ]; |
||
2265 | } |
||
2266 | |||
2267 | $data = get_file_data( $file, $headers ); |
||
2268 | |||
2269 | // Strip out any old Jetpack versions that are cluttering the option. |
||
2270 | $file_data_option = array_intersect_key( (array) $file_data_option, array( JETPACK__VERSION => null ) ); |
||
2271 | $file_data_option[ JETPACK__VERSION ][ $key ] = $data; |
||
2272 | Jetpack_Options::update_option( 'file_data', $file_data_option ); |
||
2273 | |||
2274 | return $data; |
||
2275 | } |
||
2276 | |||
2277 | /** |
||
2278 | * Return translated module tag. |
||
2279 | * |
||
2280 | * @param string $tag Tag as it appears in each module heading. |
||
2281 | * |
||
2282 | * @return mixed |
||
2283 | */ |
||
2284 | public static function translate_module_tag( $tag ) { |
||
2285 | return jetpack_get_module_i18n_tag( $tag ); |
||
2286 | } |
||
2287 | |||
2288 | /** |
||
2289 | * Return module name translation. Uses matching string created in modules/module-headings.php. |
||
2290 | * |
||
2291 | * @since 3.9.2 |
||
2292 | * |
||
2293 | * @param array $modules |
||
2294 | * |
||
2295 | * @return string|void |
||
2296 | */ |
||
2297 | public static function get_translated_modules( $modules ) { |
||
2298 | foreach ( $modules as $index => $module ) { |
||
2299 | $i18n_module = jetpack_get_module_i18n( $module['module'] ); |
||
2300 | if ( isset( $module['name'] ) ) { |
||
2301 | $modules[ $index ]['name'] = $i18n_module['name']; |
||
2302 | } |
||
2303 | if ( isset( $module['description'] ) ) { |
||
2304 | $modules[ $index ]['description'] = $i18n_module['description']; |
||
2305 | $modules[ $index ]['short_description'] = $i18n_module['description']; |
||
2306 | } |
||
2307 | } |
||
2308 | return $modules; |
||
2309 | } |
||
2310 | |||
2311 | /** |
||
2312 | * Get a list of activated modules as an array of module slugs. |
||
2313 | */ |
||
2314 | public static function get_active_modules() { |
||
2315 | $active = Jetpack_Options::get_option( 'active_modules' ); |
||
2316 | |||
2317 | if ( ! is_array( $active ) ) { |
||
2318 | $active = array(); |
||
2319 | } |
||
2320 | |||
2321 | if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) { |
||
2322 | $active[] = 'vaultpress'; |
||
2323 | } else { |
||
2324 | $active = array_diff( $active, array( 'vaultpress' ) ); |
||
2325 | } |
||
2326 | |||
2327 | //If protect is active on the main site of a multisite, it should be active on all sites. |
||
2328 | if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) { |
||
2329 | $active[] = 'protect'; |
||
2330 | } |
||
2331 | |||
2332 | return array_unique( $active ); |
||
2333 | } |
||
2334 | |||
2335 | /** |
||
2336 | * Check whether or not a Jetpack module is active. |
||
2337 | * |
||
2338 | * @param string $module The slug of a Jetpack module. |
||
2339 | * @return bool |
||
2340 | * |
||
2341 | * @static |
||
2342 | */ |
||
2343 | public static function is_module_active( $module ) { |
||
2344 | return in_array( $module, self::get_active_modules() ); |
||
2345 | } |
||
2346 | |||
2347 | public static function is_module( $module ) { |
||
2348 | return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() ); |
||
2349 | } |
||
2350 | |||
2351 | /** |
||
2352 | * Catches PHP errors. Must be used in conjunction with output buffering. |
||
2353 | * |
||
2354 | * @param bool $catch True to start catching, False to stop. |
||
2355 | * |
||
2356 | * @static |
||
2357 | */ |
||
2358 | public static function catch_errors( $catch ) { |
||
2359 | static $display_errors, $error_reporting; |
||
2360 | |||
2361 | if ( $catch ) { |
||
2362 | $display_errors = @ini_set( 'display_errors', 1 ); |
||
2363 | $error_reporting = @error_reporting( E_ALL ); |
||
2364 | add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); |
||
2365 | } else { |
||
2366 | @ini_set( 'display_errors', $display_errors ); |
||
2367 | @error_reporting( $error_reporting ); |
||
2368 | remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); |
||
2369 | } |
||
2370 | } |
||
2371 | |||
2372 | /** |
||
2373 | * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) |
||
2374 | */ |
||
2375 | public static function catch_errors_on_shutdown() { |
||
2376 | Jetpack::state( 'php_errors', ob_get_clean() ); |
||
2377 | } |
||
2378 | |||
2379 | public static function activate_default_modules( $min_version = false, $max_version = false, $other_modules = array(), $redirect = true ) { |
||
2380 | $jetpack = Jetpack::init(); |
||
2381 | |||
2382 | $modules = Jetpack::get_default_modules( $min_version, $max_version ); |
||
2383 | $modules = array_merge( $other_modules, $modules ); |
||
2384 | |||
2385 | // Look for standalone plugins and disable if active. |
||
2386 | |||
2387 | $to_deactivate = array(); |
||
2388 | foreach ( $modules as $module ) { |
||
2389 | if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) { |
||
2390 | $to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module]; |
||
2391 | } |
||
2392 | } |
||
2393 | |||
2394 | $deactivated = array(); |
||
2395 | foreach ( $to_deactivate as $module => $deactivate_me ) { |
||
2396 | list( $probable_file, $probable_title ) = $deactivate_me; |
||
2397 | if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) { |
||
2398 | $deactivated[] = $module; |
||
2399 | } |
||
2400 | } |
||
2401 | |||
2402 | if ( $deactivated && $redirect ) { |
||
2403 | Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) ); |
||
2404 | |||
2405 | $url = add_query_arg( |
||
2406 | array( |
||
2407 | 'action' => 'activate_default_modules', |
||
2408 | '_wpnonce' => wp_create_nonce( 'activate_default_modules' ), |
||
2409 | ), |
||
2410 | add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) ) |
||
2411 | ); |
||
2412 | wp_safe_redirect( $url ); |
||
2413 | exit; |
||
2414 | } |
||
2415 | |||
2416 | /** |
||
2417 | * Fires before default modules are activated. |
||
2418 | * |
||
2419 | * @since 1.9.0 |
||
2420 | * |
||
2421 | * @param string $min_version Minimum version number required to use modules. |
||
2422 | * @param string $max_version Maximum version number required to use modules. |
||
2423 | * @param array $other_modules Array of other modules to activate alongside the default modules. |
||
2424 | */ |
||
2425 | do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules ); |
||
2426 | |||
2427 | // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating |
||
2428 | Jetpack::restate(); |
||
2429 | Jetpack::catch_errors( true ); |
||
2430 | |||
2431 | $active = Jetpack::get_active_modules(); |
||
2432 | |||
2433 | foreach ( $modules as $module ) { |
||
2434 | if ( did_action( "jetpack_module_loaded_$module" ) ) { |
||
2435 | $active[] = $module; |
||
2436 | self::update_active_modules( $active ); |
||
2437 | continue; |
||
2438 | } |
||
2439 | |||
2440 | if ( in_array( $module, $active ) ) { |
||
2441 | $module_info = Jetpack::get_module( $module ); |
||
2442 | if ( ! $module_info['deactivate'] ) { |
||
2443 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; |
||
2444 | View Code Duplication | if ( $active_state = Jetpack::state( $state ) ) { |
|
2445 | $active_state = explode( ',', $active_state ); |
||
2446 | } else { |
||
2447 | $active_state = array(); |
||
2448 | } |
||
2449 | $active_state[] = $module; |
||
2450 | Jetpack::state( $state, implode( ',', $active_state ) ); |
||
2451 | } |
||
2452 | continue; |
||
2453 | } |
||
2454 | |||
2455 | $file = Jetpack::get_module_path( $module ); |
||
2456 | if ( ! file_exists( $file ) ) { |
||
2457 | continue; |
||
2458 | } |
||
2459 | |||
2460 | // we'll override this later if the plugin can be included without fatal error |
||
2461 | if ( $redirect ) { |
||
2462 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
2463 | } |
||
2464 | Jetpack::state( 'error', 'module_activation_failed' ); |
||
2465 | Jetpack::state( 'module', $module ); |
||
2466 | ob_start(); |
||
2467 | require $file; |
||
2468 | |||
2469 | $active[] = $module; |
||
2470 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; |
||
2471 | View Code Duplication | if ( $active_state = Jetpack::state( $state ) ) { |
|
2472 | $active_state = explode( ',', $active_state ); |
||
2473 | } else { |
||
2474 | $active_state = array(); |
||
2475 | } |
||
2476 | $active_state[] = $module; |
||
2477 | Jetpack::state( $state, implode( ',', $active_state ) ); |
||
2478 | Jetpack::update_active_modules( $active ); |
||
2479 | |||
2480 | ob_end_clean(); |
||
2481 | } |
||
2482 | Jetpack::state( 'error', false ); |
||
2483 | Jetpack::state( 'module', false ); |
||
2484 | Jetpack::catch_errors( false ); |
||
2485 | /** |
||
2486 | * Fires when default modules are activated. |
||
2487 | * |
||
2488 | * @since 1.9.0 |
||
2489 | * |
||
2490 | * @param string $min_version Minimum version number required to use modules. |
||
2491 | * @param string $max_version Maximum version number required to use modules. |
||
2492 | * @param array $other_modules Array of other modules to activate alongside the default modules. |
||
2493 | */ |
||
2494 | do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules ); |
||
2495 | } |
||
2496 | |||
2497 | public static function activate_module( $module, $exit = true, $redirect = true ) { |
||
2498 | /** |
||
2499 | * Fires before a module is activated. |
||
2500 | * |
||
2501 | * @since 2.6.0 |
||
2502 | * |
||
2503 | * @param string $module Module slug. |
||
2504 | * @param bool $exit Should we exit after the module has been activated. Default to true. |
||
2505 | * @param bool $redirect Should the user be redirected after module activation? Default to true. |
||
2506 | */ |
||
2507 | do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect ); |
||
2508 | |||
2509 | $jetpack = Jetpack::init(); |
||
2510 | |||
2511 | if ( ! strlen( $module ) ) |
||
2512 | return false; |
||
2513 | |||
2514 | if ( ! Jetpack::is_module( $module ) ) |
||
2515 | return false; |
||
2516 | |||
2517 | // If it's already active, then don't do it again |
||
2518 | $active = Jetpack::get_active_modules(); |
||
2519 | foreach ( $active as $act ) { |
||
2520 | if ( $act == $module ) |
||
2521 | return true; |
||
2522 | } |
||
2523 | |||
2524 | $module_data = Jetpack::get_module( $module ); |
||
2525 | |||
2526 | if ( ! Jetpack::is_active() ) { |
||
2527 | if ( !Jetpack::is_development_mode() ) |
||
2528 | return false; |
||
2529 | |||
2530 | // If we're not connected but in development mode, make sure the module doesn't require a connection |
||
2531 | if ( Jetpack::is_development_mode() && $module_data['requires_connection'] ) |
||
2532 | return false; |
||
2533 | } |
||
2534 | |||
2535 | // Check and see if the old plugin is active |
||
2536 | if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) { |
||
2537 | // Deactivate the old plugin |
||
2538 | if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) { |
||
2539 | // If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module |
||
2540 | // We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load. |
||
2541 | Jetpack::state( 'deactivated_plugins', $module ); |
||
2542 | wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) ); |
||
2543 | exit; |
||
2544 | } |
||
2545 | } |
||
2546 | |||
2547 | // Protect won't work with mis-configured IPs |
||
2548 | if ( 'protect' === $module ) { |
||
2549 | include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php'; |
||
2550 | if ( ! jetpack_protect_get_ip() ) { |
||
2551 | Jetpack::state( 'message', 'protect_misconfigured_ip' ); |
||
2552 | return false; |
||
2553 | } |
||
2554 | } |
||
2555 | |||
2556 | // Check the file for fatal errors, a la wp-admin/plugins.php::activate |
||
2557 | Jetpack::state( 'module', $module ); |
||
2558 | Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error |
||
2559 | |||
2560 | Jetpack::catch_errors( true ); |
||
2561 | ob_start(); |
||
2562 | require Jetpack::get_module_path( $module ); |
||
2563 | /** This action is documented in class.jetpack.php */ |
||
2564 | do_action( 'jetpack_activate_module', $module ); |
||
2565 | $active[] = $module; |
||
2566 | Jetpack::update_active_modules( $active ); |
||
2567 | |||
2568 | Jetpack::state( 'error', false ); // the override |
||
2569 | ob_end_clean(); |
||
2570 | Jetpack::catch_errors( false ); |
||
2571 | |||
2572 | // A flag for Jump Start so it's not shown again. Only set if it hasn't been yet. |
||
2573 | View Code Duplication | if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) { |
|
2574 | Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' ); |
||
2575 | |||
2576 | //Jump start is being dismissed send data to MC Stats |
||
2577 | $jetpack->stat( 'jumpstart', 'manual,'.$module ); |
||
2578 | |||
2579 | $jetpack->do_stats( 'server_side' ); |
||
2580 | } |
||
2581 | |||
2582 | if ( $redirect ) { |
||
2583 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
2584 | } |
||
2585 | if ( $exit ) { |
||
2586 | exit; |
||
2587 | } |
||
2588 | return true; |
||
2589 | } |
||
2590 | |||
2591 | function activate_module_actions( $module ) { |
||
2592 | _deprecated_function( __METHOD__, 'jeptack-4.2' ); |
||
2593 | } |
||
2594 | |||
2595 | public static function deactivate_module( $module ) { |
||
2596 | /** |
||
2597 | * Fires when a module is deactivated. |
||
2598 | * |
||
2599 | * @since 1.9.0 |
||
2600 | * |
||
2601 | * @param string $module Module slug. |
||
2602 | */ |
||
2603 | do_action( 'jetpack_pre_deactivate_module', $module ); |
||
2604 | |||
2605 | $jetpack = Jetpack::init(); |
||
2606 | |||
2607 | $active = Jetpack::get_active_modules(); |
||
2608 | $new = array_filter( array_diff( $active, (array) $module ) ); |
||
2609 | |||
2610 | // A flag for Jump Start so it's not shown again. |
||
2611 | View Code Duplication | if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) { |
|
2612 | Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' ); |
||
2613 | |||
2614 | //Jump start is being dismissed send data to MC Stats |
||
2615 | $jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module ); |
||
2616 | |||
2617 | $jetpack->do_stats( 'server_side' ); |
||
2618 | } |
||
2619 | |||
2620 | return self::update_active_modules( $new ); |
||
2621 | } |
||
2622 | |||
2623 | public static function enable_module_configurable( $module ) { |
||
2624 | $module = Jetpack::get_module_slug( $module ); |
||
2625 | add_filter( 'jetpack_module_configurable_' . $module, '__return_true' ); |
||
2626 | } |
||
2627 | |||
2628 | public static function module_configuration_url( $module ) { |
||
2629 | $module = Jetpack::get_module_slug( $module ); |
||
2630 | return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) ); |
||
2631 | } |
||
2632 | |||
2633 | public static function module_configuration_load( $module, $method ) { |
||
2634 | $module = Jetpack::get_module_slug( $module ); |
||
2635 | add_action( 'jetpack_module_configuration_load_' . $module, $method ); |
||
2636 | } |
||
2637 | |||
2638 | public static function module_configuration_head( $module, $method ) { |
||
2639 | $module = Jetpack::get_module_slug( $module ); |
||
2640 | add_action( 'jetpack_module_configuration_head_' . $module, $method ); |
||
2641 | } |
||
2642 | |||
2643 | public static function module_configuration_screen( $module, $method ) { |
||
2644 | $module = Jetpack::get_module_slug( $module ); |
||
2645 | add_action( 'jetpack_module_configuration_screen_' . $module, $method ); |
||
2646 | } |
||
2647 | |||
2648 | public static function module_configuration_activation_screen( $module, $method ) { |
||
2649 | $module = Jetpack::get_module_slug( $module ); |
||
2650 | add_action( 'display_activate_module_setting_' . $module, $method ); |
||
2651 | } |
||
2652 | |||
2653 | /* Installation */ |
||
2654 | |||
2655 | public static function bail_on_activation( $message, $deactivate = true ) { |
||
2656 | ?> |
||
2657 | <!doctype html> |
||
2658 | <html> |
||
2659 | <head> |
||
2660 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
||
2661 | <style> |
||
2662 | * { |
||
2663 | text-align: center; |
||
2664 | margin: 0; |
||
2665 | padding: 0; |
||
2666 | font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif; |
||
2667 | } |
||
2668 | p { |
||
2669 | margin-top: 1em; |
||
2670 | font-size: 18px; |
||
2671 | } |
||
2672 | </style> |
||
2673 | <body> |
||
2674 | <p><?php echo esc_html( $message ); ?></p> |
||
2675 | </body> |
||
2676 | </html> |
||
2677 | <?php |
||
2678 | if ( $deactivate ) { |
||
2679 | $plugins = get_option( 'active_plugins' ); |
||
2680 | $jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ); |
||
2681 | $update = false; |
||
2682 | foreach ( $plugins as $i => $plugin ) { |
||
2683 | if ( $plugin === $jetpack ) { |
||
2684 | $plugins[$i] = false; |
||
2685 | $update = true; |
||
2686 | } |
||
2687 | } |
||
2688 | |||
2689 | if ( $update ) { |
||
2690 | update_option( 'active_plugins', array_filter( $plugins ) ); |
||
2691 | } |
||
2692 | } |
||
2693 | exit; |
||
2694 | } |
||
2695 | |||
2696 | /** |
||
2697 | * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() |
||
2698 | * @static |
||
2699 | */ |
||
2700 | public static function plugin_activation( $network_wide ) { |
||
2701 | Jetpack_Options::update_option( 'activated', 1 ); |
||
2702 | |||
2703 | if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) { |
||
2704 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) ); |
||
2705 | } |
||
2706 | |||
2707 | if ( $network_wide ) |
||
2708 | Jetpack::state( 'network_nag', true ); |
||
2709 | |||
2710 | Jetpack::plugin_initialize(); |
||
2711 | } |
||
2712 | /** |
||
2713 | * Runs before bumping version numbers up to a new version |
||
2714 | * @param (string) $version Version:timestamp |
||
2715 | * @param (string) $old_version Old Version:timestamp or false if not set yet. |
||
2716 | * @return null [description] |
||
2717 | */ |
||
2718 | public static function do_version_bump( $version, $old_version ) { |
||
2719 | |||
2720 | if ( ! $old_version ) { // For new sites |
||
2721 | // Setting up jetpack manage |
||
2722 | Jetpack::activate_manage(); |
||
2723 | } |
||
2724 | } |
||
2725 | |||
2726 | /** |
||
2727 | * Sets the internal version number and activation state. |
||
2728 | * @static |
||
2729 | */ |
||
2730 | public static function plugin_initialize() { |
||
2731 | if ( ! Jetpack_Options::get_option( 'activated' ) ) { |
||
2732 | Jetpack_Options::update_option( 'activated', 2 ); |
||
2733 | } |
||
2734 | |||
2735 | View Code Duplication | if ( ! Jetpack_Options::get_option( 'version' ) ) { |
|
2736 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
2737 | /** This action is documented in class.jetpack.php */ |
||
2738 | do_action( 'updating_jetpack_version', $version, false ); |
||
2739 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
2740 | } |
||
2741 | |||
2742 | Jetpack::load_modules(); |
||
2743 | |||
2744 | Jetpack_Options::delete_option( 'do_activate' ); |
||
2745 | } |
||
2746 | |||
2747 | /** |
||
2748 | * Removes all connection options |
||
2749 | * @static |
||
2750 | */ |
||
2751 | public static function plugin_deactivation( ) { |
||
2752 | require_once( ABSPATH . '/wp-admin/includes/plugin.php' ); |
||
2753 | if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
2754 | Jetpack_Network::init()->deactivate(); |
||
2755 | } else { |
||
2756 | Jetpack::disconnect( false ); |
||
2757 | //Jetpack_Heartbeat::init()->deactivate(); |
||
2758 | } |
||
2759 | } |
||
2760 | |||
2761 | /** |
||
2762 | * Disconnects from the Jetpack servers. |
||
2763 | * Forgets all connection details and tells the Jetpack servers to do the same. |
||
2764 | * @static |
||
2765 | */ |
||
2766 | public static function disconnect( $update_activated_state = true ) { |
||
2767 | wp_clear_scheduled_hook( 'jetpack_clean_nonces' ); |
||
2768 | Jetpack::clean_nonces( true ); |
||
2769 | |||
2770 | // If the site is in an IDC because sync is not allowed, |
||
2771 | // let's make sure to not disconnect the production site. |
||
2772 | if ( ! self::validate_sync_error_idc_option() ) { |
||
2773 | JetpackTracking::record_user_event( 'disconnect_site', array() ); |
||
2774 | Jetpack::load_xml_rpc_client(); |
||
2775 | $xml = new Jetpack_IXR_Client(); |
||
2776 | $xml->query( 'jetpack.deregister' ); |
||
2777 | } |
||
2778 | |||
2779 | Jetpack_Options::delete_option( |
||
2780 | array( |
||
2781 | 'register', |
||
2782 | 'blog_token', |
||
2783 | 'user_token', |
||
2784 | 'user_tokens', |
||
2785 | 'master_user', |
||
2786 | 'time_diff', |
||
2787 | 'fallback_no_verify_ssl_certs', |
||
2788 | ) |
||
2789 | ); |
||
2790 | |||
2791 | Jetpack_IDC::clear_all_idc_options(); |
||
2792 | |||
2793 | if ( $update_activated_state ) { |
||
2794 | Jetpack_Options::update_option( 'activated', 4 ); |
||
2795 | } |
||
2796 | |||
2797 | if ( $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ) ) { |
||
2798 | // Check then record unique disconnection if site has never been disconnected previously |
||
2799 | if ( - 1 == $jetpack_unique_connection['disconnected'] ) { |
||
2800 | $jetpack_unique_connection['disconnected'] = 1; |
||
2801 | } else { |
||
2802 | if ( 0 == $jetpack_unique_connection['disconnected'] ) { |
||
2803 | //track unique disconnect |
||
2804 | $jetpack = Jetpack::init(); |
||
2805 | |||
2806 | $jetpack->stat( 'connections', 'unique-disconnect' ); |
||
2807 | $jetpack->do_stats( 'server_side' ); |
||
2808 | } |
||
2809 | // increment number of times disconnected |
||
2810 | $jetpack_unique_connection['disconnected'] += 1; |
||
2811 | } |
||
2812 | |||
2813 | Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection ); |
||
2814 | } |
||
2815 | |||
2816 | // Delete cached connected user data |
||
2817 | $transient_key = "jetpack_connected_user_data_" . get_current_user_id(); |
||
2818 | delete_transient( $transient_key ); |
||
2819 | |||
2820 | // Delete all the sync related data. Since it could be taking up space. |
||
2821 | require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-sender.php'; |
||
2822 | Jetpack_Sync_Sender::get_instance()->uninstall(); |
||
2823 | |||
2824 | // Disable the Heartbeat cron |
||
2825 | Jetpack_Heartbeat::init()->deactivate(); |
||
2826 | } |
||
2827 | |||
2828 | /** |
||
2829 | * Unlinks the current user from the linked WordPress.com user |
||
2830 | */ |
||
2831 | public static function unlink_user( $user_id = null ) { |
||
2832 | if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) ) |
||
2833 | return false; |
||
2834 | |||
2835 | $user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id ); |
||
2836 | |||
2837 | if ( Jetpack_Options::get_option( 'master_user' ) == $user_id ) |
||
2838 | return false; |
||
2839 | |||
2840 | if ( ! isset( $tokens[ $user_id ] ) ) |
||
2841 | return false; |
||
2842 | |||
2843 | Jetpack::load_xml_rpc_client(); |
||
2844 | $xml = new Jetpack_IXR_Client( compact( 'user_id' ) ); |
||
2845 | $xml->query( 'jetpack.unlink_user', $user_id ); |
||
2846 | |||
2847 | unset( $tokens[ $user_id ] ); |
||
2848 | |||
2849 | Jetpack_Options::update_option( 'user_tokens', $tokens ); |
||
2850 | |||
2851 | /** |
||
2852 | * Fires after the current user has been unlinked from WordPress.com. |
||
2853 | * |
||
2854 | * @since 4.1.0 |
||
2855 | * |
||
2856 | * @param int $user_id The current user's ID. |
||
2857 | */ |
||
2858 | do_action( 'jetpack_unlinked_user', $user_id ); |
||
2859 | |||
2860 | return true; |
||
2861 | } |
||
2862 | |||
2863 | /** |
||
2864 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() |
||
2865 | */ |
||
2866 | public static function try_registration() { |
||
2867 | // Let's get some testing in beta versions and such. |
||
2868 | if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) { |
||
2869 | // Before attempting to connect, let's make sure that the domains are viable. |
||
2870 | $domains_to_check = array_unique( array( |
||
2871 | 'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ), |
||
2872 | 'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ), |
||
2873 | ) ); |
||
2874 | foreach ( $domains_to_check as $domain ) { |
||
2875 | $result = Jetpack_Data::is_usable_domain( $domain ); |
||
2876 | if ( is_wp_error( $result ) ) { |
||
2877 | return $result; |
||
2878 | } |
||
2879 | } |
||
2880 | } |
||
2881 | |||
2882 | $result = Jetpack::register(); |
||
2883 | |||
2884 | // If there was an error with registration and the site was not registered, record this so we can show a message. |
||
2885 | if ( ! $result || is_wp_error( $result ) ) { |
||
2886 | return $result; |
||
2887 | } else { |
||
2888 | return true; |
||
2889 | } |
||
2890 | } |
||
2891 | |||
2892 | /** |
||
2893 | * Tracking an internal event log. Try not to put too much chaff in here. |
||
2894 | * |
||
2895 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) |
||
2896 | */ |
||
2897 | public static function log( $code, $data = null ) { |
||
2898 | // only grab the latest 200 entries |
||
2899 | $log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 ); |
||
2900 | |||
2901 | // Append our event to the log |
||
2902 | $log_entry = array( |
||
2903 | 'time' => time(), |
||
2904 | 'user_id' => get_current_user_id(), |
||
2905 | 'blog_id' => Jetpack_Options::get_option( 'id' ), |
||
2906 | 'code' => $code, |
||
2907 | ); |
||
2908 | // Don't bother storing it unless we've got some. |
||
2909 | if ( ! is_null( $data ) ) { |
||
2910 | $log_entry['data'] = $data; |
||
2911 | } |
||
2912 | $log[] = $log_entry; |
||
2913 | |||
2914 | // Try add_option first, to make sure it's not autoloaded. |
||
2915 | // @todo: Add an add_option method to Jetpack_Options |
||
2916 | if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) { |
||
2917 | Jetpack_Options::update_option( 'log', $log ); |
||
2918 | } |
||
2919 | |||
2920 | /** |
||
2921 | * Fires when Jetpack logs an internal event. |
||
2922 | * |
||
2923 | * @since 3.0.0 |
||
2924 | * |
||
2925 | * @param array $log_entry { |
||
2926 | * Array of details about the log entry. |
||
2927 | * |
||
2928 | * @param string time Time of the event. |
||
2929 | * @param int user_id ID of the user who trigerred the event. |
||
2930 | * @param int blog_id Jetpack Blog ID. |
||
2931 | * @param string code Unique name for the event. |
||
2932 | * @param string data Data about the event. |
||
2933 | * } |
||
2934 | */ |
||
2935 | do_action( 'jetpack_log_entry', $log_entry ); |
||
2936 | } |
||
2937 | |||
2938 | /** |
||
2939 | * Get the internal event log. |
||
2940 | * |
||
2941 | * @param $event (string) - only return the specific log events |
||
2942 | * @param $num (int) - get specific number of latest results, limited to 200 |
||
2943 | * |
||
2944 | * @return array of log events || WP_Error for invalid params |
||
2945 | */ |
||
2946 | public static function get_log( $event = false, $num = false ) { |
||
2947 | if ( $event && ! is_string( $event ) ) { |
||
2948 | return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) ); |
||
2949 | } |
||
2950 | |||
2951 | if ( $num && ! is_numeric( $num ) ) { |
||
2952 | return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) ); |
||
2953 | } |
||
2954 | |||
2955 | $entire_log = Jetpack_Options::get_option( 'log', array() ); |
||
2956 | |||
2957 | // If nothing set - act as it did before, otherwise let's start customizing the output |
||
2958 | if ( ! $num && ! $event ) { |
||
2959 | return $entire_log; |
||
2960 | } else { |
||
2961 | $entire_log = array_reverse( $entire_log ); |
||
2962 | } |
||
2963 | |||
2964 | $custom_log_output = array(); |
||
2965 | |||
2966 | if ( $event ) { |
||
2967 | foreach ( $entire_log as $log_event ) { |
||
2968 | if ( $event == $log_event[ 'code' ] ) { |
||
2969 | $custom_log_output[] = $log_event; |
||
2970 | } |
||
2971 | } |
||
2972 | } else { |
||
2973 | $custom_log_output = $entire_log; |
||
2974 | } |
||
2975 | |||
2976 | if ( $num ) { |
||
2977 | $custom_log_output = array_slice( $custom_log_output, 0, $num ); |
||
2978 | } |
||
2979 | |||
2980 | return $custom_log_output; |
||
2981 | } |
||
2982 | |||
2983 | /** |
||
2984 | * Log modification of important settings. |
||
2985 | */ |
||
2986 | public static function log_settings_change( $option, $old_value, $value ) { |
||
2987 | switch( $option ) { |
||
2988 | case 'jetpack_sync_non_public_post_stati': |
||
2989 | self::log( $option, $value ); |
||
2990 | break; |
||
2991 | } |
||
2992 | } |
||
2993 | |||
2994 | /** |
||
2995 | * Return stat data for WPCOM sync |
||
2996 | */ |
||
2997 | public static function get_stat_data( $encode = true, $extended = true ) { |
||
2998 | $data = Jetpack_Heartbeat::generate_stats_array(); |
||
2999 | |||
3000 | if ( $extended ) { |
||
3001 | $additional_data = self::get_additional_stat_data(); |
||
3002 | $data = array_merge( $data, $additional_data ); |
||
3003 | } |
||
3004 | |||
3005 | if ( $encode ) { |
||
3006 | return json_encode( $data ); |
||
3007 | } |
||
3008 | |||
3009 | return $data; |
||
3010 | } |
||
3011 | |||
3012 | /** |
||
3013 | * Get additional stat data to sync to WPCOM |
||
3014 | */ |
||
3015 | public static function get_additional_stat_data( $prefix = '' ) { |
||
3016 | $return["{$prefix}themes"] = Jetpack::get_parsed_theme_data(); |
||
3017 | $return["{$prefix}plugins-extra"] = Jetpack::get_parsed_plugin_data(); |
||
3018 | $return["{$prefix}users"] = (int) Jetpack::get_site_user_count(); |
||
3019 | $return["{$prefix}site-count"] = 0; |
||
3020 | |||
3021 | if ( function_exists( 'get_blog_count' ) ) { |
||
3022 | $return["{$prefix}site-count"] = get_blog_count(); |
||
3023 | } |
||
3024 | return $return; |
||
3025 | } |
||
3026 | |||
3027 | private static function get_site_user_count() { |
||
3028 | global $wpdb; |
||
3029 | |||
3030 | if ( function_exists( 'wp_is_large_network' ) ) { |
||
3031 | if ( wp_is_large_network( 'users' ) ) { |
||
3032 | return -1; // Not a real value but should tell us that we are dealing with a large network. |
||
3033 | } |
||
3034 | } |
||
3035 | View Code Duplication | if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) { |
|
3036 | // It wasn't there, so regenerate the data and save the transient |
||
3037 | $user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" ); |
||
3038 | set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS ); |
||
3039 | } |
||
3040 | return $user_count; |
||
3041 | } |
||
3042 | |||
3043 | /* Admin Pages */ |
||
3044 | |||
3045 | function admin_init() { |
||
3046 | // If the plugin is not connected, display a connect message. |
||
3047 | if ( |
||
3048 | // the plugin was auto-activated and needs its candy |
||
3049 | Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' ) |
||
3050 | || |
||
3051 | // the plugin is active, but was never activated. Probably came from a site-wide network activation |
||
3052 | ! Jetpack_Options::get_option( 'activated' ) |
||
3053 | ) { |
||
3054 | Jetpack::plugin_initialize(); |
||
3055 | } |
||
3056 | |||
3057 | if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { |
||
3058 | Jetpack_Connection_Banner::init(); |
||
3059 | } elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) { |
||
3060 | // Upgrade: 1.1 -> 1.1.1 |
||
3061 | // Check and see if host can verify the Jetpack servers' SSL certificate |
||
3062 | $args = array(); |
||
3063 | Jetpack_Client::_wp_remote_request( |
||
3064 | Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ), |
||
3065 | $args, |
||
3066 | true |
||
3067 | ); |
||
3068 | } else if ( $this->can_display_jetpack_manage_notice() && ! Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) { |
||
3069 | // Show the notice on the Dashboard only for now |
||
3070 | add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) ); |
||
3071 | } |
||
3072 | |||
3073 | if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) { |
||
3074 | add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) ); |
||
3075 | } |
||
3076 | |||
3077 | add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) ); |
||
3078 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) ); |
||
3079 | add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) ); |
||
3080 | |||
3081 | if ( Jetpack::is_active() || Jetpack::is_development_mode() ) { |
||
3082 | // Artificially throw errors in certain whitelisted cases during plugin activation |
||
3083 | add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) ); |
||
3084 | } |
||
3085 | |||
3086 | // Jetpack Manage Activation Screen from .com |
||
3087 | Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) ); |
||
3088 | |||
3089 | // Add custom column in wp-admin/users.php to show whether user is linked. |
||
3090 | add_filter( 'manage_users_columns', array( $this, 'jetpack_icon_user_connected' ) ); |
||
3091 | add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 ); |
||
3092 | add_action( 'admin_print_styles', array( $this, 'jetpack_user_col_style' ) ); |
||
3093 | } |
||
3094 | |||
3095 | function admin_body_class( $admin_body_class = '' ) { |
||
3103 | |||
3104 | static function add_jetpack_pagestyles( $admin_body_class = '' ) { |
||
3107 | |||
3108 | /** |
||
3109 | * Call this function if you want the Big Jetpack Manage Notice to show up. |
||
3110 | * |
||
3111 | * @return null |
||
3112 | */ |
||
3113 | function prepare_manage_jetpack_notice() { |
||
3114 | |||
3115 | add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) ); |
||
3116 | add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) ); |
||
3117 | } |
||
3118 | |||
3119 | function manage_activate_screen() { |
||
3120 | include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' ); |
||
3121 | } |
||
3122 | /** |
||
3123 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. |
||
3124 | * This function artificially throws errors for such cases (whitelisted). |
||
3125 | * |
||
3126 | * @param string $plugin The activated plugin. |
||
3127 | */ |
||
3128 | function throw_error_on_activate_plugin( $plugin ) { |
||
3129 | $active_modules = Jetpack::get_active_modules(); |
||
3130 | |||
3131 | // The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks. |
||
3132 | if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) { |
||
3133 | $throw = false; |
||
3134 | |||
3135 | // Try and make sure it really was the stats plugin |
||
3136 | if ( ! class_exists( 'ReflectionFunction' ) ) { |
||
3137 | if ( 'stats.php' == basename( $plugin ) ) { |
||
3138 | $throw = true; |
||
3139 | } |
||
3140 | } else { |
||
3141 | $reflection = new ReflectionFunction( 'stats_get_api_key' ); |
||
3142 | if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) { |
||
3143 | $throw = true; |
||
3144 | } |
||
3145 | } |
||
3146 | |||
3147 | if ( $throw ) { |
||
3148 | trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR ); |
||
3149 | } |
||
3150 | } |
||
3151 | } |
||
3152 | |||
3153 | function intercept_plugin_error_scrape_init() { |
||
3154 | add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 ); |
||
3155 | } |
||
3156 | |||
3157 | function intercept_plugin_error_scrape( $action, $result ) { |
||
3158 | if ( ! $result ) { |
||
3159 | return; |
||
3160 | } |
||
3161 | |||
3162 | foreach ( $this->plugins_to_deactivate as $deactivate_me ) { |
||
3163 | if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) { |
||
3164 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), $deactivate_me[1] ), false ); |
||
3165 | } |
||
3166 | } |
||
3167 | } |
||
3168 | |||
3169 | function add_remote_request_handlers() { |
||
3170 | add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) ); |
||
3171 | } |
||
3172 | |||
3173 | function remote_request_handlers() { |
||
3174 | switch ( current_filter() ) { |
||
3175 | case 'wp_ajax_nopriv_jetpack_upload_file' : |
||
3176 | $response = $this->upload_handler(); |
||
3177 | break; |
||
3178 | default : |
||
3179 | $response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 ); |
||
3180 | break; |
||
3181 | } |
||
3182 | |||
3183 | if ( ! $response ) { |
||
3184 | $response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 ); |
||
3185 | } |
||
3186 | |||
3187 | if ( is_wp_error( $response ) ) { |
||
3188 | $status_code = $response->get_error_data(); |
||
3189 | $error = $response->get_error_code(); |
||
3190 | $error_description = $response->get_error_message(); |
||
3191 | |||
3192 | if ( ! is_int( $status_code ) ) { |
||
3193 | $status_code = 400; |
||
3194 | } |
||
3195 | |||
3196 | status_header( $status_code ); |
||
3197 | die( json_encode( (object) compact( 'error', 'error_description' ) ) ); |
||
3198 | } |
||
3199 | |||
3200 | status_header( 200 ); |
||
3201 | if ( true === $response ) { |
||
3202 | exit; |
||
3203 | } |
||
3204 | |||
3205 | die( json_encode( (object) $response ) ); |
||
3206 | } |
||
3207 | |||
3208 | function upload_handler() { |
||
3209 | if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) { |
||
3210 | return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 ); |
||
3211 | } |
||
3212 | |||
3299 | |||
3300 | /** |
||
3301 | * Add help to the Jetpack page |
||
3302 | * |
||
3303 | * @since Jetpack (1.2.3) |
||
3304 | * @return false if not the Jetpack page |
||
3305 | */ |
||
3306 | function admin_help() { |
||
3347 | |||
3348 | function admin_menu_css() { |
||
3351 | |||
3352 | function admin_menu_order() { |
||
3355 | |||
3356 | View Code Duplication | function jetpack_menu_order( $menu_order ) { |
|
3371 | |||
3372 | function admin_head() { |
||
3377 | |||
3378 | function admin_banner_styles() { |
||
3399 | |||
3400 | function plugin_action_links( $actions ) { |
||
3415 | |||
3416 | /** |
||
3417 | * This is the first banner |
||
3418 | * It should be visible only to user that can update the option |
||
3419 | * Are not connected |
||
3420 | * |
||
3421 | * @return null |
||
3422 | */ |
||
3423 | function admin_jetpack_manage_notice() { |
||
3453 | |||
3454 | /** |
||
3455 | * Returns the url that the user clicks to remove the notice for the big banner |
||
3456 | * @return (string) |
||
3457 | */ |
||
3458 | function opt_out_jetpack_manage_url() { |
||
3462 | /** |
||
3463 | * Returns the url that the user clicks to opt in to Jetpack Manage |
||
3464 | * @return (string) |
||
3465 | */ |
||
3466 | function opt_in_jetpack_manage_url() { |
||
3469 | |||
3470 | function opt_in_jetpack_manage_notice() { |
||
3480 | /** |
||
3481 | * Determines whether to show the notice of not true = display notice |
||
3482 | * @return (bool) |
||
3483 | */ |
||
3484 | function can_display_jetpack_manage_notice() { |
||
3506 | |||
3507 | /* |
||
3508 | * Registration flow: |
||
3509 | * 1 - ::admin_page_load() action=register |
||
3510 | * 2 - ::try_registration() |
||
3511 | * 3 - ::register() |
||
3512 | * - Creates jetpack_register option containing two secrets and a timestamp |
||
3513 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with |
||
3514 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id |
||
3515 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's |
||
3516 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 |
||
3517 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 |
||
3518 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with |
||
3519 | * jetpack_id, jetpack_secret, jetpack_public |
||
3520 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret |
||
3521 | * 4 - redirect to https://wordpress.com/start/jetpack-connect |
||
3522 | * 5 - user logs in with WP.com account |
||
3523 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize |
||
3524 | * - Jetpack_Client_Server::authorize() |
||
3525 | * - Jetpack_Client_Server::get_token() |
||
3526 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with |
||
3527 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login |
||
3528 | * - which responds with access_token, token_type, scope |
||
3529 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id |
||
3530 | * - Jetpack::activate_default_modules() |
||
3531 | * - Deactivates deprecated plugins |
||
3532 | * - Activates all default modules |
||
3533 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users |
||
3534 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com |
||
3535 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized |
||
3536 | * Done! |
||
3537 | */ |
||
3538 | |||
3539 | /** |
||
3540 | * Handles the page load events for the Jetpack admin page |
||
3541 | */ |
||
3542 | function admin_page_load() { |
||
3768 | |||
3769 | function admin_notices() { |
||
3866 | |||
3867 | /** |
||
3868 | * Record a stat for later output. This will only currently output in the admin_footer. |
||
3869 | */ |
||
3870 | function stat( $group, $detail ) { |
||
3875 | |||
3876 | /** |
||
3877 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" |
||
3878 | */ |
||
3879 | function do_stats( $method = '' ) { |
||
3894 | |||
3895 | /** |
||
3896 | * Runs stats code for a one-off, server-side. |
||
3897 | * |
||
3898 | * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. |
||
3899 | * |
||
3900 | * @return bool If it worked. |
||
3901 | */ |
||
3902 | static function do_server_side_stat( $args ) { |
||
3912 | |||
3913 | /** |
||
3914 | * Builds the stats url. |
||
3915 | * |
||
3916 | * @param $args array|string The arguments to append to the URL. |
||
3917 | * |
||
3918 | * @return string The URL to be pinged. |
||
3919 | */ |
||
3920 | static function build_stats_url( $args ) { |
||
3940 | |||
3941 | static function translate_current_user_to_role() { |
||
3950 | |||
3951 | static function translate_role_to_cap( $role ) { |
||
3958 | |||
3959 | static function sign_role( $role ) { |
||
3971 | |||
3972 | |||
3973 | /** |
||
3974 | * Builds a URL to the Jetpack connection auth page |
||
3975 | * |
||
3976 | * @since 3.9.5 |
||
3977 | * |
||
3978 | * @param bool $raw If true, URL will not be escaped. |
||
3979 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. |
||
3980 | * If string, will be a custom redirect. |
||
3981 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. |
||
3982 | * |
||
3983 | * @return string Connect URL |
||
3984 | */ |
||
3985 | function build_connect_url( $raw = false, $redirect = false, $from = false ) { |
||
4069 | |||
4070 | function build_reconnect_url( $raw = false ) { |
||
4074 | |||
4075 | public static function admin_url( $args = null ) { |
||
4080 | |||
4081 | public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { |
||
4085 | |||
4086 | function dismiss_jetpack_notice() { |
||
4160 | |||
4161 | function debugger_page() { |
||
4169 | |||
4170 | public static function admin_screen_configure_module( $module_id ) { |
||
4222 | |||
4223 | /** |
||
4224 | * Display link to activate the module to see the settings screen. |
||
4225 | * @param string $module_id |
||
4226 | * @return null |
||
4227 | */ |
||
4228 | public static function display_activate_module_link( $module_id ) { |
||
4280 | |||
4281 | public static function sort_modules( $a, $b ) { |
||
4287 | |||
4288 | function ajax_recheck_ssl() { |
||
4296 | |||
4297 | /* Client API */ |
||
4298 | |||
4299 | /** |
||
4300 | * Returns the requested Jetpack API URL |
||
4301 | * |
||
4302 | * @return string |
||
4303 | */ |
||
4304 | public static function api_url( $relative_url ) { |
||
4307 | |||
4308 | /** |
||
4309 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets |
||
4310 | */ |
||
4311 | public static function fix_url_for_bad_hosts( $url ) { |
||
4327 | |||
4328 | /** |
||
4329 | * Checks to see if the URL is using SSL to connect with Jetpack |
||
4330 | * |
||
4331 | * @since 2.3.3 |
||
4332 | * @return boolean |
||
4333 | */ |
||
4334 | public static function permit_ssl( $force_recheck = false ) { |
||
4376 | |||
4377 | /* |
||
4378 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. |
||
4379 | */ |
||
4380 | public function alert_auto_ssl_fail() { |
||
4429 | |||
4430 | /** |
||
4431 | * Returns the Jetpack XML-RPC API |
||
4432 | * |
||
4433 | * @return string |
||
4434 | */ |
||
4435 | public static function xmlrpc_api_url() { |
||
4439 | |||
4440 | /** |
||
4441 | * Creates two secret tokens and the end of life timestamp for them. |
||
4442 | * |
||
4443 | * Note these tokens are unique per call, NOT static per site for connecting. |
||
4444 | * |
||
4445 | * @since 2.6 |
||
4446 | * @return array |
||
4447 | */ |
||
4448 | public function generate_secrets( $action, $exp = 600 ) { |
||
4456 | |||
4457 | /** |
||
4458 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
4459 | * |
||
4460 | * Based on local php max_execution_time in php.ini |
||
4461 | * |
||
4462 | * @since 2.6 |
||
4463 | * @return int |
||
4464 | **/ |
||
4465 | public function get_remote_query_timeout_limit() { |
||
4471 | |||
4472 | |||
4473 | /** |
||
4474 | * Takes the response from the Jetpack register new site endpoint and |
||
4475 | * verifies it worked properly. |
||
4476 | * |
||
4477 | * @since 2.6 |
||
4478 | * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures |
||
4479 | **/ |
||
4480 | public function validate_remote_register_response( $response ) { |
||
4520 | /** |
||
4521 | * @return bool|WP_Error |
||
4522 | */ |
||
4523 | public static function register() { |
||
4613 | |||
4614 | /** |
||
4615 | * If the db version is showing something other that what we've got now, bump it to current. |
||
4616 | * |
||
4617 | * @return bool: True if the option was incorrect and updated, false if nothing happened. |
||
4618 | */ |
||
4619 | public static function maybe_set_version_option() { |
||
4633 | |||
4634 | /* Client Server API */ |
||
4635 | |||
4636 | /** |
||
4637 | * Loads the Jetpack XML-RPC client |
||
4638 | */ |
||
4639 | public static function load_xml_rpc_client() { |
||
4643 | |||
4644 | /** |
||
4645 | * Resets the saved authentication state in between testing requests. |
||
4646 | */ |
||
4647 | public function reset_saved_auth_state() { |
||
4651 | |||
4652 | function verify_xml_rpc_signature() { |
||
4751 | |||
4752 | /** |
||
4753 | * Authenticates XML-RPC and other requests from the Jetpack Server |
||
4754 | */ |
||
4755 | function authenticate_jetpack( $user, $username, $password ) { |
||
4778 | |||
4779 | // Authenticates requests from Jetpack server to WP REST API endpoints. |
||
4780 | // Uses the existing XMLRPC request signing implementation. |
||
4781 | function wp_rest_authenticate( $user ) { |
||
4875 | |||
4876 | /** |
||
4877 | * Report authentication status to the WP REST API. |
||
4878 | * |
||
4879 | * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
||
4880 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
||
4881 | */ |
||
4882 | public function wp_rest_authentication_errors( $value ) { |
||
4888 | |||
4889 | function add_nonce( $timestamp, $nonce ) { |
||
4927 | |||
4928 | /** |
||
4929 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
||
4930 | * Capture it here so we can verify the signature later. |
||
4931 | */ |
||
4932 | function xmlrpc_methods( $methods ) { |
||
4936 | |||
4937 | function public_xmlrpc_methods( $methods ) { |
||
4943 | |||
4944 | function jetpack_getOptions( $args ) { |
||
4984 | |||
4985 | function xmlrpc_options( $options ) { |
||
5003 | |||
5004 | public static function clean_nonces( $all = false ) { |
||
5025 | |||
5026 | /** |
||
5027 | * State is passed via cookies from one request to the next, but never to subsequent requests. |
||
5028 | * SET: state( $key, $value ); |
||
5029 | * GET: $value = state( $key ); |
||
5030 | * |
||
5031 | * @param string $key |
||
5032 | * @param string $value |
||
5033 | * @param bool $restate private |
||
5034 | */ |
||
5035 | public static function state( $key = null, $value = null, $restate = false ) { |
||
5085 | |||
5086 | public static function restate() { |
||
5089 | |||
5090 | public static function check_privacy( $file ) { |
||
5125 | |||
5126 | /** |
||
5127 | * Helper method for multicall XMLRPC. |
||
5128 | */ |
||
5129 | public static function xmlrpc_async_call() { |
||
5171 | |||
5172 | public static function staticize_subdomain( $url ) { |
||
5207 | |||
5208 | /* JSON API Authorization */ |
||
5209 | |||
5210 | /** |
||
5211 | * Handles the login action for Authorizing the JSON API |
||
5212 | */ |
||
5213 | function login_form_json_api_authorization() { |
||
5222 | |||
5223 | // Make sure the login form is POSTed to the signed URL so we can reverify the request |
||
5224 | function post_login_form_to_signed_url( $url, $path, $scheme ) { |
||
5237 | |||
5238 | // Make sure the POSTed request is handled by the same action |
||
5239 | function preserve_action_in_login_form_for_json_api_authorization() { |
||
5243 | |||
5244 | // If someone logs in to approve API access, store the Access Code in usermeta |
||
5245 | function store_json_api_authorization_token( $user_login, $user ) { |
||
5251 | |||
5252 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access |
||
5253 | function allow_wpcom_public_api_domain( $domains ) { |
||
5257 | |||
5258 | // Add the Access Code details to the public-api.wordpress.com redirect |
||
5259 | function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { |
||
5271 | |||
5272 | |||
5273 | /** |
||
5274 | * Verifies the request by checking the signature |
||
5275 | * |
||
5276 | * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow |
||
5277 | * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO. |
||
5278 | * |
||
5279 | * @param null|array $environment |
||
5280 | */ |
||
5281 | function verify_json_api_authorization_request( $environment = null ) { |
||
5373 | |||
5374 | function login_message_json_api_authorization( $message ) { |
||
5380 | |||
5381 | /** |
||
5382 | * Get $content_width, but with a <s>twist</s> filter. |
||
5383 | */ |
||
5384 | public static function get_content_width() { |
||
5395 | |||
5396 | /** |
||
5397 | * Centralize the function here until it gets added to core. |
||
5398 | * |
||
5399 | * @param int|string|object $id_or_email A user ID, email address, or comment object |
||
5400 | * @param int $size Size of the avatar image |
||
5401 | * @param string $default URL to a default image to use if no avatar is available |
||
5402 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled |
||
5403 | * |
||
5404 | * @return array First element is the URL, second is the class. |
||
5405 | */ |
||
5406 | public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { |
||
5434 | |||
5435 | /** |
||
5436 | * Pings the WordPress.com Mirror Site for the specified options. |
||
5437 | * |
||
5438 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site |
||
5439 | * |
||
5440 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site |
||
5441 | */ |
||
5442 | public function get_cloud_site_options( $option_names ) { |
||
5458 | |||
5459 | /** |
||
5460 | * Checks if the site is currently in an identity crisis. |
||
5461 | * |
||
5462 | * @return array|bool Array of options that are in a crisis, or false if everything is OK. |
||
5463 | */ |
||
5464 | public static function check_identity_crisis() { |
||
5471 | |||
5472 | /** |
||
5473 | * Checks whether the home and siteurl specifically are whitelisted |
||
5474 | * Written so that we don't have re-check $key and $value params every time |
||
5475 | * we want to check if this site is whitelisted, for example in footer.php |
||
5476 | * |
||
5477 | * @since 3.8.0 |
||
5478 | * @return bool True = already whitelisted False = not whitelisted |
||
5479 | */ |
||
5480 | public static function is_staging_site() { |
||
5539 | |||
5540 | /** |
||
5541 | * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup. |
||
5542 | * |
||
5543 | * @return bool |
||
5544 | */ |
||
5545 | public static function validate_sync_error_idc_option() { |
||
5589 | |||
5590 | /** |
||
5591 | * Normalizes a url by doing three things: |
||
5592 | * - Strips protocol |
||
5593 | * - Strips www |
||
5594 | * - Adds a trailing slash |
||
5595 | * |
||
5596 | * @since 4.4.0 |
||
5597 | * @param string $url |
||
5598 | * @return WP_Error|string |
||
5599 | */ |
||
5600 | public static function normalize_url_protocol_agnostic( $url ) { |
||
5610 | |||
5611 | /** |
||
5612 | * Gets the value that is to be saved in the jetpack_sync_error_idc option. |
||
5613 | * |
||
5614 | * @since 4.4.0 |
||
5615 | * |
||
5616 | * @param array $response |
||
5617 | * @return array Array of the local urls, wpcom urls, and error code |
||
5618 | */ |
||
5619 | public static function get_sync_error_idc_option( $response = array() ) { |
||
5643 | |||
5644 | /** |
||
5645 | * Returns the value of the jetpack_sync_idc_optin filter, or constant. |
||
5646 | * If set to true, the site will be put into staging mode. |
||
5647 | * |
||
5648 | * @since 4.3.2 |
||
5649 | * @return bool |
||
5650 | */ |
||
5651 | public static function sync_idc_optin() { |
||
5669 | |||
5670 | /** |
||
5671 | * Maybe Use a .min.css stylesheet, maybe not. |
||
5672 | * |
||
5673 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. |
||
5674 | */ |
||
5675 | public static function maybe_min_asset( $url, $path, $plugin ) { |
||
5710 | |||
5711 | /** |
||
5712 | * Maybe inlines a stylesheet. |
||
5713 | * |
||
5714 | * If you'd like to inline a stylesheet instead of printing a link to it, |
||
5715 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); |
||
5716 | * |
||
5717 | * Attached to `style_loader_tag` filter. |
||
5718 | * |
||
5719 | * @param string $tag The tag that would link to the external asset. |
||
5720 | * @param string $handle The registered handle of the script in question. |
||
5721 | * |
||
5722 | * @return string |
||
5723 | */ |
||
5724 | public static function maybe_inline_style( $tag, $handle ) { |
||
5774 | |||
5775 | /** |
||
5776 | * Loads a view file from the views |
||
5777 | * |
||
5778 | * Data passed in with the $data parameter will be available in the |
||
5779 | * template file as $data['value'] |
||
5780 | * |
||
5781 | * @param string $template - Template file to load |
||
5782 | * @param array $data - Any data to pass along to the template |
||
5783 | * @return boolean - If template file was found |
||
5784 | **/ |
||
5785 | public function load_view( $template, $data = array() ) { |
||
5796 | |||
5797 | /** |
||
5798 | * Throws warnings for deprecated hooks to be removed from Jetpack |
||
5799 | */ |
||
5800 | public function deprecated_hooks() { |
||
5849 | |||
5850 | /** |
||
5851 | * Converts any url in a stylesheet, to the correct absolute url. |
||
5852 | * |
||
5853 | * Considerations: |
||
5854 | * - Normal, relative URLs `feh.png` |
||
5855 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` |
||
5856 | * - Schema-agnostic URLs `//domain.com/feh.png` |
||
5857 | * - Absolute URLs `http://domain.com/feh.png` |
||
5858 | * - Domain root relative URLs `/feh.png` |
||
5859 | * |
||
5860 | * @param $css string: The raw CSS -- should be read in directly from the file. |
||
5861 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
||
5862 | * |
||
5863 | * @return mixed|string |
||
5864 | */ |
||
5865 | public static function absolutize_css_urls( $css, $css_file_url ) { |
||
5909 | |||
5910 | /** |
||
5911 | * This methods removes all of the registered css files on the front end |
||
5912 | * from Jetpack in favor of using a single file. In effect "imploding" |
||
5913 | * all the files into one file. |
||
5914 | * |
||
5915 | * Pros: |
||
5916 | * - Uses only ONE css asset connection instead of 15 |
||
5917 | * - Saves a minimum of 56k |
||
5918 | * - Reduces server load |
||
5919 | * - Reduces time to first painted byte |
||
5920 | * |
||
5921 | * Cons: |
||
5922 | * - Loads css for ALL modules. However all selectors are prefixed so it |
||
5923 | * should not cause any issues with themes. |
||
5924 | * - Plugins/themes dequeuing styles no longer do anything. See |
||
5925 | * jetpack_implode_frontend_css filter for a workaround |
||
5926 | * |
||
5927 | * For some situations developers may wish to disable css imploding and |
||
5928 | * instead operate in legacy mode where each file loads seperately and |
||
5929 | * can be edited individually or dequeued. This can be accomplished with |
||
5930 | * the following line: |
||
5931 | * |
||
5932 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); |
||
5933 | * |
||
5934 | * @since 3.2 |
||
5935 | **/ |
||
5936 | public function implode_frontend_css( $travis_test = false ) { |
||
5988 | |||
5989 | function concat_remove_style_loader_tag( $tag, $handle ) { |
||
5999 | |||
6000 | /* |
||
6001 | * Check the heartbeat data |
||
6002 | * |
||
6003 | * Organizes the heartbeat data by severity. For example, if the site |
||
6004 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. |
||
6005 | * |
||
6006 | * Data will be added to "caution" array, if it either: |
||
6007 | * - Out of date Jetpack version |
||
6008 | * - Out of date WP version |
||
6009 | * - Out of date PHP version |
||
6010 | * |
||
6011 | * $return array $filtered_data |
||
6012 | */ |
||
6013 | public static function jetpack_check_heartbeat_data() { |
||
6066 | |||
6067 | |||
6068 | /* |
||
6069 | * This method is used to organize all options that can be reset |
||
6070 | * without disconnecting Jetpack. |
||
6071 | * |
||
6072 | * It is used in class.jetpack-cli.php to reset options |
||
6073 | * |
||
6074 | * @return array of options to delete. |
||
6075 | */ |
||
6076 | public static function get_jetpack_options_for_reset() { |
||
6143 | |||
6144 | /** |
||
6145 | * Check if an option of a Jetpack module has been updated. |
||
6146 | * |
||
6147 | * If any module option has been updated before Jump Start has been dismissed, |
||
6148 | * update the 'jumpstart' option so we can hide Jump Start. |
||
6149 | * |
||
6150 | * @param string $option_name |
||
6151 | * |
||
6152 | * @return bool |
||
6153 | */ |
||
6154 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
||
6175 | |||
6176 | /* |
||
6177 | * Strip http:// or https:// from a url, replaces forward slash with ::, |
||
6178 | * so we can bring them directly to their site in calypso. |
||
6179 | * |
||
6180 | * @param string | url |
||
6181 | * @return string | url without the guff |
||
6182 | */ |
||
6183 | public static function build_raw_urls( $url ) { |
||
6189 | |||
6190 | /** |
||
6191 | * Stores and prints out domains to prefetch for page speed optimization. |
||
6192 | * |
||
6193 | * @param mixed $new_urls |
||
6194 | */ |
||
6195 | public static function dns_prefetch( $new_urls = null ) { |
||
6212 | |||
6213 | public function wp_dashboard_setup() { |
||
6241 | |||
6242 | /** |
||
6243 | * @param mixed $result Value for the user's option |
||
6244 | * @return mixed |
||
6245 | */ |
||
6246 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
||
6271 | |||
6272 | public static function dashboard_widget() { |
||
6280 | |||
6281 | public static function dashboard_widget_footer() { |
||
6314 | |||
6315 | public function dashboard_widget_connect_to_wpcom() { |
||
6337 | |||
6338 | /** |
||
6339 | * Return string containing the Jetpack logo. |
||
6340 | * |
||
6341 | * @since 3.9.0 |
||
6342 | * |
||
6343 | * @return string |
||
6344 | */ |
||
6345 | public static function get_jp_emblem() { |
||
6348 | |||
6349 | /* |
||
6350 | * Adds a "blank" column in the user admin table to display indication of user connection. |
||
6351 | */ |
||
6352 | function jetpack_icon_user_connected( $columns ) { |
||
6356 | |||
6357 | /* |
||
6358 | * Show Jetpack icon if the user is linked. |
||
6359 | */ |
||
6360 | function jetpack_show_user_connected_icon( $val, $col, $user_id ) { |
||
6372 | |||
6373 | /* |
||
6374 | * Style the Jetpack user column |
||
6375 | */ |
||
6376 | function jetpack_user_col_style() { |
||
6393 | } |
||
6394 |
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.