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 |
||
40 | class Jetpack { |
||
41 | public $xmlrpc_server = null; |
||
42 | |||
43 | private $rest_authentication_status = null; |
||
44 | |||
45 | public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA'] |
||
46 | |||
47 | private $tracking; |
||
48 | |||
49 | /** |
||
50 | * @var array The handles of styles that are concatenated into jetpack.css. |
||
51 | * |
||
52 | * When making changes to that list, you must also update concat_list in tools/builder/frontend-css.js. |
||
53 | */ |
||
54 | public $concatenated_style_handles = array( |
||
55 | 'jetpack-carousel', |
||
56 | 'grunion.css', |
||
57 | 'the-neverending-homepage', |
||
58 | 'jetpack_likes', |
||
59 | 'jetpack_related-posts', |
||
60 | 'sharedaddy', |
||
61 | 'jetpack-slideshow', |
||
62 | 'presentations', |
||
63 | 'quiz', |
||
64 | 'jetpack-subscriptions', |
||
65 | 'jetpack-responsive-videos-style', |
||
66 | 'jetpack-social-menu', |
||
67 | 'tiled-gallery', |
||
68 | 'jetpack_display_posts_widget', |
||
69 | 'gravatar-profile-widget', |
||
70 | 'goodreads-widget', |
||
71 | 'jetpack_social_media_icons_widget', |
||
72 | 'jetpack-top-posts-widget', |
||
73 | 'jetpack_image_widget', |
||
74 | 'jetpack-my-community-widget', |
||
75 | 'jetpack-authors-widget', |
||
76 | 'wordads', |
||
77 | 'eu-cookie-law-style', |
||
78 | 'flickr-widget-style', |
||
79 | 'jetpack-search-widget', |
||
80 | 'jetpack-simple-payments-widget-style', |
||
81 | 'jetpack-widget-social-icons-styles', |
||
82 | ); |
||
83 | |||
84 | /** |
||
85 | * The handles of scripts that can be loaded asynchronously. |
||
86 | * |
||
87 | * @var array |
||
88 | */ |
||
89 | public $async_script_handles = array( |
||
90 | 'woocommerce-analytics', |
||
91 | ); |
||
92 | |||
93 | /** |
||
94 | * Contains all assets that have had their URL rewritten to minified versions. |
||
95 | * |
||
96 | * @var array |
||
97 | */ |
||
98 | static $min_assets = array(); |
||
99 | |||
100 | public $plugins_to_deactivate = array( |
||
101 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
102 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
103 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), |
||
104 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), |
||
105 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), |
||
106 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), |
||
107 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), |
||
108 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), |
||
109 | 'videopress' => array( 'video/video.php', 'VideoPress' ), |
||
110 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), |
||
111 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), |
||
112 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), |
||
113 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), |
||
114 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) |
||
115 | ); |
||
116 | |||
117 | /** |
||
118 | * Map of roles we care about, and their corresponding minimum capabilities. |
||
119 | * |
||
120 | * @deprecated 7.6 Use Automattic\Jetpack\Roles::$capability_translations instead. |
||
121 | * |
||
122 | * @access public |
||
123 | * @static |
||
124 | * |
||
125 | * @var array |
||
126 | */ |
||
127 | public static $capability_translations = array( |
||
128 | 'administrator' => 'manage_options', |
||
129 | 'editor' => 'edit_others_posts', |
||
130 | 'author' => 'publish_posts', |
||
131 | 'contributor' => 'edit_posts', |
||
132 | 'subscriber' => 'read', |
||
133 | ); |
||
134 | |||
135 | /** |
||
136 | * Map of modules that have conflicts with plugins and should not be auto-activated |
||
137 | * if the plugins are active. Used by filter_default_modules |
||
138 | * |
||
139 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, |
||
140 | * change `module-slug` and add this to your plugin: |
||
141 | * |
||
142 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); |
||
143 | * function my_jetpack_get_default_modules( $modules ) { |
||
144 | * return array_diff( $modules, array( 'module-slug' ) ); |
||
145 | * } |
||
146 | * |
||
147 | * @var array |
||
148 | */ |
||
149 | private $conflicting_plugins = array( |
||
150 | 'comments' => array( |
||
151 | 'Intense Debate' => 'intensedebate/intensedebate.php', |
||
152 | 'Disqus' => 'disqus-comment-system/disqus.php', |
||
153 | 'Livefyre' => 'livefyre-comments/livefyre.php', |
||
154 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', |
||
155 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', |
||
156 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', |
||
157 | ), |
||
158 | 'comment-likes' => array( |
||
159 | 'Epoch' => 'epoch/plugincore.php', |
||
160 | ), |
||
161 | 'contact-form' => array( |
||
162 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', |
||
163 | 'Gravity Forms' => 'gravityforms/gravityforms.php', |
||
164 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', |
||
165 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', |
||
166 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', |
||
167 | 'Ninja Forms' => 'ninja-forms/ninja-forms.php', |
||
168 | ), |
||
169 | 'minileven' => array( |
||
170 | 'WPtouch' => 'wptouch/wptouch.php', |
||
171 | ), |
||
172 | 'latex' => array( |
||
173 | 'LaTeX for WordPress' => 'latex/latex.php', |
||
174 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', |
||
175 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', |
||
176 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', |
||
177 | 'Enable Latex' => 'enable-latex/enable-latex.php', |
||
178 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', |
||
179 | ), |
||
180 | 'protect' => array( |
||
181 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', |
||
182 | 'Captcha' => 'captcha/captcha.php', |
||
183 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', |
||
184 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', |
||
185 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', |
||
186 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', |
||
187 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', |
||
188 | 'Security-protection' => 'security-protection/security-protection.php', |
||
189 | 'Login Security' => 'login-security/login-security.php', |
||
190 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', |
||
191 | 'Wordfence Security' => 'wordfence/wordfence.php', |
||
192 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', |
||
193 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', |
||
194 | ), |
||
195 | 'random-redirect' => array( |
||
196 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', |
||
197 | ), |
||
198 | 'related-posts' => array( |
||
199 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', |
||
200 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', |
||
201 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', |
||
202 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', |
||
203 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', |
||
204 | 'outbrain' => 'outbrain/outbrain.php', |
||
205 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
206 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', |
||
207 | ), |
||
208 | 'sharedaddy' => array( |
||
209 | 'AddThis' => 'addthis/addthis_social_widget.php', |
||
210 | 'Add To Any' => 'add-to-any/add-to-any.php', |
||
211 | 'ShareThis' => 'share-this/sharethis.php', |
||
212 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
213 | ), |
||
214 | 'seo-tools' => array( |
||
215 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
216 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
217 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
218 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
219 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
220 | ), |
||
221 | 'verification-tools' => array( |
||
222 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
223 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
224 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
225 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
226 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
227 | ), |
||
228 | 'widget-visibility' => array( |
||
229 | 'Widget Logic' => 'widget-logic/widget_logic.php', |
||
230 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', |
||
231 | ), |
||
232 | 'sitemaps' => array( |
||
233 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', |
||
234 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', |
||
235 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', |
||
236 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', |
||
237 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', |
||
238 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
239 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
240 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
241 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
242 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
243 | 'Sitemap' => 'sitemap/sitemap.php', |
||
244 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', |
||
245 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', |
||
246 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', |
||
247 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', |
||
248 | ), |
||
249 | 'lazy-images' => array( |
||
250 | 'Lazy Load' => 'lazy-load/lazy-load.php', |
||
251 | 'BJ Lazy Load' => 'bj-lazy-load/bj-lazy-load.php', |
||
252 | 'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php', |
||
253 | ), |
||
254 | ); |
||
255 | |||
256 | /** |
||
257 | * Plugins for which we turn off our Facebook OG Tags implementation. |
||
258 | * |
||
259 | * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate |
||
260 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. |
||
261 | * |
||
262 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: |
||
263 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); |
||
264 | */ |
||
265 | private $open_graph_conflicting_plugins = array( |
||
266 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', |
||
267 | // 2 Click Social Media Buttons |
||
268 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook |
||
269 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags |
||
270 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail |
||
271 | 'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php', |
||
272 | // Open Graph Meta Tags by Heateor |
||
273 | 'facebook/facebook.php', // Facebook (official plugin) |
||
274 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one |
||
275 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', |
||
276 | // Facebook Featured Image & OG Meta Tags |
||
277 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags |
||
278 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', |
||
279 | // Facebook Open Graph Meta Tags for WordPress |
||
280 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag |
||
281 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer |
||
282 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', |
||
283 | // Fedmich's Facebook Open Graph Meta |
||
284 | 'network-publisher/networkpub.php', // Network Publisher |
||
285 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG |
||
286 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', |
||
287 | // NextScripts SNAP |
||
288 | 'og-tags/og-tags.php', // OG Tags |
||
289 | 'opengraph/opengraph.php', // Open Graph |
||
290 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', |
||
291 | // Open Graph Protocol Framework |
||
292 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments |
||
293 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate |
||
294 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic |
||
295 | 'shareaholic/sexy-bookmarks.php', // Shareaholic |
||
296 | 'sharepress/sharepress.php', // SharePress |
||
297 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect |
||
298 | 'social-discussions/social-discussions.php', // Social Discussions |
||
299 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit |
||
300 | 'socialize/socialize.php', // Socialize |
||
301 | 'squirrly-seo/squirrly.php', // SEO by SQUIRRLY™ |
||
302 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', |
||
303 | // Tweet, Like, Google +1 and Share |
||
304 | 'wordbooker/wordbooker.php', // Wordbooker |
||
305 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization |
||
306 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver |
||
307 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', |
||
308 | // WP Facebook Like Send & Open Graph Meta |
||
309 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol |
||
310 | 'wp-ogp/wp-ogp.php', // WP-OGP |
||
311 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin |
||
312 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button |
||
313 | 'open-graph-metabox/open-graph-metabox.php' // Open Graph Metabox |
||
314 | ); |
||
315 | |||
316 | /** |
||
317 | * Plugins for which we turn off our Twitter Cards Tags implementation. |
||
318 | */ |
||
319 | private $twitter_cards_conflicting_plugins = array( |
||
320 | // 'twitter/twitter.php', // The official one handles this on its own. |
||
321 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php |
||
322 | 'eewee-twitter-card/index.php', // Eewee Twitter Card |
||
323 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards |
||
324 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards |
||
325 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', |
||
326 | // Pure Web Brilliant's Social Graph Twitter Cards Extension |
||
327 | 'twitter-cards/twitter-cards.php', // Twitter Cards |
||
328 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta |
||
329 | 'wp-to-twitter/wp-to-twitter.php', // WP to Twitter |
||
330 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards |
||
331 | ); |
||
332 | |||
333 | /** |
||
334 | * Message to display in admin_notice |
||
335 | * @var string |
||
336 | */ |
||
337 | public $message = ''; |
||
338 | |||
339 | /** |
||
340 | * Error to display in admin_notice |
||
341 | * @var string |
||
342 | */ |
||
343 | public $error = ''; |
||
344 | |||
345 | /** |
||
346 | * Modules that need more privacy description. |
||
347 | * @var string |
||
348 | */ |
||
349 | public $privacy_checks = ''; |
||
350 | |||
351 | /** |
||
352 | * Stats to record once the page loads |
||
353 | * |
||
354 | * @var array |
||
355 | */ |
||
356 | public $stats = array(); |
||
357 | |||
358 | /** |
||
359 | * Jetpack_Sync object |
||
360 | */ |
||
361 | public $sync; |
||
362 | |||
363 | /** |
||
364 | * Verified data for JSON authorization request |
||
365 | */ |
||
366 | public $json_api_authorization_request = array(); |
||
367 | |||
368 | /** |
||
369 | * @var \Automattic\Jetpack\Connection\Manager |
||
370 | */ |
||
371 | protected $connection_manager; |
||
372 | |||
373 | /** |
||
374 | * @var string Transient key used to prevent multiple simultaneous plugin upgrades |
||
375 | */ |
||
376 | public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock'; |
||
377 | |||
378 | /** |
||
379 | * Holds the singleton instance of this class |
||
380 | * @since 2.3.3 |
||
381 | * @var Jetpack |
||
382 | */ |
||
383 | static $instance = false; |
||
384 | |||
385 | /** |
||
386 | * Singleton |
||
387 | * @static |
||
388 | */ |
||
389 | public static function init() { |
||
390 | if ( ! self::$instance ) { |
||
391 | self::$instance = new Jetpack; |
||
392 | |||
393 | self::$instance->plugin_upgrade(); |
||
394 | } |
||
395 | |||
396 | return self::$instance; |
||
397 | } |
||
398 | |||
399 | /** |
||
400 | * Must never be called statically |
||
401 | */ |
||
402 | function plugin_upgrade() { |
||
403 | if ( Jetpack::is_active() ) { |
||
404 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
405 | if ( JETPACK__VERSION != $version ) { |
||
406 | // Prevent multiple upgrades at once - only a single process should trigger |
||
407 | // an upgrade to avoid stampedes |
||
408 | if ( false !== get_transient( self::$plugin_upgrade_lock_key ) ) { |
||
409 | return; |
||
410 | } |
||
411 | |||
412 | // Set a short lock to prevent multiple instances of the upgrade |
||
413 | set_transient( self::$plugin_upgrade_lock_key, 1, 10 ); |
||
414 | |||
415 | // check which active modules actually exist and remove others from active_modules list |
||
416 | $unfiltered_modules = Jetpack::get_active_modules(); |
||
417 | $modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) ); |
||
418 | if ( array_diff( $unfiltered_modules, $modules ) ) { |
||
419 | Jetpack::update_active_modules( $modules ); |
||
420 | } |
||
421 | |||
422 | add_action( 'init', array( __CLASS__, 'activate_new_modules' ) ); |
||
423 | |||
424 | // Upgrade to 4.3.0 |
||
425 | if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) { |
||
426 | Jetpack_Options::delete_option( 'identity_crisis_whitelist' ); |
||
427 | } |
||
428 | |||
429 | // Make sure Markdown for posts gets turned back on |
||
430 | if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) { |
||
431 | update_option( 'wpcom_publish_posts_with_markdown', true ); |
||
432 | } |
||
433 | |||
434 | if ( did_action( 'wp_loaded' ) ) { |
||
435 | self::upgrade_on_load(); |
||
436 | } else { |
||
437 | add_action( |
||
438 | 'wp_loaded', |
||
439 | array( __CLASS__, 'upgrade_on_load' ) |
||
440 | ); |
||
441 | } |
||
442 | } |
||
443 | } |
||
444 | } |
||
445 | |||
446 | /** |
||
447 | * Runs upgrade routines that need to have modules loaded. |
||
448 | */ |
||
449 | static function upgrade_on_load() { |
||
450 | |||
451 | // Not attempting any upgrades if jetpack_modules_loaded did not fire. |
||
452 | // This can happen in case Jetpack has been just upgraded and is |
||
453 | // being initialized late during the page load. In this case we wait |
||
454 | // until the next proper admin page load with Jetpack active. |
||
455 | if ( ! did_action( 'jetpack_modules_loaded' ) ) { |
||
456 | delete_transient( self::$plugin_upgrade_lock_key ); |
||
457 | |||
458 | return; |
||
459 | } |
||
460 | |||
461 | Jetpack::maybe_set_version_option(); |
||
462 | |||
463 | if ( method_exists( 'Jetpack_Widget_Conditions', 'migrate_post_type_rules' ) ) { |
||
464 | Jetpack_Widget_Conditions::migrate_post_type_rules(); |
||
465 | } |
||
466 | |||
467 | if ( |
||
468 | class_exists( 'Jetpack_Sitemap_Manager' ) |
||
469 | && version_compare( JETPACK__VERSION, '5.3', '>=' ) |
||
470 | ) { |
||
471 | do_action( 'jetpack_sitemaps_purge_data' ); |
||
472 | } |
||
473 | |||
474 | // Delete old stats cache |
||
475 | delete_option( 'jetpack_restapi_stats_cache' ); |
||
476 | |||
477 | delete_transient( self::$plugin_upgrade_lock_key ); |
||
478 | } |
||
479 | |||
480 | /** |
||
481 | * Saves all the currently active modules to options. |
||
482 | * Also fires Action hooks for each newly activated and deactivated module. |
||
483 | * |
||
484 | * @param $modules Array Array of active modules to be saved in options. |
||
485 | * |
||
486 | * @return $success bool true for success, false for failure. |
||
|
|||
487 | */ |
||
488 | static function update_active_modules( $modules ) { |
||
489 | $current_modules = Jetpack_Options::get_option( 'active_modules', array() ); |
||
490 | $active_modules = Jetpack::get_active_modules(); |
||
491 | $new_active_modules = array_diff( $modules, $current_modules ); |
||
492 | $new_inactive_modules = array_diff( $active_modules, $modules ); |
||
493 | $new_current_modules = array_diff( array_merge( $current_modules, $new_active_modules ), $new_inactive_modules ); |
||
494 | $reindexed_modules = array_values( $new_current_modules ); |
||
495 | $success = Jetpack_Options::update_option( 'active_modules', array_unique( $reindexed_modules ) ); |
||
496 | |||
497 | foreach ( $new_active_modules as $module ) { |
||
498 | /** |
||
499 | * Fires when a specific module is activated. |
||
500 | * |
||
501 | * @since 1.9.0 |
||
502 | * |
||
503 | * @param string $module Module slug. |
||
504 | * @param boolean $success whether the module was activated. @since 4.2 |
||
505 | */ |
||
506 | do_action( 'jetpack_activate_module', $module, $success ); |
||
507 | /** |
||
508 | * Fires when a module is activated. |
||
509 | * The dynamic part of the filter, $module, is the module slug. |
||
510 | * |
||
511 | * @since 1.9.0 |
||
512 | * |
||
513 | * @param string $module Module slug. |
||
514 | */ |
||
515 | do_action( "jetpack_activate_module_$module", $module ); |
||
516 | } |
||
517 | |||
518 | foreach ( $new_inactive_modules as $module ) { |
||
519 | /** |
||
520 | * Fired after a module has been deactivated. |
||
521 | * |
||
522 | * @since 4.2.0 |
||
523 | * |
||
524 | * @param string $module Module slug. |
||
525 | * @param boolean $success whether the module was deactivated. |
||
526 | */ |
||
527 | do_action( 'jetpack_deactivate_module', $module, $success ); |
||
528 | /** |
||
529 | * Fires when a module is deactivated. |
||
530 | * The dynamic part of the filter, $module, is the module slug. |
||
531 | * |
||
532 | * @since 1.9.0 |
||
533 | * |
||
534 | * @param string $module Module slug. |
||
535 | */ |
||
536 | do_action( "jetpack_deactivate_module_$module", $module ); |
||
537 | } |
||
538 | |||
539 | return $success; |
||
540 | } |
||
541 | |||
542 | static function delete_active_modules() { |
||
543 | self::update_active_modules( array() ); |
||
544 | } |
||
545 | |||
546 | /** |
||
547 | * Constructor. Initializes WordPress hooks |
||
548 | */ |
||
549 | private function __construct() { |
||
550 | /* |
||
551 | * Check for and alert any deprecated hooks |
||
552 | */ |
||
553 | add_action( 'init', array( $this, 'deprecated_hooks' ) ); |
||
554 | |||
555 | /* |
||
556 | * Enable enhanced handling of previewing sites in Calypso |
||
557 | */ |
||
558 | if ( Jetpack::is_active() ) { |
||
559 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php'; |
||
560 | add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 ); |
||
561 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-keyring-service-helper.php'; |
||
562 | add_action( 'init', array( 'Jetpack_Keyring_Service_Helper', 'init' ), 9, 0 ); |
||
563 | } |
||
564 | |||
565 | if ( self::jetpack_tos_agreed() ) { |
||
566 | $tracking = new Automattic\Jetpack\Plugin\Tracking(); |
||
567 | add_action( 'init', array( $tracking, 'init' ) ); |
||
568 | } |
||
569 | |||
570 | |||
571 | add_filter( 'jetpack_connection_secret_generator', function( $callable ) { |
||
572 | return function() { |
||
573 | return wp_generate_password( 32, false ); |
||
574 | }; |
||
575 | } ); |
||
576 | |||
577 | $this->connection_manager = new Connection_Manager(); |
||
578 | $this->connection_manager->init(); |
||
579 | |||
580 | /* |
||
581 | * Load things that should only be in Network Admin. |
||
582 | * |
||
583 | * For now blow away everything else until a more full |
||
584 | * understanding of what is needed at the network level is |
||
585 | * available |
||
586 | */ |
||
587 | if ( is_multisite() ) { |
||
588 | $network = Jetpack_Network::init(); |
||
589 | $network->set_connection( $this->connection_manager ); |
||
590 | } |
||
591 | |||
592 | add_filter( |
||
593 | 'jetpack_signature_check_token', |
||
594 | array( __CLASS__, 'verify_onboarding_token' ), |
||
595 | 10, |
||
596 | 3 |
||
597 | ); |
||
598 | |||
599 | /** |
||
600 | * Prepare Gutenberg Editor functionality |
||
601 | */ |
||
602 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-gutenberg.php'; |
||
603 | Jetpack_Gutenberg::init(); |
||
604 | Jetpack_Gutenberg::load_independent_blocks(); |
||
605 | add_action( 'enqueue_block_editor_assets', array( 'Jetpack_Gutenberg', 'enqueue_block_editor_assets' ) ); |
||
606 | |||
607 | add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 ); |
||
608 | |||
609 | // Unlink user before deleting the user from WP.com. |
||
610 | add_action( 'deleted_user', array( 'Automattic\\Jetpack\\Connection\\Manager', 'disconnect_user' ), 10, 1 ); |
||
611 | add_action( 'remove_user_from_blog', array( 'Automattic\\Jetpack\\Connection\\Manager', 'disconnect_user' ), 10, 1 ); |
||
612 | |||
613 | // Initialize remote file upload request handlers. |
||
614 | $this->add_remote_request_handlers(); |
||
615 | |||
616 | if ( Jetpack::is_active() ) { |
||
617 | add_action( 'login_form_jetpack_json_api_authorization', array( $this, 'login_form_json_api_authorization' ) ); |
||
618 | |||
619 | Jetpack_Heartbeat::init(); |
||
620 | if ( Jetpack::is_module_active( 'stats' ) && Jetpack::is_module_active( 'search' ) ) { |
||
621 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php'; |
||
622 | Jetpack_Search_Performance_Logger::init(); |
||
623 | } |
||
624 | } |
||
625 | |||
626 | add_action( 'jetpack_event_log', array( 'Jetpack', 'log' ), 10, 2 ); |
||
627 | |||
628 | add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) ); |
||
629 | add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) ); |
||
630 | |||
631 | add_action( 'admin_init', array( $this, 'admin_init' ) ); |
||
632 | add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) ); |
||
633 | |||
634 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
||
635 | |||
636 | add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) ); |
||
637 | // Filter the dashboard meta box order to swap the new one in in place of the old one. |
||
638 | add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) ); |
||
639 | |||
640 | // returns HTTPS support status |
||
641 | add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) ); |
||
642 | |||
643 | // JITM AJAX callback function |
||
644 | add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) ); |
||
645 | |||
646 | add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) ); |
||
647 | |||
648 | add_action( 'wp_loaded', array( $this, 'register_assets' ) ); |
||
649 | add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
650 | add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
651 | add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
652 | |||
653 | add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 ); |
||
654 | |||
655 | /** |
||
656 | * These actions run checks to load additional files. |
||
657 | * They check for external files or plugins, so they need to run as late as possible. |
||
658 | */ |
||
659 | add_action( 'wp_head', array( $this, 'check_open_graph' ), 1 ); |
||
660 | add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ), 999 ); |
||
661 | add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 ); |
||
662 | |||
663 | add_filter( 'plugins_url', array( 'Jetpack', 'maybe_min_asset' ), 1, 3 ); |
||
664 | add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2 ); |
||
665 | add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 ); |
||
666 | |||
667 | add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 ); |
||
668 | add_filter( 'profile_update', array( 'Jetpack', 'user_meta_cleanup' ) ); |
||
669 | |||
670 | add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) ); |
||
671 | add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 ); |
||
672 | |||
673 | // A filter to control all just in time messages |
||
674 | add_filter( 'jetpack_just_in_time_msgs', array( $this, 'is_active_and_not_development_mode' ), 9 ); |
||
675 | |||
676 | add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9); |
||
677 | |||
678 | // If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin. |
||
679 | // We should make sure to only do this for front end links. |
||
680 | if ( Jetpack::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) { |
||
681 | add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 ); |
||
682 | add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 ); |
||
683 | |||
684 | //we'll override wp_notify_postauthor and wp_notify_moderator pluggable functions |
||
685 | //so they point moderation links on emails to Calypso |
||
686 | jetpack_require_lib( 'functions.wp-notify' ); |
||
687 | } |
||
688 | |||
689 | // Hide edit post link if mobile app. |
||
690 | if ( Jetpack_User_Agent_Info::is_mobile_app() ) { |
||
691 | add_filter( 'edit_post_link', '__return_empty_string' ); |
||
692 | } |
||
693 | |||
694 | // Update the Jetpack plan from API on heartbeats |
||
695 | add_action( 'jetpack_heartbeat', array( 'Jetpack_Plan', 'refresh_from_wpcom' ) ); |
||
696 | |||
697 | /** |
||
698 | * This is the hack to concatenate all css files into one. |
||
699 | * For description and reasoning see the implode_frontend_css method |
||
700 | * |
||
701 | * Super late priority so we catch all the registered styles |
||
702 | */ |
||
703 | if( !is_admin() ) { |
||
704 | add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first |
||
705 | add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles` |
||
706 | } |
||
707 | |||
708 | |||
709 | /** |
||
710 | * These are sync actions that we need to keep track of for jitms |
||
711 | */ |
||
712 | add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 ); |
||
713 | |||
714 | // Actually push the stats on shutdown. |
||
715 | if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) { |
||
716 | add_action( 'shutdown', array( $this, 'push_stats' ) ); |
||
717 | } |
||
718 | |||
719 | /* |
||
720 | * Load some scripts asynchronously. |
||
721 | */ |
||
722 | add_action( 'script_loader_tag', array( $this, 'script_add_async' ), 10, 3 ); |
||
723 | } |
||
724 | |||
725 | /** |
||
726 | * Sets up the XMLRPC request handlers. |
||
727 | * |
||
728 | * @deprecated since 7.7.0 |
||
729 | * @see Automattic\Jetpack\Connection\Manager::setup_xmlrpc_handlers() |
||
730 | * |
||
731 | * @param Array $request_params Incoming request parameters. |
||
732 | * @param Boolean $is_active Whether the connection is currently active. |
||
733 | * @param Boolean $is_signed Whether the signature check has been successful. |
||
734 | * @param Jetpack_XMLRPC_Server $xmlrpc_server (optional) An instance of the server to use instead of instantiating a new one. |
||
735 | */ |
||
736 | public function setup_xmlrpc_handlers( |
||
737 | $request_params, |
||
738 | $is_active, |
||
739 | $is_signed, |
||
740 | Jetpack_XMLRPC_Server $xmlrpc_server = null |
||
741 | ) { |
||
742 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::setup_xmlrpc_handlers' ); |
||
743 | return $this->connection_manager->setup_xmlrpc_handlers( |
||
744 | $request_params, |
||
745 | $is_active, |
||
746 | $is_signed, |
||
747 | $xmlrpc_server |
||
748 | ); |
||
749 | } |
||
750 | |||
751 | /** |
||
752 | * Initialize REST API registration connector. |
||
753 | * |
||
754 | * @deprecated since 7.7.0 |
||
755 | * @see Automattic\Jetpack\Connection\Manager::initialize_rest_api_registration_connector() |
||
756 | */ |
||
757 | public function initialize_rest_api_registration_connector() { |
||
758 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::initialize_rest_api_registration_connector' ); |
||
759 | $this->connection_manager->initialize_rest_api_registration_connector(); |
||
760 | } |
||
761 | |||
762 | /** |
||
763 | * This is ported over from the manage module, which has been deprecated and baked in here. |
||
764 | * |
||
765 | * @param $domains |
||
766 | */ |
||
767 | function add_wpcom_to_allowed_redirect_hosts( $domains ) { |
||
768 | add_filter( 'allowed_redirect_hosts', array( $this, 'allow_wpcom_domain' ) ); |
||
769 | } |
||
770 | |||
771 | /** |
||
772 | * Return $domains, with 'wordpress.com' appended. |
||
773 | * This is ported over from the manage module, which has been deprecated and baked in here. |
||
774 | * |
||
775 | * @param $domains |
||
776 | * @return array |
||
777 | */ |
||
778 | function allow_wpcom_domain( $domains ) { |
||
779 | if ( empty( $domains ) ) { |
||
780 | $domains = array(); |
||
781 | } |
||
782 | $domains[] = 'wordpress.com'; |
||
783 | return array_unique( $domains ); |
||
784 | } |
||
785 | |||
786 | function point_edit_post_links_to_calypso( $default_url, $post_id ) { |
||
787 | $post = get_post( $post_id ); |
||
788 | |||
789 | if ( empty( $post ) ) { |
||
790 | return $default_url; |
||
791 | } |
||
792 | |||
793 | $post_type = $post->post_type; |
||
794 | |||
795 | // Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso. |
||
796 | // https://en.support.wordpress.com/custom-post-types/ |
||
797 | $allowed_post_types = array( |
||
798 | 'post' => 'post', |
||
799 | 'page' => 'page', |
||
800 | 'jetpack-portfolio' => 'edit/jetpack-portfolio', |
||
801 | 'jetpack-testimonial' => 'edit/jetpack-testimonial', |
||
802 | ); |
||
803 | |||
804 | if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) { |
||
805 | return $default_url; |
||
806 | } |
||
807 | |||
808 | $path_prefix = $allowed_post_types[ $post_type ]; |
||
809 | |||
810 | $site_slug = Jetpack::build_raw_urls( get_home_url() ); |
||
811 | |||
812 | return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) ); |
||
813 | } |
||
814 | |||
815 | function point_edit_comment_links_to_calypso( $url ) { |
||
816 | // Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID. |
||
817 | wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args ); |
||
818 | return esc_url( sprintf( 'https://wordpress.com/comment/%s/%d', |
||
819 | Jetpack::build_raw_urls( get_home_url() ), |
||
820 | $query_args['amp;c'] |
||
821 | ) ); |
||
822 | } |
||
823 | |||
824 | function jetpack_track_last_sync_callback( $params ) { |
||
825 | /** |
||
826 | * Filter to turn off jitm caching |
||
827 | * |
||
828 | * @since 5.4.0 |
||
829 | * |
||
830 | * @param bool false Whether to cache just in time messages |
||
831 | */ |
||
832 | if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) { |
||
833 | return $params; |
||
834 | } |
||
835 | |||
836 | if ( is_array( $params ) && isset( $params[0] ) ) { |
||
837 | $option = $params[0]; |
||
838 | if ( 'active_plugins' === $option ) { |
||
839 | // use the cache if we can, but not terribly important if it gets evicted |
||
840 | set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS ); |
||
841 | } |
||
842 | } |
||
843 | |||
844 | return $params; |
||
845 | } |
||
846 | |||
847 | function jetpack_connection_banner_callback() { |
||
848 | check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' ); |
||
849 | |||
850 | if ( isset( $_REQUEST['dismissBanner'] ) ) { |
||
851 | Jetpack_Options::update_option( 'dismissed_connection_banner', 1 ); |
||
852 | wp_send_json_success(); |
||
853 | } |
||
854 | |||
855 | wp_die(); |
||
856 | } |
||
857 | |||
858 | /** |
||
859 | * Removes all XML-RPC methods that are not `jetpack.*`. |
||
860 | * Only used in our alternate XML-RPC endpoint, where we want to |
||
861 | * ensure that Core and other plugins' methods are not exposed. |
||
862 | * |
||
863 | * @deprecated since 7.7.0 |
||
864 | * @see Automattic\Jetpack\Connection\Manager::remove_non_jetpack_xmlrpc_methods() |
||
865 | * |
||
866 | * @param array $methods A list of registered WordPress XMLRPC methods. |
||
867 | * @return array Filtered $methods |
||
868 | */ |
||
869 | public function remove_non_jetpack_xmlrpc_methods( $methods ) { |
||
870 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::remove_non_jetpack_xmlrpc_methods' ); |
||
871 | return $this->connection_manager->remove_non_jetpack_xmlrpc_methods( $methods ); |
||
872 | } |
||
873 | |||
874 | /** |
||
875 | * Since a lot of hosts use a hammer approach to "protecting" WordPress sites, |
||
876 | * and just blanket block all requests to /xmlrpc.php, or apply other overly-sensitive |
||
877 | * security/firewall policies, we provide our own alternate XML RPC API endpoint |
||
878 | * which is accessible via a different URI. Most of the below is copied directly |
||
879 | * from /xmlrpc.php so that we're replicating it as closely as possible. |
||
880 | * |
||
881 | * @deprecated since 7.7.0 |
||
882 | * @see Automattic\Jetpack\Connection\Manager::alternate_xmlrpc() |
||
883 | */ |
||
884 | public function alternate_xmlrpc() { |
||
885 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::alternate_xmlrpc' ); |
||
886 | $this->connection_manager->alternate_xmlrpc(); |
||
887 | } |
||
888 | |||
889 | /** |
||
890 | * The callback for the JITM ajax requests. |
||
891 | */ |
||
892 | function jetpack_jitm_ajax_callback() { |
||
893 | // Check for nonce |
||
894 | if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) { |
||
895 | wp_die( 'Module activation failed due to lack of appropriate permissions' ); |
||
896 | } |
||
897 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) { |
||
898 | $module_slug = $_REQUEST['jitmModule']; |
||
899 | Jetpack::log( 'activate', $module_slug ); |
||
900 | Jetpack::activate_module( $module_slug, false, false ); |
||
901 | Jetpack::state( 'message', 'no_message' ); |
||
902 | |||
903 | //A Jetpack module is being activated through a JITM, track it |
||
904 | $this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION ); |
||
905 | $this->do_stats( 'server_side' ); |
||
906 | |||
907 | wp_send_json_success(); |
||
908 | } |
||
909 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) { |
||
910 | // get the hide_jitm options array |
||
911 | $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' ); |
||
912 | $module_slug = $_REQUEST['jitmModule']; |
||
913 | |||
914 | if( ! $jetpack_hide_jitm ) { |
||
915 | $jetpack_hide_jitm = array( |
||
916 | $module_slug => 'hide' |
||
917 | ); |
||
918 | } else { |
||
919 | $jetpack_hide_jitm[$module_slug] = 'hide'; |
||
920 | } |
||
921 | |||
922 | Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm ); |
||
923 | |||
924 | //jitm is being dismissed forever, track it |
||
925 | $this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION ); |
||
926 | $this->do_stats( 'server_side' ); |
||
927 | |||
928 | wp_send_json_success(); |
||
929 | } |
||
930 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) { |
|
931 | $module_slug = $_REQUEST['jitmModule']; |
||
932 | |||
933 | // User went to WordPress.com, track this |
||
934 | $this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION ); |
||
935 | $this->do_stats( 'server_side' ); |
||
936 | |||
937 | wp_send_json_success(); |
||
938 | } |
||
939 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) { |
|
940 | $track = $_REQUEST['jitmModule']; |
||
941 | |||
942 | // User is viewing JITM, track it. |
||
943 | $this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION ); |
||
944 | $this->do_stats( 'server_side' ); |
||
945 | |||
946 | wp_send_json_success(); |
||
947 | } |
||
948 | } |
||
949 | |||
950 | /** |
||
951 | * If there are any stats that need to be pushed, but haven't been, push them now. |
||
952 | */ |
||
953 | function push_stats() { |
||
954 | if ( ! empty( $this->stats ) ) { |
||
955 | $this->do_stats( 'server_side' ); |
||
956 | } |
||
957 | } |
||
958 | |||
959 | function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { |
||
960 | switch( $cap ) { |
||
961 | case 'jetpack_connect' : |
||
962 | case 'jetpack_reconnect' : |
||
963 | if ( Jetpack::is_development_mode() ) { |
||
964 | $caps = array( 'do_not_allow' ); |
||
965 | break; |
||
966 | } |
||
967 | /** |
||
968 | * Pass through. If it's not development mode, these should match disconnect. |
||
969 | * Let users disconnect if it's development mode, just in case things glitch. |
||
970 | */ |
||
971 | case 'jetpack_disconnect' : |
||
972 | /** |
||
973 | * In multisite, can individual site admins manage their own connection? |
||
974 | * |
||
975 | * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class. |
||
976 | */ |
||
977 | if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
978 | if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) { |
||
979 | /** |
||
980 | * We need to update the option name -- it's terribly unclear which |
||
981 | * direction the override goes. |
||
982 | * |
||
983 | * @todo: Update the option name to `sub-sites-can-manage-own-connections` |
||
984 | */ |
||
985 | $caps = array( 'do_not_allow' ); |
||
986 | break; |
||
987 | } |
||
988 | } |
||
989 | |||
990 | $caps = array( 'manage_options' ); |
||
991 | break; |
||
992 | case 'jetpack_manage_modules' : |
||
993 | case 'jetpack_activate_modules' : |
||
994 | case 'jetpack_deactivate_modules' : |
||
995 | $caps = array( 'manage_options' ); |
||
996 | break; |
||
997 | case 'jetpack_configure_modules' : |
||
998 | $caps = array( 'manage_options' ); |
||
999 | break; |
||
1000 | case 'jetpack_manage_autoupdates' : |
||
1001 | $caps = array( |
||
1002 | 'manage_options', |
||
1003 | 'update_plugins', |
||
1004 | ); |
||
1005 | break; |
||
1006 | case 'jetpack_network_admin_page': |
||
1007 | case 'jetpack_network_settings_page': |
||
1008 | $caps = array( 'manage_network_plugins' ); |
||
1009 | break; |
||
1010 | case 'jetpack_network_sites_page': |
||
1011 | $caps = array( 'manage_sites' ); |
||
1012 | break; |
||
1013 | case 'jetpack_admin_page' : |
||
1014 | if ( Jetpack::is_development_mode() ) { |
||
1015 | $caps = array( 'manage_options' ); |
||
1016 | break; |
||
1017 | } else { |
||
1018 | $caps = array( 'read' ); |
||
1019 | } |
||
1020 | break; |
||
1021 | case 'jetpack_connect_user' : |
||
1022 | if ( Jetpack::is_development_mode() ) { |
||
1023 | $caps = array( 'do_not_allow' ); |
||
1024 | break; |
||
1025 | } |
||
1026 | $caps = array( 'read' ); |
||
1027 | break; |
||
1028 | } |
||
1029 | return $caps; |
||
1030 | } |
||
1031 | |||
1032 | /** |
||
1033 | * Require a Jetpack authentication. |
||
1034 | * |
||
1035 | * @deprecated since 7.7.0 |
||
1036 | * @see Automattic\Jetpack\Connection\Manager::require_jetpack_authentication() |
||
1037 | */ |
||
1038 | public function require_jetpack_authentication() { |
||
1039 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::require_jetpack_authentication' ); |
||
1040 | $this->connection_manager->require_jetpack_authentication(); |
||
1041 | } |
||
1042 | |||
1043 | /** |
||
1044 | * Load language files |
||
1045 | * @action plugins_loaded |
||
1046 | */ |
||
1047 | public static function plugin_textdomain() { |
||
1048 | // Note to self, the third argument must not be hardcoded, to account for relocated folders. |
||
1049 | load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' ); |
||
1050 | } |
||
1051 | |||
1052 | /** |
||
1053 | * Register assets for use in various modules and the Jetpack admin page. |
||
1054 | * |
||
1055 | * @uses wp_script_is, wp_register_script, plugins_url |
||
1056 | * @action wp_loaded |
||
1057 | * @return null |
||
1058 | */ |
||
1059 | public function register_assets() { |
||
1060 | if ( ! wp_script_is( 'spin', 'registered' ) ) { |
||
1061 | wp_register_script( |
||
1062 | 'spin', |
||
1063 | Assets::get_file_url_for_environment( '_inc/build/spin.min.js', '_inc/spin.js' ), |
||
1064 | false, |
||
1065 | '1.3' |
||
1066 | ); |
||
1067 | } |
||
1068 | |||
1069 | View Code Duplication | if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) { |
|
1070 | wp_register_script( |
||
1071 | 'jquery.spin', |
||
1072 | Assets::get_file_url_for_environment( '_inc/build/jquery.spin.min.js', '_inc/jquery.spin.js' ), |
||
1073 | array( 'jquery', 'spin' ), |
||
1074 | '1.3' |
||
1075 | ); |
||
1076 | } |
||
1077 | |||
1078 | View Code Duplication | if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { |
|
1079 | wp_register_script( |
||
1080 | 'jetpack-gallery-settings', |
||
1081 | Assets::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ), |
||
1082 | array( 'media-views' ), |
||
1083 | '20121225' |
||
1084 | ); |
||
1085 | } |
||
1086 | |||
1087 | View Code Duplication | if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) { |
|
1088 | wp_register_script( |
||
1089 | 'jetpack-twitter-timeline', |
||
1090 | Assets::get_file_url_for_environment( '_inc/build/twitter-timeline.min.js', '_inc/twitter-timeline.js' ), |
||
1091 | array( 'jquery' ), |
||
1092 | '4.0.0', |
||
1093 | true |
||
1094 | ); |
||
1095 | } |
||
1096 | |||
1097 | if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) { |
||
1098 | wp_register_script( |
||
1099 | 'jetpack-facebook-embed', |
||
1100 | Assets::get_file_url_for_environment( '_inc/build/facebook-embed.min.js', '_inc/facebook-embed.js' ), |
||
1101 | array( 'jquery' ), |
||
1102 | null, |
||
1103 | true |
||
1104 | ); |
||
1105 | |||
1106 | /** This filter is documented in modules/sharedaddy/sharing-sources.php */ |
||
1107 | $fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ); |
||
1108 | if ( ! is_numeric( $fb_app_id ) ) { |
||
1109 | $fb_app_id = ''; |
||
1110 | } |
||
1111 | wp_localize_script( |
||
1112 | 'jetpack-facebook-embed', |
||
1113 | 'jpfbembed', |
||
1114 | array( |
||
1115 | 'appid' => $fb_app_id, |
||
1116 | 'locale' => $this->get_locale(), |
||
1117 | ) |
||
1118 | ); |
||
1119 | } |
||
1120 | |||
1121 | /** |
||
1122 | * As jetpack_register_genericons is by default fired off a hook, |
||
1123 | * the hook may have already fired by this point. |
||
1124 | * So, let's just trigger it manually. |
||
1125 | */ |
||
1126 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); |
||
1127 | jetpack_register_genericons(); |
||
1128 | |||
1129 | /** |
||
1130 | * Register the social logos |
||
1131 | */ |
||
1132 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); |
||
1133 | jetpack_register_social_logos(); |
||
1134 | |||
1135 | View Code Duplication | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) |
|
1136 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
||
1137 | } |
||
1138 | |||
1139 | /** |
||
1140 | * Guess locale from language code. |
||
1141 | * |
||
1142 | * @param string $lang Language code. |
||
1143 | * @return string|bool |
||
1144 | */ |
||
1145 | View Code Duplication | function guess_locale_from_lang( $lang ) { |
|
1146 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
||
1147 | return 'en_US'; |
||
1148 | } |
||
1149 | |||
1150 | if ( ! class_exists( 'GP_Locales' ) ) { |
||
1151 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
||
1152 | return false; |
||
1153 | } |
||
1154 | |||
1155 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
||
1156 | } |
||
1157 | |||
1158 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
||
1159 | // WP.com: get_locale() returns 'it' |
||
1160 | $locale = GP_Locales::by_slug( $lang ); |
||
1161 | } else { |
||
1162 | // Jetpack: get_locale() returns 'it_IT'; |
||
1163 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
||
1164 | } |
||
1165 | |||
1166 | if ( ! $locale ) { |
||
1167 | return false; |
||
1168 | } |
||
1169 | |||
1170 | if ( empty( $locale->facebook_locale ) ) { |
||
1171 | if ( empty( $locale->wp_locale ) ) { |
||
1172 | return false; |
||
1173 | } else { |
||
1174 | // Facebook SDK is smart enough to fall back to en_US if a |
||
1175 | // locale isn't supported. Since supported Facebook locales |
||
1176 | // can fall out of sync, we'll attempt to use the known |
||
1177 | // wp_locale value and rely on said fallback. |
||
1178 | return $locale->wp_locale; |
||
1179 | } |
||
1180 | } |
||
1181 | |||
1182 | return $locale->facebook_locale; |
||
1183 | } |
||
1184 | |||
1185 | /** |
||
1186 | * Get the locale. |
||
1187 | * |
||
1188 | * @return string|bool |
||
1189 | */ |
||
1190 | function get_locale() { |
||
1191 | $locale = $this->guess_locale_from_lang( get_locale() ); |
||
1192 | |||
1193 | if ( ! $locale ) { |
||
1194 | $locale = 'en_US'; |
||
1195 | } |
||
1196 | |||
1197 | return $locale; |
||
1198 | } |
||
1199 | |||
1200 | /** |
||
1201 | * Device Pixels support |
||
1202 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. |
||
1203 | */ |
||
1204 | function devicepx() { |
||
1205 | if ( Jetpack::is_active() && ! Jetpack_AMP_Support::is_amp_request() ) { |
||
1206 | wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true ); |
||
1207 | } |
||
1208 | } |
||
1209 | |||
1210 | /** |
||
1211 | * Return the network_site_url so that .com knows what network this site is a part of. |
||
1212 | * @param bool $option |
||
1213 | * @return string |
||
1214 | */ |
||
1215 | public function jetpack_main_network_site_option( $option ) { |
||
1216 | return network_site_url(); |
||
1217 | } |
||
1218 | /** |
||
1219 | * Network Name. |
||
1220 | */ |
||
1221 | static function network_name( $option = null ) { |
||
1222 | global $current_site; |
||
1223 | return $current_site->site_name; |
||
1224 | } |
||
1225 | /** |
||
1226 | * Does the network allow new user and site registrations. |
||
1227 | * @return string |
||
1228 | */ |
||
1229 | static function network_allow_new_registrations( $option = null ) { |
||
1230 | return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' ); |
||
1231 | } |
||
1232 | /** |
||
1233 | * Does the network allow admins to add new users. |
||
1234 | * @return boolian |
||
1235 | */ |
||
1236 | static function network_add_new_users( $option = null ) { |
||
1237 | return (bool) get_site_option( 'add_new_users' ); |
||
1238 | } |
||
1239 | /** |
||
1240 | * File upload psace left per site in MB. |
||
1241 | * -1 means NO LIMIT. |
||
1242 | * @return number |
||
1243 | */ |
||
1244 | static function network_site_upload_space( $option = null ) { |
||
1245 | // value in MB |
||
1246 | return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() ); |
||
1247 | } |
||
1248 | |||
1249 | /** |
||
1250 | * Network allowed file types. |
||
1251 | * @return string |
||
1252 | */ |
||
1253 | static function network_upload_file_types( $option = null ) { |
||
1254 | return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' ); |
||
1255 | } |
||
1256 | |||
1257 | /** |
||
1258 | * Maximum file upload size set by the network. |
||
1259 | * @return number |
||
1260 | */ |
||
1261 | static function network_max_upload_file_size( $option = null ) { |
||
1262 | // value in KB |
||
1263 | return get_site_option( 'fileupload_maxk', 300 ); |
||
1264 | } |
||
1265 | |||
1266 | /** |
||
1267 | * Lets us know if a site allows admins to manage the network. |
||
1268 | * @return array |
||
1269 | */ |
||
1270 | static function network_enable_administration_menus( $option = null ) { |
||
1271 | return get_site_option( 'menu_items' ); |
||
1272 | } |
||
1273 | |||
1274 | /** |
||
1275 | * If a user has been promoted to or demoted from admin, we need to clear the |
||
1276 | * jetpack_other_linked_admins transient. |
||
1277 | * |
||
1278 | * @since 4.3.2 |
||
1279 | * @since 4.4.0 $old_roles is null by default and if it's not passed, the transient is cleared. |
||
1280 | * |
||
1281 | * @param int $user_id The user ID whose role changed. |
||
1282 | * @param string $role The new role. |
||
1283 | * @param array $old_roles An array of the user's previous roles. |
||
1284 | */ |
||
1285 | function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) { |
||
1286 | if ( 'administrator' == $role |
||
1287 | || ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) ) |
||
1288 | || is_null( $old_roles ) |
||
1289 | ) { |
||
1290 | delete_transient( 'jetpack_other_linked_admins' ); |
||
1291 | } |
||
1292 | } |
||
1293 | |||
1294 | /** |
||
1295 | * Checks to see if there are any other users available to become primary |
||
1296 | * Users must both: |
||
1297 | * - Be linked to wpcom |
||
1298 | * - Be an admin |
||
1299 | * |
||
1300 | * @return mixed False if no other users are linked, Int if there are. |
||
1301 | */ |
||
1302 | static function get_other_linked_admins() { |
||
1303 | $other_linked_users = get_transient( 'jetpack_other_linked_admins' ); |
||
1304 | |||
1305 | if ( false === $other_linked_users ) { |
||
1306 | $admins = get_users( array( 'role' => 'administrator' ) ); |
||
1307 | if ( count( $admins ) > 1 ) { |
||
1308 | $available = array(); |
||
1309 | foreach ( $admins as $admin ) { |
||
1310 | if ( Jetpack::is_user_connected( $admin->ID ) ) { |
||
1311 | $available[] = $admin->ID; |
||
1312 | } |
||
1313 | } |
||
1314 | |||
1315 | $count_connected_admins = count( $available ); |
||
1316 | if ( count( $available ) > 1 ) { |
||
1317 | $other_linked_users = $count_connected_admins; |
||
1318 | } else { |
||
1319 | $other_linked_users = 0; |
||
1320 | } |
||
1321 | } else { |
||
1322 | $other_linked_users = 0; |
||
1323 | } |
||
1324 | |||
1325 | set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS ); |
||
1326 | } |
||
1327 | |||
1328 | return ( 0 === $other_linked_users ) ? false : $other_linked_users; |
||
1329 | } |
||
1330 | |||
1331 | /** |
||
1332 | * Return whether we are dealing with a multi network setup or not. |
||
1333 | * The reason we are type casting this is because we want to avoid the situation where |
||
1334 | * the result is false since when is_main_network_option return false it cases |
||
1335 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the |
||
1336 | * database which could be set to anything as opposed to what this function returns. |
||
1337 | * @param bool $option |
||
1338 | * |
||
1339 | * @return boolean |
||
1340 | */ |
||
1341 | public function is_main_network_option( $option ) { |
||
1342 | // return '1' or '' |
||
1343 | return (string) (bool) Jetpack::is_multi_network(); |
||
1344 | } |
||
1345 | |||
1346 | /** |
||
1347 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
||
1348 | * |
||
1349 | * @param string $option |
||
1350 | * @return boolean |
||
1351 | */ |
||
1352 | public function is_multisite( $option ) { |
||
1353 | return (string) (bool) is_multisite(); |
||
1354 | } |
||
1355 | |||
1356 | /** |
||
1357 | * Implemented since there is no core is multi network function |
||
1358 | * Right now there is no way to tell if we which network is the dominant network on the system |
||
1359 | * |
||
1360 | * @since 3.3 |
||
1361 | * @return boolean |
||
1362 | */ |
||
1363 | View Code Duplication | public static function is_multi_network() { |
|
1364 | global $wpdb; |
||
1365 | |||
1366 | // if we don't have a multi site setup no need to do any more |
||
1367 | if ( ! is_multisite() ) { |
||
1368 | return false; |
||
1369 | } |
||
1370 | |||
1371 | $num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); |
||
1372 | if ( $num_sites > 1 ) { |
||
1373 | return true; |
||
1374 | } else { |
||
1375 | return false; |
||
1376 | } |
||
1377 | } |
||
1378 | |||
1379 | /** |
||
1380 | * Trigger an update to the main_network_site when we update the siteurl of a site. |
||
1381 | * @return null |
||
1382 | */ |
||
1383 | function update_jetpack_main_network_site_option() { |
||
1384 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1385 | } |
||
1386 | /** |
||
1387 | * Triggered after a user updates the network settings via Network Settings Admin Page |
||
1388 | * |
||
1389 | */ |
||
1390 | function update_jetpack_network_settings() { |
||
1391 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1392 | // Only sync this info for the main network site. |
||
1393 | } |
||
1394 | |||
1395 | /** |
||
1396 | * Get back if the current site is single user site. |
||
1397 | * |
||
1398 | * @return bool |
||
1399 | */ |
||
1400 | View Code Duplication | public static function is_single_user_site() { |
|
1401 | global $wpdb; |
||
1402 | |||
1403 | if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) { |
||
1404 | $some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" ); |
||
1405 | set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS ); |
||
1406 | } |
||
1407 | return 1 === (int) $some_users; |
||
1408 | } |
||
1409 | |||
1410 | /** |
||
1411 | * Returns true if the site has file write access false otherwise. |
||
1412 | * @return string ( '1' | '0' ) |
||
1413 | **/ |
||
1414 | public static function file_system_write_access() { |
||
1415 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
||
1416 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
||
1417 | } |
||
1418 | |||
1419 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
||
1420 | |||
1421 | $filesystem_method = get_filesystem_method(); |
||
1422 | if ( $filesystem_method === 'direct' ) { |
||
1423 | return 1; |
||
1424 | } |
||
1425 | |||
1426 | ob_start(); |
||
1427 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); |
||
1428 | ob_end_clean(); |
||
1429 | if ( $filesystem_credentials_are_stored ) { |
||
1430 | return 1; |
||
1431 | } |
||
1432 | return 0; |
||
1433 | } |
||
1434 | |||
1435 | /** |
||
1436 | * Finds out if a site is using a version control system. |
||
1437 | * @return string ( '1' | '0' ) |
||
1438 | **/ |
||
1439 | public static function is_version_controlled() { |
||
1440 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Functions::is_version_controlled' ); |
||
1441 | return (string) (int) Functions::is_version_controlled(); |
||
1442 | } |
||
1443 | |||
1444 | /** |
||
1445 | * Determines whether the current theme supports featured images or not. |
||
1446 | * @return string ( '1' | '0' ) |
||
1447 | */ |
||
1448 | public static function featured_images_enabled() { |
||
1449 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1450 | return current_theme_supports( 'post-thumbnails' ) ? '1' : '0'; |
||
1451 | } |
||
1452 | |||
1453 | /** |
||
1454 | * Wrapper for core's get_avatar_url(). This one is deprecated. |
||
1455 | * |
||
1456 | * @deprecated 4.7 use get_avatar_url instead. |
||
1457 | * @param int|string|object $id_or_email A user ID, email address, or comment object |
||
1458 | * @param int $size Size of the avatar image |
||
1459 | * @param string $default URL to a default image to use if no avatar is available |
||
1460 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled |
||
1461 | * |
||
1462 | * @return array |
||
1463 | */ |
||
1464 | public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { |
||
1465 | _deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' ); |
||
1466 | return get_avatar_url( $id_or_email, array( |
||
1467 | 'size' => $size, |
||
1468 | 'default' => $default, |
||
1469 | 'force_default' => $force_display, |
||
1470 | ) ); |
||
1471 | } |
||
1472 | |||
1473 | /** |
||
1474 | * jetpack_updates is saved in the following schema: |
||
1475 | * |
||
1476 | * array ( |
||
1477 | * 'plugins' => (int) Number of plugin updates available. |
||
1478 | * 'themes' => (int) Number of theme updates available. |
||
1479 | * 'wordpress' => (int) Number of WordPress core updates available. |
||
1480 | * 'translations' => (int) Number of translation updates available. |
||
1481 | * 'total' => (int) Total of all available updates. |
||
1482 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. |
||
1483 | * ) |
||
1484 | * @return array |
||
1485 | */ |
||
1486 | public static function get_updates() { |
||
1487 | $update_data = wp_get_update_data(); |
||
1488 | |||
1489 | // Stores the individual update counts as well as the total count. |
||
1490 | if ( isset( $update_data['counts'] ) ) { |
||
1491 | $updates = $update_data['counts']; |
||
1492 | } |
||
1493 | |||
1494 | // If we need to update WordPress core, let's find the latest version number. |
||
1495 | View Code Duplication | if ( ! empty( $updates['wordpress'] ) ) { |
|
1496 | $cur = get_preferred_from_update_core(); |
||
1497 | if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { |
||
1498 | $updates['wp_update_version'] = $cur->current; |
||
1499 | } |
||
1500 | } |
||
1501 | return isset( $updates ) ? $updates : array(); |
||
1502 | } |
||
1503 | |||
1504 | public static function get_update_details() { |
||
1505 | $update_details = array( |
||
1506 | 'update_core' => get_site_transient( 'update_core' ), |
||
1507 | 'update_plugins' => get_site_transient( 'update_plugins' ), |
||
1508 | 'update_themes' => get_site_transient( 'update_themes' ), |
||
1509 | ); |
||
1510 | return $update_details; |
||
1511 | } |
||
1512 | |||
1513 | public static function refresh_update_data() { |
||
1514 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1515 | |||
1516 | } |
||
1517 | |||
1518 | public static function refresh_theme_data() { |
||
1519 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
1520 | } |
||
1521 | |||
1522 | /** |
||
1523 | * Is Jetpack active? |
||
1524 | */ |
||
1525 | public static function is_active() { |
||
1526 | return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
1527 | } |
||
1528 | |||
1529 | /** |
||
1530 | * Make an API call to WordPress.com for plan status |
||
1531 | * |
||
1532 | * @deprecated 7.2.0 Use Jetpack_Plan::refresh_from_wpcom. |
||
1533 | * |
||
1534 | * @return bool True if plan is updated, false if no update |
||
1535 | */ |
||
1536 | public static function refresh_active_plan_from_wpcom() { |
||
1537 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::refresh_from_wpcom' ); |
||
1538 | return Jetpack_Plan::refresh_from_wpcom(); |
||
1539 | } |
||
1540 | |||
1541 | /** |
||
1542 | * Get the plan that this Jetpack site is currently using |
||
1543 | * |
||
1544 | * @deprecated 7.2.0 Use Jetpack_Plan::get. |
||
1545 | * @return array Active Jetpack plan details. |
||
1546 | */ |
||
1547 | public static function get_active_plan() { |
||
1548 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::get' ); |
||
1549 | return Jetpack_Plan::get(); |
||
1550 | } |
||
1551 | |||
1552 | /** |
||
1553 | * Determine whether the active plan supports a particular feature |
||
1554 | * |
||
1555 | * @deprecated 7.2.0 Use Jetpack_Plan::supports. |
||
1556 | * @return bool True if plan supports feature, false if not. |
||
1557 | */ |
||
1558 | public static function active_plan_supports( $feature ) { |
||
1559 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::supports' ); |
||
1560 | return Jetpack_Plan::supports( $feature ); |
||
1561 | } |
||
1562 | |||
1563 | /** |
||
1564 | * Is Jetpack in development (offline) mode? |
||
1565 | */ |
||
1566 | View Code Duplication | public static function is_development_mode() { |
|
1567 | $development_mode = false; |
||
1568 | |||
1569 | if ( defined( 'JETPACK_DEV_DEBUG' ) ) { |
||
1570 | $development_mode = JETPACK_DEV_DEBUG; |
||
1571 | } elseif ( $site_url = site_url() ) { |
||
1572 | $development_mode = false === strpos( $site_url, '.' ); |
||
1573 | } |
||
1574 | |||
1575 | /** |
||
1576 | * Filters Jetpack's development mode. |
||
1577 | * |
||
1578 | * @see https://jetpack.com/support/development-mode/ |
||
1579 | * |
||
1580 | * @since 2.2.1 |
||
1581 | * |
||
1582 | * @param bool $development_mode Is Jetpack's development mode active. |
||
1583 | */ |
||
1584 | $development_mode = ( bool ) apply_filters( 'jetpack_development_mode', $development_mode ); |
||
1585 | return $development_mode; |
||
1586 | } |
||
1587 | |||
1588 | /** |
||
1589 | * Whether the site is currently onboarding or not. |
||
1590 | * A site is considered as being onboarded if it currently has an onboarding token. |
||
1591 | * |
||
1592 | * @since 5.8 |
||
1593 | * |
||
1594 | * @access public |
||
1595 | * @static |
||
1596 | * |
||
1597 | * @return bool True if the site is currently onboarding, false otherwise |
||
1598 | */ |
||
1599 | public static function is_onboarding() { |
||
1600 | return Jetpack_Options::get_option( 'onboarding' ) !== false; |
||
1601 | } |
||
1602 | |||
1603 | /** |
||
1604 | * Determines reason for Jetpack development mode. |
||
1605 | */ |
||
1606 | public static function development_mode_trigger_text() { |
||
1607 | if ( ! Jetpack::is_development_mode() ) { |
||
1608 | return __( 'Jetpack is not in Development Mode.', 'jetpack' ); |
||
1609 | } |
||
1610 | |||
1611 | if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) { |
||
1612 | $notice = __( 'The JETPACK_DEV_DEBUG constant is defined in wp-config.php or elsewhere.', 'jetpack' ); |
||
1613 | } elseif ( site_url() && false === strpos( site_url(), '.' ) ) { |
||
1614 | $notice = __( 'The site URL lacking a dot (e.g. http://localhost).', 'jetpack' ); |
||
1615 | } else { |
||
1616 | $notice = __( 'The jetpack_development_mode filter is set to true.', 'jetpack' ); |
||
1617 | } |
||
1618 | |||
1619 | return $notice; |
||
1620 | |||
1621 | } |
||
1622 | /** |
||
1623 | * Get Jetpack development mode notice text and notice class. |
||
1624 | * |
||
1625 | * Mirrors the checks made in Jetpack::is_development_mode |
||
1626 | * |
||
1627 | */ |
||
1628 | public static function show_development_mode_notice() { |
||
1629 | View Code Duplication | if ( Jetpack::is_development_mode() ) { |
|
1630 | $notice = sprintf( |
||
1631 | /* translators: %s is a URL */ |
||
1632 | __( 'In <a href="%s" target="_blank">Development Mode</a>:', 'jetpack' ), |
||
1633 | 'https://jetpack.com/support/development-mode/' |
||
1634 | ); |
||
1635 | |||
1636 | $notice .= ' ' . Jetpack::development_mode_trigger_text(); |
||
1637 | |||
1638 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1639 | } |
||
1640 | |||
1641 | // Throw up a notice if using a development version and as for feedback. |
||
1642 | if ( Jetpack::is_development_version() ) { |
||
1643 | /* translators: %s is a URL */ |
||
1644 | $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/' ); |
||
1645 | |||
1646 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1647 | } |
||
1648 | // Throw up a notice if using staging mode |
||
1649 | if ( Jetpack::is_staging_site() ) { |
||
1650 | /* translators: %s is a URL */ |
||
1651 | $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' ); |
||
1652 | |||
1653 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
1654 | } |
||
1655 | } |
||
1656 | |||
1657 | /** |
||
1658 | * Whether Jetpack's version maps to a public release, or a development version. |
||
1659 | */ |
||
1660 | public static function is_development_version() { |
||
1661 | /** |
||
1662 | * Allows filtering whether this is a development version of Jetpack. |
||
1663 | * |
||
1664 | * This filter is especially useful for tests. |
||
1665 | * |
||
1666 | * @since 4.3.0 |
||
1667 | * |
||
1668 | * @param bool $development_version Is this a develoment version of Jetpack? |
||
1669 | */ |
||
1670 | return (bool) apply_filters( |
||
1671 | 'jetpack_development_version', |
||
1672 | ! preg_match( '/^\d+(\.\d+)+$/', Constants::get_constant( 'JETPACK__VERSION' ) ) |
||
1673 | ); |
||
1674 | } |
||
1675 | |||
1676 | /** |
||
1677 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? |
||
1678 | */ |
||
1679 | public static function is_user_connected( $user_id = false ) { |
||
1680 | return self::connection()->is_user_connected( $user_id ); |
||
1681 | } |
||
1682 | |||
1683 | /** |
||
1684 | * Get the wpcom user data of the current|specified connected user. |
||
1685 | */ |
||
1686 | View Code Duplication | public static function get_connected_user_data( $user_id = null ) { |
|
1687 | // TODO: remove in favor of Connection_Manager->get_connected_user_data |
||
1688 | if ( ! $user_id ) { |
||
1689 | $user_id = get_current_user_id(); |
||
1690 | } |
||
1691 | |||
1692 | $transient_key = "jetpack_connected_user_data_$user_id"; |
||
1693 | |||
1694 | if ( $cached_user_data = get_transient( $transient_key ) ) { |
||
1695 | return $cached_user_data; |
||
1696 | } |
||
1697 | |||
1698 | $xml = new Jetpack_IXR_Client( array( |
||
1699 | 'user_id' => $user_id, |
||
1700 | ) ); |
||
1701 | $xml->query( 'wpcom.getUser' ); |
||
1702 | if ( ! $xml->isError() ) { |
||
1703 | $user_data = $xml->getResponse(); |
||
1704 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); |
||
1705 | return $user_data; |
||
1706 | } |
||
1707 | |||
1708 | return false; |
||
1709 | } |
||
1710 | |||
1711 | /** |
||
1712 | * Get the wpcom email of the current|specified connected user. |
||
1713 | */ |
||
1714 | View Code Duplication | public static function get_connected_user_email( $user_id = null ) { |
|
1715 | if ( ! $user_id ) { |
||
1716 | $user_id = get_current_user_id(); |
||
1717 | } |
||
1718 | |||
1719 | $xml = new Jetpack_IXR_Client( array( |
||
1720 | 'user_id' => $user_id, |
||
1721 | ) ); |
||
1722 | $xml->query( 'wpcom.getUserEmail' ); |
||
1723 | if ( ! $xml->isError() ) { |
||
1724 | return $xml->getResponse(); |
||
1725 | } |
||
1726 | return false; |
||
1727 | } |
||
1728 | |||
1729 | /** |
||
1730 | * Get the wpcom email of the master user. |
||
1731 | */ |
||
1732 | public static function get_master_user_email() { |
||
1733 | $master_user_id = Jetpack_Options::get_option( 'master_user' ); |
||
1734 | if ( $master_user_id ) { |
||
1735 | return self::get_connected_user_email( $master_user_id ); |
||
1736 | } |
||
1737 | return ''; |
||
1738 | } |
||
1739 | |||
1740 | /** |
||
1741 | * Whether the current user is the connection owner. |
||
1742 | * |
||
1743 | * @deprecated since 7.7 |
||
1744 | * |
||
1745 | * @return bool Whether the current user is the connection owner. |
||
1746 | */ |
||
1747 | public function current_user_is_connection_owner() { |
||
1748 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::is_connection_owner' ); |
||
1749 | return self::connection()->is_connection_owner(); |
||
1750 | } |
||
1751 | |||
1752 | /** |
||
1753 | * Gets current user IP address. |
||
1754 | * |
||
1755 | * @param bool $check_all_headers Check all headers? Default is `false`. |
||
1756 | * |
||
1757 | * @return string Current user IP address. |
||
1758 | */ |
||
1759 | public static function current_user_ip( $check_all_headers = false ) { |
||
1760 | if ( $check_all_headers ) { |
||
1761 | foreach ( array( |
||
1762 | 'HTTP_CF_CONNECTING_IP', |
||
1763 | 'HTTP_CLIENT_IP', |
||
1764 | 'HTTP_X_FORWARDED_FOR', |
||
1765 | 'HTTP_X_FORWARDED', |
||
1766 | 'HTTP_X_CLUSTER_CLIENT_IP', |
||
1767 | 'HTTP_FORWARDED_FOR', |
||
1768 | 'HTTP_FORWARDED', |
||
1769 | 'HTTP_VIA', |
||
1770 | ) as $key ) { |
||
1771 | if ( ! empty( $_SERVER[ $key ] ) ) { |
||
1772 | return $_SERVER[ $key ]; |
||
1773 | } |
||
1774 | } |
||
1775 | } |
||
1776 | |||
1777 | return ! empty( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : ''; |
||
1778 | } |
||
1779 | |||
1780 | /** |
||
1781 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. |
||
1782 | */ |
||
1783 | function extra_oembed_providers() { |
||
1784 | // Cloudup: https://dev.cloudup.com/#oembed |
||
1785 | wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' ); |
||
1786 | wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' ); |
||
1787 | wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true ); |
||
1788 | wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true ); |
||
1789 | wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true ); |
||
1790 | wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true ); |
||
1791 | wp_oembed_add_provider( 'https://song.link/*', 'https://song.link/oembed', false ); |
||
1792 | } |
||
1793 | |||
1794 | /** |
||
1795 | * Synchronize connected user role changes |
||
1796 | */ |
||
1797 | function user_role_change( $user_id ) { |
||
1798 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Users::user_role_change()' ); |
||
1799 | Users::user_role_change( $user_id ); |
||
1800 | } |
||
1801 | |||
1802 | /** |
||
1803 | * Loads the currently active modules. |
||
1804 | */ |
||
1805 | public static function load_modules() { |
||
1806 | if ( |
||
1807 | ! self::is_active() |
||
1808 | && ! self::is_development_mode() |
||
1809 | && ! self::is_onboarding() |
||
1810 | && ( |
||
1811 | ! is_multisite() |
||
1812 | || ! get_site_option( 'jetpack_protect_active' ) |
||
1813 | ) |
||
1814 | ) { |
||
1815 | return; |
||
1816 | } |
||
1817 | |||
1818 | $version = Jetpack_Options::get_option( 'version' ); |
||
1819 | View Code Duplication | if ( ! $version ) { |
|
1820 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
1821 | /** This action is documented in class.jetpack.php */ |
||
1822 | do_action( 'updating_jetpack_version', $version, false ); |
||
1823 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
1824 | } |
||
1825 | list( $version ) = explode( ':', $version ); |
||
1826 | |||
1827 | $modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) ); |
||
1828 | |||
1829 | $modules_data = array(); |
||
1830 | |||
1831 | // Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check. |
||
1832 | if ( version_compare( $version, JETPACK__VERSION, '<' ) ) { |
||
1833 | $updated_modules = array(); |
||
1834 | foreach ( $modules as $module ) { |
||
1835 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
1836 | if ( ! isset( $modules_data[ $module ]['changed'] ) ) { |
||
1837 | continue; |
||
1838 | } |
||
1839 | |||
1840 | if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) { |
||
1841 | continue; |
||
1842 | } |
||
1843 | |||
1844 | $updated_modules[] = $module; |
||
1845 | } |
||
1846 | |||
1847 | $modules = array_diff( $modules, $updated_modules ); |
||
1848 | } |
||
1849 | |||
1850 | $is_development_mode = Jetpack::is_development_mode(); |
||
1851 | |||
1852 | foreach ( $modules as $index => $module ) { |
||
1853 | // If we're in dev mode, disable modules requiring a connection |
||
1854 | if ( $is_development_mode ) { |
||
1855 | // Prime the pump if we need to |
||
1856 | if ( empty( $modules_data[ $module ] ) ) { |
||
1857 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
1858 | } |
||
1859 | // If the module requires a connection, but we're in local mode, don't include it. |
||
1860 | if ( $modules_data[ $module ]['requires_connection'] ) { |
||
1861 | continue; |
||
1862 | } |
||
1863 | } |
||
1864 | |||
1865 | if ( did_action( 'jetpack_module_loaded_' . $module ) ) { |
||
1866 | continue; |
||
1867 | } |
||
1868 | |||
1869 | if ( ! include_once( Jetpack::get_module_path( $module ) ) ) { |
||
1870 | unset( $modules[ $index ] ); |
||
1871 | self::update_active_modules( array_values( $modules ) ); |
||
1872 | continue; |
||
1873 | } |
||
1874 | |||
1875 | /** |
||
1876 | * Fires when a specific module is loaded. |
||
1877 | * The dynamic part of the hook, $module, is the module slug. |
||
1878 | * |
||
1879 | * @since 1.1.0 |
||
1880 | */ |
||
1881 | do_action( 'jetpack_module_loaded_' . $module ); |
||
1882 | } |
||
1883 | |||
1884 | /** |
||
1885 | * Fires when all the modules are loaded. |
||
1886 | * |
||
1887 | * @since 1.1.0 |
||
1888 | */ |
||
1889 | do_action( 'jetpack_modules_loaded' ); |
||
1890 | |||
1891 | // 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. |
||
1892 | require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' ); |
||
1893 | } |
||
1894 | |||
1895 | /** |
||
1896 | * Check if Jetpack's REST API compat file should be included |
||
1897 | * @action plugins_loaded |
||
1898 | * @return null |
||
1899 | */ |
||
1900 | public function check_rest_api_compat() { |
||
1901 | /** |
||
1902 | * Filters the list of REST API compat files to be included. |
||
1903 | * |
||
1904 | * @since 2.2.5 |
||
1905 | * |
||
1906 | * @param array $args Array of REST API compat files to include. |
||
1907 | */ |
||
1908 | $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() ); |
||
1909 | |||
1910 | if ( function_exists( 'bbpress' ) ) |
||
1911 | $_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php'; |
||
1912 | |||
1913 | foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include ) |
||
1914 | require_once $_jetpack_rest_api_compat_include; |
||
1915 | } |
||
1916 | |||
1917 | /** |
||
1918 | * Gets all plugins currently active in values, regardless of whether they're |
||
1919 | * traditionally activated or network activated. |
||
1920 | * |
||
1921 | * @todo Store the result in core's object cache maybe? |
||
1922 | */ |
||
1923 | public static function get_active_plugins() { |
||
1924 | $active_plugins = (array) get_option( 'active_plugins', array() ); |
||
1925 | |||
1926 | if ( is_multisite() ) { |
||
1927 | // Due to legacy code, active_sitewide_plugins stores them in the keys, |
||
1928 | // whereas active_plugins stores them in the values. |
||
1929 | $network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); |
||
1930 | if ( $network_plugins ) { |
||
1931 | $active_plugins = array_merge( $active_plugins, $network_plugins ); |
||
1932 | } |
||
1933 | } |
||
1934 | |||
1935 | sort( $active_plugins ); |
||
1936 | |||
1937 | return array_unique( $active_plugins ); |
||
1938 | } |
||
1939 | |||
1940 | /** |
||
1941 | * Gets and parses additional plugin data to send with the heartbeat data |
||
1942 | * |
||
1943 | * @since 3.8.1 |
||
1944 | * |
||
1945 | * @return array Array of plugin data |
||
1946 | */ |
||
1947 | public static function get_parsed_plugin_data() { |
||
1948 | if ( ! function_exists( 'get_plugins' ) ) { |
||
1949 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
||
1950 | } |
||
1951 | /** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */ |
||
1952 | $all_plugins = apply_filters( 'all_plugins', get_plugins() ); |
||
1953 | $active_plugins = Jetpack::get_active_plugins(); |
||
1954 | |||
1955 | $plugins = array(); |
||
1956 | foreach ( $all_plugins as $path => $plugin_data ) { |
||
1957 | $plugins[ $path ] = array( |
||
1958 | 'is_active' => in_array( $path, $active_plugins ), |
||
1959 | 'file' => $path, |
||
1960 | 'name' => $plugin_data['Name'], |
||
1961 | 'version' => $plugin_data['Version'], |
||
1962 | 'author' => $plugin_data['Author'], |
||
1963 | ); |
||
1964 | } |
||
1965 | |||
1966 | return $plugins; |
||
1967 | } |
||
1968 | |||
1969 | /** |
||
1970 | * Gets and parses theme data to send with the heartbeat data |
||
1971 | * |
||
1972 | * @since 3.8.1 |
||
1973 | * |
||
1974 | * @return array Array of theme data |
||
1975 | */ |
||
1976 | public static function get_parsed_theme_data() { |
||
1977 | $all_themes = wp_get_themes( array( 'allowed' => true ) ); |
||
1978 | $header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' ); |
||
1979 | |||
1980 | $themes = array(); |
||
1981 | foreach ( $all_themes as $slug => $theme_data ) { |
||
1982 | $theme_headers = array(); |
||
1983 | foreach ( $header_keys as $header_key ) { |
||
1984 | $theme_headers[ $header_key ] = $theme_data->get( $header_key ); |
||
1985 | } |
||
1986 | |||
1987 | $themes[ $slug ] = array( |
||
1988 | 'is_active_theme' => $slug == wp_get_theme()->get_template(), |
||
1989 | 'slug' => $slug, |
||
1990 | 'theme_root' => $theme_data->get_theme_root_uri(), |
||
1991 | 'parent' => $theme_data->parent(), |
||
1992 | 'headers' => $theme_headers |
||
1993 | ); |
||
1994 | } |
||
1995 | |||
1996 | return $themes; |
||
1997 | } |
||
1998 | |||
1999 | /** |
||
2000 | * Checks whether a specific plugin is active. |
||
2001 | * |
||
2002 | * We don't want to store these in a static variable, in case |
||
2003 | * there are switch_to_blog() calls involved. |
||
2004 | */ |
||
2005 | public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { |
||
2006 | return in_array( $plugin, self::get_active_plugins() ); |
||
2007 | } |
||
2008 | |||
2009 | /** |
||
2010 | * Check if Jetpack's Open Graph tags should be used. |
||
2011 | * If certain plugins are active, Jetpack's og tags are suppressed. |
||
2012 | * |
||
2013 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
2014 | * @action plugins_loaded |
||
2015 | * @return null |
||
2016 | */ |
||
2017 | public function check_open_graph() { |
||
2018 | if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) { |
||
2019 | add_filter( 'jetpack_enable_open_graph', '__return_true', 0 ); |
||
2020 | } |
||
2021 | |||
2022 | $active_plugins = self::get_active_plugins(); |
||
2023 | |||
2024 | if ( ! empty( $active_plugins ) ) { |
||
2025 | foreach ( $this->open_graph_conflicting_plugins as $plugin ) { |
||
2026 | if ( in_array( $plugin, $active_plugins ) ) { |
||
2027 | add_filter( 'jetpack_enable_open_graph', '__return_false', 99 ); |
||
2028 | break; |
||
2029 | } |
||
2030 | } |
||
2031 | } |
||
2032 | |||
2033 | /** |
||
2034 | * Allow the addition of Open Graph Meta Tags to all pages. |
||
2035 | * |
||
2036 | * @since 2.0.3 |
||
2037 | * |
||
2038 | * @param bool false Should Open Graph Meta tags be added. Default to false. |
||
2039 | */ |
||
2040 | if ( apply_filters( 'jetpack_enable_open_graph', false ) ) { |
||
2041 | require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php'; |
||
2042 | } |
||
2043 | } |
||
2044 | |||
2045 | /** |
||
2046 | * Check if Jetpack's Twitter tags should be used. |
||
2047 | * If certain plugins are active, Jetpack's twitter tags are suppressed. |
||
2048 | * |
||
2049 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
2050 | * @action plugins_loaded |
||
2051 | * @return null |
||
2052 | */ |
||
2053 | public function check_twitter_tags() { |
||
2054 | |||
2055 | $active_plugins = self::get_active_plugins(); |
||
2056 | |||
2057 | if ( ! empty( $active_plugins ) ) { |
||
2058 | foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) { |
||
2059 | if ( in_array( $plugin, $active_plugins ) ) { |
||
2060 | add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 ); |
||
2061 | break; |
||
2062 | } |
||
2063 | } |
||
2064 | } |
||
2065 | |||
2066 | /** |
||
2067 | * Allow Twitter Card Meta tags to be disabled. |
||
2068 | * |
||
2069 | * @since 2.6.0 |
||
2070 | * |
||
2071 | * @param bool true Should Twitter Card Meta tags be disabled. Default to true. |
||
2072 | */ |
||
2073 | if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) { |
||
2074 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php'; |
||
2075 | } |
||
2076 | } |
||
2077 | |||
2078 | /** |
||
2079 | * Allows plugins to submit security reports. |
||
2080 | * |
||
2081 | * @param string $type Report type (login_form, backup, file_scanning, spam) |
||
2082 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data |
||
2083 | * @param array $args See definitions above |
||
2084 | */ |
||
2085 | public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { |
||
2086 | _deprecated_function( __FUNCTION__, 'jetpack-4.2', null ); |
||
2087 | } |
||
2088 | |||
2089 | /* Jetpack Options API */ |
||
2090 | |||
2091 | public static function get_option_names( $type = 'compact' ) { |
||
2092 | return Jetpack_Options::get_option_names( $type ); |
||
2093 | } |
||
2094 | |||
2095 | /** |
||
2096 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. |
||
2097 | * |
||
2098 | * @param string $name Option name |
||
2099 | * @param mixed $default (optional) |
||
2100 | */ |
||
2101 | public static function get_option( $name, $default = false ) { |
||
2102 | return Jetpack_Options::get_option( $name, $default ); |
||
2103 | } |
||
2104 | |||
2105 | /** |
||
2106 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. |
||
2107 | * |
||
2108 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. |
||
2109 | * @param string $name Option name |
||
2110 | * @param mixed $value Option value |
||
2111 | */ |
||
2112 | public static function update_option( $name, $value ) { |
||
2113 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' ); |
||
2114 | return Jetpack_Options::update_option( $name, $value ); |
||
2115 | } |
||
2116 | |||
2117 | /** |
||
2118 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. |
||
2119 | * |
||
2120 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. |
||
2121 | * @param array $array array( option name => option value, ... ) |
||
2122 | */ |
||
2123 | public static function update_options( $array ) { |
||
2124 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' ); |
||
2125 | return Jetpack_Options::update_options( $array ); |
||
2126 | } |
||
2127 | |||
2128 | /** |
||
2129 | * Deletes the given option. May be passed multiple option names as an array. |
||
2130 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. |
||
2131 | * |
||
2132 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. |
||
2133 | * @param string|array $names |
||
2134 | */ |
||
2135 | public static function delete_option( $names ) { |
||
2136 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' ); |
||
2137 | return Jetpack_Options::delete_option( $names ); |
||
2138 | } |
||
2139 | |||
2140 | /** |
||
2141 | * Enters a user token into the user_tokens option |
||
2142 | * |
||
2143 | * @param int $user_id |
||
2144 | * @param string $token |
||
2145 | * return bool |
||
2146 | */ |
||
2147 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
||
2148 | // not designed for concurrent updates |
||
2149 | $user_tokens = Jetpack_Options::get_option( 'user_tokens' ); |
||
2150 | if ( ! is_array( $user_tokens ) ) |
||
2151 | $user_tokens = array(); |
||
2152 | $user_tokens[$user_id] = $token; |
||
2153 | if ( $is_master_user ) { |
||
2154 | $master_user = $user_id; |
||
2155 | $options = compact( 'user_tokens', 'master_user' ); |
||
2156 | } else { |
||
2157 | $options = compact( 'user_tokens' ); |
||
2158 | } |
||
2159 | return Jetpack_Options::update_options( $options ); |
||
2160 | } |
||
2161 | |||
2162 | /** |
||
2163 | * Returns an array of all PHP files in the specified absolute path. |
||
2164 | * Equivalent to glob( "$absolute_path/*.php" ). |
||
2165 | * |
||
2166 | * @param string $absolute_path The absolute path of the directory to search. |
||
2167 | * @return array Array of absolute paths to the PHP files. |
||
2168 | */ |
||
2169 | public static function glob_php( $absolute_path ) { |
||
2170 | if ( function_exists( 'glob' ) ) { |
||
2171 | return glob( "$absolute_path/*.php" ); |
||
2172 | } |
||
2173 | |||
2174 | $absolute_path = untrailingslashit( $absolute_path ); |
||
2175 | $files = array(); |
||
2176 | if ( ! $dir = @opendir( $absolute_path ) ) { |
||
2177 | return $files; |
||
2178 | } |
||
2179 | |||
2180 | while ( false !== $file = readdir( $dir ) ) { |
||
2181 | if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) { |
||
2182 | continue; |
||
2183 | } |
||
2184 | |||
2185 | $file = "$absolute_path/$file"; |
||
2186 | |||
2187 | if ( ! is_file( $file ) ) { |
||
2188 | continue; |
||
2189 | } |
||
2190 | |||
2191 | $files[] = $file; |
||
2192 | } |
||
2193 | |||
2194 | closedir( $dir ); |
||
2195 | |||
2196 | return $files; |
||
2197 | } |
||
2198 | |||
2199 | public static function activate_new_modules( $redirect = false ) { |
||
2200 | if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { |
||
2201 | return; |
||
2202 | } |
||
2203 | |||
2204 | $jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic] |
||
2205 | View Code Duplication | if ( ! $jetpack_old_version ) { |
|
2206 | $jetpack_old_version = $version = $old_version = '1.1:' . time(); |
||
2207 | /** This action is documented in class.jetpack.php */ |
||
2208 | do_action( 'updating_jetpack_version', $version, false ); |
||
2209 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
2210 | } |
||
2211 | |||
2212 | list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic] |
||
2213 | |||
2214 | if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) { |
||
2215 | return; |
||
2216 | } |
||
2217 | |||
2218 | $active_modules = Jetpack::get_active_modules(); |
||
2219 | $reactivate_modules = array(); |
||
2220 | foreach ( $active_modules as $active_module ) { |
||
2221 | $module = Jetpack::get_module( $active_module ); |
||
2222 | if ( ! isset( $module['changed'] ) ) { |
||
2223 | continue; |
||
2224 | } |
||
2225 | |||
2226 | if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) { |
||
2227 | continue; |
||
2228 | } |
||
2229 | |||
2230 | $reactivate_modules[] = $active_module; |
||
2231 | Jetpack::deactivate_module( $active_module ); |
||
2232 | } |
||
2233 | |||
2234 | $new_version = JETPACK__VERSION . ':' . time(); |
||
2235 | /** This action is documented in class.jetpack.php */ |
||
2236 | do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version ); |
||
2237 | Jetpack_Options::update_options( |
||
2238 | array( |
||
2239 | 'version' => $new_version, |
||
2240 | 'old_version' => $jetpack_old_version, |
||
2241 | ) |
||
2242 | ); |
||
2243 | |||
2244 | Jetpack::state( 'message', 'modules_activated' ); |
||
2245 | Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules ); |
||
2246 | |||
2247 | if ( $redirect ) { |
||
2248 | $page = 'jetpack'; // make sure we redirect to either settings or the jetpack page |
||
2249 | if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) { |
||
2250 | $page = $_GET['page']; |
||
2251 | } |
||
2252 | |||
2253 | wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) ); |
||
2254 | exit; |
||
2255 | } |
||
2256 | } |
||
2257 | |||
2258 | /** |
||
2259 | * List available Jetpack modules. Simply lists .php files in /modules/. |
||
2260 | * Make sure to tuck away module "library" files in a sub-directory. |
||
2261 | */ |
||
2262 | public static function get_available_modules( $min_version = false, $max_version = false ) { |
||
2263 | static $modules = null; |
||
2264 | |||
2265 | if ( ! isset( $modules ) ) { |
||
2266 | $available_modules_option = Jetpack_Options::get_option( 'available_modules', array() ); |
||
2267 | // Use the cache if we're on the front-end and it's available... |
||
2268 | if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) { |
||
2269 | $modules = $available_modules_option[ JETPACK__VERSION ]; |
||
2270 | } else { |
||
2271 | $files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' ); |
||
2272 | |||
2273 | $modules = array(); |
||
2274 | |||
2275 | foreach ( $files as $file ) { |
||
2276 | if ( ! $headers = Jetpack::get_module( $file ) ) { |
||
2277 | continue; |
||
2278 | } |
||
2279 | |||
2280 | $modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced']; |
||
2281 | } |
||
2282 | |||
2283 | Jetpack_Options::update_option( 'available_modules', array( |
||
2284 | JETPACK__VERSION => $modules, |
||
2285 | ) ); |
||
2286 | } |
||
2287 | } |
||
2288 | |||
2289 | /** |
||
2290 | * Filters the array of modules available to be activated. |
||
2291 | * |
||
2292 | * @since 2.4.0 |
||
2293 | * |
||
2294 | * @param array $modules Array of available modules. |
||
2295 | * @param string $min_version Minimum version number required to use modules. |
||
2296 | * @param string $max_version Maximum version number required to use modules. |
||
2297 | */ |
||
2298 | $mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version ); |
||
2299 | |||
2300 | if ( ! $min_version && ! $max_version ) { |
||
2301 | return array_keys( $mods ); |
||
2302 | } |
||
2303 | |||
2304 | $r = array(); |
||
2305 | foreach ( $mods as $slug => $introduced ) { |
||
2306 | if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) { |
||
2307 | continue; |
||
2308 | } |
||
2309 | |||
2310 | if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) { |
||
2311 | continue; |
||
2312 | } |
||
2313 | |||
2314 | $r[] = $slug; |
||
2315 | } |
||
2316 | |||
2317 | return $r; |
||
2318 | } |
||
2319 | |||
2320 | /** |
||
2321 | * Default modules loaded on activation. |
||
2322 | */ |
||
2323 | public static function get_default_modules( $min_version = false, $max_version = false ) { |
||
2324 | $return = array(); |
||
2325 | |||
2326 | foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) { |
||
2327 | $module_data = Jetpack::get_module( $module ); |
||
2328 | |||
2329 | switch ( strtolower( $module_data['auto_activate'] ) ) { |
||
2330 | case 'yes' : |
||
2331 | $return[] = $module; |
||
2332 | break; |
||
2333 | case 'public' : |
||
2334 | if ( Jetpack_Options::get_option( 'public' ) ) { |
||
2335 | $return[] = $module; |
||
2336 | } |
||
2337 | break; |
||
2338 | case 'no' : |
||
2339 | default : |
||
2340 | break; |
||
2341 | } |
||
2342 | } |
||
2343 | /** |
||
2344 | * Filters the array of default modules. |
||
2345 | * |
||
2346 | * @since 2.5.0 |
||
2347 | * |
||
2348 | * @param array $return Array of default modules. |
||
2349 | * @param string $min_version Minimum version number required to use modules. |
||
2350 | * @param string $max_version Maximum version number required to use modules. |
||
2351 | */ |
||
2352 | return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version ); |
||
2353 | } |
||
2354 | |||
2355 | /** |
||
2356 | * Checks activated modules during auto-activation to determine |
||
2357 | * if any of those modules are being deprecated. If so, close |
||
2358 | * them out, and add any replacement modules. |
||
2359 | * |
||
2360 | * Runs at priority 99 by default. |
||
2361 | * |
||
2362 | * This is run late, so that it can still activate a module if |
||
2363 | * the new module is a replacement for another that the user |
||
2364 | * currently has active, even if something at the normal priority |
||
2365 | * would kibosh everything. |
||
2366 | * |
||
2367 | * @since 2.6 |
||
2368 | * @uses jetpack_get_default_modules filter |
||
2369 | * @param array $modules |
||
2370 | * @return array |
||
2371 | */ |
||
2372 | function handle_deprecated_modules( $modules ) { |
||
2373 | $deprecated_modules = array( |
||
2374 | 'debug' => null, // Closed out and moved to the debugger library. |
||
2375 | 'wpcc' => 'sso', // Closed out in 2.6 -- SSO provides the same functionality. |
||
2376 | 'gplus-authorship' => null, // Closed out in 3.2 -- Google dropped support. |
||
2377 | ); |
||
2378 | |||
2379 | // Don't activate SSO if they never completed activating WPCC. |
||
2380 | if ( Jetpack::is_module_active( 'wpcc' ) ) { |
||
2381 | $wpcc_options = Jetpack_Options::get_option( 'wpcc_options' ); |
||
2382 | if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) { |
||
2383 | $deprecated_modules['wpcc'] = null; |
||
2384 | } |
||
2385 | } |
||
2386 | |||
2387 | foreach ( $deprecated_modules as $module => $replacement ) { |
||
2388 | if ( Jetpack::is_module_active( $module ) ) { |
||
2389 | self::deactivate_module( $module ); |
||
2390 | if ( $replacement ) { |
||
2391 | $modules[] = $replacement; |
||
2392 | } |
||
2393 | } |
||
2394 | } |
||
2395 | |||
2396 | return array_unique( $modules ); |
||
2397 | } |
||
2398 | |||
2399 | /** |
||
2400 | * Checks activated plugins during auto-activation to determine |
||
2401 | * if any of those plugins are in the list with a corresponding module |
||
2402 | * that is not compatible with the plugin. The module will not be allowed |
||
2403 | * to auto-activate. |
||
2404 | * |
||
2405 | * @since 2.6 |
||
2406 | * @uses jetpack_get_default_modules filter |
||
2407 | * @param array $modules |
||
2408 | * @return array |
||
2409 | */ |
||
2410 | function filter_default_modules( $modules ) { |
||
2411 | |||
2412 | $active_plugins = self::get_active_plugins(); |
||
2413 | |||
2414 | if ( ! empty( $active_plugins ) ) { |
||
2415 | |||
2416 | // For each module we'd like to auto-activate... |
||
2417 | foreach ( $modules as $key => $module ) { |
||
2418 | // If there are potential conflicts for it... |
||
2419 | if ( ! empty( $this->conflicting_plugins[ $module ] ) ) { |
||
2420 | // For each potential conflict... |
||
2421 | foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) { |
||
2422 | // If that conflicting plugin is active... |
||
2423 | if ( in_array( $plugin, $active_plugins ) ) { |
||
2424 | // Remove that item from being auto-activated. |
||
2425 | unset( $modules[ $key ] ); |
||
2426 | } |
||
2427 | } |
||
2428 | } |
||
2429 | } |
||
2430 | } |
||
2431 | |||
2432 | return $modules; |
||
2433 | } |
||
2434 | |||
2435 | /** |
||
2436 | * Extract a module's slug from its full path. |
||
2437 | */ |
||
2438 | public static function get_module_slug( $file ) { |
||
2439 | return str_replace( '.php', '', basename( $file ) ); |
||
2440 | } |
||
2441 | |||
2442 | /** |
||
2443 | * Generate a module's path from its slug. |
||
2444 | */ |
||
2445 | public static function get_module_path( $slug ) { |
||
2446 | /** |
||
2447 | * Filters the path of a modules. |
||
2448 | * |
||
2449 | * @since 7.4.0 |
||
2450 | * |
||
2451 | * @param array $return The absolute path to a module's root php file |
||
2452 | * @param string $slug The module slug |
||
2453 | */ |
||
2454 | return apply_filters( 'jetpack_get_module_path', JETPACK__PLUGIN_DIR . "modules/$slug.php", $slug ); |
||
2455 | } |
||
2456 | |||
2457 | /** |
||
2458 | * Load module data from module file. Headers differ from WordPress |
||
2459 | * plugin headers to avoid them being identified as standalone |
||
2460 | * plugins on the WordPress plugins page. |
||
2461 | */ |
||
2462 | public static function get_module( $module ) { |
||
2463 | $headers = array( |
||
2464 | 'name' => 'Module Name', |
||
2465 | 'description' => 'Module Description', |
||
2466 | 'sort' => 'Sort Order', |
||
2467 | 'recommendation_order' => 'Recommendation Order', |
||
2468 | 'introduced' => 'First Introduced', |
||
2469 | 'changed' => 'Major Changes In', |
||
2470 | 'deactivate' => 'Deactivate', |
||
2471 | 'free' => 'Free', |
||
2472 | 'requires_connection' => 'Requires Connection', |
||
2473 | 'auto_activate' => 'Auto Activate', |
||
2474 | 'module_tags' => 'Module Tags', |
||
2475 | 'feature' => 'Feature', |
||
2476 | 'additional_search_queries' => 'Additional Search Queries', |
||
2477 | 'plan_classes' => 'Plans', |
||
2478 | ); |
||
2479 | |||
2480 | $file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) ); |
||
2481 | |||
2482 | $mod = Jetpack::get_file_data( $file, $headers ); |
||
2483 | if ( empty( $mod['name'] ) ) { |
||
2484 | return false; |
||
2485 | } |
||
2486 | |||
2487 | $mod['sort'] = empty( $mod['sort'] ) ? 10 : (int) $mod['sort']; |
||
2488 | $mod['recommendation_order'] = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order']; |
||
2489 | $mod['deactivate'] = empty( $mod['deactivate'] ); |
||
2490 | $mod['free'] = empty( $mod['free'] ); |
||
2491 | $mod['requires_connection'] = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true; |
||
2492 | |||
2493 | if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) { |
||
2494 | $mod['auto_activate'] = 'No'; |
||
2495 | } else { |
||
2496 | $mod['auto_activate'] = (string) $mod['auto_activate']; |
||
2497 | } |
||
2498 | |||
2499 | if ( $mod['module_tags'] ) { |
||
2500 | $mod['module_tags'] = explode( ',', $mod['module_tags'] ); |
||
2501 | $mod['module_tags'] = array_map( 'trim', $mod['module_tags'] ); |
||
2502 | $mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] ); |
||
2503 | } else { |
||
2504 | $mod['module_tags'] = array( self::translate_module_tag( 'Other' ) ); |
||
2505 | } |
||
2506 | |||
2507 | View Code Duplication | if ( $mod['plan_classes'] ) { |
|
2508 | $mod['plan_classes'] = explode( ',', $mod['plan_classes'] ); |
||
2509 | $mod['plan_classes'] = array_map( 'strtolower', array_map( 'trim', $mod['plan_classes'] ) ); |
||
2510 | } else { |
||
2511 | $mod['plan_classes'] = array( 'free' ); |
||
2512 | } |
||
2513 | |||
2514 | View Code Duplication | if ( $mod['feature'] ) { |
|
2515 | $mod['feature'] = explode( ',', $mod['feature'] ); |
||
2516 | $mod['feature'] = array_map( 'trim', $mod['feature'] ); |
||
2517 | } else { |
||
2518 | $mod['feature'] = array( self::translate_module_tag( 'Other' ) ); |
||
2519 | } |
||
2520 | |||
2521 | /** |
||
2522 | * Filters the feature array on a module. |
||
2523 | * |
||
2524 | * This filter allows you to control where each module is filtered: Recommended, |
||
2525 | * and the default "Other" listing. |
||
2526 | * |
||
2527 | * @since 3.5.0 |
||
2528 | * |
||
2529 | * @param array $mod['feature'] The areas to feature this module: |
||
2530 | * 'Recommended' shows on the main Jetpack admin screen. |
||
2531 | * 'Other' should be the default if no other value is in the array. |
||
2532 | * @param string $module The slug of the module, e.g. sharedaddy. |
||
2533 | * @param array $mod All the currently assembled module data. |
||
2534 | */ |
||
2535 | $mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod ); |
||
2536 | |||
2537 | /** |
||
2538 | * Filter the returned data about a module. |
||
2539 | * |
||
2540 | * This filter allows overriding any info about Jetpack modules. It is dangerous, |
||
2541 | * so please be careful. |
||
2542 | * |
||
2543 | * @since 3.6.0 |
||
2544 | * |
||
2545 | * @param array $mod The details of the requested module. |
||
2546 | * @param string $module The slug of the module, e.g. sharedaddy |
||
2547 | * @param string $file The path to the module source file. |
||
2548 | */ |
||
2549 | return apply_filters( 'jetpack_get_module', $mod, $module, $file ); |
||
2550 | } |
||
2551 | |||
2552 | /** |
||
2553 | * Like core's get_file_data implementation, but caches the result. |
||
2554 | */ |
||
2555 | public static function get_file_data( $file, $headers ) { |
||
2556 | //Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated |
||
2557 | $file_name = basename( $file ); |
||
2558 | |||
2559 | $cache_key = 'jetpack_file_data_' . JETPACK__VERSION; |
||
2560 | |||
2561 | $file_data_option = get_transient( $cache_key ); |
||
2562 | |||
2563 | if ( false === $file_data_option ) { |
||
2564 | $file_data_option = array(); |
||
2565 | } |
||
2566 | |||
2567 | $key = md5( $file_name . serialize( $headers ) ); |
||
2568 | $refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 ); |
||
2569 | |||
2570 | // If we don't need to refresh the cache, and already have the value, short-circuit! |
||
2571 | if ( ! $refresh_cache && isset( $file_data_option[ $key ] ) ) { |
||
2572 | return $file_data_option[ $key ]; |
||
2573 | } |
||
2574 | |||
2575 | $data = get_file_data( $file, $headers ); |
||
2576 | |||
2577 | $file_data_option[ $key ] = $data; |
||
2578 | |||
2579 | set_transient( $cache_key, $file_data_option, 29 * DAY_IN_SECONDS ); |
||
2580 | |||
2581 | return $data; |
||
2582 | } |
||
2583 | |||
2584 | |||
2585 | /** |
||
2586 | * Return translated module tag. |
||
2587 | * |
||
2588 | * @param string $tag Tag as it appears in each module heading. |
||
2589 | * |
||
2590 | * @return mixed |
||
2591 | */ |
||
2592 | public static function translate_module_tag( $tag ) { |
||
2593 | return jetpack_get_module_i18n_tag( $tag ); |
||
2594 | } |
||
2595 | |||
2596 | /** |
||
2597 | * Get i18n strings as a JSON-encoded string |
||
2598 | * |
||
2599 | * @return string The locale as JSON |
||
2600 | */ |
||
2601 | public static function get_i18n_data_json() { |
||
2602 | |||
2603 | // WordPress 5.0 uses md5 hashes of file paths to associate translation |
||
2604 | // JSON files with the file they should be included for. This is an md5 |
||
2605 | // of '_inc/build/admin.js'. |
||
2606 | $path_md5 = '1bac79e646a8bf4081a5011ab72d5807'; |
||
2607 | |||
2608 | $i18n_json = |
||
2609 | JETPACK__PLUGIN_DIR |
||
2610 | . 'languages/json/jetpack-' |
||
2611 | . get_user_locale() |
||
2612 | . '-' |
||
2613 | . $path_md5 |
||
2614 | . '.json'; |
||
2615 | |||
2616 | if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) { |
||
2617 | $locale_data = @file_get_contents( $i18n_json ); |
||
2618 | if ( $locale_data ) { |
||
2619 | return $locale_data; |
||
2620 | } |
||
2621 | } |
||
2622 | |||
2623 | // Return valid empty Jed locale |
||
2624 | return '{ "locale_data": { "messages": { "": {} } } }'; |
||
2625 | } |
||
2626 | |||
2627 | /** |
||
2628 | * Add locale data setup to wp-i18n |
||
2629 | * |
||
2630 | * Any Jetpack script that depends on wp-i18n should use this method to set up the locale. |
||
2631 | * |
||
2632 | * The locale setup depends on an adding inline script. This is error-prone and could easily |
||
2633 | * result in multiple additions of the same script when exactly 0 or 1 is desireable. |
||
2634 | * |
||
2635 | * This method provides a safe way to request the setup multiple times but add the script at |
||
2636 | * most once. |
||
2637 | * |
||
2638 | * @since 6.7.0 |
||
2639 | * |
||
2640 | * @return void |
||
2641 | */ |
||
2642 | public static function setup_wp_i18n_locale_data() { |
||
2643 | static $script_added = false; |
||
2644 | if ( ! $script_added ) { |
||
2645 | $script_added = true; |
||
2646 | wp_add_inline_script( |
||
2647 | 'wp-i18n', |
||
2648 | 'wp.i18n.setLocaleData( ' . Jetpack::get_i18n_data_json() . ', \'jetpack\' );' |
||
2649 | ); |
||
2650 | } |
||
2651 | } |
||
2652 | |||
2653 | /** |
||
2654 | * Return module name translation. Uses matching string created in modules/module-headings.php. |
||
2655 | * |
||
2656 | * @since 3.9.2 |
||
2657 | * |
||
2658 | * @param array $modules |
||
2659 | * |
||
2660 | * @return string|void |
||
2661 | */ |
||
2662 | public static function get_translated_modules( $modules ) { |
||
2663 | foreach ( $modules as $index => $module ) { |
||
2664 | $i18n_module = jetpack_get_module_i18n( $module['module'] ); |
||
2665 | if ( isset( $module['name'] ) ) { |
||
2666 | $modules[ $index ]['name'] = $i18n_module['name']; |
||
2667 | } |
||
2668 | if ( isset( $module['description'] ) ) { |
||
2669 | $modules[ $index ]['description'] = $i18n_module['description']; |
||
2670 | $modules[ $index ]['short_description'] = $i18n_module['description']; |
||
2671 | } |
||
2672 | } |
||
2673 | return $modules; |
||
2674 | } |
||
2675 | |||
2676 | /** |
||
2677 | * Get a list of activated modules as an array of module slugs. |
||
2678 | */ |
||
2679 | public static function get_active_modules() { |
||
2680 | $active = Jetpack_Options::get_option( 'active_modules' ); |
||
2681 | |||
2682 | if ( ! is_array( $active ) ) { |
||
2683 | $active = array(); |
||
2684 | } |
||
2685 | |||
2686 | if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) { |
||
2687 | $active[] = 'vaultpress'; |
||
2688 | } else { |
||
2689 | $active = array_diff( $active, array( 'vaultpress' ) ); |
||
2690 | } |
||
2691 | |||
2692 | //If protect is active on the main site of a multisite, it should be active on all sites. |
||
2693 | if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) { |
||
2694 | $active[] = 'protect'; |
||
2695 | } |
||
2696 | |||
2697 | /** |
||
2698 | * Allow filtering of the active modules. |
||
2699 | * |
||
2700 | * Gives theme and plugin developers the power to alter the modules that |
||
2701 | * are activated on the fly. |
||
2702 | * |
||
2703 | * @since 5.8.0 |
||
2704 | * |
||
2705 | * @param array $active Array of active module slugs. |
||
2706 | */ |
||
2707 | $active = apply_filters( 'jetpack_active_modules', $active ); |
||
2708 | |||
2709 | return array_unique( $active ); |
||
2710 | } |
||
2711 | |||
2712 | /** |
||
2713 | * Check whether or not a Jetpack module is active. |
||
2714 | * |
||
2715 | * @param string $module The slug of a Jetpack module. |
||
2716 | * @return bool |
||
2717 | * |
||
2718 | * @static |
||
2719 | */ |
||
2720 | public static function is_module_active( $module ) { |
||
2721 | return in_array( $module, self::get_active_modules() ); |
||
2722 | } |
||
2723 | |||
2724 | public static function is_module( $module ) { |
||
2725 | return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() ); |
||
2726 | } |
||
2727 | |||
2728 | /** |
||
2729 | * Catches PHP errors. Must be used in conjunction with output buffering. |
||
2730 | * |
||
2731 | * @param bool $catch True to start catching, False to stop. |
||
2732 | * |
||
2733 | * @static |
||
2734 | */ |
||
2735 | public static function catch_errors( $catch ) { |
||
2736 | static $display_errors, $error_reporting; |
||
2737 | |||
2738 | if ( $catch ) { |
||
2739 | $display_errors = @ini_set( 'display_errors', 1 ); |
||
2740 | $error_reporting = @error_reporting( E_ALL ); |
||
2741 | add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); |
||
2742 | } else { |
||
2743 | @ini_set( 'display_errors', $display_errors ); |
||
2744 | @error_reporting( $error_reporting ); |
||
2745 | remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); |
||
2746 | } |
||
2747 | } |
||
2748 | |||
2749 | /** |
||
2750 | * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) |
||
2751 | */ |
||
2752 | public static function catch_errors_on_shutdown() { |
||
2753 | Jetpack::state( 'php_errors', self::alias_directories( ob_get_clean() ) ); |
||
2754 | } |
||
2755 | |||
2756 | /** |
||
2757 | * Rewrite any string to make paths easier to read. |
||
2758 | * |
||
2759 | * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR |
||
2760 | * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR. |
||
2761 | * |
||
2762 | * @param $string |
||
2763 | * @return mixed |
||
2764 | */ |
||
2765 | public static function alias_directories( $string ) { |
||
2766 | // ABSPATH has a trailing slash. |
||
2767 | $string = str_replace( ABSPATH, 'ABSPATH/', $string ); |
||
2768 | // WP_CONTENT_DIR does not have a trailing slash. |
||
2769 | $string = str_replace( WP_CONTENT_DIR, 'WP_CONTENT_DIR', $string ); |
||
2770 | |||
2771 | return $string; |
||
2772 | } |
||
2773 | |||
2774 | public static function activate_default_modules( |
||
2775 | $min_version = false, |
||
2776 | $max_version = false, |
||
2777 | $other_modules = array(), |
||
2778 | $redirect = true, |
||
2779 | $send_state_messages = true |
||
2780 | ) { |
||
2781 | $jetpack = Jetpack::init(); |
||
2782 | |||
2783 | $modules = Jetpack::get_default_modules( $min_version, $max_version ); |
||
2784 | $modules = array_merge( $other_modules, $modules ); |
||
2785 | |||
2786 | // Look for standalone plugins and disable if active. |
||
2787 | |||
2788 | $to_deactivate = array(); |
||
2789 | foreach ( $modules as $module ) { |
||
2790 | if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) { |
||
2791 | $to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module]; |
||
2792 | } |
||
2793 | } |
||
2794 | |||
2795 | $deactivated = array(); |
||
2796 | foreach ( $to_deactivate as $module => $deactivate_me ) { |
||
2797 | list( $probable_file, $probable_title ) = $deactivate_me; |
||
2798 | if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) { |
||
2799 | $deactivated[] = $module; |
||
2800 | } |
||
2801 | } |
||
2802 | |||
2803 | if ( $deactivated && $redirect ) { |
||
2804 | Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) ); |
||
2805 | |||
2806 | $url = add_query_arg( |
||
2807 | array( |
||
2808 | 'action' => 'activate_default_modules', |
||
2809 | '_wpnonce' => wp_create_nonce( 'activate_default_modules' ), |
||
2810 | ), |
||
2811 | add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) ) |
||
2812 | ); |
||
2813 | wp_safe_redirect( $url ); |
||
2814 | exit; |
||
2815 | } |
||
2816 | |||
2817 | /** |
||
2818 | * Fires before default modules are activated. |
||
2819 | * |
||
2820 | * @since 1.9.0 |
||
2821 | * |
||
2822 | * @param string $min_version Minimum version number required to use modules. |
||
2823 | * @param string $max_version Maximum version number required to use modules. |
||
2824 | * @param array $other_modules Array of other modules to activate alongside the default modules. |
||
2825 | */ |
||
2826 | do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules ); |
||
2827 | |||
2828 | // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating |
||
2829 | if ( $send_state_messages ) { |
||
2830 | Jetpack::restate(); |
||
2831 | Jetpack::catch_errors( true ); |
||
2832 | } |
||
2833 | |||
2834 | $active = Jetpack::get_active_modules(); |
||
2835 | |||
2836 | foreach ( $modules as $module ) { |
||
2837 | if ( did_action( "jetpack_module_loaded_$module" ) ) { |
||
2838 | $active[] = $module; |
||
2839 | self::update_active_modules( $active ); |
||
2840 | continue; |
||
2841 | } |
||
2842 | |||
2843 | if ( $send_state_messages && in_array( $module, $active ) ) { |
||
2844 | $module_info = Jetpack::get_module( $module ); |
||
2845 | View Code Duplication | if ( ! $module_info['deactivate'] ) { |
|
2846 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; |
||
2847 | if ( $active_state = Jetpack::state( $state ) ) { |
||
2848 | $active_state = explode( ',', $active_state ); |
||
2849 | } else { |
||
2850 | $active_state = array(); |
||
2851 | } |
||
2852 | $active_state[] = $module; |
||
2853 | Jetpack::state( $state, implode( ',', $active_state ) ); |
||
2854 | } |
||
2855 | continue; |
||
2856 | } |
||
2857 | |||
2858 | $file = Jetpack::get_module_path( $module ); |
||
2859 | if ( ! file_exists( $file ) ) { |
||
2860 | continue; |
||
2861 | } |
||
2862 | |||
2863 | // we'll override this later if the plugin can be included without fatal error |
||
2864 | if ( $redirect ) { |
||
2865 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
2866 | } |
||
2867 | |||
2868 | if ( $send_state_messages ) { |
||
2869 | Jetpack::state( 'error', 'module_activation_failed' ); |
||
2870 | Jetpack::state( 'module', $module ); |
||
2871 | } |
||
2872 | |||
2873 | ob_start(); |
||
2874 | require_once $file; |
||
2875 | |||
2876 | $active[] = $module; |
||
2877 | |||
2878 | View Code Duplication | if ( $send_state_messages ) { |
|
2879 | |||
2880 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; |
||
2881 | if ( $active_state = Jetpack::state( $state ) ) { |
||
2882 | $active_state = explode( ',', $active_state ); |
||
2883 | } else { |
||
2884 | $active_state = array(); |
||
2885 | } |
||
2886 | $active_state[] = $module; |
||
2887 | Jetpack::state( $state, implode( ',', $active_state ) ); |
||
2888 | } |
||
2889 | |||
2890 | Jetpack::update_active_modules( $active ); |
||
2891 | |||
2892 | ob_end_clean(); |
||
2893 | } |
||
2894 | |||
2895 | if ( $send_state_messages ) { |
||
2896 | Jetpack::state( 'error', false ); |
||
2897 | Jetpack::state( 'module', false ); |
||
2898 | } |
||
2899 | |||
2900 | Jetpack::catch_errors( false ); |
||
2901 | /** |
||
2902 | * Fires when default modules are activated. |
||
2903 | * |
||
2904 | * @since 1.9.0 |
||
2905 | * |
||
2906 | * @param string $min_version Minimum version number required to use modules. |
||
2907 | * @param string $max_version Maximum version number required to use modules. |
||
2908 | * @param array $other_modules Array of other modules to activate alongside the default modules. |
||
2909 | */ |
||
2910 | do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules ); |
||
2911 | } |
||
2912 | |||
2913 | public static function activate_module( $module, $exit = true, $redirect = true ) { |
||
2914 | /** |
||
2915 | * Fires before a module is activated. |
||
2916 | * |
||
2917 | * @since 2.6.0 |
||
2918 | * |
||
2919 | * @param string $module Module slug. |
||
2920 | * @param bool $exit Should we exit after the module has been activated. Default to true. |
||
2921 | * @param bool $redirect Should the user be redirected after module activation? Default to true. |
||
2922 | */ |
||
2923 | do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect ); |
||
2924 | |||
2925 | $jetpack = Jetpack::init(); |
||
2926 | |||
2927 | if ( ! strlen( $module ) ) |
||
2928 | return false; |
||
2929 | |||
2930 | if ( ! Jetpack::is_module( $module ) ) |
||
2931 | return false; |
||
2932 | |||
2933 | // If it's already active, then don't do it again |
||
2934 | $active = Jetpack::get_active_modules(); |
||
2935 | foreach ( $active as $act ) { |
||
2936 | if ( $act == $module ) |
||
2937 | return true; |
||
2938 | } |
||
2939 | |||
2940 | $module_data = Jetpack::get_module( $module ); |
||
2941 | |||
2942 | if ( ! Jetpack::is_active() ) { |
||
2943 | if ( ! Jetpack::is_development_mode() && ! Jetpack::is_onboarding() ) |
||
2944 | return false; |
||
2945 | |||
2946 | // If we're not connected but in development mode, make sure the module doesn't require a connection |
||
2947 | if ( Jetpack::is_development_mode() && $module_data['requires_connection'] ) |
||
2948 | return false; |
||
2949 | } |
||
2950 | |||
2951 | // Check and see if the old plugin is active |
||
2952 | if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) { |
||
2953 | // Deactivate the old plugin |
||
2954 | if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) { |
||
2955 | // If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module |
||
2956 | // We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load. |
||
2957 | Jetpack::state( 'deactivated_plugins', $module ); |
||
2958 | wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) ); |
||
2959 | exit; |
||
2960 | } |
||
2961 | } |
||
2962 | |||
2963 | // Protect won't work with mis-configured IPs |
||
2964 | if ( 'protect' === $module ) { |
||
2965 | include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php'; |
||
2966 | if ( ! jetpack_protect_get_ip() ) { |
||
2967 | Jetpack::state( 'message', 'protect_misconfigured_ip' ); |
||
2968 | return false; |
||
2969 | } |
||
2970 | } |
||
2971 | |||
2972 | if ( ! Jetpack_Plan::supports( $module ) ) { |
||
2973 | return false; |
||
2974 | } |
||
2975 | |||
2976 | // Check the file for fatal errors, a la wp-admin/plugins.php::activate |
||
2977 | Jetpack::state( 'module', $module ); |
||
2978 | Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error |
||
2979 | |||
2980 | Jetpack::catch_errors( true ); |
||
2981 | ob_start(); |
||
2982 | require Jetpack::get_module_path( $module ); |
||
2983 | /** This action is documented in class.jetpack.php */ |
||
2984 | do_action( 'jetpack_activate_module', $module ); |
||
2985 | $active[] = $module; |
||
2986 | Jetpack::update_active_modules( $active ); |
||
2987 | |||
2988 | Jetpack::state( 'error', false ); // the override |
||
2989 | ob_end_clean(); |
||
2990 | Jetpack::catch_errors( false ); |
||
2991 | |||
2992 | if ( $redirect ) { |
||
2993 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
2994 | } |
||
2995 | if ( $exit ) { |
||
2996 | exit; |
||
2997 | } |
||
2998 | return true; |
||
2999 | } |
||
3000 | |||
3001 | function activate_module_actions( $module ) { |
||
3002 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
3003 | } |
||
3004 | |||
3005 | public static function deactivate_module( $module ) { |
||
3006 | /** |
||
3007 | * Fires when a module is deactivated. |
||
3008 | * |
||
3009 | * @since 1.9.0 |
||
3010 | * |
||
3011 | * @param string $module Module slug. |
||
3012 | */ |
||
3013 | do_action( 'jetpack_pre_deactivate_module', $module ); |
||
3014 | |||
3015 | $jetpack = Jetpack::init(); |
||
3016 | |||
3017 | $active = Jetpack::get_active_modules(); |
||
3018 | $new = array_filter( array_diff( $active, (array) $module ) ); |
||
3019 | |||
3020 | return self::update_active_modules( $new ); |
||
3021 | } |
||
3022 | |||
3023 | public static function enable_module_configurable( $module ) { |
||
3024 | $module = Jetpack::get_module_slug( $module ); |
||
3025 | add_filter( 'jetpack_module_configurable_' . $module, '__return_true' ); |
||
3026 | } |
||
3027 | |||
3028 | /** |
||
3029 | * Composes a module configure URL. It uses Jetpack settings search as default value |
||
3030 | * It is possible to redefine resulting URL by using "jetpack_module_configuration_url_$module" filter |
||
3031 | * |
||
3032 | * @param string $module Module slug |
||
3033 | * @return string $url module configuration URL |
||
3034 | */ |
||
3035 | public static function module_configuration_url( $module ) { |
||
3036 | $module = Jetpack::get_module_slug( $module ); |
||
3037 | $default_url = Jetpack::admin_url() . "#/settings?term=$module"; |
||
3038 | /** |
||
3039 | * Allows to modify configure_url of specific module to be able to redirect to some custom location. |
||
3040 | * |
||
3041 | * @since 6.9.0 |
||
3042 | * |
||
3043 | * @param string $default_url Default url, which redirects to jetpack settings page. |
||
3044 | */ |
||
3045 | $url = apply_filters( 'jetpack_module_configuration_url_' . $module, $default_url ); |
||
3046 | |||
3047 | return $url; |
||
3048 | } |
||
3049 | |||
3050 | /* Installation */ |
||
3051 | public static function bail_on_activation( $message, $deactivate = true ) { |
||
3052 | ?> |
||
3053 | <!doctype html> |
||
3054 | <html> |
||
3055 | <head> |
||
3056 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
||
3057 | <style> |
||
3058 | * { |
||
3059 | text-align: center; |
||
3060 | margin: 0; |
||
3061 | padding: 0; |
||
3062 | font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif; |
||
3063 | } |
||
3064 | p { |
||
3065 | margin-top: 1em; |
||
3066 | font-size: 18px; |
||
3067 | } |
||
3068 | </style> |
||
3069 | <body> |
||
3070 | <p><?php echo esc_html( $message ); ?></p> |
||
3071 | </body> |
||
3072 | </html> |
||
3073 | <?php |
||
3074 | if ( $deactivate ) { |
||
3075 | $plugins = get_option( 'active_plugins' ); |
||
3076 | $jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ); |
||
3077 | $update = false; |
||
3078 | foreach ( $plugins as $i => $plugin ) { |
||
3079 | if ( $plugin === $jetpack ) { |
||
3080 | $plugins[$i] = false; |
||
3081 | $update = true; |
||
3082 | } |
||
3083 | } |
||
3084 | |||
3085 | if ( $update ) { |
||
3086 | update_option( 'active_plugins', array_filter( $plugins ) ); |
||
3087 | } |
||
3088 | } |
||
3089 | exit; |
||
3090 | } |
||
3091 | |||
3092 | /** |
||
3093 | * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() |
||
3094 | * @static |
||
3095 | */ |
||
3096 | public static function plugin_activation( $network_wide ) { |
||
3097 | Jetpack_Options::update_option( 'activated', 1 ); |
||
3098 | |||
3099 | if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) { |
||
3100 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) ); |
||
3101 | } |
||
3102 | |||
3103 | if ( $network_wide ) |
||
3104 | Jetpack::state( 'network_nag', true ); |
||
3105 | |||
3106 | // For firing one-off events (notices) immediately after activation |
||
3107 | set_transient( 'activated_jetpack', true, .1 * MINUTE_IN_SECONDS ); |
||
3108 | |||
3109 | update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) ); |
||
3110 | |||
3111 | Jetpack::plugin_initialize(); |
||
3112 | } |
||
3113 | |||
3114 | public static function get_activation_source( $referer_url ) { |
||
3115 | |||
3116 | if ( defined( 'WP_CLI' ) && WP_CLI ) { |
||
3117 | return array( 'wp-cli', null ); |
||
3118 | } |
||
3119 | |||
3120 | $referer = parse_url( $referer_url ); |
||
3121 | |||
3122 | $source_type = 'unknown'; |
||
3123 | $source_query = null; |
||
3124 | |||
3125 | if ( ! is_array( $referer ) ) { |
||
3126 | return array( $source_type, $source_query ); |
||
3127 | } |
||
3128 | |||
3129 | $plugins_path = parse_url( admin_url( 'plugins.php' ), PHP_URL_PATH ); |
||
3130 | $plugins_install_path = parse_url( admin_url( 'plugin-install.php' ), PHP_URL_PATH );// /wp-admin/plugin-install.php |
||
3131 | |||
3132 | if ( isset( $referer['query'] ) ) { |
||
3133 | parse_str( $referer['query'], $query_parts ); |
||
3134 | } else { |
||
3135 | $query_parts = array(); |
||
3136 | } |
||
3137 | |||
3138 | if ( $plugins_path === $referer['path'] ) { |
||
3139 | $source_type = 'list'; |
||
3140 | } elseif ( $plugins_install_path === $referer['path'] ) { |
||
3141 | $tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured'; |
||
3142 | switch( $tab ) { |
||
3143 | case 'popular': |
||
3144 | $source_type = 'popular'; |
||
3145 | break; |
||
3146 | case 'recommended': |
||
3147 | $source_type = 'recommended'; |
||
3148 | break; |
||
3149 | case 'favorites': |
||
3150 | $source_type = 'favorites'; |
||
3151 | break; |
||
3152 | case 'search': |
||
3153 | $source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' ); |
||
3154 | $source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null; |
||
3155 | break; |
||
3156 | default: |
||
3157 | $source_type = 'featured'; |
||
3158 | } |
||
3159 | } |
||
3160 | |||
3161 | return array( $source_type, $source_query ); |
||
3162 | } |
||
3163 | |||
3164 | /** |
||
3165 | * Runs before bumping version numbers up to a new version |
||
3166 | * @param string $version Version:timestamp |
||
3167 | * @param string $old_version Old Version:timestamp or false if not set yet. |
||
3168 | * @return null [description] |
||
3169 | */ |
||
3170 | public static function do_version_bump( $version, $old_version ) { |
||
3171 | if ( ! $old_version ) { // For new sites |
||
3172 | // There used to be stuff here, but this seems like it might be useful to someone in the future... |
||
3173 | } |
||
3174 | } |
||
3175 | |||
3176 | /** |
||
3177 | * Sets the internal version number and activation state. |
||
3178 | * @static |
||
3179 | */ |
||
3180 | public static function plugin_initialize() { |
||
3181 | if ( ! Jetpack_Options::get_option( 'activated' ) ) { |
||
3182 | Jetpack_Options::update_option( 'activated', 2 ); |
||
3183 | } |
||
3184 | |||
3185 | View Code Duplication | if ( ! Jetpack_Options::get_option( 'version' ) ) { |
|
3186 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
3187 | /** This action is documented in class.jetpack.php */ |
||
3188 | do_action( 'updating_jetpack_version', $version, false ); |
||
3189 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
3190 | } |
||
3191 | |||
3192 | Jetpack::load_modules(); |
||
3193 | |||
3194 | Jetpack_Options::delete_option( 'do_activate' ); |
||
3195 | Jetpack_Options::delete_option( 'dismissed_connection_banner' ); |
||
3196 | } |
||
3197 | |||
3198 | /** |
||
3199 | * Removes all connection options |
||
3200 | * @static |
||
3201 | */ |
||
3202 | public static function plugin_deactivation( ) { |
||
3203 | require_once( ABSPATH . '/wp-admin/includes/plugin.php' ); |
||
3204 | if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
3205 | Jetpack_Network::init()->deactivate(); |
||
3206 | } else { |
||
3207 | Jetpack::disconnect( false ); |
||
3208 | //Jetpack_Heartbeat::init()->deactivate(); |
||
3209 | } |
||
3210 | } |
||
3211 | |||
3212 | /** |
||
3213 | * Disconnects from the Jetpack servers. |
||
3214 | * Forgets all connection details and tells the Jetpack servers to do the same. |
||
3215 | * @static |
||
3216 | */ |
||
3217 | public static function disconnect( $update_activated_state = true ) { |
||
3218 | wp_clear_scheduled_hook( 'jetpack_clean_nonces' ); |
||
3219 | $connection = self::connection(); |
||
3220 | $connection->clean_nonces( true ); |
||
3221 | |||
3222 | // If the site is in an IDC because sync is not allowed, |
||
3223 | // let's make sure to not disconnect the production site. |
||
3224 | if ( ! self::validate_sync_error_idc_option() ) { |
||
3225 | $tracking = new Tracking(); |
||
3226 | $tracking->record_user_event( 'disconnect_site', array() ); |
||
3227 | |||
3228 | $xml = new Jetpack_IXR_Client(); |
||
3229 | $xml->query( 'jetpack.deregister', get_current_user_id() ); |
||
3230 | } |
||
3231 | |||
3232 | Jetpack_Options::delete_option( |
||
3233 | array( |
||
3234 | 'blog_token', |
||
3235 | 'user_token', |
||
3236 | 'user_tokens', |
||
3237 | 'master_user', |
||
3238 | 'time_diff', |
||
3239 | 'fallback_no_verify_ssl_certs', |
||
3240 | ) |
||
3241 | ); |
||
3242 | |||
3243 | Jetpack_IDC::clear_all_idc_options(); |
||
3244 | Jetpack_Options::delete_raw_option( 'jetpack_secrets' ); |
||
3245 | |||
3246 | if ( $update_activated_state ) { |
||
3247 | Jetpack_Options::update_option( 'activated', 4 ); |
||
3248 | } |
||
3249 | |||
3250 | if ( $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ) ) { |
||
3251 | // Check then record unique disconnection if site has never been disconnected previously |
||
3252 | if ( - 1 == $jetpack_unique_connection['disconnected'] ) { |
||
3253 | $jetpack_unique_connection['disconnected'] = 1; |
||
3254 | } else { |
||
3255 | if ( 0 == $jetpack_unique_connection['disconnected'] ) { |
||
3256 | //track unique disconnect |
||
3257 | $jetpack = Jetpack::init(); |
||
3258 | |||
3259 | $jetpack->stat( 'connections', 'unique-disconnect' ); |
||
3260 | $jetpack->do_stats( 'server_side' ); |
||
3261 | } |
||
3262 | // increment number of times disconnected |
||
3263 | $jetpack_unique_connection['disconnected'] += 1; |
||
3264 | } |
||
3265 | |||
3266 | Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection ); |
||
3267 | } |
||
3268 | |||
3269 | // Delete cached connected user data |
||
3270 | $transient_key = "jetpack_connected_user_data_" . get_current_user_id(); |
||
3271 | delete_transient( $transient_key ); |
||
3272 | |||
3273 | // Delete all the sync related data. Since it could be taking up space. |
||
3274 | Sender::get_instance()->uninstall(); |
||
3275 | |||
3276 | // Disable the Heartbeat cron |
||
3277 | Jetpack_Heartbeat::init()->deactivate(); |
||
3278 | } |
||
3279 | |||
3280 | /** |
||
3281 | * Unlinks the current user from the linked WordPress.com user. |
||
3282 | * |
||
3283 | * @deprecated since 7.7 |
||
3284 | * @see Automattic\Jetpack\Connection\Manager::disconnect_user() |
||
3285 | * |
||
3286 | * @param Integer $user_id the user identifier. |
||
3287 | * @return Boolean Whether the disconnection of the user was successful. |
||
3288 | */ |
||
3289 | public static function unlink_user( $user_id = null ) { |
||
3290 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::disconnect_user' ); |
||
3291 | return Connection_Manager::disconnect_user( $user_id ); |
||
3292 | } |
||
3293 | |||
3294 | /** |
||
3295 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() |
||
3296 | */ |
||
3297 | public static function try_registration() { |
||
3298 | // The user has agreed to the TOS at some point by now. |
||
3299 | Jetpack_Options::update_option( 'tos_agreed', true ); |
||
3300 | |||
3301 | // Let's get some testing in beta versions and such. |
||
3302 | if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) { |
||
3303 | // Before attempting to connect, let's make sure that the domains are viable. |
||
3304 | $domains_to_check = array_unique( array( |
||
3305 | 'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ), |
||
3306 | 'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ), |
||
3307 | ) ); |
||
3308 | foreach ( $domains_to_check as $domain ) { |
||
3309 | $result = self::connection()->is_usable_domain( $domain ); |
||
3310 | if ( is_wp_error( $result ) ) { |
||
3311 | return $result; |
||
3312 | } |
||
3313 | } |
||
3314 | } |
||
3315 | |||
3316 | $result = Jetpack::register(); |
||
3317 | |||
3318 | // If there was an error with registration and the site was not registered, record this so we can show a message. |
||
3319 | if ( ! $result || is_wp_error( $result ) ) { |
||
3320 | return $result; |
||
3321 | } else { |
||
3322 | return true; |
||
3323 | } |
||
3324 | } |
||
3325 | |||
3326 | /** |
||
3327 | * Tracking an internal event log. Try not to put too much chaff in here. |
||
3328 | * |
||
3329 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) |
||
3330 | */ |
||
3331 | public static function log( $code, $data = null ) { |
||
3332 | // only grab the latest 200 entries |
||
3333 | $log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 ); |
||
3334 | |||
3335 | // Append our event to the log |
||
3336 | $log_entry = array( |
||
3337 | 'time' => time(), |
||
3338 | 'user_id' => get_current_user_id(), |
||
3339 | 'blog_id' => Jetpack_Options::get_option( 'id' ), |
||
3340 | 'code' => $code, |
||
3341 | ); |
||
3342 | // Don't bother storing it unless we've got some. |
||
3343 | if ( ! is_null( $data ) ) { |
||
3344 | $log_entry['data'] = $data; |
||
3345 | } |
||
3346 | $log[] = $log_entry; |
||
3347 | |||
3348 | // Try add_option first, to make sure it's not autoloaded. |
||
3349 | // @todo: Add an add_option method to Jetpack_Options |
||
3350 | if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) { |
||
3351 | Jetpack_Options::update_option( 'log', $log ); |
||
3352 | } |
||
3353 | |||
3354 | /** |
||
3355 | * Fires when Jetpack logs an internal event. |
||
3356 | * |
||
3357 | * @since 3.0.0 |
||
3358 | * |
||
3359 | * @param array $log_entry { |
||
3360 | * Array of details about the log entry. |
||
3361 | * |
||
3362 | * @param string time Time of the event. |
||
3363 | * @param int user_id ID of the user who trigerred the event. |
||
3364 | * @param int blog_id Jetpack Blog ID. |
||
3365 | * @param string code Unique name for the event. |
||
3366 | * @param string data Data about the event. |
||
3367 | * } |
||
3368 | */ |
||
3369 | do_action( 'jetpack_log_entry', $log_entry ); |
||
3370 | } |
||
3371 | |||
3372 | /** |
||
3373 | * Get the internal event log. |
||
3374 | * |
||
3375 | * @param $event (string) - only return the specific log events |
||
3376 | * @param $num (int) - get specific number of latest results, limited to 200 |
||
3377 | * |
||
3378 | * @return array of log events || WP_Error for invalid params |
||
3379 | */ |
||
3380 | public static function get_log( $event = false, $num = false ) { |
||
3381 | if ( $event && ! is_string( $event ) ) { |
||
3382 | return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) ); |
||
3383 | } |
||
3384 | |||
3385 | if ( $num && ! is_numeric( $num ) ) { |
||
3386 | return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) ); |
||
3387 | } |
||
3388 | |||
3389 | $entire_log = Jetpack_Options::get_option( 'log', array() ); |
||
3390 | |||
3391 | // If nothing set - act as it did before, otherwise let's start customizing the output |
||
3392 | if ( ! $num && ! $event ) { |
||
3393 | return $entire_log; |
||
3394 | } else { |
||
3395 | $entire_log = array_reverse( $entire_log ); |
||
3396 | } |
||
3397 | |||
3398 | $custom_log_output = array(); |
||
3399 | |||
3400 | if ( $event ) { |
||
3401 | foreach ( $entire_log as $log_event ) { |
||
3402 | if ( $event == $log_event[ 'code' ] ) { |
||
3403 | $custom_log_output[] = $log_event; |
||
3404 | } |
||
3405 | } |
||
3406 | } else { |
||
3407 | $custom_log_output = $entire_log; |
||
3408 | } |
||
3409 | |||
3410 | if ( $num ) { |
||
3411 | $custom_log_output = array_slice( $custom_log_output, 0, $num ); |
||
3412 | } |
||
3413 | |||
3414 | return $custom_log_output; |
||
3415 | } |
||
3416 | |||
3417 | /** |
||
3418 | * Log modification of important settings. |
||
3419 | */ |
||
3420 | public static function log_settings_change( $option, $old_value, $value ) { |
||
3421 | switch( $option ) { |
||
3422 | case 'jetpack_sync_non_public_post_stati': |
||
3423 | self::log( $option, $value ); |
||
3424 | break; |
||
3425 | } |
||
3426 | } |
||
3427 | |||
3428 | /** |
||
3429 | * Return stat data for WPCOM sync |
||
3430 | */ |
||
3431 | public static function get_stat_data( $encode = true, $extended = true ) { |
||
3432 | $data = Jetpack_Heartbeat::generate_stats_array(); |
||
3433 | |||
3434 | if ( $extended ) { |
||
3435 | $additional_data = self::get_additional_stat_data(); |
||
3436 | $data = array_merge( $data, $additional_data ); |
||
3437 | } |
||
3438 | |||
3439 | if ( $encode ) { |
||
3440 | return json_encode( $data ); |
||
3441 | } |
||
3442 | |||
3443 | return $data; |
||
3444 | } |
||
3445 | |||
3446 | /** |
||
3447 | * Get additional stat data to sync to WPCOM |
||
3448 | */ |
||
3449 | public static function get_additional_stat_data( $prefix = '' ) { |
||
3450 | $return["{$prefix}themes"] = Jetpack::get_parsed_theme_data(); |
||
3451 | $return["{$prefix}plugins-extra"] = Jetpack::get_parsed_plugin_data(); |
||
3452 | $return["{$prefix}users"] = (int) Jetpack::get_site_user_count(); |
||
3453 | $return["{$prefix}site-count"] = 0; |
||
3454 | |||
3455 | if ( function_exists( 'get_blog_count' ) ) { |
||
3456 | $return["{$prefix}site-count"] = get_blog_count(); |
||
3457 | } |
||
3458 | return $return; |
||
3459 | } |
||
3460 | |||
3461 | private static function get_site_user_count() { |
||
3462 | global $wpdb; |
||
3463 | |||
3464 | if ( function_exists( 'wp_is_large_network' ) ) { |
||
3465 | if ( wp_is_large_network( 'users' ) ) { |
||
3466 | return -1; // Not a real value but should tell us that we are dealing with a large network. |
||
3467 | } |
||
3468 | } |
||
3469 | if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) { |
||
3470 | // It wasn't there, so regenerate the data and save the transient |
||
3471 | $user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" ); |
||
3472 | set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS ); |
||
3473 | } |
||
3474 | return $user_count; |
||
3475 | } |
||
3476 | |||
3477 | /* Admin Pages */ |
||
3478 | |||
3479 | function admin_init() { |
||
3480 | // If the plugin is not connected, display a connect message. |
||
3481 | if ( |
||
3482 | // the plugin was auto-activated and needs its candy |
||
3483 | Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' ) |
||
3484 | || |
||
3485 | // the plugin is active, but was never activated. Probably came from a site-wide network activation |
||
3486 | ! Jetpack_Options::get_option( 'activated' ) |
||
3487 | ) { |
||
3488 | Jetpack::plugin_initialize(); |
||
3489 | } |
||
3490 | |||
3491 | if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { |
||
3492 | Jetpack_Connection_Banner::init(); |
||
3493 | } elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) { |
||
3494 | // Upgrade: 1.1 -> 1.1.1 |
||
3495 | // Check and see if host can verify the Jetpack servers' SSL certificate |
||
3496 | $args = array(); |
||
3497 | $connection = self::connection(); |
||
3498 | Client::_wp_remote_request( |
||
3499 | Jetpack::fix_url_for_bad_hosts( $connection->api_url( 'test' ) ), |
||
3500 | $args, |
||
3501 | true |
||
3502 | ); |
||
3503 | } |
||
3504 | |||
3505 | if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) { |
||
3506 | add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) ); |
||
3507 | } |
||
3508 | |||
3509 | add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) ); |
||
3510 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) ); |
||
3511 | add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) ); |
||
3512 | |||
3513 | if ( Jetpack::is_active() || Jetpack::is_development_mode() ) { |
||
3514 | // Artificially throw errors in certain whitelisted cases during plugin activation |
||
3515 | add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) ); |
||
3516 | } |
||
3517 | |||
3518 | // Add custom column in wp-admin/users.php to show whether user is linked. |
||
3519 | add_filter( 'manage_users_columns', array( $this, 'jetpack_icon_user_connected' ) ); |
||
3520 | add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 ); |
||
3521 | add_action( 'admin_print_styles', array( $this, 'jetpack_user_col_style' ) ); |
||
3522 | } |
||
3523 | |||
3524 | function admin_body_class( $admin_body_class = '' ) { |
||
3525 | $classes = explode( ' ', trim( $admin_body_class ) ); |
||
3526 | |||
3527 | $classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected'; |
||
3528 | |||
3529 | $admin_body_class = implode( ' ', array_unique( $classes ) ); |
||
3530 | return " $admin_body_class "; |
||
3531 | } |
||
3532 | |||
3533 | static function add_jetpack_pagestyles( $admin_body_class = '' ) { |
||
3534 | return $admin_body_class . ' jetpack-pagestyles '; |
||
3535 | } |
||
3536 | |||
3537 | /** |
||
3538 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. |
||
3539 | * This function artificially throws errors for such cases (whitelisted). |
||
3540 | * |
||
3541 | * @param string $plugin The activated plugin. |
||
3542 | */ |
||
3543 | function throw_error_on_activate_plugin( $plugin ) { |
||
3544 | $active_modules = Jetpack::get_active_modules(); |
||
3545 | |||
3546 | // The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks. |
||
3547 | if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) { |
||
3548 | $throw = false; |
||
3549 | |||
3550 | // Try and make sure it really was the stats plugin |
||
3551 | if ( ! class_exists( 'ReflectionFunction' ) ) { |
||
3552 | if ( 'stats.php' == basename( $plugin ) ) { |
||
3553 | $throw = true; |
||
3554 | } |
||
3555 | } else { |
||
3556 | $reflection = new ReflectionFunction( 'stats_get_api_key' ); |
||
3557 | if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) { |
||
3558 | $throw = true; |
||
3559 | } |
||
3560 | } |
||
3561 | |||
3562 | if ( $throw ) { |
||
3563 | trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR ); |
||
3564 | } |
||
3565 | } |
||
3566 | } |
||
3567 | |||
3568 | function intercept_plugin_error_scrape_init() { |
||
3569 | add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 ); |
||
3570 | } |
||
3571 | |||
3572 | function intercept_plugin_error_scrape( $action, $result ) { |
||
3573 | if ( ! $result ) { |
||
3574 | return; |
||
3575 | } |
||
3576 | |||
3577 | foreach ( $this->plugins_to_deactivate as $deactivate_me ) { |
||
3578 | if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) { |
||
3579 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), $deactivate_me[1] ), false ); |
||
3580 | } |
||
3581 | } |
||
3582 | } |
||
3583 | |||
3584 | /** |
||
3585 | * Register the remote file upload request handlers, if needed. |
||
3586 | * |
||
3587 | * @access public |
||
3588 | */ |
||
3589 | public function add_remote_request_handlers() { |
||
3590 | // Remote file uploads are allowed only via AJAX requests. |
||
3591 | if ( ! is_admin() || ! Constants::get_constant( 'DOING_AJAX' ) ) { |
||
3592 | return; |
||
3593 | } |
||
3594 | |||
3595 | // Remote file uploads are allowed only for a set of specific AJAX actions. |
||
3596 | $remote_request_actions = array( |
||
3597 | 'jetpack_upload_file', |
||
3598 | 'jetpack_update_file', |
||
3599 | ); |
||
3600 | |||
3601 | // phpcs:ignore WordPress.Security.NonceVerification |
||
3602 | if ( ! isset( $_POST['action'] ) || ! in_array( $_POST['action'], $remote_request_actions, true ) ) { |
||
3603 | return; |
||
3604 | } |
||
3605 | |||
3606 | // Require Jetpack authentication for the remote file upload AJAX requests. |
||
3607 | $this->connection_manager->require_jetpack_authentication(); |
||
3608 | |||
3609 | // Register the remote file upload AJAX handlers. |
||
3610 | foreach ( $remote_request_actions as $action ) { |
||
3611 | add_action( "wp_ajax_nopriv_{$action}", array( $this, 'remote_request_handlers' ) ); |
||
3612 | } |
||
3613 | } |
||
3614 | |||
3615 | /** |
||
3616 | * Handler for Jetpack remote file uploads. |
||
3617 | * |
||
3618 | * @access public |
||
3619 | */ |
||
3620 | public function remote_request_handlers() { |
||
3660 | |||
3661 | /** |
||
3662 | * Uploads a file gotten from the global $_FILES. |
||
3663 | * If `$update_media_item` is true and `post_id` is defined |
||
3664 | * the attachment file of the media item (gotten through of the post_id) |
||
3665 | * will be updated instead of add a new one. |
||
3666 | * |
||
3667 | * @param boolean $update_media_item - update media attachment |
||
3668 | * @return array - An array describing the uploadind files process |
||
3669 | */ |
||
3670 | function upload_handler( $update_media_item = false ) { |
||
3792 | |||
3793 | /** |
||
3794 | * Add help to the Jetpack page |
||
3795 | * |
||
3796 | * @since Jetpack (1.2.3) |
||
3797 | * @return false if not the Jetpack page |
||
3798 | */ |
||
3799 | function admin_help() { |
||
3840 | |||
3841 | function admin_menu_css() { |
||
3844 | |||
3845 | function admin_menu_order() { |
||
3848 | |||
3849 | View Code Duplication | function jetpack_menu_order( $menu_order ) { |
|
3850 | $jp_menu_order = array(); |
||
3851 | |||
3852 | foreach ( $menu_order as $index => $item ) { |
||
3853 | if ( $item != 'jetpack' ) { |
||
3854 | $jp_menu_order[] = $item; |
||
3855 | } |
||
3856 | |||
3857 | if ( $index == 0 ) { |
||
3858 | $jp_menu_order[] = 'jetpack'; |
||
3859 | } |
||
3860 | } |
||
3861 | |||
3862 | return $jp_menu_order; |
||
3863 | } |
||
3864 | |||
3865 | function admin_banner_styles() { |
||
3866 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
||
3867 | |||
3868 | if ( ! wp_style_is( 'jetpack-dops-style' ) ) { |
||
3869 | wp_register_style( |
||
3870 | 'jetpack-dops-style', |
||
3871 | plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ), |
||
3872 | array(), |
||
3873 | JETPACK__VERSION |
||
3874 | ); |
||
3875 | } |
||
3876 | |||
3877 | wp_enqueue_style( |
||
3878 | 'jetpack', |
||
3879 | plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ), |
||
3880 | array( 'jetpack-dops-style' ), |
||
3881 | JETPACK__VERSION . '-20121016' |
||
3882 | ); |
||
3883 | wp_style_add_data( 'jetpack', 'rtl', 'replace' ); |
||
3884 | wp_style_add_data( 'jetpack', 'suffix', $min ); |
||
3885 | } |
||
3886 | |||
3887 | function plugin_action_links( $actions ) { |
||
3888 | |||
3889 | $jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), 'Jetpack' ) ); |
||
3890 | |||
3891 | if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) { |
||
3892 | return array_merge( |
||
3893 | $jetpack_home, |
||
3894 | array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack#/settings' ), __( 'Settings', 'jetpack' ) ) ), |
||
3895 | array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ), |
||
3896 | $actions |
||
3897 | ); |
||
3898 | } |
||
3899 | |||
3900 | return array_merge( $jetpack_home, $actions ); |
||
3901 | } |
||
3902 | |||
3903 | /* |
||
3904 | * Registration flow: |
||
3905 | * 1 - ::admin_page_load() action=register |
||
3906 | * 2 - ::try_registration() |
||
3907 | * 3 - ::register() |
||
3908 | * - Creates jetpack_register option containing two secrets and a timestamp |
||
3909 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with |
||
3910 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id |
||
3911 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's |
||
3912 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 |
||
3913 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 |
||
3914 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with |
||
3915 | * jetpack_id, jetpack_secret, jetpack_public |
||
3916 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret |
||
3917 | * 4 - redirect to https://wordpress.com/start/jetpack-connect |
||
3918 | * 5 - user logs in with WP.com account |
||
3919 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize |
||
3920 | * - Jetpack_Client_Server::authorize() |
||
3921 | * - Jetpack_Client_Server::get_token() |
||
3922 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with |
||
3923 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login |
||
3924 | * - which responds with access_token, token_type, scope |
||
3925 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id |
||
3926 | * - Jetpack::activate_default_modules() |
||
3927 | * - Deactivates deprecated plugins |
||
3928 | * - Activates all default modules |
||
3929 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users |
||
3930 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com |
||
3931 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized |
||
3932 | * Done! |
||
3933 | */ |
||
3934 | |||
3935 | /** |
||
3936 | * Handles the page load events for the Jetpack admin page |
||
3937 | */ |
||
3938 | function admin_page_load() { |
||
3939 | $error = false; |
||
3940 | |||
3941 | // Make sure we have the right body class to hook stylings for subpages off of. |
||
3942 | add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) ); |
||
3943 | |||
3944 | if ( ! empty( $_GET['jetpack_restate'] ) ) { |
||
3945 | // Should only be used in intermediate redirects to preserve state across redirects |
||
3946 | Jetpack::restate(); |
||
3947 | } |
||
3948 | |||
3949 | if ( isset( $_GET['connect_url_redirect'] ) ) { |
||
3950 | // @todo: Add validation against a known whitelist |
||
3951 | $from = ! empty( $_GET['from'] ) ? $_GET['from'] : 'iframe'; |
||
3952 | // User clicked in the iframe to link their accounts |
||
3953 | if ( ! Jetpack::is_user_connected() ) { |
||
3954 | $redirect = ! empty( $_GET['redirect_after_auth'] ) ? $_GET['redirect_after_auth'] : false; |
||
3955 | |||
3956 | add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) ); |
||
3957 | $connect_url = $this->build_connect_url( true, $redirect, $from ); |
||
3958 | remove_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) ); |
||
3959 | |||
3960 | if ( isset( $_GET['notes_iframe'] ) ) |
||
3961 | $connect_url .= '¬es_iframe'; |
||
3962 | wp_redirect( $connect_url ); |
||
3963 | exit; |
||
3964 | } else { |
||
3965 | if ( ! isset( $_GET['calypso_env'] ) ) { |
||
3966 | Jetpack::state( 'message', 'already_authorized' ); |
||
3967 | wp_safe_redirect( Jetpack::admin_url() ); |
||
3968 | exit; |
||
3969 | } else { |
||
3970 | $connect_url = $this->build_connect_url( true, false, $from ); |
||
3971 | $connect_url .= '&already_authorized=true'; |
||
3972 | wp_redirect( $connect_url ); |
||
3973 | exit; |
||
3974 | } |
||
3975 | } |
||
3976 | } |
||
3977 | |||
3978 | |||
3979 | if ( isset( $_GET['action'] ) ) { |
||
3980 | switch ( $_GET['action'] ) { |
||
3981 | case 'authorize': |
||
3982 | if ( Jetpack::is_active() && Jetpack::is_user_connected() ) { |
||
3983 | Jetpack::state( 'message', 'already_authorized' ); |
||
3984 | wp_safe_redirect( Jetpack::admin_url() ); |
||
3985 | exit; |
||
3986 | } |
||
3987 | Jetpack::log( 'authorize' ); |
||
3988 | $client_server = new Jetpack_Client_Server; |
||
3989 | $client_server->client_authorize(); |
||
3990 | exit; |
||
3991 | case 'register' : |
||
3992 | if ( ! current_user_can( 'jetpack_connect' ) ) { |
||
3993 | $error = 'cheatin'; |
||
3994 | break; |
||
3995 | } |
||
3996 | check_admin_referer( 'jetpack-register' ); |
||
3997 | Jetpack::log( 'register' ); |
||
3998 | Jetpack::maybe_set_version_option(); |
||
3999 | $registered = Jetpack::try_registration(); |
||
4000 | if ( is_wp_error( $registered ) ) { |
||
4001 | $error = $registered->get_error_code(); |
||
4002 | Jetpack::state( 'error', $error ); |
||
4003 | Jetpack::state( 'error', $registered->get_error_message() ); |
||
4004 | |||
4005 | /** |
||
4006 | * Jetpack registration Error. |
||
4007 | * |
||
4008 | * @since 7.5.0 |
||
4009 | * |
||
4010 | * @param string|int $error The error code. |
||
4011 | * @param \WP_Error $registered The error object. |
||
4012 | */ |
||
4013 | do_action( 'jetpack_connection_register_fail', $error, $registered ); |
||
4014 | break; |
||
4015 | } |
||
4016 | |||
4017 | $from = isset( $_GET['from'] ) ? $_GET['from'] : false; |
||
4018 | $redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : false; |
||
4019 | |||
4020 | /** |
||
4021 | * Jetpack registration Success. |
||
4022 | * |
||
4023 | * @since 7.5.0 |
||
4024 | * |
||
4025 | * @param string $from 'from' GET parameter; |
||
4026 | */ |
||
4027 | do_action( 'jetpack_connection_register_success', $from ); |
||
4028 | |||
4029 | $url = $this->build_connect_url( true, $redirect, $from ); |
||
4030 | |||
4031 | if ( ! empty( $_GET['onboarding'] ) ) { |
||
4032 | $url = add_query_arg( 'onboarding', $_GET['onboarding'], $url ); |
||
4033 | } |
||
4034 | |||
4035 | if ( ! empty( $_GET['auth_approved'] ) && 'true' === $_GET['auth_approved'] ) { |
||
4036 | $url = add_query_arg( 'auth_approved', 'true', $url ); |
||
4037 | } |
||
4038 | |||
4039 | wp_redirect( $url ); |
||
4040 | exit; |
||
4041 | case 'activate' : |
||
4042 | if ( ! current_user_can( 'jetpack_activate_modules' ) ) { |
||
4043 | $error = 'cheatin'; |
||
4044 | break; |
||
4045 | } |
||
4046 | |||
4047 | $module = stripslashes( $_GET['module'] ); |
||
4048 | check_admin_referer( "jetpack_activate-$module" ); |
||
4049 | Jetpack::log( 'activate', $module ); |
||
4050 | if ( ! Jetpack::activate_module( $module ) ) { |
||
4051 | Jetpack::state( 'error', sprintf( __( 'Could not activate %s', 'jetpack' ), $module ) ); |
||
4052 | } |
||
4053 | // The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end. |
||
4054 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
4055 | exit; |
||
4056 | case 'activate_default_modules' : |
||
4057 | check_admin_referer( 'activate_default_modules' ); |
||
4058 | Jetpack::log( 'activate_default_modules' ); |
||
4059 | Jetpack::restate(); |
||
4060 | $min_version = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false; |
||
4061 | $max_version = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false; |
||
4062 | $other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array(); |
||
4063 | Jetpack::activate_default_modules( $min_version, $max_version, $other_modules ); |
||
4064 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
4065 | exit; |
||
4066 | case 'disconnect' : |
||
4067 | if ( ! current_user_can( 'jetpack_disconnect' ) ) { |
||
4068 | $error = 'cheatin'; |
||
4069 | break; |
||
4070 | } |
||
4071 | |||
4072 | check_admin_referer( 'jetpack-disconnect' ); |
||
4073 | Jetpack::log( 'disconnect' ); |
||
4074 | Jetpack::disconnect(); |
||
4075 | wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) ); |
||
4076 | exit; |
||
4077 | case 'reconnect' : |
||
4078 | if ( ! current_user_can( 'jetpack_reconnect' ) ) { |
||
4079 | $error = 'cheatin'; |
||
4080 | break; |
||
4081 | } |
||
4082 | |||
4083 | check_admin_referer( 'jetpack-reconnect' ); |
||
4084 | Jetpack::log( 'reconnect' ); |
||
4085 | $this->disconnect(); |
||
4086 | wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) ); |
||
4087 | exit; |
||
4088 | View Code Duplication | case 'deactivate' : |
|
4089 | if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) { |
||
4090 | $error = 'cheatin'; |
||
4091 | break; |
||
4092 | } |
||
4093 | |||
4094 | $modules = stripslashes( $_GET['module'] ); |
||
4095 | check_admin_referer( "jetpack_deactivate-$modules" ); |
||
4096 | foreach ( explode( ',', $modules ) as $module ) { |
||
4097 | Jetpack::log( 'deactivate', $module ); |
||
4098 | Jetpack::deactivate_module( $module ); |
||
4099 | Jetpack::state( 'message', 'module_deactivated' ); |
||
4100 | } |
||
4101 | Jetpack::state( 'module', $modules ); |
||
4102 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
4103 | exit; |
||
4104 | case 'unlink' : |
||
4105 | $redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : ''; |
||
4106 | check_admin_referer( 'jetpack-unlink' ); |
||
4107 | Jetpack::log( 'unlink' ); |
||
4108 | Connection_Manager::disconnect_user(); |
||
4109 | Jetpack::state( 'message', 'unlinked' ); |
||
4110 | if ( 'sub-unlink' == $redirect ) { |
||
4111 | wp_safe_redirect( admin_url() ); |
||
4112 | } else { |
||
4113 | wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) ); |
||
4114 | } |
||
4115 | exit; |
||
4116 | case 'onboard' : |
||
4117 | if ( ! current_user_can( 'manage_options' ) ) { |
||
4118 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); |
||
4119 | } else { |
||
4120 | Jetpack::create_onboarding_token(); |
||
4121 | $url = $this->build_connect_url( true ); |
||
4122 | |||
4123 | if ( false !== ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) { |
||
4124 | $url = add_query_arg( 'onboarding', $token, $url ); |
||
4125 | } |
||
4126 | |||
4127 | $calypso_env = $this->get_calypso_env(); |
||
4128 | if ( ! empty( $calypso_env ) ) { |
||
4129 | $url = add_query_arg( 'calypso_env', $calypso_env, $url ); |
||
4130 | } |
||
4131 | |||
4132 | wp_redirect( $url ); |
||
4133 | exit; |
||
4134 | } |
||
4135 | exit; |
||
4136 | default: |
||
4137 | /** |
||
4138 | * Fires when a Jetpack admin page is loaded with an unrecognized parameter. |
||
4139 | * |
||
4140 | * @since 2.6.0 |
||
4141 | * |
||
4142 | * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter. |
||
4143 | */ |
||
4144 | do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) ); |
||
4145 | } |
||
4146 | } |
||
4147 | |||
4148 | if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) { |
||
4149 | self::activate_new_modules( true ); |
||
4150 | } |
||
4151 | |||
4152 | $message_code = Jetpack::state( 'message' ); |
||
4153 | if ( Jetpack::state( 'optin-manage' ) ) { |
||
4154 | $activated_manage = $message_code; |
||
4155 | $message_code = 'jetpack-manage'; |
||
4156 | } |
||
4157 | |||
4158 | switch ( $message_code ) { |
||
4159 | case 'jetpack-manage': |
||
4160 | $this->message = '<strong>' . sprintf( __( 'You are all set! Your site can now be managed from <a href="%s" target="_blank">wordpress.com/sites</a>.', 'jetpack' ), 'https://wordpress.com/sites' ) . '</strong>'; |
||
4161 | if ( $activated_manage ) { |
||
4162 | $this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack' ) . '</strong>'; |
||
4163 | } |
||
4164 | break; |
||
4165 | |||
4166 | } |
||
4167 | |||
4168 | $deactivated_plugins = Jetpack::state( 'deactivated_plugins' ); |
||
4169 | |||
4170 | if ( ! empty( $deactivated_plugins ) ) { |
||
4171 | $deactivated_plugins = explode( ',', $deactivated_plugins ); |
||
4172 | $deactivated_titles = array(); |
||
4173 | foreach ( $deactivated_plugins as $deactivated_plugin ) { |
||
4174 | if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) { |
||
4175 | continue; |
||
4176 | } |
||
4177 | |||
4178 | $deactivated_titles[] = '<strong>' . str_replace( ' ', ' ', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>'; |
||
4179 | } |
||
4180 | |||
4181 | if ( $deactivated_titles ) { |
||
4182 | if ( $this->message ) { |
||
4183 | $this->message .= "<br /><br />\n"; |
||
4184 | } |
||
4185 | |||
4186 | $this->message .= wp_sprintf( |
||
4187 | _n( |
||
4188 | 'Jetpack contains the most recent version of the old %l plugin.', |
||
4189 | 'Jetpack contains the most recent versions of the old %l plugins.', |
||
4190 | count( $deactivated_titles ), |
||
4191 | 'jetpack' |
||
4192 | ), |
||
4193 | $deactivated_titles |
||
4194 | ); |
||
4195 | |||
4196 | $this->message .= "<br />\n"; |
||
4197 | |||
4198 | $this->message .= _n( |
||
4199 | 'The old version has been deactivated and can be removed from your site.', |
||
4200 | 'The old versions have been deactivated and can be removed from your site.', |
||
4201 | count( $deactivated_titles ), |
||
4202 | 'jetpack' |
||
4203 | ); |
||
4204 | } |
||
4205 | } |
||
4206 | |||
4207 | $this->privacy_checks = Jetpack::state( 'privacy_checks' ); |
||
4208 | |||
4209 | if ( $this->message || $this->error || $this->privacy_checks ) { |
||
4210 | add_action( 'jetpack_notices', array( $this, 'admin_notices' ) ); |
||
4211 | } |
||
4212 | |||
4213 | add_filter( 'jetpack_short_module_description', 'wptexturize' ); |
||
4214 | } |
||
4215 | |||
4216 | function admin_notices() { |
||
4217 | |||
4218 | if ( $this->error ) { |
||
4219 | ?> |
||
4220 | <div id="message" class="jetpack-message jetpack-err"> |
||
4221 | <div class="squeezer"> |
||
4222 | <h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2> |
||
4223 | <?php if ( $desc = Jetpack::state( 'error_description' ) ) : ?> |
||
4224 | <p><?php echo esc_html( stripslashes( $desc ) ); ?></p> |
||
4225 | <?php endif; ?> |
||
4226 | </div> |
||
4227 | </div> |
||
4228 | <?php |
||
4229 | } |
||
4230 | |||
4231 | if ( $this->message ) { |
||
4232 | ?> |
||
4233 | <div id="message" class="jetpack-message"> |
||
4234 | <div class="squeezer"> |
||
4235 | <h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2> |
||
4236 | </div> |
||
4237 | </div> |
||
4238 | <?php |
||
4239 | } |
||
4240 | |||
4241 | if ( $this->privacy_checks ) : |
||
4242 | $module_names = $module_slugs = array(); |
||
4243 | |||
4244 | $privacy_checks = explode( ',', $this->privacy_checks ); |
||
4245 | $privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) ); |
||
4246 | foreach ( $privacy_checks as $module_slug ) { |
||
4247 | $module = Jetpack::get_module( $module_slug ); |
||
4248 | if ( ! $module ) { |
||
4249 | continue; |
||
4250 | } |
||
4251 | |||
4252 | $module_slugs[] = $module_slug; |
||
4253 | $module_names[] = "<strong>{$module['name']}</strong>"; |
||
4254 | } |
||
4255 | |||
4256 | $module_slugs = join( ',', $module_slugs ); |
||
4257 | ?> |
||
4258 | <div id="message" class="jetpack-message jetpack-err"> |
||
4259 | <div class="squeezer"> |
||
4260 | <h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br /> |
||
4261 | <p><?php |
||
4262 | echo wp_kses( |
||
4263 | wptexturize( |
||
4264 | wp_sprintf( |
||
4265 | _nx( |
||
4266 | "Like your site's RSS feeds, %l allows access to your posts and other content to third parties.", |
||
4267 | "Like your site's RSS feeds, %l allow access to your posts and other content to third parties.", |
||
4268 | count( $privacy_checks ), |
||
4269 | '%l = list of Jetpack module/feature names', |
||
4270 | 'jetpack' |
||
4271 | ), |
||
4272 | $module_names |
||
4273 | ) |
||
4274 | ), |
||
4275 | array( 'strong' => true ) |
||
4276 | ); |
||
4277 | |||
4278 | echo "\n<br />\n"; |
||
4279 | |||
4280 | echo wp_kses( |
||
4281 | sprintf( |
||
4282 | _nx( |
||
4283 | 'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.', |
||
4284 | 'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.', |
||
4285 | count( $privacy_checks ), |
||
4286 | '%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}', |
||
4287 | 'jetpack' |
||
4288 | ), |
||
4289 | wp_nonce_url( |
||
4290 | Jetpack::admin_url( |
||
4291 | array( |
||
4292 | 'page' => 'jetpack', |
||
4293 | 'action' => 'deactivate', |
||
4294 | 'module' => urlencode( $module_slugs ), |
||
4295 | ) |
||
4296 | ), |
||
4297 | "jetpack_deactivate-$module_slugs" |
||
4298 | ), |
||
4299 | esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) ) |
||
4300 | ), |
||
4301 | array( 'a' => array( 'href' => true, 'title' => true ) ) |
||
4302 | ); |
||
4303 | ?></p> |
||
4304 | </div> |
||
4305 | </div> |
||
4306 | <?php endif; |
||
4307 | } |
||
4308 | |||
4309 | /** |
||
4310 | * Record a stat for later output. This will only currently output in the admin_footer. |
||
4311 | */ |
||
4312 | function stat( $group, $detail ) { |
||
4313 | if ( ! isset( $this->stats[ $group ] ) ) |
||
4314 | $this->stats[ $group ] = array(); |
||
4315 | $this->stats[ $group ][] = $detail; |
||
4316 | } |
||
4317 | |||
4318 | /** |
||
4319 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" |
||
4320 | */ |
||
4321 | function do_stats( $method = '' ) { |
||
4322 | if ( is_array( $this->stats ) && count( $this->stats ) ) { |
||
4323 | foreach ( $this->stats as $group => $stats ) { |
||
4324 | if ( is_array( $stats ) && count( $stats ) ) { |
||
4325 | $args = array( "x_jetpack-{$group}" => implode( ',', $stats ) ); |
||
4326 | if ( 'server_side' === $method ) { |
||
4327 | self::do_server_side_stat( $args ); |
||
4328 | } else { |
||
4329 | echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />'; |
||
4330 | } |
||
4331 | } |
||
4332 | unset( $this->stats[ $group ] ); |
||
4333 | } |
||
4334 | } |
||
4335 | } |
||
4336 | |||
4337 | /** |
||
4338 | * Runs stats code for a one-off, server-side. |
||
4339 | * |
||
4340 | * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. |
||
4341 | * |
||
4342 | * @return bool If it worked. |
||
4343 | */ |
||
4344 | static function do_server_side_stat( $args ) { |
||
4345 | $response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) ); |
||
4346 | if ( is_wp_error( $response ) ) |
||
4347 | return false; |
||
4348 | |||
4349 | if ( 200 !== wp_remote_retrieve_response_code( $response ) ) |
||
4350 | return false; |
||
4351 | |||
4352 | return true; |
||
4353 | } |
||
4354 | |||
4355 | /** |
||
4356 | * Builds the stats url. |
||
4357 | * |
||
4358 | * @param $args array|string The arguments to append to the URL. |
||
4359 | * |
||
4360 | * @return string The URL to be pinged. |
||
4361 | */ |
||
4362 | static function build_stats_url( $args ) { |
||
4363 | $defaults = array( |
||
4364 | 'v' => 'wpcom2', |
||
4365 | 'rand' => md5( mt_rand( 0, 999 ) . time() ), |
||
4366 | ); |
||
4367 | $args = wp_parse_args( $args, $defaults ); |
||
4368 | /** |
||
4369 | * Filter the URL used as the Stats tracking pixel. |
||
4370 | * |
||
4371 | * @since 2.3.2 |
||
4372 | * |
||
4373 | * @param string $url Base URL used as the Stats tracking pixel. |
||
4374 | */ |
||
4375 | $base_url = apply_filters( |
||
4376 | 'jetpack_stats_base_url', |
||
4377 | 'https://pixel.wp.com/g.gif' |
||
4378 | ); |
||
4379 | $url = add_query_arg( $args, $base_url ); |
||
4380 | return $url; |
||
4381 | } |
||
4382 | |||
4383 | /** |
||
4384 | * Get the role of the current user. |
||
4385 | * |
||
4386 | * @deprecated 7.6 Use Automattic\Jetpack\Roles::translate_current_user_to_role() instead. |
||
4387 | * |
||
4388 | * @access public |
||
4389 | * @static |
||
4390 | * |
||
4391 | * @return string|boolean Current user's role, false if not enough capabilities for any of the roles. |
||
4392 | */ |
||
4393 | public static function translate_current_user_to_role() { |
||
4394 | _deprecated_function( __METHOD__, 'jetpack-7.6.0' ); |
||
4395 | |||
4396 | $roles = new Roles(); |
||
4397 | return $roles->translate_current_user_to_role(); |
||
4398 | } |
||
4399 | |||
4400 | /** |
||
4401 | * Get the role of a particular user. |
||
4402 | * |
||
4403 | * @deprecated 7.6 Use Automattic\Jetpack\Roles::translate_user_to_role() instead. |
||
4404 | * |
||
4405 | * @access public |
||
4406 | * @static |
||
4407 | * |
||
4408 | * @param \WP_User $user User object. |
||
4409 | * @return string|boolean User's role, false if not enough capabilities for any of the roles. |
||
4410 | */ |
||
4411 | public static function translate_user_to_role( $user ) { |
||
4412 | _deprecated_function( __METHOD__, 'jetpack-7.6.0' ); |
||
4413 | |||
4414 | $roles = new Roles(); |
||
4415 | return $roles->translate_user_to_role( $user ); |
||
4416 | } |
||
4417 | |||
4418 | /** |
||
4419 | * Get the minimum capability for a role. |
||
4420 | * |
||
4421 | * @deprecated 7.6 Use Automattic\Jetpack\Roles::translate_role_to_cap() instead. |
||
4422 | * |
||
4423 | * @access public |
||
4424 | * @static |
||
4425 | * |
||
4426 | * @param string $role Role name. |
||
4427 | * @return string|boolean Capability, false if role isn't mapped to any capabilities. |
||
4428 | */ |
||
4429 | public static function translate_role_to_cap( $role ) { |
||
4430 | _deprecated_function( __METHOD__, 'jetpack-7.6.0' ); |
||
4431 | |||
4432 | $roles = new Roles(); |
||
4433 | return $roles->translate_role_to_cap( $role ); |
||
4434 | } |
||
4435 | |||
4436 | /** |
||
4437 | * Sign a user role with the master access token. |
||
4438 | * If not specified, will default to the current user. |
||
4439 | * |
||
4440 | * @deprecated since 7.7 |
||
4441 | * @see Automattic\Jetpack\Connection\Manager::sign_role() |
||
4442 | * |
||
4443 | * @access public |
||
4444 | * @static |
||
4445 | * |
||
4446 | * @param string $role User role. |
||
4447 | * @param int $user_id ID of the user. |
||
4448 | * @return string Signed user role. |
||
4449 | */ |
||
4450 | public static function sign_role( $role, $user_id = null ) { |
||
4451 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::sign_role' ); |
||
4452 | return self::connection()->sign_role( $role, $user_id ); |
||
4453 | } |
||
4454 | |||
4455 | /** |
||
4456 | * Builds a URL to the Jetpack connection auth page |
||
4457 | * |
||
4458 | * @since 3.9.5 |
||
4459 | * |
||
4460 | * @param bool $raw If true, URL will not be escaped. |
||
4461 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. |
||
4462 | * If string, will be a custom redirect. |
||
4463 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. |
||
4464 | * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0 |
||
4465 | * |
||
4466 | * @return string Connect URL |
||
4467 | */ |
||
4468 | function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) { |
||
4469 | $site_id = Jetpack_Options::get_option( 'id' ); |
||
4470 | $blog_token = Jetpack_Data::get_access_token(); |
||
4471 | |||
4472 | if ( $register || ! $blog_token || ! $site_id ) { |
||
4473 | $url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' ); |
||
4474 | |||
4475 | if ( ! empty( $redirect ) ) { |
||
4476 | $url = add_query_arg( |
||
4477 | 'redirect', |
||
4478 | urlencode( wp_validate_redirect( esc_url_raw( $redirect ) ) ), |
||
4479 | $url |
||
4480 | ); |
||
4481 | } |
||
4482 | |||
4483 | if( is_network_admin() ) { |
||
4484 | $url = add_query_arg( 'is_multisite', network_admin_url( 'admin.php?page=jetpack-settings' ), $url ); |
||
4485 | } |
||
4486 | } else { |
||
4487 | |||
4488 | // Let's check the existing blog token to see if we need to re-register. We only check once per minute |
||
4489 | // because otherwise this logic can get us in to a loop. |
||
4490 | $last_connect_url_check = intval( Jetpack_Options::get_raw_option( 'jetpack_last_connect_url_check' ) ); |
||
4491 | if ( ! $last_connect_url_check || ( time() - $last_connect_url_check ) > MINUTE_IN_SECONDS ) { |
||
4492 | Jetpack_Options::update_raw_option( 'jetpack_last_connect_url_check', time() ); |
||
4493 | |||
4494 | $response = Client::wpcom_json_api_request_as_blog( |
||
4495 | sprintf( '/sites/%d', $site_id ) .'?force=wpcom', |
||
4496 | '1.1' |
||
4497 | ); |
||
4498 | |||
4499 | if ( 200 !== wp_remote_retrieve_response_code( $response ) ) { |
||
4500 | |||
4501 | // Generating a register URL instead to refresh the existing token |
||
4502 | return $this->build_connect_url( $raw, $redirect, $from, true ); |
||
4503 | } |
||
4504 | } |
||
4505 | |||
4506 | $url = $this->build_authorize_url( $redirect ); |
||
4507 | } |
||
4508 | |||
4509 | if ( $from ) { |
||
4510 | $url = add_query_arg( 'from', $from, $url ); |
||
4511 | } |
||
4512 | |||
4513 | // Ensure that class to get the affiliate code is loaded |
||
4514 | if ( ! class_exists( 'Jetpack_Affiliate' ) ) { |
||
4515 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-affiliate.php'; |
||
4516 | } |
||
4517 | // Get affiliate code and add it to the URL |
||
4518 | $url = Jetpack_Affiliate::init()->add_code_as_query_arg( $url ); |
||
4519 | |||
4520 | $calypso_env = $this->get_calypso_env(); |
||
4521 | |||
4522 | if ( ! empty( $calypso_env ) ) { |
||
4523 | $url = add_query_arg( 'calypso_env', $calypso_env, $url ); |
||
4524 | } |
||
4525 | |||
4526 | return $raw ? esc_url_raw( $url ) : esc_url( $url ); |
||
4527 | } |
||
4528 | |||
4529 | public static function build_authorize_url( $redirect = false, $iframe = false ) { |
||
4530 | if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) { |
||
4531 | $gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() ); |
||
4532 | } |
||
4533 | |||
4534 | $roles = new Roles(); |
||
4535 | $role = $roles->translate_current_user_to_role(); |
||
4536 | $signed_role = self::connection()->sign_role( $role ); |
||
4537 | |||
4538 | $user = wp_get_current_user(); |
||
4539 | |||
4540 | $jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) ); |
||
4541 | $redirect = $redirect |
||
4542 | ? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page ) |
||
4543 | : $jetpack_admin_page; |
||
4544 | |||
4545 | if( isset( $_REQUEST['is_multisite'] ) ) { |
||
4546 | $redirect = Jetpack_Network::init()->get_url( 'network_admin_page' ); |
||
4547 | } |
||
4548 | |||
4549 | $secrets = Jetpack::generate_secrets( 'authorize', false, 2 * HOUR_IN_SECONDS ); |
||
4550 | |||
4551 | /** |
||
4552 | * Filter the type of authorization. |
||
4553 | * 'calypso' completes authorization on wordpress.com/jetpack/connect |
||
4554 | * while 'jetpack' ( or any other value ) completes the authorization at jetpack.wordpress.com. |
||
4555 | * |
||
4556 | * @since 4.3.3 |
||
4557 | * |
||
4558 | * @param string $auth_type Defaults to 'calypso', can also be 'jetpack'. |
||
4559 | */ |
||
4560 | $auth_type = apply_filters( 'jetpack_auth_type', 'calypso' ); |
||
4561 | |||
4562 | |||
4563 | $tracks = new Tracking(); |
||
4564 | $tracks_identity = $tracks->tracks_get_identity( get_current_user_id() ); |
||
4565 | |||
4566 | $args = urlencode_deep( |
||
4567 | array( |
||
4568 | 'response_type' => 'code', |
||
4569 | 'client_id' => Jetpack_Options::get_option( 'id' ), |
||
4570 | 'redirect_uri' => add_query_arg( |
||
4571 | array( |
||
4572 | 'action' => 'authorize', |
||
4573 | '_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ), |
||
4574 | 'redirect' => urlencode( $redirect ), |
||
4575 | ), |
||
4576 | esc_url( admin_url( 'admin.php?page=jetpack' ) ) |
||
4577 | ), |
||
4578 | 'state' => $user->ID, |
||
4579 | 'scope' => $signed_role, |
||
4580 | 'user_email' => $user->user_email, |
||
4581 | 'user_login' => $user->user_login, |
||
4582 | 'is_active' => Jetpack::is_active(), |
||
4583 | 'jp_version' => JETPACK__VERSION, |
||
4584 | 'auth_type' => $auth_type, |
||
4585 | 'secret' => $secrets['secret_1'], |
||
4586 | 'locale' => ( isset( $gp_locale ) && isset( $gp_locale->slug ) ) ? $gp_locale->slug : '', |
||
4587 | 'blogname' => get_option( 'blogname' ), |
||
4588 | 'site_url' => site_url(), |
||
4589 | 'home_url' => home_url(), |
||
4590 | 'site_icon' => get_site_icon_url(), |
||
4591 | 'site_lang' => get_locale(), |
||
4592 | '_ui' => $tracks_identity['_ui'], |
||
4593 | '_ut' => $tracks_identity['_ut'], |
||
4594 | 'site_created' => Jetpack::get_assumed_site_creation_date(), |
||
4595 | ) |
||
4596 | ); |
||
4597 | |||
4598 | self::apply_activation_source_to_args( $args ); |
||
4599 | |||
4600 | $connection = self::connection(); |
||
4601 | |||
4602 | $api_url = $iframe ? $connection->api_url( 'authorize_iframe' ) : $connection->api_url( 'authorize' ); |
||
4603 | |||
4604 | return add_query_arg( $args, $api_url ); |
||
4605 | } |
||
4606 | |||
4607 | /** |
||
4608 | * Get our assumed site creation date. |
||
4609 | * Calculated based on the earlier date of either: |
||
4610 | * - Earliest admin user registration date. |
||
4611 | * - Earliest date of post of any post type. |
||
4612 | * |
||
4613 | * @since 7.2.0 |
||
4614 | * |
||
4615 | * @return string Assumed site creation date and time. |
||
4616 | */ |
||
4617 | View Code Duplication | public static function get_assumed_site_creation_date() { |
|
4618 | $earliest_registered_users = get_users( array( |
||
4619 | 'role' => 'administrator', |
||
4620 | 'orderby' => 'user_registered', |
||
4621 | 'order' => 'ASC', |
||
4622 | 'fields' => array( 'user_registered' ), |
||
4623 | 'number' => 1, |
||
4624 | ) ); |
||
4625 | $earliest_registration_date = $earliest_registered_users[0]->user_registered; |
||
4626 | |||
4627 | $earliest_posts = get_posts( array( |
||
4628 | 'posts_per_page' => 1, |
||
4629 | 'post_type' => 'any', |
||
4630 | 'post_status' => 'any', |
||
4631 | 'orderby' => 'date', |
||
4632 | 'order' => 'ASC', |
||
4633 | ) ); |
||
4634 | |||
4635 | // If there are no posts at all, we'll count only on user registration date. |
||
4636 | if ( $earliest_posts ) { |
||
4637 | $earliest_post_date = $earliest_posts[0]->post_date; |
||
4638 | } else { |
||
4639 | $earliest_post_date = PHP_INT_MAX; |
||
4640 | } |
||
4641 | |||
4642 | return min( $earliest_registration_date, $earliest_post_date ); |
||
4643 | } |
||
4644 | |||
4645 | View Code Duplication | public static function apply_activation_source_to_args( &$args ) { |
|
4646 | list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' ); |
||
4647 | |||
4648 | if ( $activation_source_name ) { |
||
4649 | $args['_as'] = urlencode( $activation_source_name ); |
||
4650 | } |
||
4651 | |||
4652 | if ( $activation_source_keyword ) { |
||
4653 | $args['_ak'] = urlencode( $activation_source_keyword ); |
||
4654 | } |
||
4655 | } |
||
4656 | |||
4657 | function build_reconnect_url( $raw = false ) { |
||
4658 | $url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' ); |
||
4659 | return $raw ? $url : esc_url( $url ); |
||
4660 | } |
||
4661 | |||
4662 | public static function admin_url( $args = null ) { |
||
4663 | $args = wp_parse_args( $args, array( 'page' => 'jetpack' ) ); |
||
4664 | $url = add_query_arg( $args, admin_url( 'admin.php' ) ); |
||
4665 | return $url; |
||
4666 | } |
||
4667 | |||
4668 | public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { |
||
4669 | $actionurl = str_replace( '&', '&', $actionurl ); |
||
4670 | return add_query_arg( $name, wp_create_nonce( $action ), $actionurl ); |
||
4671 | } |
||
4672 | |||
4673 | function dismiss_jetpack_notice() { |
||
4674 | |||
4675 | if ( ! isset( $_GET['jetpack-notice'] ) ) { |
||
4676 | return; |
||
4677 | } |
||
4678 | |||
4679 | switch( $_GET['jetpack-notice'] ) { |
||
4680 | case 'dismiss': |
||
4681 | if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) { |
||
4682 | |||
4683 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
||
4684 | deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false ); |
||
4685 | wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' ); |
||
4686 | } |
||
4687 | break; |
||
4688 | } |
||
4689 | } |
||
4690 | |||
4691 | public static function sort_modules( $a, $b ) { |
||
4692 | if ( $a['sort'] == $b['sort'] ) |
||
4693 | return 0; |
||
4694 | |||
4695 | return ( $a['sort'] < $b['sort'] ) ? -1 : 1; |
||
4696 | } |
||
4697 | |||
4698 | function ajax_recheck_ssl() { |
||
4699 | check_ajax_referer( 'recheck-ssl', 'ajax-nonce' ); |
||
4700 | $result = Jetpack::permit_ssl( true ); |
||
4701 | wp_send_json( array( |
||
4702 | 'enabled' => $result, |
||
4703 | 'message' => get_transient( 'jetpack_https_test_message' ) |
||
4704 | ) ); |
||
4705 | } |
||
4706 | |||
4707 | /* Client API */ |
||
4708 | |||
4709 | /** |
||
4710 | * Returns the requested Jetpack API URL |
||
4711 | * |
||
4712 | * @deprecated since 7.7 |
||
4713 | * @return string |
||
4714 | */ |
||
4715 | public static function api_url( $relative_url ) { |
||
4716 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::api_url' ); |
||
4717 | $connection = self::connection(); |
||
4718 | return $connection->api_url( $relative_url ); |
||
4719 | } |
||
4720 | |||
4721 | /** |
||
4722 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets |
||
4723 | */ |
||
4724 | public static function fix_url_for_bad_hosts( $url ) { |
||
4740 | |||
4741 | public static function verify_onboarding_token( $token_data, $token, $request_data ) { |
||
4742 | // Default to a blog token. |
||
4743 | $token_type = 'blog'; |
||
4744 | |||
4745 | // Let's see if this is onboarding. In such case, use user token type and the provided user id. |
||
4746 | if ( isset( $request_data ) || ! empty( $_GET['onboarding'] ) ) { |
||
4747 | if ( ! empty( $_GET['onboarding'] ) ) { |
||
4748 | $jpo = $_GET; |
||
4749 | } else { |
||
4750 | $jpo = json_decode( $request_data, true ); |
||
4751 | } |
||
4752 | |||
4753 | $jpo_token = ! empty( $jpo['onboarding']['token'] ) ? $jpo['onboarding']['token'] : null; |
||
4754 | $jpo_user = ! empty( $jpo['onboarding']['jpUser'] ) ? $jpo['onboarding']['jpUser'] : null; |
||
4755 | |||
4756 | if ( |
||
4757 | isset( $jpo_user ) |
||
4758 | && isset( $jpo_token ) |
||
4759 | && is_email( $jpo_user ) |
||
4760 | && ctype_alnum( $jpo_token ) |
||
4761 | && isset( $_GET['rest_route'] ) |
||
4762 | && self::validate_onboarding_token_action( |
||
4763 | $jpo_token, |
||
4764 | $_GET['rest_route'] |
||
4765 | ) |
||
4766 | ) { |
||
4767 | $jp_user = get_user_by( 'email', $jpo_user ); |
||
4768 | if ( is_a( $jp_user, 'WP_User' ) ) { |
||
4769 | wp_set_current_user( $jp_user->ID ); |
||
4770 | $user_can = is_multisite() |
||
4771 | ? current_user_can_for_blog( get_current_blog_id(), 'manage_options' ) |
||
4772 | : current_user_can( 'manage_options' ); |
||
4773 | if ( $user_can ) { |
||
4774 | $token_type = 'user'; |
||
4775 | $token->external_user_id = $jp_user->ID; |
||
4776 | } |
||
4777 | } |
||
4778 | } |
||
4779 | |||
4780 | $token_data['type'] = $token_type; |
||
4781 | $token_data['user_id'] = $token->external_user_id; |
||
4782 | } |
||
4783 | |||
4784 | return $token_data; |
||
4785 | } |
||
4786 | |||
4787 | /** |
||
4788 | * Create a random secret for validating onboarding payload |
||
4789 | * |
||
4790 | * @return string Secret token |
||
4791 | */ |
||
4792 | public static function create_onboarding_token() { |
||
4800 | |||
4801 | /** |
||
4802 | * Remove the onboarding token |
||
4803 | * |
||
4804 | * @return bool True on success, false on failure |
||
4805 | */ |
||
4806 | public static function invalidate_onboarding_token() { |
||
4809 | |||
4810 | /** |
||
4811 | * Validate an onboarding token for a specific action |
||
4812 | * |
||
4813 | * @return boolean True if token/action pair is accepted, false if not |
||
4814 | */ |
||
4815 | public static function validate_onboarding_token_action( $token, $action ) { |
||
4833 | |||
4834 | /** |
||
4835 | * Checks to see if the URL is using SSL to connect with Jetpack |
||
4836 | * |
||
4837 | * @since 2.3.3 |
||
4838 | * @return boolean |
||
4839 | */ |
||
4840 | public static function permit_ssl( $force_recheck = false ) { |
||
4882 | |||
4883 | /* |
||
4884 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. |
||
4885 | */ |
||
4886 | public function alert_auto_ssl_fail() { |
||
4935 | |||
4936 | /** |
||
4937 | * Returns the Jetpack XML-RPC API |
||
4938 | * |
||
4939 | * @return string |
||
4940 | */ |
||
4941 | public static function xmlrpc_api_url() { |
||
4945 | |||
4946 | public static function connection() { |
||
4949 | |||
4950 | /** |
||
4951 | * Creates two secret tokens and the end of life timestamp for them. |
||
4952 | * |
||
4953 | * Note these tokens are unique per call, NOT static per site for connecting. |
||
4954 | * |
||
4955 | * @since 2.6 |
||
4956 | * @return array |
||
4957 | */ |
||
4958 | public static function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
||
4965 | |||
4966 | public static function get_secrets( $action, $user_id ) { |
||
4979 | |||
4980 | /** |
||
4981 | * @deprecated 7.5 Use Connection_Manager instead. |
||
4982 | * |
||
4983 | * @param $action |
||
4984 | * @param $user_id |
||
4985 | */ |
||
4986 | public static function delete_secrets( $action, $user_id ) { |
||
4989 | |||
4990 | /** |
||
4991 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
4992 | * |
||
4993 | * Based on local php max_execution_time in php.ini |
||
4994 | * |
||
4995 | * @since 2.6 |
||
4996 | * @return int |
||
4997 | * @deprecated |
||
4998 | **/ |
||
4999 | public function get_remote_query_timeout_limit() { |
||
5003 | |||
5004 | /** |
||
5005 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
5006 | * |
||
5007 | * Based on local php max_execution_time in php.ini |
||
5008 | * |
||
5009 | * @since 5.4 |
||
5010 | * @return int |
||
5011 | **/ |
||
5012 | public static function get_max_execution_time() { |
||
5021 | |||
5022 | /** |
||
5023 | * Sets a minimum request timeout, and returns the current timeout |
||
5024 | * |
||
5025 | * @since 5.4 |
||
5026 | **/ |
||
5027 | View Code Duplication | public static function set_min_time_limit( $min_timeout ) { |
|
5028 | $timeout = self::get_max_execution_time(); |
||
5029 | if ( $timeout < $min_timeout ) { |
||
5030 | $timeout = $min_timeout; |
||
5031 | set_time_limit( $timeout ); |
||
5032 | } |
||
5033 | return $timeout; |
||
5034 | } |
||
5035 | |||
5036 | /** |
||
5037 | * Takes the response from the Jetpack register new site endpoint and |
||
5038 | * verifies it worked properly. |
||
5039 | * |
||
5040 | * @since 2.6 |
||
5041 | * @deprecated since 7.7.0 |
||
5042 | * @see Automattic\Jetpack\Connection\Manager::validate_remote_register_response() |
||
5043 | **/ |
||
5044 | public function validate_remote_register_response() { |
||
5045 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::validate_remote_register_response' ); |
||
5046 | } |
||
5047 | |||
5048 | /** |
||
5049 | * @return bool|WP_Error |
||
5050 | */ |
||
5051 | public static function register() { |
||
5052 | $tracking = new Tracking(); |
||
5053 | $tracking->record_user_event( 'jpc_register_begin' ); |
||
5054 | |||
5055 | add_filter( 'jetpack_register_request_body', array( __CLASS__, 'filter_register_request_body' ) ); |
||
5056 | |||
5057 | $connection = self::connection(); |
||
5058 | $registration = $connection->register(); |
||
5059 | |||
5060 | remove_filter( 'jetpack_register_request_body', array( __CLASS__, 'filter_register_request_body' ) ); |
||
5061 | |||
5062 | if ( ! $registration || is_wp_error( $registration ) ) { |
||
5063 | return $registration; |
||
5064 | } |
||
5065 | |||
5066 | return true; |
||
5067 | } |
||
5068 | |||
5069 | /** |
||
5070 | * Filters the registration request body to include tracking properties. |
||
5071 | * |
||
5072 | * @param Array $properties |
||
5073 | * @return Array amended properties. |
||
5074 | */ |
||
5075 | public static function filter_register_request_body( $properties ) { |
||
5076 | $tracking = new Tracking(); |
||
5077 | $tracks_identity = $tracking->tracks_get_identity( get_current_user_id() ); |
||
5078 | |||
5079 | return array_merge( |
||
5080 | $properties, |
||
5081 | array( |
||
5082 | '_ui' => $tracks_identity['_ui'], |
||
5083 | '_ut' => $tracks_identity['_ut'], |
||
5084 | ) |
||
5085 | ); |
||
5086 | } |
||
5087 | |||
5088 | /** |
||
5089 | * If the db version is showing something other that what we've got now, bump it to current. |
||
5090 | * |
||
5091 | * @return bool: True if the option was incorrect and updated, false if nothing happened. |
||
5092 | */ |
||
5093 | public static function maybe_set_version_option() { |
||
5094 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
5095 | if ( JETPACK__VERSION != $version ) { |
||
5096 | Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() ); |
||
5097 | |||
5098 | if ( version_compare( JETPACK__VERSION, $version, '>' ) ) { |
||
5099 | /** This action is documented in class.jetpack.php */ |
||
5100 | do_action( 'updating_jetpack_version', JETPACK__VERSION, $version ); |
||
5101 | } |
||
5102 | |||
5103 | return true; |
||
5104 | } |
||
5105 | return false; |
||
5106 | } |
||
5107 | |||
5108 | /* Client Server API */ |
||
5109 | |||
5110 | /** |
||
5111 | * Loads the Jetpack XML-RPC client. |
||
5112 | * No longer necessary, as the XML-RPC client will be automagically loaded. |
||
5113 | * |
||
5114 | * @deprecated since 7.7.0 |
||
5115 | */ |
||
5116 | public static function load_xml_rpc_client() { |
||
5117 | _deprecated_function( __METHOD__, 'jetpack-7.7' ); |
||
5118 | } |
||
5119 | |||
5120 | /** |
||
5121 | * Resets the saved authentication state in between testing requests. |
||
5122 | */ |
||
5123 | public function reset_saved_auth_state() { |
||
5124 | $this->rest_authentication_status = null; |
||
5125 | $this->connection_manager->reset_saved_auth_state(); |
||
5126 | } |
||
5127 | |||
5128 | /** |
||
5129 | * Verifies the signature of the current request. |
||
5130 | * |
||
5131 | * @deprecated since 7.7.0 |
||
5132 | * @see Automattic\Jetpack\Connection\Manager::verify_xml_rpc_signature() |
||
5133 | * |
||
5134 | * @return false|array |
||
5135 | */ |
||
5136 | public function verify_xml_rpc_signature() { |
||
5137 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::verify_xml_rpc_signature' ); |
||
5138 | return self::connection()->verify_xml_rpc_signature(); |
||
5139 | } |
||
5140 | |||
5141 | /** |
||
5142 | * Verifies the signature of the current request. |
||
5143 | * |
||
5144 | * This function has side effects and should not be used. Instead, |
||
5145 | * use the memoized version `->verify_xml_rpc_signature()`. |
||
5146 | * |
||
5147 | * @deprecated since 7.7.0 |
||
5148 | * @see Automattic\Jetpack\Connection\Manager::internal_verify_xml_rpc_signature() |
||
5149 | * @internal |
||
5150 | */ |
||
5151 | private function internal_verify_xml_rpc_signature() { |
||
5152 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::internal_verify_xml_rpc_signature' ); |
||
5153 | } |
||
5154 | |||
5155 | /** |
||
5156 | * Authenticates XML-RPC and other requests from the Jetpack Server. |
||
5157 | * |
||
5158 | * @deprecated since 7.7.0 |
||
5159 | * @see Automattic\Jetpack\Connection\Manager::authenticate_jetpack() |
||
5160 | * |
||
5161 | * @param \WP_User|mixed $user User object if authenticated. |
||
5162 | * @param string $username Username. |
||
5163 | * @param string $password Password string. |
||
5164 | * @return \WP_User|mixed Authenticated user or error. |
||
5165 | */ |
||
5166 | public function authenticate_jetpack( $user, $username, $password ) { |
||
5167 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::authenticate_jetpack' ); |
||
5168 | return $this->connection_manager->authenticate_jetpack( $user, $username, $password ); |
||
5169 | } |
||
5170 | |||
5171 | // Authenticates requests from Jetpack server to WP REST API endpoints. |
||
5172 | // Uses the existing XMLRPC request signing implementation. |
||
5173 | function wp_rest_authenticate( $user ) { |
||
5174 | if ( ! empty( $user ) ) { |
||
5175 | // Another authentication method is in effect. |
||
5176 | return $user; |
||
5177 | } |
||
5178 | |||
5179 | if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) { |
||
5180 | // Nothing to do for this authentication method. |
||
5181 | return null; |
||
5182 | } |
||
5183 | |||
5184 | if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) { |
||
5185 | // Nothing to do for this authentication method. |
||
5186 | return null; |
||
5187 | } |
||
5188 | |||
5189 | // Ensure that we always have the request body available. At this |
||
5190 | // point, the WP REST API code to determine the request body has not |
||
5191 | // run yet. That code may try to read from 'php://input' later, but |
||
5192 | // this can only be done once per request in PHP versions prior to 5.6. |
||
5193 | // So we will go ahead and perform this read now if needed, and save |
||
5194 | // the request body where both the Jetpack signature verification code |
||
5195 | // and the WP REST API code can see it. |
||
5196 | if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) { |
||
5197 | $GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' ); |
||
5198 | } |
||
5199 | $this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA']; |
||
5200 | |||
5201 | // Only support specific request parameters that have been tested and |
||
5202 | // are known to work with signature verification. A different method |
||
5203 | // can be passed to the WP REST API via the '?_method=' parameter if |
||
5204 | // needed. |
||
5205 | if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) { |
||
5206 | $this->rest_authentication_status = new WP_Error( |
||
5207 | 'rest_invalid_request', |
||
5208 | __( 'This request method is not supported.', 'jetpack' ), |
||
5209 | array( 'status' => 400 ) |
||
5210 | ); |
||
5211 | return null; |
||
5212 | } |
||
5213 | if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) { |
||
5214 | $this->rest_authentication_status = new WP_Error( |
||
5215 | 'rest_invalid_request', |
||
5216 | __( 'This request method does not support body parameters.', 'jetpack' ), |
||
5217 | array( 'status' => 400 ) |
||
5218 | ); |
||
5219 | return null; |
||
5220 | } |
||
5221 | |||
5222 | $verified = $this->connection_manager->verify_xml_rpc_signature(); |
||
5223 | |||
5224 | if ( |
||
5225 | $verified && |
||
5226 | isset( $verified['type'] ) && |
||
5227 | 'user' === $verified['type'] && |
||
5228 | ! empty( $verified['user_id'] ) |
||
5229 | ) { |
||
5230 | // Authentication successful. |
||
5231 | $this->rest_authentication_status = true; |
||
5232 | return $verified['user_id']; |
||
5233 | } |
||
5234 | |||
5235 | // Something else went wrong. Probably a signature error. |
||
5236 | $this->rest_authentication_status = new WP_Error( |
||
5237 | 'rest_invalid_signature', |
||
5238 | __( 'The request is not signed correctly.', 'jetpack' ), |
||
5239 | array( 'status' => 400 ) |
||
5240 | ); |
||
5241 | return null; |
||
5242 | } |
||
5243 | |||
5244 | /** |
||
5245 | * Report authentication status to the WP REST API. |
||
5246 | * |
||
5247 | * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
||
5248 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
||
5249 | */ |
||
5250 | public function wp_rest_authentication_errors( $value ) { |
||
5251 | if ( $value !== null ) { |
||
5252 | return $value; |
||
5253 | } |
||
5254 | return $this->rest_authentication_status; |
||
5255 | } |
||
5256 | |||
5257 | /** |
||
5258 | * Add our nonce to this request. |
||
5259 | * |
||
5260 | * @deprecated since 7.7.0 |
||
5261 | * @see Automattic\Jetpack\Connection\Manager::add_nonce() |
||
5262 | * |
||
5263 | * @param int $timestamp Timestamp of the request. |
||
5264 | * @param string $nonce Nonce string. |
||
5265 | */ |
||
5266 | public function add_nonce( $timestamp, $nonce ) { |
||
5267 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::add_nonce' ); |
||
5268 | return $this->connection_manager->add_nonce( $timestamp, $nonce ); |
||
5269 | } |
||
5270 | |||
5271 | /** |
||
5272 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
||
5273 | * Capture it here so we can verify the signature later. |
||
5274 | * |
||
5275 | * @deprecated since 7.7.0 |
||
5276 | * @see Automattic\Jetpack\Connection\Manager::xmlrpc_methods() |
||
5277 | * |
||
5278 | * @param array $methods XMLRPC methods. |
||
5279 | * @return array XMLRPC methods, with the $HTTP_RAW_POST_DATA one. |
||
5280 | */ |
||
5281 | public function xmlrpc_methods( $methods ) { |
||
5282 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_methods' ); |
||
5283 | return $this->connection_manager->xmlrpc_methods( $methods ); |
||
5284 | } |
||
5285 | |||
5286 | /** |
||
5287 | * Register additional public XMLRPC methods. |
||
5288 | * |
||
5289 | * @deprecated since 7.7.0 |
||
5290 | * @see Automattic\Jetpack\Connection\Manager::public_xmlrpc_methods() |
||
5291 | * |
||
5292 | * @param array $methods Public XMLRPC methods. |
||
5293 | * @return array Public XMLRPC methods, with the getOptions one. |
||
5294 | */ |
||
5295 | public function public_xmlrpc_methods( $methods ) { |
||
5296 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::public_xmlrpc_methods' ); |
||
5297 | return $this->connection_manager->public_xmlrpc_methods( $methods ); |
||
5298 | } |
||
5299 | |||
5300 | /** |
||
5301 | * Handles a getOptions XMLRPC method call. |
||
5302 | * |
||
5303 | * @deprecated since 7.7.0 |
||
5304 | * @see Automattic\Jetpack\Connection\Manager::jetpack_getOptions() |
||
5305 | * |
||
5306 | * @param array $args method call arguments. |
||
5307 | * @return array an amended XMLRPC server options array. |
||
5308 | */ |
||
5309 | public function jetpack_getOptions( $args ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid |
||
5310 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::jetpack_getOptions' ); |
||
5311 | return $this->connection_manager->jetpack_getOptions( $args ); |
||
5312 | } |
||
5313 | |||
5314 | /** |
||
5315 | * Adds Jetpack-specific options to the output of the XMLRPC options method. |
||
5316 | * |
||
5317 | * @deprecated since 7.7.0 |
||
5318 | * @see Automattic\Jetpack\Connection\Manager::xmlrpc_options() |
||
5319 | * |
||
5320 | * @param array $options Standard Core options. |
||
5321 | * @return array Amended options. |
||
5322 | */ |
||
5323 | public function xmlrpc_options( $options ) { |
||
5324 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_options' ); |
||
5325 | return $this->connection_manager->xmlrpc_options( $options ); |
||
5326 | } |
||
5327 | |||
5328 | /** |
||
5329 | * Cleans nonces that were saved when calling ::add_nonce. |
||
5330 | * |
||
5331 | * @deprecated since 7.7.0 |
||
5332 | * @see Automattic\Jetpack\Connection\Manager::clean_nonces() |
||
5333 | * |
||
5334 | * @param bool $all whether to clean even non-expired nonces. |
||
5335 | */ |
||
5336 | public static function clean_nonces( $all = false ) { |
||
5337 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::clean_nonces' ); |
||
5338 | return self::connection()->clean_nonces( $all ); |
||
5339 | } |
||
5340 | |||
5341 | /** |
||
5342 | * State is passed via cookies from one request to the next, but never to subsequent requests. |
||
5343 | * SET: state( $key, $value ); |
||
5344 | * GET: $value = state( $key ); |
||
5345 | * |
||
5346 | * @param string $key |
||
5347 | * @param string $value |
||
5348 | * @param bool $restate private |
||
5349 | */ |
||
5350 | public static function state( $key = null, $value = null, $restate = false ) { |
||
5351 | static $state = array(); |
||
5352 | static $path, $domain; |
||
5353 | if ( ! isset( $path ) ) { |
||
5354 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
||
5355 | $admin_url = Jetpack::admin_url(); |
||
5356 | $bits = wp_parse_url( $admin_url ); |
||
5357 | |||
5358 | if ( is_array( $bits ) ) { |
||
5359 | $path = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null; |
||
5360 | $domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null; |
||
5361 | } else { |
||
5362 | $path = $domain = null; |
||
5363 | } |
||
5364 | } |
||
5365 | |||
5366 | // Extract state from cookies and delete cookies |
||
5367 | if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) { |
||
5368 | $yum = $_COOKIE[ 'jetpackState' ]; |
||
5369 | unset( $_COOKIE[ 'jetpackState' ] ); |
||
5370 | foreach ( $yum as $k => $v ) { |
||
5371 | if ( strlen( $v ) ) |
||
5372 | $state[ $k ] = $v; |
||
5373 | setcookie( "jetpackState[$k]", false, 0, $path, $domain ); |
||
5374 | } |
||
5375 | } |
||
5376 | |||
5377 | if ( $restate ) { |
||
5378 | foreach ( $state as $k => $v ) { |
||
5379 | setcookie( "jetpackState[$k]", $v, 0, $path, $domain ); |
||
5380 | } |
||
5381 | return; |
||
5382 | } |
||
5383 | |||
5384 | // Get a state variable |
||
5385 | if ( isset( $key ) && ! isset( $value ) ) { |
||
5386 | if ( array_key_exists( $key, $state ) ) |
||
5387 | return $state[ $key ]; |
||
5388 | return null; |
||
5389 | } |
||
5390 | |||
5391 | // Set a state variable |
||
5392 | if ( isset ( $key ) && isset( $value ) ) { |
||
5393 | if( is_array( $value ) && isset( $value[0] ) ) { |
||
5394 | $value = $value[0]; |
||
5395 | } |
||
5396 | $state[ $key ] = $value; |
||
5397 | setcookie( "jetpackState[$key]", $value, 0, $path, $domain ); |
||
5398 | } |
||
5399 | } |
||
5400 | |||
5401 | public static function restate() { |
||
5402 | Jetpack::state( null, null, true ); |
||
5403 | } |
||
5404 | |||
5405 | public static function check_privacy( $file ) { |
||
5406 | static $is_site_publicly_accessible = null; |
||
5407 | |||
5408 | if ( is_null( $is_site_publicly_accessible ) ) { |
||
5409 | $is_site_publicly_accessible = false; |
||
5410 | |||
5411 | $rpc = new Jetpack_IXR_Client(); |
||
5412 | |||
5413 | $success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() ); |
||
5414 | if ( $success ) { |
||
5415 | $response = $rpc->getResponse(); |
||
5416 | if ( $response ) { |
||
5417 | $is_site_publicly_accessible = true; |
||
5418 | } |
||
5419 | } |
||
5420 | |||
5421 | Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible ); |
||
5422 | } |
||
5423 | |||
5424 | if ( $is_site_publicly_accessible ) { |
||
5425 | return; |
||
5426 | } |
||
5427 | |||
5428 | $module_slug = self::get_module_slug( $file ); |
||
5429 | |||
5430 | $privacy_checks = Jetpack::state( 'privacy_checks' ); |
||
5431 | if ( ! $privacy_checks ) { |
||
5432 | $privacy_checks = $module_slug; |
||
5433 | } else { |
||
5434 | $privacy_checks .= ",$module_slug"; |
||
5435 | } |
||
5436 | |||
5437 | Jetpack::state( 'privacy_checks', $privacy_checks ); |
||
5438 | } |
||
5439 | |||
5440 | /** |
||
5441 | * Helper method for multicall XMLRPC. |
||
5442 | */ |
||
5443 | public static function xmlrpc_async_call() { |
||
5444 | global $blog_id; |
||
5445 | static $clients = array(); |
||
5446 | |||
5447 | $client_blog_id = is_multisite() ? $blog_id : 0; |
||
5448 | |||
5449 | if ( ! isset( $clients[$client_blog_id] ) ) { |
||
5450 | $clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) ); |
||
5451 | if ( function_exists( 'ignore_user_abort' ) ) { |
||
5452 | ignore_user_abort( true ); |
||
5453 | } |
||
5454 | add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) ); |
||
5455 | } |
||
5456 | |||
5457 | $args = func_get_args(); |
||
5458 | |||
5459 | if ( ! empty( $args[0] ) ) { |
||
5460 | call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args ); |
||
5461 | } elseif ( is_multisite() ) { |
||
5462 | foreach ( $clients as $client_blog_id => $client ) { |
||
5463 | if ( ! $client_blog_id || empty( $client->calls ) ) { |
||
5464 | continue; |
||
5465 | } |
||
5466 | |||
5467 | $switch_success = switch_to_blog( $client_blog_id, true ); |
||
5468 | if ( ! $switch_success ) { |
||
5469 | continue; |
||
5470 | } |
||
5471 | |||
5472 | flush(); |
||
5473 | $client->query(); |
||
5474 | |||
5475 | restore_current_blog(); |
||
5476 | } |
||
5477 | } else { |
||
5478 | if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) { |
||
5479 | flush(); |
||
5480 | $clients[0]->query(); |
||
5481 | } |
||
5482 | } |
||
5483 | } |
||
5484 | |||
5485 | public static function staticize_subdomain( $url ) { |
||
5486 | |||
5487 | // Extract hostname from URL |
||
5488 | $host = parse_url( $url, PHP_URL_HOST ); |
||
5489 | |||
5490 | // Explode hostname on '.' |
||
5491 | $exploded_host = explode( '.', $host ); |
||
5492 | |||
5493 | // Retrieve the name and TLD |
||
5494 | if ( count( $exploded_host ) > 1 ) { |
||
5495 | $name = $exploded_host[ count( $exploded_host ) - 2 ]; |
||
5496 | $tld = $exploded_host[ count( $exploded_host ) - 1 ]; |
||
5497 | // Rebuild domain excluding subdomains |
||
5498 | $domain = $name . '.' . $tld; |
||
5499 | } else { |
||
5500 | $domain = $host; |
||
5501 | } |
||
5502 | // Array of Automattic domains |
||
5503 | $domain_whitelist = array( 'wordpress.com', 'wp.com' ); |
||
5504 | |||
5505 | // Return $url if not an Automattic domain |
||
5506 | if ( ! in_array( $domain, $domain_whitelist ) ) { |
||
5507 | return $url; |
||
5508 | } |
||
5509 | |||
5510 | if ( is_ssl() ) { |
||
5511 | return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url ); |
||
5512 | } |
||
5513 | |||
5514 | srand( crc32( basename( $url ) ) ); |
||
5515 | $static_counter = rand( 0, 2 ); |
||
5516 | srand(); // this resets everything that relies on this, like array_rand() and shuffle() |
||
5517 | |||
5518 | return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url ); |
||
5519 | } |
||
5520 | |||
5521 | /* JSON API Authorization */ |
||
5522 | |||
5523 | /** |
||
5524 | * Handles the login action for Authorizing the JSON API |
||
5525 | */ |
||
5526 | function login_form_json_api_authorization() { |
||
5527 | $this->verify_json_api_authorization_request(); |
||
5528 | |||
5529 | add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 ); |
||
5530 | |||
5531 | add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) ); |
||
5532 | add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) ); |
||
5533 | add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 ); |
||
5534 | } |
||
5535 | |||
5536 | // Make sure the login form is POSTed to the signed URL so we can reverify the request |
||
5537 | function post_login_form_to_signed_url( $url, $path, $scheme ) { |
||
5538 | if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) { |
||
5539 | return $url; |
||
5540 | } |
||
5541 | |||
5542 | $parsed_url = parse_url( $url ); |
||
5543 | $url = strtok( $url, '?' ); |
||
5544 | $url = "$url?{$_SERVER['QUERY_STRING']}"; |
||
5545 | if ( ! empty( $parsed_url['query'] ) ) |
||
5546 | $url .= "&{$parsed_url['query']}"; |
||
5547 | |||
5548 | return $url; |
||
5549 | } |
||
5550 | |||
5551 | // Make sure the POSTed request is handled by the same action |
||
5552 | function preserve_action_in_login_form_for_json_api_authorization() { |
||
5553 | echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n"; |
||
5554 | echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n"; |
||
5555 | } |
||
5556 | |||
5557 | // If someone logs in to approve API access, store the Access Code in usermeta |
||
5558 | function store_json_api_authorization_token( $user_login, $user ) { |
||
5559 | add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 ); |
||
5560 | add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) ); |
||
5561 | $token = wp_generate_password( 32, false ); |
||
5562 | update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token ); |
||
5563 | } |
||
5564 | |||
5565 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access |
||
5566 | function allow_wpcom_public_api_domain( $domains ) { |
||
5567 | $domains[] = 'public-api.wordpress.com'; |
||
5568 | return $domains; |
||
5569 | } |
||
5570 | |||
5571 | static function is_redirect_encoded( $redirect_url ) { |
||
5572 | return preg_match( '/https?%3A%2F%2F/i', $redirect_url ) > 0; |
||
5573 | } |
||
5574 | |||
5575 | // Add all wordpress.com environments to the safe redirect whitelist |
||
5576 | function allow_wpcom_environments( $domains ) { |
||
5577 | $domains[] = 'wordpress.com'; |
||
5578 | $domains[] = 'wpcalypso.wordpress.com'; |
||
5579 | $domains[] = 'horizon.wordpress.com'; |
||
5580 | $domains[] = 'calypso.localhost'; |
||
5581 | return $domains; |
||
5582 | } |
||
5583 | |||
5584 | // Add the Access Code details to the public-api.wordpress.com redirect |
||
5585 | function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { |
||
5586 | return add_query_arg( |
||
5587 | urlencode_deep( |
||
5588 | array( |
||
5589 | 'jetpack-code' => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ), |
||
5590 | 'jetpack-user-id' => (int) $user->ID, |
||
5591 | 'jetpack-state' => $this->json_api_authorization_request['state'], |
||
5592 | ) |
||
5593 | ), |
||
5594 | $redirect_to |
||
5595 | ); |
||
5596 | } |
||
5597 | |||
5598 | |||
5599 | /** |
||
5600 | * Verifies the request by checking the signature |
||
5601 | * |
||
5602 | * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow |
||
5603 | * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO. |
||
5604 | * |
||
5605 | * @param null|array $environment |
||
5606 | */ |
||
5607 | function verify_json_api_authorization_request( $environment = null ) { |
||
5608 | $environment = is_null( $environment ) |
||
5609 | ? $_REQUEST |
||
5610 | : $environment; |
||
5611 | |||
5612 | list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] ); |
||
5613 | $token = Jetpack_Data::get_access_token( $envUserId, $envToken ); |
||
5614 | if ( ! $token || empty( $token->secret ) ) { |
||
5615 | wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) ); |
||
5616 | } |
||
5617 | |||
5618 | $die_error = __( 'Someone may be trying to trick you into giving them access to your site. Or it could be you just encountered a bug :). Either way, please close this window.', 'jetpack' ); |
||
5619 | |||
5620 | // Host has encoded the request URL, probably as a result of a bad http => https redirect |
||
5621 | if ( Jetpack::is_redirect_encoded( $_GET['redirect_to'] ) ) { |
||
5622 | /** |
||
5623 | * Jetpack authorisation request Error. |
||
5624 | * |
||
5625 | * @since 7.5.0 |
||
5626 | * |
||
5627 | */ |
||
5628 | do_action( 'jetpack_verify_api_authorization_request_error_double_encode' ); |
||
5629 | $die_error = sprintf( |
||
5630 | /* translators: %s is a URL */ |
||
5631 | __( 'Your site is incorrectly double-encoding redirects from http to https. This is preventing Jetpack from authenticating your connection. Please visit our <a href="%s">support page</a> for details about how to resolve this.', 'jetpack' ), |
||
5632 | 'https://jetpack.com/support/double-encoding/' |
||
5633 | ); |
||
5634 | } |
||
5635 | |||
5636 | $jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) ); |
||
5637 | |||
5638 | if ( isset( $environment['jetpack_json_api_original_query'] ) ) { |
||
5639 | $signature = $jetpack_signature->sign_request( |
||
5640 | $environment['token'], |
||
5641 | $environment['timestamp'], |
||
5642 | $environment['nonce'], |
||
5643 | '', |
||
5644 | 'GET', |
||
5645 | $environment['jetpack_json_api_original_query'], |
||
5646 | null, |
||
5647 | true |
||
5648 | ); |
||
5649 | } else { |
||
5650 | $signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) ); |
||
5651 | } |
||
5652 | |||
5653 | if ( ! $signature ) { |
||
5654 | wp_die( $die_error ); |
||
5655 | } else if ( is_wp_error( $signature ) ) { |
||
5656 | wp_die( $die_error ); |
||
5657 | } else if ( ! hash_equals( $signature, $environment['signature'] ) ) { |
||
5658 | if ( is_ssl() ) { |
||
5659 | // If we signed an HTTP request on the Jetpack Servers, but got redirected to HTTPS by the local blog, check the HTTP signature as well |
||
5660 | $signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) ); |
||
5661 | if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) { |
||
5662 | wp_die( $die_error ); |
||
5663 | } |
||
5664 | } else { |
||
5665 | wp_die( $die_error ); |
||
5666 | } |
||
5667 | } |
||
5668 | |||
5669 | $timestamp = (int) $environment['timestamp']; |
||
5670 | $nonce = stripslashes( (string) $environment['nonce'] ); |
||
5671 | |||
5672 | if ( ! $this->connection->add_nonce( $timestamp, $nonce ) ) { |
||
5673 | // De-nonce the nonce, at least for 5 minutes. |
||
5674 | // We have to reuse this nonce at least once (used the first time when the initial request is made, used a second time when the login form is POSTed) |
||
5675 | $old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" ); |
||
5676 | if ( $old_nonce_time < time() - 300 ) { |
||
5677 | wp_die( __( 'The authorization process expired. Please go back and try again.' , 'jetpack' ) ); |
||
5678 | } |
||
5679 | } |
||
5680 | |||
5681 | $data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) ); |
||
5682 | $data_filters = array( |
||
5683 | 'state' => 'opaque', |
||
5684 | 'client_id' => 'int', |
||
5685 | 'client_title' => 'string', |
||
5686 | 'client_image' => 'url', |
||
5687 | ); |
||
5688 | |||
5689 | foreach ( $data_filters as $key => $sanitation ) { |
||
5690 | if ( ! isset( $data->$key ) ) { |
||
5691 | wp_die( $die_error ); |
||
5692 | } |
||
5693 | |||
5694 | switch ( $sanitation ) { |
||
5695 | case 'int' : |
||
5696 | $this->json_api_authorization_request[$key] = (int) $data->$key; |
||
5697 | break; |
||
5698 | case 'opaque' : |
||
5699 | $this->json_api_authorization_request[$key] = (string) $data->$key; |
||
5700 | break; |
||
5701 | case 'string' : |
||
5702 | $this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() ); |
||
5703 | break; |
||
5704 | case 'url' : |
||
5705 | $this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key ); |
||
5706 | break; |
||
5707 | } |
||
5708 | } |
||
5709 | |||
5710 | if ( empty( $this->json_api_authorization_request['client_id'] ) ) { |
||
5711 | wp_die( $die_error ); |
||
5712 | } |
||
5713 | } |
||
5714 | |||
5715 | function login_message_json_api_authorization( $message ) { |
||
5716 | return '<p class="message">' . sprintf( |
||
5717 | esc_html__( '%s wants to access your site’s data. Log in to authorize that access.' , 'jetpack' ), |
||
5718 | '<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>' |
||
5719 | ) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>'; |
||
5720 | } |
||
5721 | |||
5722 | /** |
||
5723 | * Get $content_width, but with a <s>twist</s> filter. |
||
5724 | */ |
||
5725 | public static function get_content_width() { |
||
5726 | $content_width = ( isset( $GLOBALS['content_width'] ) && is_numeric( $GLOBALS['content_width'] ) ) |
||
5727 | ? $GLOBALS['content_width'] |
||
5728 | : false; |
||
5729 | /** |
||
5730 | * Filter the Content Width value. |
||
5731 | * |
||
5732 | * @since 2.2.3 |
||
5733 | * |
||
5734 | * @param string $content_width Content Width value. |
||
5735 | */ |
||
5736 | return apply_filters( 'jetpack_content_width', $content_width ); |
||
5737 | } |
||
5738 | |||
5739 | /** |
||
5740 | * Pings the WordPress.com Mirror Site for the specified options. |
||
5741 | * |
||
5742 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site |
||
5743 | * |
||
5744 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site |
||
5745 | */ |
||
5746 | public function get_cloud_site_options( $option_names ) { |
||
5747 | $option_names = array_filter( (array) $option_names, 'is_string' ); |
||
5748 | |||
5749 | $xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) ); |
||
5750 | $xml->query( 'jetpack.fetchSiteOptions', $option_names ); |
||
5751 | if ( $xml->isError() ) { |
||
5752 | return array( |
||
5753 | 'error_code' => $xml->getErrorCode(), |
||
5754 | 'error_msg' => $xml->getErrorMessage(), |
||
5755 | ); |
||
5756 | } |
||
5757 | $cloud_site_options = $xml->getResponse(); |
||
5758 | |||
5759 | return $cloud_site_options; |
||
5760 | } |
||
5761 | |||
5762 | /** |
||
5763 | * Checks if the site is currently in an identity crisis. |
||
5764 | * |
||
5765 | * @return array|bool Array of options that are in a crisis, or false if everything is OK. |
||
5766 | */ |
||
5767 | public static function check_identity_crisis() { |
||
5768 | if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) { |
||
5769 | return false; |
||
5770 | } |
||
5771 | |||
5772 | return Jetpack_Options::get_option( 'sync_error_idc' ); |
||
5773 | } |
||
5774 | |||
5775 | /** |
||
5776 | * Checks whether the home and siteurl specifically are whitelisted |
||
5777 | * Written so that we don't have re-check $key and $value params every time |
||
5778 | * we want to check if this site is whitelisted, for example in footer.php |
||
5779 | * |
||
5780 | * @since 3.8.0 |
||
5781 | * @return bool True = already whitelisted False = not whitelisted |
||
5782 | */ |
||
5783 | public static function is_staging_site() { |
||
5784 | $is_staging = false; |
||
5785 | |||
5786 | $known_staging = array( |
||
5787 | 'urls' => array( |
||
5788 | '#\.staging\.wpengine\.com$#i', // WP Engine |
||
5789 | '#\.staging\.kinsta\.com$#i', // Kinsta.com |
||
5790 | '#\.stage\.site$#i' // DreamPress |
||
5791 | ), |
||
5792 | 'constants' => array( |
||
5793 | 'IS_WPE_SNAPSHOT', // WP Engine |
||
5794 | 'KINSTA_DEV_ENV', // Kinsta.com |
||
5795 | 'WPSTAGECOACH_STAGING', // WP Stagecoach |
||
5796 | 'JETPACK_STAGING_MODE', // Generic |
||
5797 | ) |
||
5798 | ); |
||
5799 | /** |
||
5800 | * Filters the flags of known staging sites. |
||
5801 | * |
||
5802 | * @since 3.9.0 |
||
5803 | * |
||
5804 | * @param array $known_staging { |
||
5805 | * An array of arrays that each are used to check if the current site is staging. |
||
5806 | * @type array $urls URLs of staging sites in regex to check against site_url. |
||
5807 | * @type array $constants PHP constants of known staging/developement environments. |
||
5808 | * } |
||
5809 | */ |
||
5810 | $known_staging = apply_filters( 'jetpack_known_staging', $known_staging ); |
||
5811 | |||
5812 | if ( isset( $known_staging['urls'] ) ) { |
||
5813 | foreach ( $known_staging['urls'] as $url ){ |
||
5814 | if ( preg_match( $url, site_url() ) ) { |
||
5815 | $is_staging = true; |
||
5816 | break; |
||
5817 | } |
||
5818 | } |
||
5819 | } |
||
5820 | |||
5821 | if ( isset( $known_staging['constants'] ) ) { |
||
5822 | foreach ( $known_staging['constants'] as $constant ) { |
||
5823 | if ( defined( $constant ) && constant( $constant ) ) { |
||
5824 | $is_staging = true; |
||
5825 | } |
||
5826 | } |
||
5827 | } |
||
5828 | |||
5829 | // Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode. |
||
5830 | if ( ! $is_staging && self::validate_sync_error_idc_option() ) { |
||
5831 | $is_staging = true; |
||
5832 | } |
||
5833 | |||
5834 | /** |
||
5835 | * Filters is_staging_site check. |
||
5836 | * |
||
5837 | * @since 3.9.0 |
||
5838 | * |
||
5839 | * @param bool $is_staging If the current site is a staging site. |
||
5840 | */ |
||
5841 | return apply_filters( 'jetpack_is_staging_site', $is_staging ); |
||
5842 | } |
||
5843 | |||
5844 | /** |
||
5845 | * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup. |
||
5846 | * |
||
5847 | * @since 4.4.0 |
||
5848 | * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC |
||
5849 | * |
||
5850 | * @return bool |
||
5851 | */ |
||
5852 | public static function validate_sync_error_idc_option() { |
||
5853 | $is_valid = false; |
||
5854 | |||
5855 | $idc_allowed = get_transient( 'jetpack_idc_allowed' ); |
||
5856 | if ( false === $idc_allowed ) { |
||
5857 | $response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' ); |
||
5858 | if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) { |
||
5859 | $json = json_decode( wp_remote_retrieve_body( $response ) ); |
||
5860 | $idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0'; |
||
5861 | $transient_duration = HOUR_IN_SECONDS; |
||
5862 | } else { |
||
5863 | // If the request failed for some reason, then assume IDC is allowed and set shorter transient. |
||
5864 | $idc_allowed = '1'; |
||
5865 | $transient_duration = 5 * MINUTE_IN_SECONDS; |
||
5866 | } |
||
5867 | |||
5868 | set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration ); |
||
5869 | } |
||
5870 | |||
5871 | // Is the site opted in and does the stored sync_error_idc option match what we now generate? |
||
5872 | $sync_error = Jetpack_Options::get_option( 'sync_error_idc' ); |
||
5873 | if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) { |
||
5874 | $local_options = self::get_sync_error_idc_option(); |
||
5875 | if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) { |
||
5876 | $is_valid = true; |
||
5877 | } |
||
5878 | } |
||
5879 | |||
5880 | /** |
||
5881 | * Filters whether the sync_error_idc option is valid. |
||
5882 | * |
||
5883 | * @since 4.4.0 |
||
5884 | * |
||
5885 | * @param bool $is_valid If the sync_error_idc is valid or not. |
||
5886 | */ |
||
5887 | $is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid ); |
||
5888 | |||
5889 | if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) { |
||
5890 | // Since the option exists, and did not validate, delete it |
||
5891 | Jetpack_Options::delete_option( 'sync_error_idc' ); |
||
5892 | } |
||
5893 | |||
5894 | return $is_valid; |
||
5895 | } |
||
5896 | |||
5897 | /** |
||
5898 | * Normalizes a url by doing three things: |
||
5899 | * - Strips protocol |
||
5900 | * - Strips www |
||
5901 | * - Adds a trailing slash |
||
5902 | * |
||
5903 | * @since 4.4.0 |
||
5904 | * @param string $url |
||
5905 | * @return WP_Error|string |
||
5906 | */ |
||
5907 | public static function normalize_url_protocol_agnostic( $url ) { |
||
5908 | $parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) ); |
||
5909 | if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) { |
||
5910 | return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) ); |
||
5911 | } |
||
5912 | |||
5913 | // Strip www and protocols |
||
5914 | $url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] ); |
||
5915 | return $url; |
||
5916 | } |
||
5917 | |||
5918 | /** |
||
5919 | * Gets the value that is to be saved in the jetpack_sync_error_idc option. |
||
5920 | * |
||
5921 | * @since 4.4.0 |
||
5922 | * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB |
||
5923 | * |
||
5924 | * @param array $response |
||
5925 | * @return array Array of the local urls, wpcom urls, and error code |
||
5926 | */ |
||
5927 | public static function get_sync_error_idc_option( $response = array() ) { |
||
5928 | // Since the local options will hit the database directly, store the values |
||
5929 | // in a transient to allow for autoloading and caching on subsequent views. |
||
5930 | $local_options = get_transient( 'jetpack_idc_local' ); |
||
5931 | if ( false === $local_options ) { |
||
5932 | $local_options = array( |
||
5933 | 'home' => Functions::home_url(), |
||
5934 | 'siteurl' => Functions::site_url(), |
||
5935 | ); |
||
5936 | set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS ); |
||
5937 | } |
||
5938 | |||
5939 | $options = array_merge( $local_options, $response ); |
||
5940 | |||
5941 | $returned_values = array(); |
||
5942 | foreach( $options as $key => $option ) { |
||
5943 | if ( 'error_code' === $key ) { |
||
5944 | $returned_values[ $key ] = $option; |
||
5945 | continue; |
||
5946 | } |
||
5947 | |||
5948 | if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) { |
||
5949 | continue; |
||
5950 | } |
||
5951 | |||
5952 | $returned_values[ $key ] = $normalized_url; |
||
5953 | } |
||
5954 | |||
5955 | set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS ); |
||
5956 | |||
5957 | return $returned_values; |
||
5958 | } |
||
5959 | |||
5960 | /** |
||
5961 | * Returns the value of the jetpack_sync_idc_optin filter, or constant. |
||
5962 | * If set to true, the site will be put into staging mode. |
||
5963 | * |
||
5964 | * @since 4.3.2 |
||
5965 | * @return bool |
||
5966 | */ |
||
5967 | public static function sync_idc_optin() { |
||
5968 | if ( Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) { |
||
5969 | $default = Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' ); |
||
5970 | } else { |
||
5971 | $default = ! Constants::is_defined( 'SUNRISE' ) && ! is_multisite(); |
||
5972 | } |
||
5973 | |||
5974 | /** |
||
5975 | * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home |
||
5976 | * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of |
||
5977 | * JETPACK_SYNC_IDC_OPTIN constant if set. |
||
5978 | * |
||
5979 | * @since 4.3.2 |
||
5980 | * |
||
5981 | * @param bool $default Whether the site is opted in to IDC mitigation. |
||
5982 | */ |
||
5983 | return (bool) apply_filters( 'jetpack_sync_idc_optin', $default ); |
||
5984 | } |
||
5985 | |||
5986 | /** |
||
5987 | * Maybe Use a .min.css stylesheet, maybe not. |
||
5988 | * |
||
5989 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. |
||
5990 | */ |
||
5991 | public static function maybe_min_asset( $url, $path, $plugin ) { |
||
5992 | // Short out on things trying to find actual paths. |
||
5993 | if ( ! $path || empty( $plugin ) ) { |
||
5994 | return $url; |
||
5995 | } |
||
5996 | |||
5997 | $path = ltrim( $path, '/' ); |
||
5998 | |||
5999 | // Strip out the abspath. |
||
6000 | $base = dirname( plugin_basename( $plugin ) ); |
||
6001 | |||
6002 | // Short out on non-Jetpack assets. |
||
6003 | if ( 'jetpack/' !== substr( $base, 0, 8 ) ) { |
||
6004 | return $url; |
||
6005 | } |
||
6006 | |||
6007 | // File name parsing. |
||
6008 | $file = "{$base}/{$path}"; |
||
6009 | $full_path = JETPACK__PLUGIN_DIR . substr( $file, 8 ); |
||
6010 | $file_name = substr( $full_path, strrpos( $full_path, '/' ) + 1 ); |
||
6011 | $file_name_parts_r = array_reverse( explode( '.', $file_name ) ); |
||
6012 | $extension = array_shift( $file_name_parts_r ); |
||
6013 | |||
6014 | if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) { |
||
6015 | // Already pointing at the minified version. |
||
6016 | if ( 'min' === $file_name_parts_r[0] ) { |
||
6017 | return $url; |
||
6018 | } |
||
6019 | |||
6020 | $min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path ); |
||
6021 | if ( file_exists( $min_full_path ) ) { |
||
6022 | $url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url ); |
||
6023 | // If it's a CSS file, stash it so we can set the .min suffix for rtl-ing. |
||
6024 | if ( 'css' === $extension ) { |
||
6025 | $key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path ); |
||
6026 | self::$min_assets[ $key ] = $path; |
||
6027 | } |
||
6028 | } |
||
6029 | } |
||
6030 | |||
6031 | return $url; |
||
6032 | } |
||
6033 | |||
6034 | /** |
||
6035 | * If the asset is minified, let's flag .min as the suffix. |
||
6036 | * |
||
6037 | * Attached to `style_loader_src` filter. |
||
6038 | * |
||
6039 | * @param string $tag The tag that would link to the external asset. |
||
6040 | * @param string $handle The registered handle of the script in question. |
||
6041 | * @param string $href The url of the asset in question. |
||
6042 | */ |
||
6043 | public static function set_suffix_on_min( $src, $handle ) { |
||
6044 | if ( false === strpos( $src, '.min.css' ) ) { |
||
6045 | return $src; |
||
6046 | } |
||
6047 | |||
6048 | if ( ! empty( self::$min_assets ) ) { |
||
6049 | foreach ( self::$min_assets as $file => $path ) { |
||
6050 | if ( false !== strpos( $src, $file ) ) { |
||
6051 | wp_style_add_data( $handle, 'suffix', '.min' ); |
||
6052 | return $src; |
||
6053 | } |
||
6054 | } |
||
6055 | } |
||
6056 | |||
6057 | return $src; |
||
6058 | } |
||
6059 | |||
6060 | /** |
||
6061 | * Maybe inlines a stylesheet. |
||
6062 | * |
||
6063 | * If you'd like to inline a stylesheet instead of printing a link to it, |
||
6064 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); |
||
6065 | * |
||
6066 | * Attached to `style_loader_tag` filter. |
||
6067 | * |
||
6068 | * @param string $tag The tag that would link to the external asset. |
||
6069 | * @param string $handle The registered handle of the script in question. |
||
6070 | * |
||
6071 | * @return string |
||
6072 | */ |
||
6073 | public static function maybe_inline_style( $tag, $handle ) { |
||
6074 | global $wp_styles; |
||
6075 | $item = $wp_styles->registered[ $handle ]; |
||
6076 | |||
6077 | if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) { |
||
6078 | return $tag; |
||
6079 | } |
||
6080 | |||
6081 | if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) { |
||
6082 | $href = $matches[1]; |
||
6083 | // Strip off query string |
||
6084 | if ( $pos = strpos( $href, '?' ) ) { |
||
6085 | $href = substr( $href, 0, $pos ); |
||
6086 | } |
||
6087 | // Strip off fragment |
||
6088 | if ( $pos = strpos( $href, '#' ) ) { |
||
6089 | $href = substr( $href, 0, $pos ); |
||
6090 | } |
||
6091 | } else { |
||
6092 | return $tag; |
||
6093 | } |
||
6094 | |||
6095 | $plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE ); |
||
6096 | if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) { |
||
6097 | return $tag; |
||
6098 | } |
||
6099 | |||
6100 | // If this stylesheet has a RTL version, and the RTL version replaces normal... |
||
6101 | if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) { |
||
6102 | // And this isn't the pass that actually deals with the RTL version... |
||
6103 | if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) { |
||
6104 | // Short out, as the RTL version will deal with it in a moment. |
||
6105 | return $tag; |
||
6106 | } |
||
6107 | } |
||
6108 | |||
6109 | $file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) ); |
||
6110 | $css = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href ); |
||
6111 | if ( $css ) { |
||
6112 | $tag = "<!-- Inline {$item->handle} -->\r\n"; |
||
6113 | if ( empty( $item->extra['after'] ) ) { |
||
6114 | wp_add_inline_style( $handle, $css ); |
||
6115 | } else { |
||
6116 | array_unshift( $item->extra['after'], $css ); |
||
6117 | wp_style_add_data( $handle, 'after', $item->extra['after'] ); |
||
6118 | } |
||
6119 | } |
||
6120 | |||
6121 | return $tag; |
||
6122 | } |
||
6123 | |||
6124 | /** |
||
6125 | * Loads a view file from the views |
||
6126 | * |
||
6127 | * Data passed in with the $data parameter will be available in the |
||
6128 | * template file as $data['value'] |
||
6129 | * |
||
6130 | * @param string $template - Template file to load |
||
6131 | * @param array $data - Any data to pass along to the template |
||
6132 | * @return boolean - If template file was found |
||
6133 | **/ |
||
6134 | public function load_view( $template, $data = array() ) { |
||
6135 | $views_dir = JETPACK__PLUGIN_DIR . 'views/'; |
||
6136 | |||
6137 | if( file_exists( $views_dir . $template ) ) { |
||
6138 | require_once( $views_dir . $template ); |
||
6139 | return true; |
||
6140 | } |
||
6141 | |||
6142 | error_log( "Jetpack: Unable to find view file $views_dir$template" ); |
||
6143 | return false; |
||
6144 | } |
||
6145 | |||
6146 | /** |
||
6147 | * Throws warnings for deprecated hooks to be removed from Jetpack |
||
6148 | */ |
||
6149 | public function deprecated_hooks() { |
||
6150 | global $wp_filter; |
||
6151 | |||
6152 | /* |
||
6153 | * Format: |
||
6154 | * deprecated_filter_name => replacement_name |
||
6155 | * |
||
6156 | * If there is no replacement, use null for replacement_name |
||
6157 | */ |
||
6158 | $deprecated_list = array( |
||
6159 | 'jetpack_bail_on_shortcode' => 'jetpack_shortcodes_to_include', |
||
6160 | 'wpl_sharing_2014_1' => null, |
||
6161 | 'jetpack-tools-to-include' => 'jetpack_tools_to_include', |
||
6162 | 'jetpack_identity_crisis_options_to_check' => null, |
||
6163 | 'update_option_jetpack_single_user_site' => null, |
||
6164 | 'audio_player_default_colors' => null, |
||
6165 | 'add_option_jetpack_featured_images_enabled' => null, |
||
6166 | 'add_option_jetpack_update_details' => null, |
||
6167 | 'add_option_jetpack_updates' => null, |
||
6168 | 'add_option_jetpack_network_name' => null, |
||
6169 | 'add_option_jetpack_network_allow_new_registrations' => null, |
||
6170 | 'add_option_jetpack_network_add_new_users' => null, |
||
6171 | 'add_option_jetpack_network_site_upload_space' => null, |
||
6172 | 'add_option_jetpack_network_upload_file_types' => null, |
||
6173 | 'add_option_jetpack_network_enable_administration_menus' => null, |
||
6174 | 'add_option_jetpack_is_multi_site' => null, |
||
6175 | 'add_option_jetpack_is_main_network' => null, |
||
6176 | 'add_option_jetpack_main_network_site' => null, |
||
6177 | 'jetpack_sync_all_registered_options' => null, |
||
6178 | 'jetpack_has_identity_crisis' => 'jetpack_sync_error_idc_validation', |
||
6179 | 'jetpack_is_post_mailable' => null, |
||
6180 | 'jetpack_seo_site_host' => null, |
||
6181 | 'jetpack_installed_plugin' => 'jetpack_plugin_installed', |
||
6182 | 'jetpack_holiday_snow_option_name' => null, |
||
6183 | 'jetpack_holiday_chance_of_snow' => null, |
||
6184 | 'jetpack_holiday_snow_js_url' => null, |
||
6185 | 'jetpack_is_holiday_snow_season' => null, |
||
6186 | 'jetpack_holiday_snow_option_updated' => null, |
||
6187 | 'jetpack_holiday_snowing' => null, |
||
6188 | 'jetpack_sso_auth_cookie_expirtation' => 'jetpack_sso_auth_cookie_expiration', |
||
6189 | 'jetpack_cache_plans' => null, |
||
6190 | 'jetpack_updated_theme' => 'jetpack_updated_themes', |
||
6191 | 'jetpack_lazy_images_skip_image_with_atttributes' => 'jetpack_lazy_images_skip_image_with_attributes', |
||
6192 | 'jetpack_enable_site_verification' => null, |
||
6193 | 'can_display_jetpack_manage_notice' => null, |
||
6194 | // Removed in Jetpack 7.3.0 |
||
6195 | 'atd_load_scripts' => null, |
||
6196 | 'atd_http_post_timeout' => null, |
||
6197 | 'atd_http_post_error' => null, |
||
6198 | 'atd_service_domain' => null, |
||
6199 | 'jetpack_widget_authors_exclude' => 'jetpack_widget_authors_params', |
||
6200 | ); |
||
6201 | |||
6202 | // This is a silly loop depth. Better way? |
||
6203 | foreach( $deprecated_list AS $hook => $hook_alt ) { |
||
6204 | if ( has_action( $hook ) ) { |
||
6205 | foreach( $wp_filter[ $hook ] AS $func => $values ) { |
||
6206 | foreach( $values AS $hooked ) { |
||
6207 | if ( is_callable( $hooked['function'] ) ) { |
||
6208 | $function_name = 'an anonymous function'; |
||
6209 | } else { |
||
6210 | $function_name = $hooked['function']; |
||
6211 | } |
||
6212 | _deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt ); |
||
6213 | } |
||
6214 | } |
||
6215 | } |
||
6216 | } |
||
6217 | } |
||
6218 | |||
6219 | /** |
||
6220 | * Converts any url in a stylesheet, to the correct absolute url. |
||
6221 | * |
||
6222 | * Considerations: |
||
6223 | * - Normal, relative URLs `feh.png` |
||
6224 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` |
||
6225 | * - Schema-agnostic URLs `//domain.com/feh.png` |
||
6226 | * - Absolute URLs `http://domain.com/feh.png` |
||
6227 | * - Domain root relative URLs `/feh.png` |
||
6228 | * |
||
6229 | * @param $css string: The raw CSS -- should be read in directly from the file. |
||
6230 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
||
6231 | * |
||
6232 | * @return mixed|string |
||
6233 | */ |
||
6234 | public static function absolutize_css_urls( $css, $css_file_url ) { |
||
6235 | $pattern = '#url\((?P<path>[^)]*)\)#i'; |
||
6236 | $css_dir = dirname( $css_file_url ); |
||
6237 | $p = parse_url( $css_dir ); |
||
6238 | $domain = sprintf( |
||
6239 | '%1$s//%2$s%3$s%4$s', |
||
6240 | isset( $p['scheme'] ) ? "{$p['scheme']}:" : '', |
||
6241 | isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '', |
||
6242 | $p['host'], |
||
6243 | isset( $p['port'] ) ? ":{$p['port']}" : '' |
||
6244 | ); |
||
6245 | |||
6246 | if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) { |
||
6247 | $find = $replace = array(); |
||
6248 | foreach ( $matches as $match ) { |
||
6249 | $url = trim( $match['path'], "'\" \t" ); |
||
6250 | |||
6251 | // If this is a data url, we don't want to mess with it. |
||
6252 | if ( 'data:' === substr( $url, 0, 5 ) ) { |
||
6253 | continue; |
||
6254 | } |
||
6255 | |||
6256 | // If this is an absolute or protocol-agnostic url, |
||
6257 | // we don't want to mess with it. |
||
6258 | if ( preg_match( '#^(https?:)?//#i', $url ) ) { |
||
6259 | continue; |
||
6260 | } |
||
6261 | |||
6262 | switch ( substr( $url, 0, 1 ) ) { |
||
6263 | case '/': |
||
6264 | $absolute = $domain . $url; |
||
6265 | break; |
||
6266 | default: |
||
6267 | $absolute = $css_dir . '/' . $url; |
||
6268 | } |
||
6269 | |||
6270 | $find[] = $match[0]; |
||
6271 | $replace[] = sprintf( 'url("%s")', $absolute ); |
||
6272 | } |
||
6273 | $css = str_replace( $find, $replace, $css ); |
||
6274 | } |
||
6275 | |||
6276 | return $css; |
||
6277 | } |
||
6278 | |||
6279 | /** |
||
6280 | * This methods removes all of the registered css files on the front end |
||
6281 | * from Jetpack in favor of using a single file. In effect "imploding" |
||
6282 | * all the files into one file. |
||
6283 | * |
||
6284 | * Pros: |
||
6285 | * - Uses only ONE css asset connection instead of 15 |
||
6286 | * - Saves a minimum of 56k |
||
6287 | * - Reduces server load |
||
6288 | * - Reduces time to first painted byte |
||
6289 | * |
||
6290 | * Cons: |
||
6291 | * - Loads css for ALL modules. However all selectors are prefixed so it |
||
6292 | * should not cause any issues with themes. |
||
6293 | * - Plugins/themes dequeuing styles no longer do anything. See |
||
6294 | * jetpack_implode_frontend_css filter for a workaround |
||
6295 | * |
||
6296 | * For some situations developers may wish to disable css imploding and |
||
6297 | * instead operate in legacy mode where each file loads seperately and |
||
6298 | * can be edited individually or dequeued. This can be accomplished with |
||
6299 | * the following line: |
||
6300 | * |
||
6301 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); |
||
6302 | * |
||
6303 | * @since 3.2 |
||
6304 | **/ |
||
6305 | public function implode_frontend_css( $travis_test = false ) { |
||
6306 | $do_implode = true; |
||
6307 | if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) { |
||
6308 | $do_implode = false; |
||
6309 | } |
||
6310 | |||
6311 | // Do not implode CSS when the page loads via the AMP plugin. |
||
6312 | if ( Jetpack_AMP_Support::is_amp_request() ) { |
||
6313 | $do_implode = false; |
||
6314 | } |
||
6315 | |||
6316 | /** |
||
6317 | * Allow CSS to be concatenated into a single jetpack.css file. |
||
6318 | * |
||
6319 | * @since 3.2.0 |
||
6320 | * |
||
6321 | * @param bool $do_implode Should CSS be concatenated? Default to true. |
||
6322 | */ |
||
6323 | $do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode ); |
||
6324 | |||
6325 | // Do not use the imploded file when default behavior was altered through the filter |
||
6326 | if ( ! $do_implode ) { |
||
6327 | return; |
||
6328 | } |
||
6329 | |||
6330 | // We do not want to use the imploded file in dev mode, or if not connected |
||
6331 | if ( Jetpack::is_development_mode() || ! self::is_active() ) { |
||
6332 | if ( ! $travis_test ) { |
||
6333 | return; |
||
6334 | } |
||
6335 | } |
||
6336 | |||
6337 | // Do not use the imploded file if sharing css was dequeued via the sharing settings screen |
||
6338 | if ( get_option( 'sharedaddy_disable_resources' ) ) { |
||
6339 | return; |
||
6340 | } |
||
6341 | |||
6342 | /* |
||
6343 | * Now we assume Jetpack is connected and able to serve the single |
||
6344 | * file. |
||
6345 | * |
||
6346 | * In the future there will be a check here to serve the file locally |
||
6347 | * or potentially from the Jetpack CDN |
||
6348 | * |
||
6349 | * For now: |
||
6350 | * - Enqueue a single imploded css file |
||
6351 | * - Zero out the style_loader_tag for the bundled ones |
||
6352 | * - Be happy, drink scotch |
||
6353 | */ |
||
6354 | |||
6355 | add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 ); |
||
6356 | |||
6357 | $version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION; |
||
6358 | |||
6359 | wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version ); |
||
6360 | wp_style_add_data( 'jetpack_css', 'rtl', 'replace' ); |
||
6361 | } |
||
6362 | |||
6363 | function concat_remove_style_loader_tag( $tag, $handle ) { |
||
6364 | if ( in_array( $handle, $this->concatenated_style_handles ) ) { |
||
6365 | $tag = ''; |
||
6366 | if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
||
6367 | $tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n"; |
||
6368 | } |
||
6369 | } |
||
6370 | |||
6371 | return $tag; |
||
6372 | } |
||
6373 | |||
6374 | /** |
||
6375 | * Add an async attribute to scripts that can be loaded asynchronously. |
||
6376 | * https://www.w3schools.com/tags/att_script_async.asp |
||
6377 | * |
||
6378 | * @since 7.7.0 |
||
6379 | * |
||
6380 | * @param string $tag The <script> tag for the enqueued script. |
||
6381 | * @param string $handle The script's registered handle. |
||
6382 | * @param string $src The script's source URL. |
||
6383 | */ |
||
6384 | public function script_add_async( $tag, $handle, $src ) { |
||
6385 | if ( in_array( $handle, $this->async_script_handles, true ) ) { |
||
6386 | return preg_replace( '/^<script /i', '<script async ', $tag ); |
||
6387 | } |
||
6388 | |||
6389 | return $tag; |
||
6390 | } |
||
6391 | |||
6392 | /* |
||
6393 | * Check the heartbeat data |
||
6394 | * |
||
6395 | * Organizes the heartbeat data by severity. For example, if the site |
||
6396 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. |
||
6397 | * |
||
6398 | * Data will be added to "caution" array, if it either: |
||
6399 | * - Out of date Jetpack version |
||
6400 | * - Out of date WP version |
||
6401 | * - Out of date PHP version |
||
6402 | * |
||
6403 | * $return array $filtered_data |
||
6404 | */ |
||
6405 | public static function jetpack_check_heartbeat_data() { |
||
6406 | $raw_data = Jetpack_Heartbeat::generate_stats_array(); |
||
6407 | |||
6408 | $good = array(); |
||
6409 | $caution = array(); |
||
6410 | $bad = array(); |
||
6411 | |||
6412 | foreach ( $raw_data as $stat => $value ) { |
||
6413 | |||
6414 | // Check jetpack version |
||
6415 | if ( 'version' == $stat ) { |
||
6416 | if ( version_compare( $value, JETPACK__VERSION, '<' ) ) { |
||
6417 | $caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION; |
||
6418 | continue; |
||
6419 | } |
||
6420 | } |
||
6421 | |||
6422 | // Check WP version |
||
6423 | if ( 'wp-version' == $stat ) { |
||
6424 | if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) { |
||
6425 | $caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION; |
||
6426 | continue; |
||
6427 | } |
||
6428 | } |
||
6429 | |||
6430 | // Check PHP version |
||
6431 | if ( 'php-version' == $stat ) { |
||
6432 | if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) { |
||
6433 | $caution[ $stat ] = $value . " - min supported is 5.2.4"; |
||
6434 | continue; |
||
6435 | } |
||
6436 | } |
||
6437 | |||
6438 | // Check ID crisis |
||
6439 | if ( 'identitycrisis' == $stat ) { |
||
6440 | if ( 'yes' == $value ) { |
||
6441 | $bad[ $stat ] = $value; |
||
6442 | continue; |
||
6443 | } |
||
6444 | } |
||
6445 | |||
6446 | // The rest are good :) |
||
6447 | $good[ $stat ] = $value; |
||
6448 | } |
||
6449 | |||
6450 | $filtered_data = array( |
||
6451 | 'good' => $good, |
||
6452 | 'caution' => $caution, |
||
6453 | 'bad' => $bad |
||
6454 | ); |
||
6455 | |||
6456 | return $filtered_data; |
||
6457 | } |
||
6458 | |||
6459 | |||
6460 | /* |
||
6461 | * This method is used to organize all options that can be reset |
||
6462 | * without disconnecting Jetpack. |
||
6463 | * |
||
6464 | * It is used in class.jetpack-cli.php to reset options |
||
6465 | * |
||
6466 | * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat. |
||
6467 | * |
||
6468 | * @return array of options to delete. |
||
6469 | */ |
||
6470 | public static function get_jetpack_options_for_reset() { |
||
6471 | return Jetpack_Options::get_options_for_reset(); |
||
6472 | } |
||
6473 | |||
6474 | /* |
||
6475 | * Strip http:// or https:// from a url, replaces forward slash with ::, |
||
6476 | * so we can bring them directly to their site in calypso. |
||
6477 | * |
||
6478 | * @param string | url |
||
6479 | * @return string | url without the guff |
||
6480 | */ |
||
6481 | public static function build_raw_urls( $url ) { |
||
6482 | $strip_http = '/.*?:\/\//i'; |
||
6483 | $url = preg_replace( $strip_http, '', $url ); |
||
6484 | $url = str_replace( '/', '::', $url ); |
||
6485 | return $url; |
||
6486 | } |
||
6487 | |||
6488 | /** |
||
6489 | * Stores and prints out domains to prefetch for page speed optimization. |
||
6490 | * |
||
6491 | * @param mixed $new_urls |
||
6492 | */ |
||
6493 | public static function dns_prefetch( $new_urls = null ) { |
||
6494 | static $prefetch_urls = array(); |
||
6495 | if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) { |
||
6496 | echo "\r\n"; |
||
6497 | foreach ( $prefetch_urls as $this_prefetch_url ) { |
||
6498 | printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) ); |
||
6499 | } |
||
6500 | } elseif ( ! empty( $new_urls ) ) { |
||
6501 | if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) { |
||
6502 | add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ); |
||
6503 | } |
||
6504 | foreach ( (array) $new_urls as $this_new_url ) { |
||
6505 | $prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) ); |
||
6506 | } |
||
6507 | $prefetch_urls = array_unique( $prefetch_urls ); |
||
6508 | } |
||
6509 | } |
||
6510 | |||
6511 | public function wp_dashboard_setup() { |
||
6512 | if ( self::is_active() ) { |
||
6513 | add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 ); |
||
6514 | } |
||
6515 | |||
6516 | if ( has_action( 'jetpack_dashboard_widget' ) ) { |
||
6517 | $jetpack_logo = new Jetpack_Logo(); |
||
6518 | $widget_title = sprintf( |
||
6519 | wp_kses( |
||
6520 | /* translators: Placeholder is a Jetpack logo. */ |
||
6521 | __( 'Stats <span>by %s</span>', 'jetpack' ), |
||
6522 | array( 'span' => array() ) |
||
6523 | ), |
||
6524 | $jetpack_logo->get_jp_emblem( true ) |
||
6525 | ); |
||
6526 | |||
6527 | wp_add_dashboard_widget( |
||
6528 | 'jetpack_summary_widget', |
||
6529 | $widget_title, |
||
6530 | array( __CLASS__, 'dashboard_widget' ) |
||
6531 | ); |
||
6532 | wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION ); |
||
6533 | wp_style_add_data( 'jetpack-dashboard-widget', 'rtl', 'replace' ); |
||
6534 | |||
6535 | // If we're inactive and not in development mode, sort our box to the top. |
||
6536 | if ( ! self::is_active() && ! self::is_development_mode() ) { |
||
6537 | global $wp_meta_boxes; |
||
6538 | |||
6539 | $dashboard = $wp_meta_boxes['dashboard']['normal']['core']; |
||
6540 | $ours = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] ); |
||
6541 | |||
6542 | $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard ); |
||
6543 | } |
||
6544 | } |
||
6545 | } |
||
6546 | |||
6547 | /** |
||
6548 | * @param mixed $result Value for the user's option |
||
6549 | * @return mixed |
||
6550 | */ |
||
6551 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
||
6576 | |||
6577 | public static function dashboard_widget() { |
||
6585 | |||
6586 | public static function dashboard_widget_footer() { |
||
6619 | |||
6620 | /* |
||
6621 | * Adds a "blank" column in the user admin table to display indication of user connection. |
||
6622 | */ |
||
6623 | function jetpack_icon_user_connected( $columns ) { |
||
6627 | |||
6628 | /* |
||
6629 | * Show Jetpack icon if the user is linked. |
||
6630 | */ |
||
6631 | function jetpack_show_user_connected_icon( $val, $col, $user_id ) { |
||
6644 | |||
6645 | /* |
||
6646 | * Style the Jetpack user column |
||
6647 | */ |
||
6648 | function jetpack_user_col_style() { |
||
6665 | |||
6666 | /** |
||
6667 | * Checks if Akismet is active and working. |
||
6668 | * |
||
6669 | * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key |
||
6670 | * that implied usage of methods present since more recent version. |
||
6671 | * See https://github.com/Automattic/jetpack/pull/9585 |
||
6672 | * |
||
6673 | * @since 5.1.0 |
||
6674 | * |
||
6675 | * @return bool True = Akismet available. False = Aksimet not available. |
||
6676 | */ |
||
6677 | public static function is_akismet_active() { |
||
6712 | |||
6713 | /** |
||
6714 | * @deprecated |
||
6715 | * |
||
6716 | * @see Automattic\Jetpack\Sync\Modules\Users::is_function_in_backtrace |
||
6717 | */ |
||
6718 | public static function is_function_in_backtrace() { |
||
6721 | |||
6722 | /** |
||
6723 | * Given a minified path, and a non-minified path, will return |
||
6724 | * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy. |
||
6725 | * |
||
6726 | * Both `$min_base` and `$non_min_base` are expected to be relative to the |
||
6727 | * root Jetpack directory. |
||
6728 | * |
||
6729 | * @since 5.6.0 |
||
6730 | * |
||
6731 | * @param string $min_path |
||
6732 | * @param string $non_min_path |
||
6733 | * @return string The URL to the file |
||
6734 | */ |
||
6735 | public static function get_file_url_for_environment( $min_path, $non_min_path ) { |
||
6738 | |||
6739 | /** |
||
6740 | * Checks for whether Jetpack Backup & Scan is enabled. |
||
6741 | * Will return true if the state of Backup & Scan is anything except "unavailable". |
||
6742 | * @return bool|int|mixed |
||
6743 | */ |
||
6744 | public static function is_rewind_enabled() { |
||
6763 | |||
6764 | /** |
||
6765 | * Return Calypso environment value; used for developing Jetpack and pairing |
||
6766 | * it with different Calypso enrionments, such as localhost. |
||
6767 | * |
||
6768 | * @since 7.4.0 |
||
6769 | * |
||
6770 | * @return string Calypso environment |
||
6771 | */ |
||
6772 | public static function get_calypso_env() { |
||
6787 | |||
6788 | /** |
||
6789 | * Checks whether or not TOS has been agreed upon. |
||
6790 | * Will return true if a user has clicked to register, or is already connected. |
||
6791 | */ |
||
6792 | public static function jetpack_tos_agreed() { |
||
6795 | |||
6796 | /** |
||
6797 | * Handles activating default modules as well general cleanup for the new connection. |
||
6798 | * |
||
6799 | * @param boolean $activate_sso Whether to activate the SSO module when activating default modules. |
||
6800 | * @param boolean $redirect_on_activation_error Whether to redirect on activation error. |
||
6801 | * @param boolean $send_state_messages Whether to send state messages. |
||
6802 | * @return void |
||
6803 | */ |
||
6804 | public static function handle_post_authorization_actions( |
||
6833 | |||
6834 | /** |
||
6835 | * Returns a boolean for whether backups UI should be displayed or not. |
||
6836 | * |
||
6837 | * @return bool Should backups UI be displayed? |
||
6838 | */ |
||
6839 | public static function show_backups_ui() { |
||
6849 | |||
6850 | /* |
||
6851 | * Deprecated manage functions |
||
6852 | */ |
||
6853 | function prepare_manage_jetpack_notice() { |
||
6874 | |||
6875 | /** |
||
6876 | * Clean leftoveruser meta. |
||
6877 | * |
||
6878 | * Delete Jetpack-related user meta when it is no longer needed. |
||
6879 | * |
||
6880 | * @since 7.3.0 |
||
6881 | * |
||
6882 | * @param int $user_id User ID being updated. |
||
6883 | */ |
||
6884 | public static function user_meta_cleanup( $user_id ) { |
||
6899 | |||
6900 | function is_active_and_not_development_mode( $maybe ) { |
||
6906 | } |
||
6907 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.