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 |
||
27 | class Jetpack { |
||
28 | public $xmlrpc_server = null; |
||
29 | |||
30 | private $xmlrpc_verification = null; |
||
31 | private $rest_authentication_status = null; |
||
32 | |||
33 | public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA'] |
||
34 | |||
35 | /** |
||
36 | * @var array The handles of styles that are concatenated into jetpack.css |
||
37 | */ |
||
38 | public $concatenated_style_handles = array( |
||
39 | 'jetpack-carousel', |
||
40 | 'grunion.css', |
||
41 | 'the-neverending-homepage', |
||
42 | 'jetpack_likes', |
||
43 | 'jetpack_related-posts', |
||
44 | 'sharedaddy', |
||
45 | 'jetpack-slideshow', |
||
46 | 'presentations', |
||
47 | 'jetpack-subscriptions', |
||
48 | 'jetpack-responsive-videos-style', |
||
49 | 'jetpack-social-menu', |
||
50 | 'tiled-gallery', |
||
51 | 'jetpack_display_posts_widget', |
||
52 | 'gravatar-profile-widget', |
||
53 | 'goodreads-widget', |
||
54 | 'jetpack_social_media_icons_widget', |
||
55 | 'jetpack-top-posts-widget', |
||
56 | 'jetpack_image_widget', |
||
57 | 'jetpack-my-community-widget', |
||
58 | 'wordads', |
||
59 | 'eu-cookie-law-style', |
||
60 | 'flickr-widget-style', |
||
61 | 'jetpack-search-widget', |
||
62 | 'jetpack-simple-payments-widget-style', |
||
63 | ); |
||
64 | |||
65 | /** |
||
66 | * Contains all assets that have had their URL rewritten to minified versions. |
||
67 | * |
||
68 | * @var array |
||
69 | */ |
||
70 | static $min_assets = array(); |
||
|
|||
71 | |||
72 | public $plugins_to_deactivate = array( |
||
73 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
74 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
75 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), |
||
76 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), |
||
77 | 'after-the-deadline' => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ), |
||
78 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), |
||
79 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), |
||
80 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), |
||
81 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), |
||
82 | 'videopress' => array( 'video/video.php', 'VideoPress' ), |
||
83 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), |
||
84 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), |
||
85 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), |
||
86 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), |
||
87 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) |
||
88 | ); |
||
89 | |||
90 | static $capability_translations = array( |
||
91 | 'administrator' => 'manage_options', |
||
92 | 'editor' => 'edit_others_posts', |
||
93 | 'author' => 'publish_posts', |
||
94 | 'contributor' => 'edit_posts', |
||
95 | 'subscriber' => 'read', |
||
96 | ); |
||
97 | |||
98 | /** |
||
99 | * Map of modules that have conflicts with plugins and should not be auto-activated |
||
100 | * if the plugins are active. Used by filter_default_modules |
||
101 | * |
||
102 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, |
||
103 | * change `module-slug` and add this to your plugin: |
||
104 | * |
||
105 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); |
||
106 | * function my_jetpack_get_default_modules( $modules ) { |
||
107 | * return array_diff( $modules, array( 'module-slug' ) ); |
||
108 | * } |
||
109 | * |
||
110 | * @var array |
||
111 | */ |
||
112 | private $conflicting_plugins = array( |
||
113 | 'comments' => array( |
||
114 | 'Intense Debate' => 'intensedebate/intensedebate.php', |
||
115 | 'Disqus' => 'disqus-comment-system/disqus.php', |
||
116 | 'Livefyre' => 'livefyre-comments/livefyre.php', |
||
117 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', |
||
118 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', |
||
119 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', |
||
120 | ), |
||
121 | 'comment-likes' => array( |
||
122 | 'Epoch' => 'epoch/plugincore.php', |
||
123 | ), |
||
124 | 'contact-form' => array( |
||
125 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', |
||
126 | 'Gravity Forms' => 'gravityforms/gravityforms.php', |
||
127 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', |
||
128 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', |
||
129 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', |
||
130 | 'Ninja Forms' => 'ninja-forms/ninja-forms.php', |
||
131 | ), |
||
132 | 'minileven' => array( |
||
133 | 'WPtouch' => 'wptouch/wptouch.php', |
||
134 | ), |
||
135 | 'latex' => array( |
||
136 | 'LaTeX for WordPress' => 'latex/latex.php', |
||
137 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', |
||
138 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', |
||
139 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', |
||
140 | 'Enable Latex' => 'enable-latex/enable-latex.php', |
||
141 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', |
||
142 | ), |
||
143 | 'protect' => array( |
||
144 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', |
||
145 | 'Captcha' => 'captcha/captcha.php', |
||
146 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', |
||
147 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', |
||
148 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', |
||
149 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', |
||
150 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', |
||
151 | 'Security-protection' => 'security-protection/security-protection.php', |
||
152 | 'Login Security' => 'login-security/login-security.php', |
||
153 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', |
||
154 | 'Wordfence Security' => 'wordfence/wordfence.php', |
||
155 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', |
||
156 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', |
||
157 | ), |
||
158 | 'random-redirect' => array( |
||
159 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', |
||
160 | ), |
||
161 | 'related-posts' => array( |
||
162 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', |
||
163 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', |
||
164 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', |
||
165 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', |
||
166 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', |
||
167 | 'outbrain' => 'outbrain/outbrain.php', |
||
168 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
169 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', |
||
170 | ), |
||
171 | 'sharedaddy' => array( |
||
172 | 'AddThis' => 'addthis/addthis_social_widget.php', |
||
173 | 'Add To Any' => 'add-to-any/add-to-any.php', |
||
174 | 'ShareThis' => 'share-this/sharethis.php', |
||
175 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
176 | ), |
||
177 | 'seo-tools' => array( |
||
178 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
179 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
180 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
181 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
182 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
183 | ), |
||
184 | 'verification-tools' => array( |
||
185 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
186 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
187 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
188 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
189 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
190 | ), |
||
191 | 'widget-visibility' => array( |
||
192 | 'Widget Logic' => 'widget-logic/widget_logic.php', |
||
193 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', |
||
194 | ), |
||
195 | 'sitemaps' => array( |
||
196 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', |
||
197 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', |
||
198 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', |
||
199 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', |
||
200 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', |
||
201 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
202 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
203 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
204 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
205 | 'The SEO Framework' => 'autodescription/autodescription.php', |
||
206 | 'Sitemap' => 'sitemap/sitemap.php', |
||
207 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', |
||
208 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', |
||
209 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', |
||
210 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', |
||
211 | ), |
||
212 | 'lazy-images' => array( |
||
213 | 'Lazy Load' => 'lazy-load/lazy-load.php', |
||
214 | 'BJ Lazy Load' => 'bj-lazy-load/bj-lazy-load.php', |
||
215 | 'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php', |
||
216 | ), |
||
217 | ); |
||
218 | |||
219 | /** |
||
220 | * Plugins for which we turn off our Facebook OG Tags implementation. |
||
221 | * |
||
222 | * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate |
||
223 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. |
||
224 | * |
||
225 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: |
||
226 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); |
||
227 | */ |
||
228 | private $open_graph_conflicting_plugins = array( |
||
229 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', |
||
230 | // 2 Click Social Media Buttons |
||
231 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook |
||
232 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags |
||
233 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail |
||
234 | 'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php', |
||
235 | // Open Graph Meta Tags by Heateor |
||
236 | 'facebook/facebook.php', // Facebook (official plugin) |
||
237 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one |
||
238 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', |
||
239 | // Facebook Featured Image & OG Meta Tags |
||
240 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags |
||
241 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', |
||
242 | // Facebook Open Graph Meta Tags for WordPress |
||
243 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag |
||
244 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer |
||
245 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', |
||
246 | // Fedmich's Facebook Open Graph Meta |
||
247 | 'network-publisher/networkpub.php', // Network Publisher |
||
248 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG |
||
249 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', |
||
250 | // NextScripts SNAP |
||
251 | 'og-tags/og-tags.php', // OG Tags |
||
252 | 'opengraph/opengraph.php', // Open Graph |
||
253 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', |
||
254 | // Open Graph Protocol Framework |
||
255 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments |
||
256 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate |
||
257 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic |
||
258 | 'shareaholic/sexy-bookmarks.php', // Shareaholic |
||
259 | 'sharepress/sharepress.php', // SharePress |
||
260 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect |
||
261 | 'social-discussions/social-discussions.php', // Social Discussions |
||
262 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit |
||
263 | 'socialize/socialize.php', // Socialize |
||
264 | 'squirrly-seo/squirrly.php', // SEO by SQUIRRLY™ |
||
265 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', |
||
266 | // Tweet, Like, Google +1 and Share |
||
267 | 'wordbooker/wordbooker.php', // Wordbooker |
||
268 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization |
||
269 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver |
||
270 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', |
||
271 | // WP Facebook Like Send & Open Graph Meta |
||
272 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol |
||
273 | 'wp-ogp/wp-ogp.php', // WP-OGP |
||
274 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin |
||
275 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button |
||
276 | 'open-graph-metabox/open-graph-metabox.php' // Open Graph Metabox |
||
277 | ); |
||
278 | |||
279 | /** |
||
280 | * Plugins for which we turn off our Twitter Cards Tags implementation. |
||
281 | */ |
||
282 | private $twitter_cards_conflicting_plugins = array( |
||
283 | // 'twitter/twitter.php', // The official one handles this on its own. |
||
284 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php |
||
285 | 'eewee-twitter-card/index.php', // Eewee Twitter Card |
||
286 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards |
||
287 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards |
||
288 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', |
||
289 | // Pure Web Brilliant's Social Graph Twitter Cards Extension |
||
290 | 'twitter-cards/twitter-cards.php', // Twitter Cards |
||
291 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta |
||
292 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards |
||
293 | ); |
||
294 | |||
295 | /** |
||
296 | * Message to display in admin_notice |
||
297 | * @var string |
||
298 | */ |
||
299 | public $message = ''; |
||
300 | |||
301 | /** |
||
302 | * Error to display in admin_notice |
||
303 | * @var string |
||
304 | */ |
||
305 | public $error = ''; |
||
306 | |||
307 | /** |
||
308 | * Modules that need more privacy description. |
||
309 | * @var string |
||
310 | */ |
||
311 | public $privacy_checks = ''; |
||
312 | |||
313 | /** |
||
314 | * Stats to record once the page loads |
||
315 | * |
||
316 | * @var array |
||
317 | */ |
||
318 | public $stats = array(); |
||
319 | |||
320 | /** |
||
321 | * Jetpack_Sync object |
||
322 | */ |
||
323 | public $sync; |
||
324 | |||
325 | /** |
||
326 | * Verified data for JSON authorization request |
||
327 | */ |
||
328 | public $json_api_authorization_request = array(); |
||
329 | |||
330 | /** |
||
331 | * @var string Transient key used to prevent multiple simultaneous plugin upgrades |
||
332 | */ |
||
333 | public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock'; |
||
334 | |||
335 | /** |
||
336 | * Holds the singleton instance of this class |
||
337 | * @since 2.3.3 |
||
338 | * @var Jetpack |
||
339 | */ |
||
340 | static $instance = false; |
||
341 | |||
342 | /** |
||
343 | * Singleton |
||
344 | * @static |
||
345 | */ |
||
346 | public static function init() { |
||
355 | |||
356 | /** |
||
357 | * Must never be called statically |
||
358 | */ |
||
359 | function plugin_upgrade() { |
||
402 | |||
403 | /** |
||
404 | * Runs upgrade routines that need to have modules loaded. |
||
405 | */ |
||
406 | static function upgrade_on_load() { |
||
433 | |||
434 | static function activate_manage( ) { |
||
441 | |||
442 | static function update_active_modules( $modules ) { |
||
496 | |||
497 | static function delete_active_modules() { |
||
500 | |||
501 | /** |
||
502 | * Constructor. Initializes WordPress hooks |
||
503 | */ |
||
504 | private function __construct() { |
||
694 | |||
695 | function point_edit_post_links_to_calypso( $default_url, $post_id ) { |
||
723 | |||
724 | function point_edit_comment_links_to_calypso( $url ) { |
||
732 | |||
733 | function jetpack_track_last_sync_callback( $params ) { |
||
755 | |||
756 | function jetpack_connection_banner_callback() { |
||
766 | |||
767 | function jetpack_admin_ajax_tracks_callback() { |
||
790 | |||
791 | /** |
||
792 | * The callback for the JITM ajax requests. |
||
793 | */ |
||
794 | function jetpack_jitm_ajax_callback() { |
||
851 | |||
852 | /** |
||
853 | * If there are any stats that need to be pushed, but haven't been, push them now. |
||
854 | */ |
||
855 | function push_stats() { |
||
860 | |||
861 | function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { |
||
927 | |||
928 | function require_jetpack_authentication() { |
||
939 | |||
940 | /** |
||
941 | * Load language files |
||
942 | * @action plugins_loaded |
||
943 | */ |
||
944 | public static function plugin_textdomain() { |
||
948 | |||
949 | /** |
||
950 | * Register assets for use in various modules and the Jetpack admin page. |
||
951 | * |
||
952 | * @uses wp_script_is, wp_register_script, plugins_url |
||
953 | * @action wp_loaded |
||
954 | * @return null |
||
955 | */ |
||
956 | public function register_assets() { |
||
1035 | |||
1036 | /** |
||
1037 | * Guess locale from language code. |
||
1038 | * |
||
1039 | * @param string $lang Language code. |
||
1040 | * @return string|bool |
||
1041 | */ |
||
1042 | View Code Duplication | function guess_locale_from_lang( $lang ) { |
|
1081 | |||
1082 | /** |
||
1083 | * Get the locale. |
||
1084 | * |
||
1085 | * @return string|bool |
||
1086 | */ |
||
1087 | function get_locale() { |
||
1096 | |||
1097 | /** |
||
1098 | * Device Pixels support |
||
1099 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. |
||
1100 | */ |
||
1101 | function devicepx() { |
||
1106 | |||
1107 | /** |
||
1108 | * Return the network_site_url so that .com knows what network this site is a part of. |
||
1109 | * @param bool $option |
||
1110 | * @return string |
||
1111 | */ |
||
1112 | public function jetpack_main_network_site_option( $option ) { |
||
1115 | /** |
||
1116 | * Network Name. |
||
1117 | */ |
||
1118 | static function network_name( $option = null ) { |
||
1122 | /** |
||
1123 | * Does the network allow new user and site registrations. |
||
1124 | * @return string |
||
1125 | */ |
||
1126 | static function network_allow_new_registrations( $option = null ) { |
||
1129 | /** |
||
1130 | * Does the network allow admins to add new users. |
||
1131 | * @return boolian |
||
1132 | */ |
||
1133 | static function network_add_new_users( $option = null ) { |
||
1136 | /** |
||
1137 | * File upload psace left per site in MB. |
||
1138 | * -1 means NO LIMIT. |
||
1139 | * @return number |
||
1140 | */ |
||
1141 | static function network_site_upload_space( $option = null ) { |
||
1145 | |||
1146 | /** |
||
1147 | * Network allowed file types. |
||
1148 | * @return string |
||
1149 | */ |
||
1150 | static function network_upload_file_types( $option = null ) { |
||
1153 | |||
1154 | /** |
||
1155 | * Maximum file upload size set by the network. |
||
1156 | * @return number |
||
1157 | */ |
||
1158 | static function network_max_upload_file_size( $option = null ) { |
||
1162 | |||
1163 | /** |
||
1164 | * Lets us know if a site allows admins to manage the network. |
||
1165 | * @return array |
||
1166 | */ |
||
1167 | static function network_enable_administration_menus( $option = null ) { |
||
1170 | |||
1171 | /** |
||
1172 | * If a user has been promoted to or demoted from admin, we need to clear the |
||
1173 | * jetpack_other_linked_admins transient. |
||
1174 | * |
||
1175 | * @since 4.3.2 |
||
1176 | * @since 4.4.0 $old_roles is null by default and if it's not passed, the transient is cleared. |
||
1177 | * |
||
1178 | * @param int $user_id The user ID whose role changed. |
||
1179 | * @param string $role The new role. |
||
1180 | * @param array $old_roles An array of the user's previous roles. |
||
1181 | */ |
||
1182 | function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) { |
||
1190 | |||
1191 | /** |
||
1192 | * Checks to see if there are any other users available to become primary |
||
1193 | * Users must both: |
||
1194 | * - Be linked to wpcom |
||
1195 | * - Be an admin |
||
1196 | * |
||
1197 | * @return mixed False if no other users are linked, Int if there are. |
||
1198 | */ |
||
1199 | static function get_other_linked_admins() { |
||
1227 | |||
1228 | /** |
||
1229 | * Return whether we are dealing with a multi network setup or not. |
||
1230 | * The reason we are type casting this is because we want to avoid the situation where |
||
1231 | * the result is false since when is_main_network_option return false it cases |
||
1232 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the |
||
1233 | * database which could be set to anything as opposed to what this function returns. |
||
1234 | * @param bool $option |
||
1235 | * |
||
1236 | * @return boolean |
||
1237 | */ |
||
1238 | public function is_main_network_option( $option ) { |
||
1242 | |||
1243 | /** |
||
1244 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
||
1245 | * |
||
1246 | * @param string $option |
||
1247 | * @return boolean |
||
1248 | */ |
||
1249 | public function is_multisite( $option ) { |
||
1252 | |||
1253 | /** |
||
1254 | * Implemented since there is no core is multi network function |
||
1255 | * Right now there is no way to tell if we which network is the dominant network on the system |
||
1256 | * |
||
1257 | * @since 3.3 |
||
1258 | * @return boolean |
||
1259 | */ |
||
1260 | public static function is_multi_network() { |
||
1275 | |||
1276 | /** |
||
1277 | * Trigger an update to the main_network_site when we update the siteurl of a site. |
||
1278 | * @return null |
||
1279 | */ |
||
1280 | function update_jetpack_main_network_site_option() { |
||
1283 | /** |
||
1284 | * Triggered after a user updates the network settings via Network Settings Admin Page |
||
1285 | * |
||
1286 | */ |
||
1287 | function update_jetpack_network_settings() { |
||
1291 | |||
1292 | /** |
||
1293 | * Get back if the current site is single user site. |
||
1294 | * |
||
1295 | * @return bool |
||
1296 | */ |
||
1297 | public static function is_single_user_site() { |
||
1306 | |||
1307 | /** |
||
1308 | * Returns true if the site has file write access false otherwise. |
||
1309 | * @return string ( '1' | '0' ) |
||
1310 | **/ |
||
1311 | public static function file_system_write_access() { |
||
1331 | |||
1332 | /** |
||
1333 | * Finds out if a site is using a version control system. |
||
1334 | * @return string ( '1' | '0' ) |
||
1335 | **/ |
||
1336 | public static function is_version_controlled() { |
||
1340 | |||
1341 | /** |
||
1342 | * Determines whether the current theme supports featured images or not. |
||
1343 | * @return string ( '1' | '0' ) |
||
1344 | */ |
||
1345 | public static function featured_images_enabled() { |
||
1349 | |||
1350 | /** |
||
1351 | * Wrapper for core's get_avatar_url(). This one is deprecated. |
||
1352 | * |
||
1353 | * @deprecated 4.7 use get_avatar_url instead. |
||
1354 | * @param int|string|object $id_or_email A user ID, email address, or comment object |
||
1355 | * @param int $size Size of the avatar image |
||
1356 | * @param string $default URL to a default image to use if no avatar is available |
||
1357 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled |
||
1358 | * |
||
1359 | * @return array |
||
1360 | */ |
||
1361 | public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { |
||
1369 | |||
1370 | /** |
||
1371 | * jetpack_updates is saved in the following schema: |
||
1372 | * |
||
1373 | * array ( |
||
1374 | * 'plugins' => (int) Number of plugin updates available. |
||
1375 | * 'themes' => (int) Number of theme updates available. |
||
1376 | * 'wordpress' => (int) Number of WordPress core updates available. |
||
1377 | * 'translations' => (int) Number of translation updates available. |
||
1378 | * 'total' => (int) Total of all available updates. |
||
1379 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. |
||
1380 | * ) |
||
1381 | * @return array |
||
1382 | */ |
||
1383 | public static function get_updates() { |
||
1400 | |||
1401 | public static function get_update_details() { |
||
1409 | |||
1410 | public static function refresh_update_data() { |
||
1414 | |||
1415 | public static function refresh_theme_data() { |
||
1418 | |||
1419 | /** |
||
1420 | * Is Jetpack active? |
||
1421 | */ |
||
1422 | public static function is_active() { |
||
1425 | |||
1426 | /** |
||
1427 | * Make an API call to WordPress.com for plan status |
||
1428 | * |
||
1429 | * @uses Jetpack_Options::get_option() |
||
1430 | * @uses Jetpack_Client::wpcom_json_api_request_as_blog() |
||
1431 | * @uses update_option() |
||
1432 | * |
||
1433 | * @access public |
||
1434 | * @static |
||
1435 | * |
||
1436 | * @return bool True if plan is updated, false if no update |
||
1437 | */ |
||
1438 | public static function refresh_active_plan_from_wpcom() { |
||
1459 | |||
1460 | /** |
||
1461 | * Get the plan that this Jetpack site is currently using |
||
1462 | * |
||
1463 | * @uses get_option() |
||
1464 | * |
||
1465 | * @access public |
||
1466 | * @static |
||
1467 | * |
||
1468 | * @return array Active Jetpack plan details |
||
1469 | */ |
||
1470 | public static function get_active_plan() { |
||
1553 | |||
1554 | /** |
||
1555 | * Determine whether the active plan supports a particular feature |
||
1556 | * |
||
1557 | * @uses Jetpack::get_active_plan() |
||
1558 | * |
||
1559 | * @access public |
||
1560 | * @static |
||
1561 | * |
||
1562 | * @return bool True if plan supports feature, false if not |
||
1563 | */ |
||
1564 | public static function active_plan_supports( $feature ) { |
||
1589 | |||
1590 | /** |
||
1591 | * Is Jetpack in development (offline) mode? |
||
1592 | */ |
||
1593 | public static function is_development_mode() { |
||
1614 | |||
1615 | /** |
||
1616 | * Whether the site is currently onboarding or not. |
||
1617 | * A site is considered as being onboarded if it currently has an onboarding token. |
||
1618 | * |
||
1619 | * @since 5.8 |
||
1620 | * |
||
1621 | * @access public |
||
1622 | * @static |
||
1623 | * |
||
1624 | * @return bool True if the site is currently onboarding, false otherwise |
||
1625 | */ |
||
1626 | public static function is_onboarding() { |
||
1629 | |||
1630 | /** |
||
1631 | * Get Jetpack development mode notice text and notice class. |
||
1632 | * |
||
1633 | * Mirrors the checks made in Jetpack::is_development_mode |
||
1634 | * |
||
1635 | */ |
||
1636 | public static function show_development_mode_notice() { |
||
1676 | |||
1677 | /** |
||
1678 | * Whether Jetpack's version maps to a public release, or a development version. |
||
1679 | */ |
||
1680 | public static function is_development_version() { |
||
1695 | |||
1696 | /** |
||
1697 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? |
||
1698 | */ |
||
1699 | public static function is_user_connected( $user_id = false ) { |
||
1707 | |||
1708 | /** |
||
1709 | * Get the wpcom user data of the current|specified connected user. |
||
1710 | */ |
||
1711 | public static function get_connected_user_data( $user_id = null ) { |
||
1735 | |||
1736 | /** |
||
1737 | * Get the wpcom email of the current|specified connected user. |
||
1738 | */ |
||
1739 | View Code Duplication | public static function get_connected_user_email( $user_id = null ) { |
|
1753 | |||
1754 | /** |
||
1755 | * Get the wpcom email of the master user. |
||
1756 | */ |
||
1757 | public static function get_master_user_email() { |
||
1764 | |||
1765 | function current_user_is_connection_owner() { |
||
1769 | |||
1770 | /** |
||
1771 | * Gets current user IP address. |
||
1772 | * |
||
1773 | * @param bool $check_all_headers Check all headers? Default is `false`. |
||
1774 | * |
||
1775 | * @return string Current user IP address. |
||
1776 | */ |
||
1777 | public static function current_user_ip( $check_all_headers = false ) { |
||
1797 | |||
1798 | /** |
||
1799 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. |
||
1800 | */ |
||
1801 | function extra_oembed_providers() { |
||
1810 | |||
1811 | /** |
||
1812 | * Synchronize connected user role changes |
||
1813 | */ |
||
1814 | function user_role_change( $user_id ) { |
||
1818 | |||
1819 | /** |
||
1820 | * Loads the currently active modules. |
||
1821 | */ |
||
1822 | public static function load_modules() { |
||
1911 | |||
1912 | /** |
||
1913 | * Check if Jetpack's REST API compat file should be included |
||
1914 | * @action plugins_loaded |
||
1915 | * @return null |
||
1916 | */ |
||
1917 | public function check_rest_api_compat() { |
||
1933 | |||
1934 | /** |
||
1935 | * Gets all plugins currently active in values, regardless of whether they're |
||
1936 | * traditionally activated or network activated. |
||
1937 | * |
||
1938 | * @todo Store the result in core's object cache maybe? |
||
1939 | */ |
||
1940 | public static function get_active_plugins() { |
||
1956 | |||
1957 | /** |
||
1958 | * Gets and parses additional plugin data to send with the heartbeat data |
||
1959 | * |
||
1960 | * @since 3.8.1 |
||
1961 | * |
||
1962 | * @return array Array of plugin data |
||
1963 | */ |
||
1964 | public static function get_parsed_plugin_data() { |
||
1985 | |||
1986 | /** |
||
1987 | * Gets and parses theme data to send with the heartbeat data |
||
1988 | * |
||
1989 | * @since 3.8.1 |
||
1990 | * |
||
1991 | * @return array Array of theme data |
||
1992 | */ |
||
1993 | public static function get_parsed_theme_data() { |
||
2015 | |||
2016 | /** |
||
2017 | * Checks whether a specific plugin is active. |
||
2018 | * |
||
2019 | * We don't want to store these in a static variable, in case |
||
2020 | * there are switch_to_blog() calls involved. |
||
2021 | */ |
||
2022 | public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { |
||
2025 | |||
2026 | /** |
||
2027 | * Check if Jetpack's Open Graph tags should be used. |
||
2028 | * If certain plugins are active, Jetpack's og tags are suppressed. |
||
2029 | * |
||
2030 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
2031 | * @action plugins_loaded |
||
2032 | * @return null |
||
2033 | */ |
||
2034 | public function check_open_graph() { |
||
2061 | |||
2062 | /** |
||
2063 | * Check if Jetpack's Twitter tags should be used. |
||
2064 | * If certain plugins are active, Jetpack's twitter tags are suppressed. |
||
2065 | * |
||
2066 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
2067 | * @action plugins_loaded |
||
2068 | * @return null |
||
2069 | */ |
||
2070 | public function check_twitter_tags() { |
||
2094 | |||
2095 | /** |
||
2096 | * Allows plugins to submit security reports. |
||
2097 | * |
||
2098 | * @param string $type Report type (login_form, backup, file_scanning, spam) |
||
2099 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data |
||
2100 | * @param array $args See definitions above |
||
2101 | */ |
||
2102 | public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { |
||
2105 | |||
2106 | /* Jetpack Options API */ |
||
2107 | |||
2108 | public static function get_option_names( $type = 'compact' ) { |
||
2111 | |||
2112 | /** |
||
2113 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. |
||
2114 | * |
||
2115 | * @param string $name Option name |
||
2116 | * @param mixed $default (optional) |
||
2117 | */ |
||
2118 | public static function get_option( $name, $default = false ) { |
||
2121 | |||
2122 | /** |
||
2123 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. |
||
2124 | * |
||
2125 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. |
||
2126 | * @param string $name Option name |
||
2127 | * @param mixed $value Option value |
||
2128 | */ |
||
2129 | public static function update_option( $name, $value ) { |
||
2133 | |||
2134 | /** |
||
2135 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. |
||
2136 | * |
||
2137 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. |
||
2138 | * @param array $array array( option name => option value, ... ) |
||
2139 | */ |
||
2140 | public static function update_options( $array ) { |
||
2144 | |||
2145 | /** |
||
2146 | * Deletes the given option. May be passed multiple option names as an array. |
||
2147 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. |
||
2148 | * |
||
2149 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. |
||
2150 | * @param string|array $names |
||
2151 | */ |
||
2152 | public static function delete_option( $names ) { |
||
2156 | |||
2157 | /** |
||
2158 | * Enters a user token into the user_tokens option |
||
2159 | * |
||
2160 | * @param int $user_id |
||
2161 | * @param string $token |
||
2162 | * return bool |
||
2163 | */ |
||
2164 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
||
2178 | |||
2179 | /** |
||
2180 | * Returns an array of all PHP files in the specified absolute path. |
||
2181 | * Equivalent to glob( "$absolute_path/*.php" ). |
||
2182 | * |
||
2183 | * @param string $absolute_path The absolute path of the directory to search. |
||
2184 | * @return array Array of absolute paths to the PHP files. |
||
2185 | */ |
||
2186 | public static function glob_php( $absolute_path ) { |
||
2215 | |||
2216 | public static function activate_new_modules( $redirect = false ) { |
||
2274 | |||
2275 | /** |
||
2276 | * List available Jetpack modules. Simply lists .php files in /modules/. |
||
2277 | * Make sure to tuck away module "library" files in a sub-directory. |
||
2278 | */ |
||
2279 | public static function get_available_modules( $min_version = false, $max_version = false ) { |
||
2336 | |||
2337 | /** |
||
2338 | * Default modules loaded on activation. |
||
2339 | */ |
||
2340 | public static function get_default_modules( $min_version = false, $max_version = false ) { |
||
2371 | |||
2372 | /** |
||
2373 | * Checks activated modules during auto-activation to determine |
||
2374 | * if any of those modules are being deprecated. If so, close |
||
2375 | * them out, and add any replacement modules. |
||
2376 | * |
||
2377 | * Runs at priority 99 by default. |
||
2378 | * |
||
2379 | * This is run late, so that it can still activate a module if |
||
2380 | * the new module is a replacement for another that the user |
||
2381 | * currently has active, even if something at the normal priority |
||
2382 | * would kibosh everything. |
||
2383 | * |
||
2384 | * @since 2.6 |
||
2385 | * @uses jetpack_get_default_modules filter |
||
2386 | * @param array $modules |
||
2387 | * @return array |
||
2388 | */ |
||
2389 | function handle_deprecated_modules( $modules ) { |
||
2415 | |||
2416 | /** |
||
2417 | * Checks activated plugins during auto-activation to determine |
||
2418 | * if any of those plugins are in the list with a corresponding module |
||
2419 | * that is not compatible with the plugin. The module will not be allowed |
||
2420 | * to auto-activate. |
||
2421 | * |
||
2422 | * @since 2.6 |
||
2423 | * @uses jetpack_get_default_modules filter |
||
2424 | * @param array $modules |
||
2425 | * @return array |
||
2426 | */ |
||
2427 | function filter_default_modules( $modules ) { |
||
2451 | |||
2452 | /** |
||
2453 | * Extract a module's slug from its full path. |
||
2454 | */ |
||
2455 | public static function get_module_slug( $file ) { |
||
2458 | |||
2459 | /** |
||
2460 | * Generate a module's path from its slug. |
||
2461 | */ |
||
2462 | public static function get_module_path( $slug ) { |
||
2465 | |||
2466 | /** |
||
2467 | * Load module data from module file. Headers differ from WordPress |
||
2468 | * plugin headers to avoid them being identified as standalone |
||
2469 | * plugins on the WordPress plugins page. |
||
2470 | */ |
||
2471 | public static function get_module( $module ) { |
||
2562 | |||
2563 | /** |
||
2564 | * Like core's get_file_data implementation, but caches the result. |
||
2565 | */ |
||
2566 | public static function get_file_data( $file, $headers ) { |
||
2594 | |||
2595 | |||
2596 | /** |
||
2597 | * Return translated module tag. |
||
2598 | * |
||
2599 | * @param string $tag Tag as it appears in each module heading. |
||
2600 | * |
||
2601 | * @return mixed |
||
2602 | */ |
||
2603 | public static function translate_module_tag( $tag ) { |
||
2606 | |||
2607 | /** |
||
2608 | * Get i18n strings as a JSON-encoded string |
||
2609 | * |
||
2610 | * @return string The locale as JSON |
||
2611 | */ |
||
2612 | public static function get_i18n_data_json() { |
||
2630 | |||
2631 | /** |
||
2632 | * Return module name translation. Uses matching string created in modules/module-headings.php. |
||
2633 | * |
||
2634 | * @since 3.9.2 |
||
2635 | * |
||
2636 | * @param array $modules |
||
2637 | * |
||
2638 | * @return string|void |
||
2639 | */ |
||
2640 | public static function get_translated_modules( $modules ) { |
||
2653 | |||
2654 | /** |
||
2655 | * Get a list of activated modules as an array of module slugs. |
||
2656 | */ |
||
2657 | public static function get_active_modules() { |
||
2689 | |||
2690 | /** |
||
2691 | * Check whether or not a Jetpack module is active. |
||
2692 | * |
||
2693 | * @param string $module The slug of a Jetpack module. |
||
2694 | * @return bool |
||
2695 | * |
||
2696 | * @static |
||
2697 | */ |
||
2698 | public static function is_module_active( $module ) { |
||
2701 | |||
2702 | public static function is_module( $module ) { |
||
2705 | |||
2706 | /** |
||
2707 | * Catches PHP errors. Must be used in conjunction with output buffering. |
||
2708 | * |
||
2709 | * @param bool $catch True to start catching, False to stop. |
||
2710 | * |
||
2711 | * @static |
||
2712 | */ |
||
2713 | public static function catch_errors( $catch ) { |
||
2726 | |||
2727 | /** |
||
2728 | * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) |
||
2729 | */ |
||
2730 | public static function catch_errors_on_shutdown() { |
||
2733 | |||
2734 | /** |
||
2735 | * Rewrite any string to make paths easier to read. |
||
2736 | * |
||
2737 | * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR |
||
2738 | * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR. |
||
2739 | * |
||
2740 | * @param $string |
||
2741 | * @return mixed |
||
2742 | */ |
||
2743 | public static function alias_directories( $string ) { |
||
2751 | |||
2752 | public static function activate_default_modules( |
||
2888 | |||
2889 | public static function activate_module( $module, $exit = true, $redirect = true ) { |
||
2986 | |||
2987 | function activate_module_actions( $module ) { |
||
2990 | |||
2991 | public static function deactivate_module( $module ) { |
||
3018 | |||
3019 | public static function enable_module_configurable( $module ) { |
||
3023 | |||
3024 | public static function module_configuration_url( $module ) { |
||
3028 | |||
3029 | public static function module_configuration_load( $module, $method ) { |
||
3033 | |||
3034 | public static function module_configuration_head( $module, $method ) { |
||
3038 | |||
3039 | public static function module_configuration_screen( $module, $method ) { |
||
3043 | |||
3044 | public static function module_configuration_activation_screen( $module, $method ) { |
||
3048 | |||
3049 | /* Installation */ |
||
3050 | |||
3051 | public static function bail_on_activation( $message, $deactivate = true ) { |
||
3091 | |||
3092 | /** |
||
3093 | * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() |
||
3094 | * @static |
||
3095 | */ |
||
3096 | public static function plugin_activation( $network_wide ) { |
||
3113 | |||
3114 | public static function get_activation_source( $referer_url ) { |
||
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 ) { |
||
3177 | |||
3178 | /** |
||
3179 | * Sets the internal version number and activation state. |
||
3180 | * @static |
||
3181 | */ |
||
3182 | public static function plugin_initialize() { |
||
3199 | |||
3200 | /** |
||
3201 | * Removes all connection options |
||
3202 | * @static |
||
3203 | */ |
||
3204 | public static function plugin_deactivation( ) { |
||
3213 | |||
3214 | /** |
||
3215 | * Disconnects from the Jetpack servers. |
||
3216 | * Forgets all connection details and tells the Jetpack servers to do the same. |
||
3217 | * @static |
||
3218 | */ |
||
3219 | public static function disconnect( $update_activated_state = true ) { |
||
3280 | |||
3281 | /** |
||
3282 | * Unlinks the current user from the linked WordPress.com user |
||
3283 | */ |
||
3284 | public static function unlink_user( $user_id = null ) { |
||
3315 | |||
3316 | /** |
||
3317 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() |
||
3318 | */ |
||
3319 | public static function try_registration() { |
||
3347 | |||
3348 | /** |
||
3349 | * Tracking an internal event log. Try not to put too much chaff in here. |
||
3350 | * |
||
3351 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) |
||
3352 | */ |
||
3353 | public static function log( $code, $data = null ) { |
||
3393 | |||
3394 | /** |
||
3395 | * Get the internal event log. |
||
3396 | * |
||
3397 | * @param $event (string) - only return the specific log events |
||
3398 | * @param $num (int) - get specific number of latest results, limited to 200 |
||
3399 | * |
||
3400 | * @return array of log events || WP_Error for invalid params |
||
3401 | */ |
||
3402 | public static function get_log( $event = false, $num = false ) { |
||
3438 | |||
3439 | /** |
||
3440 | * Log modification of important settings. |
||
3441 | */ |
||
3442 | public static function log_settings_change( $option, $old_value, $value ) { |
||
3449 | |||
3450 | /** |
||
3451 | * Return stat data for WPCOM sync |
||
3452 | */ |
||
3453 | public static function get_stat_data( $encode = true, $extended = true ) { |
||
3467 | |||
3468 | /** |
||
3469 | * Get additional stat data to sync to WPCOM |
||
3470 | */ |
||
3471 | public static function get_additional_stat_data( $prefix = '' ) { |
||
3482 | |||
3483 | private static function get_site_user_count() { |
||
3498 | |||
3499 | /* Admin Pages */ |
||
3500 | |||
3501 | function admin_init() { |
||
3550 | |||
3551 | function admin_body_class( $admin_body_class = '' ) { |
||
3559 | |||
3560 | static function add_jetpack_pagestyles( $admin_body_class = '' ) { |
||
3563 | |||
3564 | /** |
||
3565 | * Call this function if you want the Big Jetpack Manage Notice to show up. |
||
3566 | * |
||
3567 | * @return null |
||
3568 | */ |
||
3569 | function prepare_manage_jetpack_notice() { |
||
3574 | |||
3575 | function manage_activate_screen() { |
||
3578 | /** |
||
3579 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. |
||
3580 | * This function artificially throws errors for such cases (whitelisted). |
||
3581 | * |
||
3582 | * @param string $plugin The activated plugin. |
||
3583 | */ |
||
3584 | function throw_error_on_activate_plugin( $plugin ) { |
||
3608 | |||
3609 | function intercept_plugin_error_scrape_init() { |
||
3612 | |||
3613 | function intercept_plugin_error_scrape( $action, $result ) { |
||
3624 | |||
3625 | function add_remote_request_handlers() { |
||
3629 | |||
3630 | function remote_request_handlers() { |
||
3670 | |||
3671 | /** |
||
3672 | * Uploads a file gotten from the global $_FILES. |
||
3673 | * If `$update_media_item` is true and `post_id` is defined |
||
3674 | * the attachment file of the media item (gotten through of the post_id) |
||
3675 | * will be updated instead of add a new one. |
||
3676 | * |
||
3677 | * @param boolean $update_media_item - update media attachment |
||
3678 | * @return array - An array describing the uploadind files process |
||
3679 | */ |
||
3680 | function upload_handler( $update_media_item = false ) { |
||
3802 | |||
3803 | /** |
||
3804 | * Add help to the Jetpack page |
||
3805 | * |
||
3806 | * @since Jetpack (1.2.3) |
||
3807 | * @return false if not the Jetpack page |
||
3808 | */ |
||
3809 | function admin_help() { |
||
3850 | |||
3851 | function admin_menu_css() { |
||
3854 | |||
3855 | function admin_menu_order() { |
||
3858 | |||
3859 | function enqueue_gutenberg_locale() { |
||
3865 | |||
3866 | View Code Duplication | function jetpack_menu_order( $menu_order ) { |
|
3881 | |||
3882 | function admin_head() { |
||
3887 | |||
3888 | function admin_banner_styles() { |
||
3909 | |||
3910 | function plugin_action_links( $actions ) { |
||
3925 | |||
3926 | /** |
||
3927 | * This is the first banner |
||
3928 | * It should be visible only to user that can update the option |
||
3929 | * Are not connected |
||
3930 | * |
||
3931 | * @return null |
||
3932 | */ |
||
3933 | function admin_jetpack_manage_notice() { |
||
3963 | |||
3964 | /** |
||
3965 | * Returns the url that the user clicks to remove the notice for the big banner |
||
3966 | * @return string |
||
3967 | */ |
||
3968 | function opt_out_jetpack_manage_url() { |
||
3972 | /** |
||
3973 | * Returns the url that the user clicks to opt in to Jetpack Manage |
||
3974 | * @return string |
||
3975 | */ |
||
3976 | function opt_in_jetpack_manage_url() { |
||
3979 | |||
3980 | function opt_in_jetpack_manage_notice() { |
||
3990 | /** |
||
3991 | * Determines whether to show the notice of not true = display notice |
||
3992 | * @return bool |
||
3993 | */ |
||
3994 | function can_display_jetpack_manage_notice() { |
||
4016 | |||
4017 | /* |
||
4018 | * Registration flow: |
||
4019 | * 1 - ::admin_page_load() action=register |
||
4020 | * 2 - ::try_registration() |
||
4021 | * 3 - ::register() |
||
4022 | * - Creates jetpack_register option containing two secrets and a timestamp |
||
4023 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with |
||
4024 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id |
||
4025 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's |
||
4026 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 |
||
4027 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 |
||
4028 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with |
||
4029 | * jetpack_id, jetpack_secret, jetpack_public |
||
4030 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret |
||
4031 | * 4 - redirect to https://wordpress.com/start/jetpack-connect |
||
4032 | * 5 - user logs in with WP.com account |
||
4033 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize |
||
4034 | * - Jetpack_Client_Server::authorize() |
||
4035 | * - Jetpack_Client_Server::get_token() |
||
4036 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with |
||
4037 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login |
||
4038 | * - which responds with access_token, token_type, scope |
||
4039 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id |
||
4040 | * - Jetpack::activate_default_modules() |
||
4041 | * - Deactivates deprecated plugins |
||
4042 | * - Activates all default modules |
||
4043 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users |
||
4044 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com |
||
4045 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized |
||
4046 | * Done! |
||
4047 | */ |
||
4048 | |||
4049 | /** |
||
4050 | * Handles the page load events for the Jetpack admin page |
||
4051 | */ |
||
4052 | function admin_page_load() { |
||
4327 | |||
4328 | function admin_notices() { |
||
4425 | |||
4426 | /** |
||
4427 | * Record a stat for later output. This will only currently output in the admin_footer. |
||
4428 | */ |
||
4429 | function stat( $group, $detail ) { |
||
4434 | |||
4435 | /** |
||
4436 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" |
||
4437 | */ |
||
4438 | function do_stats( $method = '' ) { |
||
4453 | |||
4454 | /** |
||
4455 | * Runs stats code for a one-off, server-side. |
||
4456 | * |
||
4457 | * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. |
||
4458 | * |
||
4459 | * @return bool If it worked. |
||
4460 | */ |
||
4461 | static function do_server_side_stat( $args ) { |
||
4471 | |||
4472 | /** |
||
4473 | * Builds the stats url. |
||
4474 | * |
||
4475 | * @param $args array|string The arguments to append to the URL. |
||
4476 | * |
||
4477 | * @return string The URL to be pinged. |
||
4478 | */ |
||
4479 | static function build_stats_url( $args ) { |
||
4499 | |||
4500 | static function translate_current_user_to_role() { |
||
4509 | |||
4510 | static function translate_user_to_role( $user ) { |
||
4519 | |||
4520 | static function translate_role_to_cap( $role ) { |
||
4527 | |||
4528 | static function sign_role( $role, $user_id = null ) { |
||
4544 | |||
4545 | |||
4546 | /** |
||
4547 | * Builds a URL to the Jetpack connection auth page |
||
4548 | * |
||
4549 | * @since 3.9.5 |
||
4550 | * |
||
4551 | * @param bool $raw If true, URL will not be escaped. |
||
4552 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. |
||
4553 | * If string, will be a custom redirect. |
||
4554 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. |
||
4555 | * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0 |
||
4556 | * |
||
4557 | * @return string Connect URL |
||
4558 | */ |
||
4559 | function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) { |
||
4680 | |||
4681 | public static function apply_activation_source_to_args( &$args ) { |
||
4692 | |||
4693 | function build_reconnect_url( $raw = false ) { |
||
4697 | |||
4698 | public static function admin_url( $args = null ) { |
||
4703 | |||
4704 | public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { |
||
4708 | |||
4709 | function dismiss_jetpack_notice() { |
||
4783 | |||
4784 | public static function admin_screen_configure_module( $module_id ) { |
||
4785 | |||
4786 | // User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them. |
||
4787 | if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) { |
||
4788 | if ( has_action( 'display_activate_module_setting_' . $module_id ) ) { |
||
4789 | /** |
||
4790 | * Fires to diplay a custom module activation screen. |
||
4791 | * |
||
4792 | * To add a module actionation screen use Jetpack::module_configuration_activation_screen method. |
||
4793 | * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) ); |
||
4794 | * |
||
4795 | * @module manage |
||
4796 | * |
||
4797 | * @since 3.8.0 |
||
4798 | * |
||
4799 | * @param int $module_id Module ID. |
||
4800 | */ |
||
4801 | do_action( 'display_activate_module_setting_' . $module_id ); |
||
4802 | } else { |
||
4803 | self::display_activate_module_link( $module_id ); |
||
4804 | } |
||
4805 | |||
4806 | return false; |
||
4807 | } ?> |
||
4808 | |||
4809 | <div id="jp-settings-screen" style="position: relative"> |
||
4810 | <h3> |
||
4811 | <?php |
||
4812 | $module = Jetpack::get_module( $module_id ); |
||
4813 | printf( __( 'Configure %s', 'jetpack' ), $module['name'] ); |
||
4814 | ?> |
||
4815 | </h3> |
||
4816 | <?php |
||
4817 | /** |
||
4818 | * Fires within the displayed message when a feature configuation is updated. |
||
4819 | * |
||
4820 | * @since 3.4.0 |
||
4821 | * |
||
4822 | * @param int $module_id Module ID. |
||
4823 | */ |
||
4824 | do_action( 'jetpack_notices_update_settings', $module_id ); |
||
4825 | /** |
||
4826 | * Fires when a feature configuation screen is loaded. |
||
4827 | * The dynamic part of the hook, $module_id, is the module ID. |
||
4828 | * |
||
4829 | * @since 1.1.0 |
||
4830 | */ |
||
4831 | do_action( 'jetpack_module_configuration_screen_' . $module_id ); |
||
4832 | ?> |
||
4833 | </div><?php |
||
4834 | } |
||
4835 | |||
4836 | /** |
||
4837 | * Display link to activate the module to see the settings screen. |
||
4838 | * @param string $module_id |
||
4839 | * @return null |
||
4840 | */ |
||
4841 | public static function display_activate_module_link( $module_id ) { |
||
4842 | |||
4843 | $info = Jetpack::get_module( $module_id ); |
||
4844 | $extra = ''; |
||
4845 | $activate_url = wp_nonce_url( |
||
4846 | Jetpack::admin_url( |
||
4847 | array( |
||
4848 | 'page' => 'jetpack', |
||
4849 | 'action' => 'activate', |
||
4850 | 'module' => $module_id, |
||
4851 | ) |
||
4852 | ), |
||
4853 | "jetpack_activate-$module_id" |
||
4854 | ); |
||
4855 | |||
4856 | ?> |
||
4857 | |||
4858 | <div class="wrap configure-module"> |
||
4859 | <div id="jp-settings-screen"> |
||
4860 | <?php |
||
4861 | if ( $module_id == 'json-api' ) { |
||
4862 | |||
4863 | $info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' ); |
||
4864 | |||
4865 | $activate_url = Jetpack::init()->opt_in_jetpack_manage_url(); |
||
4866 | |||
4867 | $info['description'] = sprintf( __( 'Manage your multiple Jetpack sites from our centralized dashboard at wordpress.com/sites. <a href="%s" target="_blank">Learn more</a>.', 'jetpack' ), 'https://jetpack.com/support/site-management' ); |
||
4868 | |||
4869 | // $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' ); |
||
4870 | } ?> |
||
4871 | |||
4872 | <h3><?php echo esc_html( $info['name'] ); ?></h3> |
||
4873 | <div class="narrow"> |
||
4874 | <p><?php echo $info['description']; ?></p> |
||
4875 | <?php if( $extra ) { ?> |
||
4876 | <p><?php echo esc_html( $extra ); ?></p> |
||
4877 | <?php } ?> |
||
4878 | <p> |
||
4879 | <?php |
||
4880 | if( wp_get_referer() ) { |
||
4881 | printf( __( '<a class="button-primary" href="%s">Activate Now</a> or <a href="%s" >return to previous page</a>.', 'jetpack' ) , $activate_url, wp_get_referer() ); |
||
4882 | } else { |
||
4883 | printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url ); |
||
4884 | } ?> |
||
4885 | </p> |
||
4886 | </div> |
||
4887 | |||
4888 | </div> |
||
4889 | </div> |
||
4890 | |||
4891 | <?php |
||
4892 | } |
||
4893 | |||
4894 | public static function sort_modules( $a, $b ) { |
||
4895 | if ( $a['sort'] == $b['sort'] ) |
||
4896 | return 0; |
||
4897 | |||
4898 | return ( $a['sort'] < $b['sort'] ) ? -1 : 1; |
||
4899 | } |
||
4900 | |||
4901 | function ajax_recheck_ssl() { |
||
4902 | check_ajax_referer( 'recheck-ssl', 'ajax-nonce' ); |
||
4903 | $result = Jetpack::permit_ssl( true ); |
||
4904 | wp_send_json( array( |
||
4905 | 'enabled' => $result, |
||
4906 | 'message' => get_transient( 'jetpack_https_test_message' ) |
||
4907 | ) ); |
||
4908 | } |
||
4909 | |||
4910 | /* Client API */ |
||
4911 | |||
4912 | /** |
||
4913 | * Returns the requested Jetpack API URL |
||
4914 | * |
||
4915 | * @return string |
||
4916 | */ |
||
4917 | public static function api_url( $relative_url ) { |
||
4918 | return trailingslashit( JETPACK__API_BASE . $relative_url ) . JETPACK__API_VERSION . '/'; |
||
4919 | } |
||
4920 | |||
4921 | /** |
||
4922 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets |
||
4923 | */ |
||
4924 | public static function fix_url_for_bad_hosts( $url ) { |
||
4925 | if ( 0 !== strpos( $url, 'https://' ) ) { |
||
4926 | return $url; |
||
4927 | } |
||
4928 | |||
4929 | switch ( JETPACK_CLIENT__HTTPS ) { |
||
4930 | case 'ALWAYS' : |
||
4931 | return $url; |
||
4932 | case 'NEVER' : |
||
4933 | return set_url_scheme( $url, 'http' ); |
||
4934 | // default : case 'AUTO' : |
||
4935 | } |
||
4936 | |||
4937 | // we now return the unmodified SSL URL by default, as a security precaution |
||
4938 | return $url; |
||
4939 | } |
||
4940 | |||
4941 | /** |
||
4942 | * Create a random secret for validating onboarding payload |
||
4943 | * |
||
4944 | * @return string Secret token |
||
4945 | */ |
||
4946 | public static function create_onboarding_token() { |
||
4947 | if ( false === ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) { |
||
4948 | $token = wp_generate_password( 32, false ); |
||
4949 | Jetpack_Options::update_option( 'onboarding', $token ); |
||
4950 | } |
||
4951 | |||
4952 | return $token; |
||
4953 | } |
||
4954 | |||
4955 | /** |
||
4956 | * Remove the onboarding token |
||
4957 | * |
||
4958 | * @return bool True on success, false on failure |
||
4959 | */ |
||
4960 | public static function invalidate_onboarding_token() { |
||
4961 | return Jetpack_Options::delete_option( 'onboarding' ); |
||
4962 | } |
||
4963 | |||
4964 | /** |
||
4965 | * Validate an onboarding token for a specific action |
||
4966 | * |
||
4967 | * @return boolean True if token/action pair is accepted, false if not |
||
4968 | */ |
||
4969 | public static function validate_onboarding_token_action( $token, $action ) { |
||
4970 | // Compare tokens, bail if tokens do not match |
||
4971 | if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) { // phpcs:ignore PHPCompatibility -- skipping since `hash_equals` is part of WP core |
||
4972 | return false; |
||
4973 | } |
||
4974 | |||
4975 | // List of valid actions we can take |
||
4976 | $valid_actions = array( |
||
4977 | '/jetpack/v4/settings', |
||
4978 | ); |
||
4979 | |||
4980 | // Whitelist the action |
||
4981 | if ( ! in_array( $action, $valid_actions ) ) { |
||
4982 | return false; |
||
4983 | } |
||
4984 | |||
4985 | return true; |
||
4986 | } |
||
4987 | |||
4988 | /** |
||
4989 | * Checks to see if the URL is using SSL to connect with Jetpack |
||
4990 | * |
||
4991 | * @since 2.3.3 |
||
4992 | * @return boolean |
||
4993 | */ |
||
4994 | public static function permit_ssl( $force_recheck = false ) { |
||
4995 | // Do some fancy tests to see if ssl is being supported |
||
4996 | if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) { |
||
4997 | $message = ''; |
||
4998 | if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) { |
||
4999 | $ssl = 0; |
||
5000 | } else { |
||
5001 | switch ( JETPACK_CLIENT__HTTPS ) { |
||
5002 | case 'NEVER': |
||
5003 | $ssl = 0; |
||
5004 | $message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' ); |
||
5005 | break; |
||
5006 | case 'ALWAYS': |
||
5007 | case 'AUTO': |
||
5008 | default: |
||
5009 | $ssl = 1; |
||
5010 | break; |
||
5011 | } |
||
5012 | |||
5013 | // If it's not 'NEVER', test to see |
||
5014 | if ( $ssl ) { |
||
5015 | if ( ! wp_http_supports( array( 'ssl' => true ) ) ) { |
||
5016 | $ssl = 0; |
||
5017 | $message = __( 'WordPress reports no SSL support', 'jetpack' ); |
||
5018 | } else { |
||
5019 | $response = wp_remote_get( JETPACK__API_BASE . 'test/1/' ); |
||
5020 | if ( is_wp_error( $response ) ) { |
||
5021 | $ssl = 0; |
||
5022 | $message = __( 'WordPress reports no SSL support', 'jetpack' ); |
||
5023 | } elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) { |
||
5024 | $ssl = 0; |
||
5025 | $message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response ); |
||
5026 | } |
||
5027 | } |
||
5028 | } |
||
5029 | } |
||
5030 | set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS ); |
||
5031 | set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS ); |
||
5032 | } |
||
5033 | |||
5034 | return (bool) $ssl; |
||
5035 | } |
||
5036 | |||
5037 | /* |
||
5038 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. |
||
5039 | */ |
||
5040 | public function alert_auto_ssl_fail() { |
||
5041 | if ( ! current_user_can( 'manage_options' ) ) |
||
5042 | return; |
||
5043 | |||
5044 | $ajax_nonce = wp_create_nonce( 'recheck-ssl' ); |
||
5045 | ?> |
||
5046 | |||
5047 | <div id="jetpack-ssl-warning" class="error jp-identity-crisis"> |
||
5048 | <div class="jp-banner__content"> |
||
5049 | <h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2> |
||
5050 | <p><?php _e( 'Your site could not connect to WordPress.com via HTTPS. This could be due to any number of reasons, including faulty SSL certificates, misconfigured or missing SSL libraries, or network issues.', 'jetpack' ); ?></p> |
||
5051 | <p> |
||
5052 | <?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?> |
||
5053 | <a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a> |
||
5054 | <span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span> |
||
5055 | </p> |
||
5056 | <p> |
||
5057 | <?php printf( __( 'For more help, try our <a href="%1$s">connection debugger</a> or <a href="%2$s" target="_blank">troubleshooting tips</a>.', 'jetpack' ), |
||
5058 | esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' ) ) ), |
||
5059 | esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?> |
||
5060 | </p> |
||
5061 | </div> |
||
5062 | </div> |
||
5063 | <style> |
||
5064 | #jetpack-recheck-ssl-output { margin-left: 5px; color: red; } |
||
5065 | </style> |
||
5066 | <script type="text/javascript"> |
||
5067 | jQuery( document ).ready( function( $ ) { |
||
5068 | $( '#jetpack-recheck-ssl-button' ).click( function( e ) { |
||
5069 | var $this = $( this ); |
||
5070 | $this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> ); |
||
5071 | $( '#jetpack-recheck-ssl-output' ).html( '' ); |
||
5072 | e.preventDefault(); |
||
5073 | var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' }; |
||
5074 | $.post( ajaxurl, data ) |
||
5075 | .done( function( response ) { |
||
5076 | if ( response.enabled ) { |
||
5077 | $( '#jetpack-ssl-warning' ).hide(); |
||
5078 | } else { |
||
5079 | this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> ); |
||
5080 | $( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message ); |
||
5081 | } |
||
5082 | }.bind( $this ) ); |
||
5083 | } ); |
||
5084 | } ); |
||
5085 | </script> |
||
5086 | |||
5087 | <?php |
||
5088 | } |
||
5089 | |||
5090 | /** |
||
5091 | * Returns the Jetpack XML-RPC API |
||
5092 | * |
||
5093 | * @return string |
||
5094 | */ |
||
5095 | public static function xmlrpc_api_url() { |
||
5096 | $base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE ); |
||
5097 | return untrailingslashit( $base ) . '/xmlrpc.php'; |
||
5098 | } |
||
5099 | |||
5100 | /** |
||
5101 | * Creates two secret tokens and the end of life timestamp for them. |
||
5102 | * |
||
5103 | * Note these tokens are unique per call, NOT static per site for connecting. |
||
5104 | * |
||
5105 | * @since 2.6 |
||
5106 | * @return array |
||
5107 | */ |
||
5108 | public static function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
||
5109 | if ( ! $user_id ) { |
||
5110 | $user_id = get_current_user_id(); |
||
5111 | } |
||
5112 | |||
5113 | $secret_name = 'jetpack_' . $action . '_' . $user_id; |
||
5114 | $secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() ); |
||
5115 | |||
5116 | if ( |
||
5117 | isset( $secrets[ $secret_name ] ) && |
||
5118 | $secrets[ $secret_name ]['exp'] > time() |
||
5119 | ) { |
||
5120 | return $secrets[ $secret_name ]; |
||
5121 | } |
||
5122 | |||
5123 | $secret_value = array( |
||
5124 | 'secret_1' => wp_generate_password( 32, false ), |
||
5125 | 'secret_2' => wp_generate_password( 32, false ), |
||
5126 | 'exp' => time() + $exp, |
||
5127 | ); |
||
5128 | |||
5129 | $secrets[ $secret_name ] = $secret_value; |
||
5130 | |||
5131 | Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets ); |
||
5132 | return $secrets[ $secret_name ]; |
||
5133 | } |
||
5134 | |||
5135 | public static function get_secrets( $action, $user_id ) { |
||
5136 | $secret_name = 'jetpack_' . $action . '_' . $user_id; |
||
5137 | $secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() ); |
||
5138 | |||
5139 | if ( ! isset( $secrets[ $secret_name ] ) ) { |
||
5140 | return new WP_Error( 'verify_secrets_missing', 'Verification secrets not found' ); |
||
5141 | } |
||
5142 | |||
5143 | if ( $secrets[ $secret_name ]['exp'] < time() ) { |
||
5144 | self::delete_secrets( $action, $user_id ); |
||
5145 | return new WP_Error( 'verify_secrets_expired', 'Verification took too long' ); |
||
5146 | } |
||
5147 | |||
5148 | return $secrets[ $secret_name ]; |
||
5149 | } |
||
5150 | |||
5151 | public static function delete_secrets( $action, $user_id ) { |
||
5152 | $secret_name = 'jetpack_' . $action . '_' . $user_id; |
||
5153 | $secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() ); |
||
5154 | if ( isset( $secrets[ $secret_name ] ) ) { |
||
5155 | unset( $secrets[ $secret_name ] ); |
||
5156 | Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets ); |
||
5157 | } |
||
5158 | } |
||
5159 | |||
5160 | /** |
||
5161 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
5162 | * |
||
5163 | * Based on local php max_execution_time in php.ini |
||
5164 | * |
||
5165 | * @since 2.6 |
||
5166 | * @return int |
||
5167 | * @deprecated |
||
5168 | **/ |
||
5169 | public function get_remote_query_timeout_limit() { |
||
5170 | _deprecated_function( __METHOD__, 'jetpack-5.4' ); |
||
5171 | return Jetpack::get_max_execution_time(); |
||
5172 | } |
||
5173 | |||
5174 | /** |
||
5175 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
5176 | * |
||
5177 | * Based on local php max_execution_time in php.ini |
||
5178 | * |
||
5179 | * @since 5.4 |
||
5180 | * @return int |
||
5181 | **/ |
||
5182 | public static function get_max_execution_time() { |
||
5183 | $timeout = (int) ini_get( 'max_execution_time' ); |
||
5184 | |||
5185 | // Ensure exec time set in php.ini |
||
5186 | if ( ! $timeout ) { |
||
5187 | $timeout = 30; |
||
5188 | } |
||
5189 | return $timeout; |
||
5190 | } |
||
5191 | |||
5192 | /** |
||
5193 | * Sets a minimum request timeout, and returns the current timeout |
||
5194 | * |
||
5195 | * @since 5.4 |
||
5196 | **/ |
||
5197 | public static function set_min_time_limit( $min_timeout ) { |
||
5198 | $timeout = self::get_max_execution_time(); |
||
5199 | if ( $timeout < $min_timeout ) { |
||
5200 | $timeout = $min_timeout; |
||
5201 | set_time_limit( $timeout ); |
||
5202 | } |
||
5203 | return $timeout; |
||
5204 | } |
||
5205 | |||
5206 | |||
5207 | /** |
||
5208 | * Takes the response from the Jetpack register new site endpoint and |
||
5209 | * verifies it worked properly. |
||
5210 | * |
||
5211 | * @since 2.6 |
||
5212 | * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures |
||
5213 | **/ |
||
5214 | public function validate_remote_register_response( $response ) { |
||
5215 | if ( is_wp_error( $response ) ) { |
||
5216 | return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() ); |
||
5217 | } |
||
5218 | |||
5219 | $code = wp_remote_retrieve_response_code( $response ); |
||
5220 | $entity = wp_remote_retrieve_body( $response ); |
||
5221 | if ( $entity ) |
||
5222 | $registration_response = json_decode( $entity ); |
||
5223 | else |
||
5224 | $registration_response = false; |
||
5225 | |||
5226 | $code_type = intval( $code / 100 ); |
||
5227 | if ( 5 == $code_type ) { |
||
5228 | return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code ); |
||
5229 | } elseif ( 408 == $code ) { |
||
5230 | return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code ); |
||
5231 | } elseif ( ! empty( $registration_response->error ) ) { |
||
5232 | if ( 'xml_rpc-32700' == $registration_response->error && ! function_exists( 'xml_parser_create' ) ) { |
||
5233 | $error_description = __( "PHP's XML extension is not available. Jetpack requires the XML extension to communicate with WordPress.com. Please contact your hosting provider to enable PHP's XML extension.", 'jetpack' ); |
||
5234 | } else { |
||
5235 | $error_description = isset( $registration_response->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $registration_response->error_description ) : ''; |
||
5236 | } |
||
5237 | |||
5238 | return new Jetpack_Error( (string) $registration_response->error, $error_description, $code ); |
||
5239 | } elseif ( 200 != $code ) { |
||
5240 | return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code ); |
||
5241 | } |
||
5242 | |||
5243 | // Jetpack ID error block |
||
5244 | if ( empty( $registration_response->jetpack_id ) ) { |
||
5245 | return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity ); |
||
5246 | } elseif ( ! is_scalar( $registration_response->jetpack_id ) ) { |
||
5247 | return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is not a scalar. Do not publicly post this error message! %s', 'jetpack' ) , $entity ), $entity ); |
||
5248 | } elseif ( preg_match( '/[^0-9]/', $registration_response->jetpack_id ) ) { |
||
5249 | return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID begins with a numeral. Do not publicly post this error message! %s', 'jetpack' ) , $entity ), $entity ); |
||
5250 | } |
||
5251 | |||
5252 | return $registration_response; |
||
5253 | } |
||
5254 | /** |
||
5255 | * @return bool|WP_Error |
||
5256 | */ |
||
5257 | public static function register() { |
||
5258 | JetpackTracking::record_user_event( 'jpc_register_begin' ); |
||
5259 | add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) ); |
||
5260 | $secrets = Jetpack::generate_secrets( 'register' ); |
||
5261 | |||
5262 | View Code Duplication | if ( |
|
5263 | empty( $secrets['secret_1'] ) || |
||
5264 | empty( $secrets['secret_2'] ) || |
||
5265 | empty( $secrets['exp'] ) |
||
5266 | ) { |
||
5267 | return new Jetpack_Error( 'missing_secrets' ); |
||
5268 | } |
||
5269 | |||
5270 | // better to try (and fail) to set a higher timeout than this system |
||
5271 | // supports than to have register fail for more users than it should |
||
5272 | $timeout = Jetpack::set_min_time_limit( 60 ) / 2; |
||
5273 | |||
5274 | $gmt_offset = get_option( 'gmt_offset' ); |
||
5275 | if ( ! $gmt_offset ) { |
||
5276 | $gmt_offset = 0; |
||
5277 | } |
||
5278 | |||
5279 | $stats_options = get_option( 'stats_options' ); |
||
5280 | $stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null; |
||
5281 | |||
5282 | $tracks_identity = jetpack_tracks_get_identity( get_current_user_id() ); |
||
5283 | |||
5284 | $args = array( |
||
5285 | 'method' => 'POST', |
||
5286 | 'body' => array( |
||
5287 | 'siteurl' => site_url(), |
||
5288 | 'home' => home_url(), |
||
5289 | 'gmt_offset' => $gmt_offset, |
||
5290 | 'timezone_string' => (string) get_option( 'timezone_string' ), |
||
5291 | 'site_name' => (string) get_option( 'blogname' ), |
||
5292 | 'secret_1' => $secrets['secret_1'], |
||
5293 | 'secret_2' => $secrets['secret_2'], |
||
5294 | 'site_lang' => get_locale(), |
||
5295 | 'timeout' => $timeout, |
||
5296 | 'stats_id' => $stats_id, |
||
5297 | 'state' => get_current_user_id(), |
||
5298 | '_ui' => $tracks_identity['_ui'], |
||
5299 | '_ut' => $tracks_identity['_ut'], |
||
5300 | 'jetpack_version' => JETPACK__VERSION |
||
5301 | ), |
||
5302 | 'headers' => array( |
||
5303 | 'Accept' => 'application/json', |
||
5304 | ), |
||
5305 | 'timeout' => $timeout, |
||
5306 | ); |
||
5307 | |||
5308 | self::apply_activation_source_to_args( $args['body'] ); |
||
5309 | |||
5310 | $response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true ); |
||
5311 | |||
5312 | // Make sure the response is valid and does not contain any Jetpack errors |
||
5313 | $registration_details = Jetpack::init()->validate_remote_register_response( $response ); |
||
5314 | if ( is_wp_error( $registration_details ) ) { |
||
5315 | return $registration_details; |
||
5316 | } elseif ( ! $registration_details ) { |
||
5317 | return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) ); |
||
5318 | } |
||
5319 | |||
5320 | View Code Duplication | if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) { |
|
5321 | return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) ); |
||
5322 | } |
||
5323 | |||
5324 | if ( isset( $registration_details->jetpack_public ) ) { |
||
5325 | $jetpack_public = (int) $registration_details->jetpack_public; |
||
5326 | } else { |
||
5327 | $jetpack_public = false; |
||
5328 | } |
||
5329 | |||
5330 | Jetpack_Options::update_options( |
||
5331 | array( |
||
5332 | 'id' => (int) $registration_details->jetpack_id, |
||
5333 | 'blog_token' => (string) $registration_details->jetpack_secret, |
||
5334 | 'public' => $jetpack_public, |
||
5335 | ) |
||
5336 | ); |
||
5337 | |||
5338 | /** |
||
5339 | * Fires when a site is registered on WordPress.com. |
||
5340 | * |
||
5341 | * @since 3.7.0 |
||
5342 | * |
||
5343 | * @param int $json->jetpack_id Jetpack Blog ID. |
||
5344 | * @param string $json->jetpack_secret Jetpack Blog Token. |
||
5345 | * @param int|bool $jetpack_public Is the site public. |
||
5346 | */ |
||
5347 | do_action( 'jetpack_site_registered', $registration_details->jetpack_id, $registration_details->jetpack_secret, $jetpack_public ); |
||
5348 | |||
5349 | // Initialize Jump Start for the first and only time. |
||
5350 | if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) { |
||
5351 | Jetpack_Options::update_option( 'jumpstart', 'new_connection' ); |
||
5352 | |||
5353 | $jetpack = Jetpack::init(); |
||
5354 | |||
5355 | $jetpack->stat( 'jumpstart', 'unique-views' ); |
||
5356 | $jetpack->do_stats( 'server_side' ); |
||
5357 | }; |
||
5358 | |||
5359 | return true; |
||
5360 | } |
||
5361 | |||
5362 | /** |
||
5363 | * If the db version is showing something other that what we've got now, bump it to current. |
||
5364 | * |
||
5365 | * @return bool: True if the option was incorrect and updated, false if nothing happened. |
||
5366 | */ |
||
5367 | public static function maybe_set_version_option() { |
||
5368 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
5369 | if ( JETPACK__VERSION != $version ) { |
||
5370 | Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() ); |
||
5371 | |||
5372 | if ( version_compare( JETPACK__VERSION, $version, '>' ) ) { |
||
5373 | /** This action is documented in class.jetpack.php */ |
||
5374 | do_action( 'updating_jetpack_version', JETPACK__VERSION, $version ); |
||
5375 | } |
||
5376 | |||
5377 | return true; |
||
5378 | } |
||
5379 | return false; |
||
5380 | } |
||
5381 | |||
5382 | /* Client Server API */ |
||
5383 | |||
5384 | /** |
||
5385 | * Loads the Jetpack XML-RPC client |
||
5386 | */ |
||
5387 | public static function load_xml_rpc_client() { |
||
5388 | require_once ABSPATH . WPINC . '/class-IXR.php'; |
||
5389 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php'; |
||
5390 | } |
||
5391 | |||
5392 | /** |
||
5393 | * Resets the saved authentication state in between testing requests. |
||
5394 | */ |
||
5395 | public function reset_saved_auth_state() { |
||
5396 | $this->xmlrpc_verification = null; |
||
5397 | $this->rest_authentication_status = null; |
||
5398 | } |
||
5399 | |||
5400 | function verify_xml_rpc_signature() { |
||
5401 | if ( $this->xmlrpc_verification ) { |
||
5402 | return $this->xmlrpc_verification; |
||
5403 | } |
||
5404 | |||
5405 | // It's not for us |
||
5406 | if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) { |
||
5407 | return false; |
||
5408 | } |
||
5409 | |||
5410 | @list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] ); |
||
5411 | if ( |
||
5412 | empty( $token_key ) |
||
5413 | || |
||
5414 | empty( $version ) || strval( JETPACK__API_VERSION ) !== $version |
||
5415 | ) { |
||
5416 | return false; |
||
5417 | } |
||
5418 | |||
5419 | if ( '0' === $user_id ) { |
||
5420 | $token_type = 'blog'; |
||
5421 | $user_id = 0; |
||
5422 | } else { |
||
5423 | $token_type = 'user'; |
||
5424 | if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) { |
||
5425 | return false; |
||
5426 | } |
||
5427 | $user_id = (int) $user_id; |
||
5428 | |||
5429 | $user = new WP_User( $user_id ); |
||
5430 | if ( ! $user || ! $user->exists() ) { |
||
5431 | return false; |
||
5432 | } |
||
5433 | } |
||
5434 | |||
5435 | $token = Jetpack_Data::get_access_token( $user_id ); |
||
5436 | if ( ! $token ) { |
||
5437 | return false; |
||
5438 | } |
||
5439 | |||
5440 | $token_check = "$token_key."; |
||
5441 | if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) { // phpcs:ignore PHPCompatibility -- skipping since `hash_equals` is part of WP core |
||
5442 | return false; |
||
5443 | } |
||
5444 | |||
5445 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php'; |
||
5446 | |||
5447 | $jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) ); |
||
5448 | if ( isset( $_POST['_jetpack_is_multipart'] ) ) { |
||
5449 | $post_data = $_POST; |
||
5450 | $file_hashes = array(); |
||
5451 | foreach ( $post_data as $post_data_key => $post_data_value ) { |
||
5452 | if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) { |
||
5453 | continue; |
||
5454 | } |
||
5455 | $post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) ); |
||
5456 | $file_hashes[$post_data_key] = $post_data_value; |
||
5457 | } |
||
5458 | |||
5459 | foreach ( $file_hashes as $post_data_key => $post_data_value ) { |
||
5460 | unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] ); |
||
5461 | $post_data[$post_data_key] = $post_data_value; |
||
5462 | } |
||
5463 | |||
5464 | ksort( $post_data ); |
||
5465 | |||
5466 | $body = http_build_query( stripslashes_deep( $post_data ) ); |
||
5467 | } elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) { |
||
5468 | $body = file_get_contents( 'php://input' ); |
||
5469 | } else { |
||
5470 | $body = null; |
||
5471 | } |
||
5472 | |||
5473 | $signature = $jetpack_signature->sign_current_request( |
||
5474 | array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, ) |
||
5475 | ); |
||
5476 | |||
5477 | if ( ! $signature ) { |
||
5478 | return false; |
||
5479 | } else if ( is_wp_error( $signature ) ) { |
||
5480 | return $signature; |
||
5481 | } else if ( ! hash_equals( $signature, $_GET['signature'] ) ) { // phpcs:ignore PHPCompatibility -- skipping since `hash_equals` is part of WP core |
||
5482 | return false; |
||
5483 | } |
||
5484 | |||
5485 | $timestamp = (int) $_GET['timestamp']; |
||
5486 | $nonce = stripslashes( (string) $_GET['nonce'] ); |
||
5487 | |||
5488 | if ( ! $this->add_nonce( $timestamp, $nonce ) ) { |
||
5489 | return false; |
||
5490 | } |
||
5491 | |||
5492 | // Let's see if this is onboarding. In such case, use user token type and the provided user id. |
||
5493 | if ( isset( $this->HTTP_RAW_POST_DATA ) || ! empty( $_GET['onboarding'] ) ) { |
||
5494 | if ( ! empty( $_GET['onboarding'] ) ) { |
||
5495 | $jpo = $_GET; |
||
5496 | } else { |
||
5497 | $jpo = json_decode( $this->HTTP_RAW_POST_DATA, true ); |
||
5498 | } |
||
5499 | |||
5500 | $jpo_token = ! empty( $jpo['onboarding']['token'] ) ? $jpo['onboarding']['token'] : null; |
||
5501 | $jpo_user = ! empty( $jpo['onboarding']['jpUser'] ) ? $jpo['onboarding']['jpUser'] : null; |
||
5502 | |||
5503 | if ( |
||
5504 | isset( $jpo_user ) && isset( $jpo_token ) && |
||
5505 | is_email( $jpo_user ) && ctype_alnum( $jpo_token ) && |
||
5506 | isset( $_GET['rest_route'] ) && |
||
5507 | self::validate_onboarding_token_action( $jpo_token, $_GET['rest_route'] ) |
||
5508 | ) { |
||
5509 | $jpUser = get_user_by( 'email', $jpo_user ); |
||
5510 | if ( is_a( $jpUser, 'WP_User' ) ) { |
||
5511 | wp_set_current_user( $jpUser->ID ); |
||
5512 | $user_can = is_multisite() |
||
5513 | ? current_user_can_for_blog( get_current_blog_id(), 'manage_options' ) |
||
5514 | : current_user_can( 'manage_options' ); |
||
5515 | if ( $user_can ) { |
||
5516 | $token_type = 'user'; |
||
5517 | $token->external_user_id = $jpUser->ID; |
||
5518 | } |
||
5519 | } |
||
5520 | } |
||
5521 | } |
||
5522 | |||
5523 | $this->xmlrpc_verification = array( |
||
5524 | 'type' => $token_type, |
||
5525 | 'user_id' => $token->external_user_id, |
||
5526 | ); |
||
5527 | |||
5528 | return $this->xmlrpc_verification; |
||
5529 | } |
||
5530 | |||
5531 | /** |
||
5532 | * Authenticates XML-RPC and other requests from the Jetpack Server |
||
5533 | */ |
||
5534 | function authenticate_jetpack( $user, $username, $password ) { |
||
5535 | if ( is_a( $user, 'WP_User' ) ) { |
||
5536 | return $user; |
||
5537 | } |
||
5538 | |||
5539 | $token_details = $this->verify_xml_rpc_signature(); |
||
5540 | |||
5541 | if ( ! $token_details || is_wp_error( $token_details ) ) { |
||
5542 | return $user; |
||
5543 | } |
||
5544 | |||
5545 | if ( 'user' !== $token_details['type'] ) { |
||
5546 | return $user; |
||
5547 | } |
||
5548 | |||
5549 | if ( ! $token_details['user_id'] ) { |
||
5550 | return $user; |
||
5551 | } |
||
5552 | |||
5553 | nocache_headers(); |
||
5554 | |||
5555 | return new WP_User( $token_details['user_id'] ); |
||
5556 | } |
||
5557 | |||
5558 | // Authenticates requests from Jetpack server to WP REST API endpoints. |
||
5559 | // Uses the existing XMLRPC request signing implementation. |
||
5560 | function wp_rest_authenticate( $user ) { |
||
5561 | if ( ! empty( $user ) ) { |
||
5562 | // Another authentication method is in effect. |
||
5563 | return $user; |
||
5564 | } |
||
5565 | |||
5566 | if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) { |
||
5567 | // Nothing to do for this authentication method. |
||
5568 | return null; |
||
5569 | } |
||
5570 | |||
5571 | if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) { |
||
5572 | // Nothing to do for this authentication method. |
||
5573 | return null; |
||
5574 | } |
||
5575 | |||
5576 | // Ensure that we always have the request body available. At this |
||
5577 | // point, the WP REST API code to determine the request body has not |
||
5578 | // run yet. That code may try to read from 'php://input' later, but |
||
5579 | // this can only be done once per request in PHP versions prior to 5.6. |
||
5580 | // So we will go ahead and perform this read now if needed, and save |
||
5581 | // the request body where both the Jetpack signature verification code |
||
5582 | // and the WP REST API code can see it. |
||
5583 | if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) { |
||
5584 | $GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' ); |
||
5585 | } |
||
5586 | $this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA']; |
||
5587 | |||
5588 | // Only support specific request parameters that have been tested and |
||
5589 | // are known to work with signature verification. A different method |
||
5590 | // can be passed to the WP REST API via the '?_method=' parameter if |
||
5591 | // needed. |
||
5592 | if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) { |
||
5593 | $this->rest_authentication_status = new WP_Error( |
||
5594 | 'rest_invalid_request', |
||
5595 | __( 'This request method is not supported.', 'jetpack' ), |
||
5596 | array( 'status' => 400 ) |
||
5597 | ); |
||
5598 | return null; |
||
5599 | } |
||
5600 | if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) { |
||
5601 | $this->rest_authentication_status = new WP_Error( |
||
5602 | 'rest_invalid_request', |
||
5603 | __( 'This request method does not support body parameters.', 'jetpack' ), |
||
5604 | array( 'status' => 400 ) |
||
5605 | ); |
||
5606 | return null; |
||
5607 | } |
||
5608 | |||
5609 | if ( ! empty( $_SERVER['CONTENT_TYPE'] ) ) { |
||
5610 | $content_type = $_SERVER['CONTENT_TYPE']; |
||
5611 | } elseif ( ! empty( $_SERVER['HTTP_CONTENT_TYPE'] ) ) { |
||
5612 | $content_type = $_SERVER['HTTP_CONTENT_TYPE']; |
||
5613 | } |
||
5614 | |||
5615 | if ( |
||
5616 | isset( $content_type ) && |
||
5617 | $content_type !== 'application/x-www-form-urlencoded' && |
||
5618 | $content_type !== 'application/json' |
||
5619 | ) { |
||
5620 | $this->rest_authentication_status = new WP_Error( |
||
5621 | 'rest_invalid_request', |
||
5622 | __( 'This Content-Type is not supported.', 'jetpack' ), |
||
5623 | array( 'status' => 400 ) |
||
5624 | ); |
||
5625 | return null; |
||
5626 | } |
||
5627 | |||
5628 | $verified = $this->verify_xml_rpc_signature(); |
||
5629 | |||
5630 | if ( is_wp_error( $verified ) ) { |
||
5631 | $this->rest_authentication_status = $verified; |
||
5632 | return null; |
||
5633 | } |
||
5634 | |||
5635 | if ( |
||
5636 | $verified && |
||
5637 | isset( $verified['type'] ) && |
||
5638 | 'user' === $verified['type'] && |
||
5639 | ! empty( $verified['user_id'] ) |
||
5640 | ) { |
||
5641 | // Authentication successful. |
||
5642 | $this->rest_authentication_status = true; |
||
5643 | return $verified['user_id']; |
||
5644 | } |
||
5645 | |||
5646 | // Something else went wrong. Probably a signature error. |
||
5647 | $this->rest_authentication_status = new WP_Error( |
||
5648 | 'rest_invalid_signature', |
||
5649 | __( 'The request is not signed correctly.', 'jetpack' ), |
||
5650 | array( 'status' => 400 ) |
||
5651 | ); |
||
5652 | return null; |
||
5653 | } |
||
5654 | |||
5655 | /** |
||
5656 | * Report authentication status to the WP REST API. |
||
5657 | * |
||
5658 | * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
||
5659 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
||
5660 | */ |
||
5661 | public function wp_rest_authentication_errors( $value ) { |
||
5662 | if ( $value !== null ) { |
||
5663 | return $value; |
||
5664 | } |
||
5665 | return $this->rest_authentication_status; |
||
5666 | } |
||
5667 | |||
5668 | function add_nonce( $timestamp, $nonce ) { |
||
5669 | global $wpdb; |
||
5670 | static $nonces_used_this_request = array(); |
||
5671 | |||
5672 | if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) { |
||
5673 | return $nonces_used_this_request["$timestamp:$nonce"]; |
||
5674 | } |
||
5675 | |||
5676 | // This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce |
||
5677 | $timestamp = (int) $timestamp; |
||
5678 | $nonce = esc_sql( $nonce ); |
||
5679 | |||
5680 | // Raw query so we can avoid races: add_option will also update |
||
5681 | $show_errors = $wpdb->show_errors( false ); |
||
5682 | |||
5683 | $old_nonce = $wpdb->get_row( |
||
5684 | $wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" ) |
||
5685 | ); |
||
5686 | |||
5687 | if ( is_null( $old_nonce ) ) { |
||
5688 | $return = $wpdb->query( |
||
5689 | $wpdb->prepare( |
||
5690 | "INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)", |
||
5691 | "jetpack_nonce_{$timestamp}_{$nonce}", |
||
5692 | time(), |
||
5693 | 'no' |
||
5694 | ) |
||
5695 | ); |
||
5696 | } else { |
||
5697 | $return = false; |
||
5698 | } |
||
5699 | |||
5700 | $wpdb->show_errors( $show_errors ); |
||
5701 | |||
5702 | $nonces_used_this_request["$timestamp:$nonce"] = $return; |
||
5703 | |||
5704 | return $return; |
||
5705 | } |
||
5706 | |||
5707 | /** |
||
5708 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
||
5709 | * Capture it here so we can verify the signature later. |
||
5710 | */ |
||
5711 | function xmlrpc_methods( $methods ) { |
||
5712 | $this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA']; |
||
5713 | return $methods; |
||
5714 | } |
||
5715 | |||
5716 | function public_xmlrpc_methods( $methods ) { |
||
5717 | if ( array_key_exists( 'wp.getOptions', $methods ) ) { |
||
5718 | $methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' ); |
||
5719 | } |
||
5720 | return $methods; |
||
5721 | } |
||
5722 | |||
5723 | function jetpack_getOptions( $args ) { |
||
5724 | global $wp_xmlrpc_server; |
||
5725 | |||
5726 | $wp_xmlrpc_server->escape( $args ); |
||
5727 | |||
5728 | $username = $args[1]; |
||
5729 | $password = $args[2]; |
||
5730 | |||
5731 | if ( !$user = $wp_xmlrpc_server->login($username, $password) ) { |
||
5732 | return $wp_xmlrpc_server->error; |
||
5733 | } |
||
5734 | |||
5735 | $options = array(); |
||
5736 | $user_data = $this->get_connected_user_data(); |
||
5737 | if ( is_array( $user_data ) ) { |
||
5738 | $options['jetpack_user_id'] = array( |
||
5739 | 'desc' => __( 'The WP.com user ID of the connected user', 'jetpack' ), |
||
5740 | 'readonly' => true, |
||
5741 | 'value' => $user_data['ID'], |
||
5742 | ); |
||
5743 | $options['jetpack_user_login'] = array( |
||
5744 | 'desc' => __( 'The WP.com username of the connected user', 'jetpack' ), |
||
5745 | 'readonly' => true, |
||
5746 | 'value' => $user_data['login'], |
||
5747 | ); |
||
5748 | $options['jetpack_user_email'] = array( |
||
5749 | 'desc' => __( 'The WP.com user email of the connected user', 'jetpack' ), |
||
5750 | 'readonly' => true, |
||
5751 | 'value' => $user_data['email'], |
||
5752 | ); |
||
5753 | $options['jetpack_user_site_count'] = array( |
||
5754 | 'desc' => __( 'The number of sites of the connected WP.com user', 'jetpack' ), |
||
5755 | 'readonly' => true, |
||
5756 | 'value' => $user_data['site_count'], |
||
5757 | ); |
||
5758 | } |
||
5759 | $wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options ); |
||
5760 | $args = stripslashes_deep( $args ); |
||
5761 | return $wp_xmlrpc_server->wp_getOptions( $args ); |
||
5762 | } |
||
5763 | |||
5764 | function xmlrpc_options( $options ) { |
||
5765 | $jetpack_client_id = false; |
||
5766 | if ( self::is_active() ) { |
||
5767 | $jetpack_client_id = Jetpack_Options::get_option( 'id' ); |
||
5768 | } |
||
5769 | $options['jetpack_version'] = array( |
||
5770 | 'desc' => __( 'Jetpack Plugin Version', 'jetpack' ), |
||
5771 | 'readonly' => true, |
||
5772 | 'value' => JETPACK__VERSION, |
||
5773 | ); |
||
5774 | |||
5775 | $options['jetpack_client_id'] = array( |
||
5776 | 'desc' => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ), |
||
5777 | 'readonly' => true, |
||
5778 | 'value' => $jetpack_client_id, |
||
5779 | ); |
||
5780 | return $options; |
||
5781 | } |
||
5782 | |||
5783 | public static function clean_nonces( $all = false ) { |
||
5784 | global $wpdb; |
||
5785 | |||
5786 | $sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s"; |
||
5787 | $sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' ); |
||
5788 | |||
5789 | if ( true !== $all ) { |
||
5790 | $sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d'; |
||
5791 | $sql_args[] = time() - 3600; |
||
5792 | } |
||
5793 | |||
5794 | $sql .= ' ORDER BY `option_id` LIMIT 100'; |
||
5795 | |||
5796 | $sql = $wpdb->prepare( $sql, $sql_args ); |
||
5797 | |||
5798 | for ( $i = 0; $i < 1000; $i++ ) { |
||
5799 | if ( ! $wpdb->query( $sql ) ) { |
||
5800 | break; |
||
5801 | } |
||
5802 | } |
||
5803 | } |
||
5804 | |||
5805 | /** |
||
5806 | * State is passed via cookies from one request to the next, but never to subsequent requests. |
||
5807 | * SET: state( $key, $value ); |
||
5808 | * GET: $value = state( $key ); |
||
5809 | * |
||
5810 | * @param string $key |
||
5811 | * @param string $value |
||
5812 | * @param bool $restate private |
||
5813 | */ |
||
5814 | public static function state( $key = null, $value = null, $restate = false ) { |
||
5815 | static $state = array(); |
||
5816 | static $path, $domain; |
||
5817 | if ( ! isset( $path ) ) { |
||
5818 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
||
5819 | $admin_url = Jetpack::admin_url(); |
||
5820 | $bits = parse_url( $admin_url ); |
||
5821 | |||
5822 | if ( is_array( $bits ) ) { |
||
5823 | $path = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null; |
||
5824 | $domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null; |
||
5825 | } else { |
||
5826 | $path = $domain = null; |
||
5827 | } |
||
5828 | } |
||
5829 | |||
5830 | // Extract state from cookies and delete cookies |
||
5831 | if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) { |
||
5832 | $yum = $_COOKIE[ 'jetpackState' ]; |
||
5833 | unset( $_COOKIE[ 'jetpackState' ] ); |
||
5834 | foreach ( $yum as $k => $v ) { |
||
5835 | if ( strlen( $v ) ) |
||
5836 | $state[ $k ] = $v; |
||
5837 | setcookie( "jetpackState[$k]", false, 0, $path, $domain ); |
||
5838 | } |
||
5839 | } |
||
5840 | |||
5841 | if ( $restate ) { |
||
5842 | foreach ( $state as $k => $v ) { |
||
5843 | setcookie( "jetpackState[$k]", $v, 0, $path, $domain ); |
||
5844 | } |
||
5845 | return; |
||
5846 | } |
||
5847 | |||
5848 | // Get a state variable |
||
5849 | if ( isset( $key ) && ! isset( $value ) ) { |
||
5850 | if ( array_key_exists( $key, $state ) ) |
||
5851 | return $state[ $key ]; |
||
5852 | return null; |
||
5853 | } |
||
5854 | |||
5855 | // Set a state variable |
||
5856 | if ( isset ( $key ) && isset( $value ) ) { |
||
5857 | if( is_array( $value ) && isset( $value[0] ) ) { |
||
5858 | $value = $value[0]; |
||
5859 | } |
||
5860 | $state[ $key ] = $value; |
||
5861 | setcookie( "jetpackState[$key]", $value, 0, $path, $domain ); |
||
5862 | } |
||
5863 | } |
||
5864 | |||
5865 | public static function restate() { |
||
5866 | Jetpack::state( null, null, true ); |
||
5867 | } |
||
5868 | |||
5869 | public static function check_privacy( $file ) { |
||
5870 | static $is_site_publicly_accessible = null; |
||
5871 | |||
5872 | if ( is_null( $is_site_publicly_accessible ) ) { |
||
5873 | $is_site_publicly_accessible = false; |
||
5874 | |||
5875 | Jetpack::load_xml_rpc_client(); |
||
5876 | $rpc = new Jetpack_IXR_Client(); |
||
5877 | |||
5878 | $success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() ); |
||
5879 | if ( $success ) { |
||
5880 | $response = $rpc->getResponse(); |
||
5881 | if ( $response ) { |
||
5882 | $is_site_publicly_accessible = true; |
||
5883 | } |
||
5884 | } |
||
5885 | |||
5886 | Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible ); |
||
5887 | } |
||
5888 | |||
5889 | if ( $is_site_publicly_accessible ) { |
||
5890 | return; |
||
5891 | } |
||
5892 | |||
5893 | $module_slug = self::get_module_slug( $file ); |
||
5894 | |||
5895 | $privacy_checks = Jetpack::state( 'privacy_checks' ); |
||
5896 | if ( ! $privacy_checks ) { |
||
5897 | $privacy_checks = $module_slug; |
||
5898 | } else { |
||
5899 | $privacy_checks .= ",$module_slug"; |
||
5900 | } |
||
5901 | |||
5902 | Jetpack::state( 'privacy_checks', $privacy_checks ); |
||
5903 | } |
||
5904 | |||
5905 | /** |
||
5906 | * Helper method for multicall XMLRPC. |
||
5907 | */ |
||
5908 | public static function xmlrpc_async_call() { |
||
5909 | global $blog_id; |
||
5910 | static $clients = array(); |
||
5911 | |||
5912 | $client_blog_id = is_multisite() ? $blog_id : 0; |
||
5913 | |||
5914 | if ( ! isset( $clients[$client_blog_id] ) ) { |
||
5915 | Jetpack::load_xml_rpc_client(); |
||
5916 | $clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) ); |
||
5917 | if ( function_exists( 'ignore_user_abort' ) ) { |
||
5918 | ignore_user_abort( true ); |
||
5919 | } |
||
5920 | add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) ); |
||
5921 | } |
||
5922 | |||
5923 | $args = func_get_args(); |
||
5924 | |||
5925 | if ( ! empty( $args[0] ) ) { |
||
5926 | call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args ); |
||
5927 | } elseif ( is_multisite() ) { |
||
5928 | foreach ( $clients as $client_blog_id => $client ) { |
||
5929 | if ( ! $client_blog_id || empty( $client->calls ) ) { |
||
5930 | continue; |
||
5931 | } |
||
5932 | |||
5933 | $switch_success = switch_to_blog( $client_blog_id, true ); |
||
5934 | if ( ! $switch_success ) { |
||
5935 | continue; |
||
5936 | } |
||
5937 | |||
5938 | flush(); |
||
5939 | $client->query(); |
||
5940 | |||
5941 | restore_current_blog(); |
||
5942 | } |
||
5943 | } else { |
||
5944 | if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) { |
||
5945 | flush(); |
||
5946 | $clients[0]->query(); |
||
5947 | } |
||
5948 | } |
||
5949 | } |
||
5950 | |||
5951 | public static function staticize_subdomain( $url ) { |
||
5952 | |||
5953 | // Extract hostname from URL |
||
5954 | $host = parse_url( $url, PHP_URL_HOST ); |
||
5955 | |||
5956 | // Explode hostname on '.' |
||
5957 | $exploded_host = explode( '.', $host ); |
||
5958 | |||
5959 | // Retrieve the name and TLD |
||
5960 | if ( count( $exploded_host ) > 1 ) { |
||
5961 | $name = $exploded_host[ count( $exploded_host ) - 2 ]; |
||
5962 | $tld = $exploded_host[ count( $exploded_host ) - 1 ]; |
||
5963 | // Rebuild domain excluding subdomains |
||
5964 | $domain = $name . '.' . $tld; |
||
5965 | } else { |
||
5966 | $domain = $host; |
||
5967 | } |
||
5968 | // Array of Automattic domains |
||
5969 | $domain_whitelist = array( 'wordpress.com', 'wp.com' ); |
||
5970 | |||
5971 | // Return $url if not an Automattic domain |
||
5972 | if ( ! in_array( $domain, $domain_whitelist ) ) { |
||
5973 | return $url; |
||
5974 | } |
||
5975 | |||
5976 | if ( is_ssl() ) { |
||
5977 | return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url ); |
||
5978 | } |
||
5979 | |||
5980 | srand( crc32( basename( $url ) ) ); |
||
5981 | $static_counter = rand( 0, 2 ); |
||
5982 | srand(); // this resets everything that relies on this, like array_rand() and shuffle() |
||
5983 | |||
5984 | return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url ); |
||
5985 | } |
||
5986 | |||
5987 | /* JSON API Authorization */ |
||
5988 | |||
5989 | /** |
||
5990 | * Handles the login action for Authorizing the JSON API |
||
5991 | */ |
||
5992 | function login_form_json_api_authorization() { |
||
5993 | $this->verify_json_api_authorization_request(); |
||
5994 | |||
5995 | add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 ); |
||
5996 | |||
5997 | add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) ); |
||
5998 | add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) ); |
||
5999 | add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 ); |
||
6000 | } |
||
6001 | |||
6002 | // Make sure the login form is POSTed to the signed URL so we can reverify the request |
||
6003 | function post_login_form_to_signed_url( $url, $path, $scheme ) { |
||
6004 | if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) { |
||
6005 | return $url; |
||
6006 | } |
||
6007 | |||
6008 | $parsed_url = parse_url( $url ); |
||
6009 | $url = strtok( $url, '?' ); |
||
6010 | $url = "$url?{$_SERVER['QUERY_STRING']}"; |
||
6011 | if ( ! empty( $parsed_url['query'] ) ) |
||
6012 | $url .= "&{$parsed_url['query']}"; |
||
6013 | |||
6014 | return $url; |
||
6015 | } |
||
6016 | |||
6017 | // Make sure the POSTed request is handled by the same action |
||
6018 | function preserve_action_in_login_form_for_json_api_authorization() { |
||
6019 | echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n"; |
||
6020 | echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n"; |
||
6021 | } |
||
6022 | |||
6023 | // If someone logs in to approve API access, store the Access Code in usermeta |
||
6024 | function store_json_api_authorization_token( $user_login, $user ) { |
||
6025 | add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 ); |
||
6026 | add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) ); |
||
6027 | $token = wp_generate_password( 32, false ); |
||
6028 | update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token ); |
||
6029 | } |
||
6030 | |||
6031 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access |
||
6032 | function allow_wpcom_public_api_domain( $domains ) { |
||
6033 | $domains[] = 'public-api.wordpress.com'; |
||
6034 | return $domains; |
||
6035 | } |
||
6036 | |||
6037 | // Add all wordpress.com environments to the safe redirect whitelist |
||
6038 | function allow_wpcom_environments( $domains ) { |
||
6039 | $domains[] = 'wordpress.com'; |
||
6040 | $domains[] = 'wpcalypso.wordpress.com'; |
||
6041 | $domains[] = 'horizon.wordpress.com'; |
||
6042 | $domains[] = 'calypso.localhost'; |
||
6043 | return $domains; |
||
6044 | } |
||
6045 | |||
6046 | // Add the Access Code details to the public-api.wordpress.com redirect |
||
6047 | function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { |
||
6048 | return add_query_arg( |
||
6049 | urlencode_deep( |
||
6050 | array( |
||
6051 | 'jetpack-code' => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ), |
||
6052 | 'jetpack-user-id' => (int) $user->ID, |
||
6053 | 'jetpack-state' => $this->json_api_authorization_request['state'], |
||
6054 | ) |
||
6055 | ), |
||
6056 | $redirect_to |
||
6057 | ); |
||
6058 | } |
||
6059 | |||
6060 | |||
6061 | /** |
||
6062 | * Verifies the request by checking the signature |
||
6063 | * |
||
6064 | * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow |
||
6065 | * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO. |
||
6066 | * |
||
6067 | * @param null|array $environment |
||
6068 | */ |
||
6069 | function verify_json_api_authorization_request( $environment = null ) { |
||
6070 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php'; |
||
6071 | |||
6072 | $environment = is_null( $environment ) |
||
6073 | ? $_REQUEST |
||
6074 | : $environment; |
||
6075 | |||
6076 | list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] ); |
||
6077 | $token = Jetpack_Data::get_access_token( $envUserId ); |
||
6078 | if ( ! $token || empty( $token->secret ) ) { |
||
6079 | wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) ); |
||
6080 | } |
||
6081 | |||
6082 | $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' ); |
||
6083 | |||
6084 | $jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) ); |
||
6085 | |||
6086 | if ( isset( $environment['jetpack_json_api_original_query'] ) ) { |
||
6087 | $signature = $jetpack_signature->sign_request( |
||
6088 | $environment['token'], |
||
6089 | $environment['timestamp'], |
||
6090 | $environment['nonce'], |
||
6091 | '', |
||
6092 | 'GET', |
||
6093 | $environment['jetpack_json_api_original_query'], |
||
6094 | null, |
||
6095 | true |
||
6096 | ); |
||
6097 | } else { |
||
6098 | $signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) ); |
||
6099 | } |
||
6100 | |||
6101 | if ( ! $signature ) { |
||
6102 | wp_die( $die_error ); |
||
6103 | } else if ( is_wp_error( $signature ) ) { |
||
6104 | wp_die( $die_error ); |
||
6105 | } else if ( ! hash_equals( $signature, $environment['signature'] ) ) { // phpcs:ignore PHPCompatibility -- skipping since `hash_equals` is part of WP core |
||
6106 | if ( is_ssl() ) { |
||
6107 | // 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 |
||
6108 | $signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) ); |
||
6109 | if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) { // phpcs:ignore PHPCompatibility -- skipping since `hash_equals` is part of WP core |
||
6110 | wp_die( $die_error ); |
||
6111 | } |
||
6112 | } else { |
||
6113 | wp_die( $die_error ); |
||
6114 | } |
||
6115 | } |
||
6116 | |||
6117 | $timestamp = (int) $environment['timestamp']; |
||
6118 | $nonce = stripslashes( (string) $environment['nonce'] ); |
||
6119 | |||
6120 | if ( ! $this->add_nonce( $timestamp, $nonce ) ) { |
||
6121 | // De-nonce the nonce, at least for 5 minutes. |
||
6122 | // 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) |
||
6123 | $old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" ); |
||
6124 | if ( $old_nonce_time < time() - 300 ) { |
||
6125 | wp_die( __( 'The authorization process expired. Please go back and try again.' , 'jetpack' ) ); |
||
6126 | } |
||
6127 | } |
||
6128 | |||
6129 | $data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) ); |
||
6130 | $data_filters = array( |
||
6131 | 'state' => 'opaque', |
||
6132 | 'client_id' => 'int', |
||
6133 | 'client_title' => 'string', |
||
6134 | 'client_image' => 'url', |
||
6135 | ); |
||
6136 | |||
6137 | foreach ( $data_filters as $key => $sanitation ) { |
||
6138 | if ( ! isset( $data->$key ) ) { |
||
6139 | wp_die( $die_error ); |
||
6140 | } |
||
6141 | |||
6142 | switch ( $sanitation ) { |
||
6143 | case 'int' : |
||
6144 | $this->json_api_authorization_request[$key] = (int) $data->$key; |
||
6145 | break; |
||
6146 | case 'opaque' : |
||
6147 | $this->json_api_authorization_request[$key] = (string) $data->$key; |
||
6148 | break; |
||
6149 | case 'string' : |
||
6150 | $this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() ); |
||
6151 | break; |
||
6152 | case 'url' : |
||
6153 | $this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key ); |
||
6154 | break; |
||
6155 | } |
||
6156 | } |
||
6157 | |||
6158 | if ( empty( $this->json_api_authorization_request['client_id'] ) ) { |
||
6159 | wp_die( $die_error ); |
||
6160 | } |
||
6161 | } |
||
6162 | |||
6163 | function login_message_json_api_authorization( $message ) { |
||
6164 | return '<p class="message">' . sprintf( |
||
6165 | esc_html__( '%s wants to access your site’s data. Log in to authorize that access.' , 'jetpack' ), |
||
6166 | '<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>' |
||
6167 | ) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>'; |
||
6168 | } |
||
6169 | |||
6170 | /** |
||
6171 | * Get $content_width, but with a <s>twist</s> filter. |
||
6172 | */ |
||
6173 | public static function get_content_width() { |
||
6174 | $content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false; |
||
6175 | /** |
||
6176 | * Filter the Content Width value. |
||
6177 | * |
||
6178 | * @since 2.2.3 |
||
6179 | * |
||
6180 | * @param string $content_width Content Width value. |
||
6181 | */ |
||
6182 | return apply_filters( 'jetpack_content_width', $content_width ); |
||
6183 | } |
||
6184 | |||
6185 | /** |
||
6186 | * Pings the WordPress.com Mirror Site for the specified options. |
||
6187 | * |
||
6188 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site |
||
6189 | * |
||
6190 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site |
||
6191 | */ |
||
6192 | public function get_cloud_site_options( $option_names ) { |
||
6193 | $option_names = array_filter( (array) $option_names, 'is_string' ); |
||
6194 | |||
6195 | Jetpack::load_xml_rpc_client(); |
||
6196 | $xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) ); |
||
6197 | $xml->query( 'jetpack.fetchSiteOptions', $option_names ); |
||
6198 | if ( $xml->isError() ) { |
||
6199 | return array( |
||
6200 | 'error_code' => $xml->getErrorCode(), |
||
6201 | 'error_msg' => $xml->getErrorMessage(), |
||
6202 | ); |
||
6203 | } |
||
6204 | $cloud_site_options = $xml->getResponse(); |
||
6205 | |||
6206 | return $cloud_site_options; |
||
6207 | } |
||
6208 | |||
6209 | /** |
||
6210 | * Checks if the site is currently in an identity crisis. |
||
6211 | * |
||
6212 | * @return array|bool Array of options that are in a crisis, or false if everything is OK. |
||
6213 | */ |
||
6214 | public static function check_identity_crisis() { |
||
6215 | if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) { |
||
6216 | return false; |
||
6217 | } |
||
6218 | |||
6219 | return Jetpack_Options::get_option( 'sync_error_idc' ); |
||
6220 | } |
||
6221 | |||
6222 | /** |
||
6223 | * Checks whether the home and siteurl specifically are whitelisted |
||
6224 | * Written so that we don't have re-check $key and $value params every time |
||
6225 | * we want to check if this site is whitelisted, for example in footer.php |
||
6226 | * |
||
6227 | * @since 3.8.0 |
||
6228 | * @return bool True = already whitelisted False = not whitelisted |
||
6229 | */ |
||
6230 | public static function is_staging_site() { |
||
6231 | $is_staging = false; |
||
6232 | |||
6233 | $known_staging = array( |
||
6234 | 'urls' => array( |
||
6235 | '#\.staging\.wpengine\.com$#i', // WP Engine |
||
6236 | '#\.staging\.kinsta\.com$#i', // Kinsta.com |
||
6237 | ), |
||
6238 | 'constants' => array( |
||
6239 | 'IS_WPE_SNAPSHOT', // WP Engine |
||
6240 | 'KINSTA_DEV_ENV', // Kinsta.com |
||
6241 | 'WPSTAGECOACH_STAGING', // WP Stagecoach |
||
6242 | 'JETPACK_STAGING_MODE', // Generic |
||
6243 | ) |
||
6244 | ); |
||
6245 | /** |
||
6246 | * Filters the flags of known staging sites. |
||
6247 | * |
||
6248 | * @since 3.9.0 |
||
6249 | * |
||
6250 | * @param array $known_staging { |
||
6251 | * An array of arrays that each are used to check if the current site is staging. |
||
6252 | * @type array $urls URLs of staging sites in regex to check against site_url. |
||
6253 | * @type array $constants PHP constants of known staging/developement environments. |
||
6254 | * } |
||
6255 | */ |
||
6256 | $known_staging = apply_filters( 'jetpack_known_staging', $known_staging ); |
||
6257 | |||
6258 | if ( isset( $known_staging['urls'] ) ) { |
||
6259 | foreach ( $known_staging['urls'] as $url ){ |
||
6260 | if ( preg_match( $url, site_url() ) ) { |
||
6261 | $is_staging = true; |
||
6262 | break; |
||
6263 | } |
||
6264 | } |
||
6265 | } |
||
6266 | |||
6267 | if ( isset( $known_staging['constants'] ) ) { |
||
6268 | foreach ( $known_staging['constants'] as $constant ) { |
||
6269 | if ( defined( $constant ) && constant( $constant ) ) { |
||
6270 | $is_staging = true; |
||
6271 | } |
||
6272 | } |
||
6273 | } |
||
6274 | |||
6275 | // Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode. |
||
6276 | if ( ! $is_staging && self::validate_sync_error_idc_option() ) { |
||
6277 | $is_staging = true; |
||
6278 | } |
||
6279 | |||
6280 | /** |
||
6281 | * Filters is_staging_site check. |
||
6282 | * |
||
6283 | * @since 3.9.0 |
||
6284 | * |
||
6285 | * @param bool $is_staging If the current site is a staging site. |
||
6286 | */ |
||
6287 | return apply_filters( 'jetpack_is_staging_site', $is_staging ); |
||
6288 | } |
||
6289 | |||
6290 | /** |
||
6291 | * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup. |
||
6292 | * |
||
6293 | * @since 4.4.0 |
||
6294 | * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC |
||
6295 | * |
||
6296 | * @return bool |
||
6297 | */ |
||
6298 | public static function validate_sync_error_idc_option() { |
||
6299 | $is_valid = false; |
||
6300 | |||
6301 | $idc_allowed = get_transient( 'jetpack_idc_allowed' ); |
||
6302 | if ( false === $idc_allowed ) { |
||
6303 | $response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' ); |
||
6304 | if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) { |
||
6305 | $json = json_decode( wp_remote_retrieve_body( $response ) ); |
||
6306 | $idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0'; |
||
6307 | $transient_duration = HOUR_IN_SECONDS; |
||
6308 | } else { |
||
6309 | // If the request failed for some reason, then assume IDC is allowed and set shorter transient. |
||
6310 | $idc_allowed = '1'; |
||
6311 | $transient_duration = 5 * MINUTE_IN_SECONDS; |
||
6312 | } |
||
6313 | |||
6314 | set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration ); |
||
6315 | } |
||
6316 | |||
6317 | // Is the site opted in and does the stored sync_error_idc option match what we now generate? |
||
6318 | $sync_error = Jetpack_Options::get_option( 'sync_error_idc' ); |
||
6319 | if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) { |
||
6320 | $local_options = self::get_sync_error_idc_option(); |
||
6321 | if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) { |
||
6322 | $is_valid = true; |
||
6323 | } |
||
6324 | } |
||
6325 | |||
6326 | /** |
||
6327 | * Filters whether the sync_error_idc option is valid. |
||
6328 | * |
||
6329 | * @since 4.4.0 |
||
6330 | * |
||
6331 | * @param bool $is_valid If the sync_error_idc is valid or not. |
||
6332 | */ |
||
6333 | $is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid ); |
||
6334 | |||
6335 | if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) { |
||
6336 | // Since the option exists, and did not validate, delete it |
||
6337 | Jetpack_Options::delete_option( 'sync_error_idc' ); |
||
6338 | } |
||
6339 | |||
6340 | return $is_valid; |
||
6341 | } |
||
6342 | |||
6343 | /** |
||
6344 | * Normalizes a url by doing three things: |
||
6345 | * - Strips protocol |
||
6346 | * - Strips www |
||
6347 | * - Adds a trailing slash |
||
6348 | * |
||
6349 | * @since 4.4.0 |
||
6350 | * @param string $url |
||
6351 | * @return WP_Error|string |
||
6352 | */ |
||
6353 | public static function normalize_url_protocol_agnostic( $url ) { |
||
6354 | $parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) ); |
||
6355 | if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) { |
||
6356 | return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) ); |
||
6357 | } |
||
6358 | |||
6359 | // Strip www and protocols |
||
6360 | $url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] ); |
||
6361 | return $url; |
||
6362 | } |
||
6363 | |||
6364 | /** |
||
6365 | * Gets the value that is to be saved in the jetpack_sync_error_idc option. |
||
6366 | * |
||
6367 | * @since 4.4.0 |
||
6368 | * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB |
||
6369 | * |
||
6370 | * @param array $response |
||
6371 | * @return array Array of the local urls, wpcom urls, and error code |
||
6372 | */ |
||
6373 | public static function get_sync_error_idc_option( $response = array() ) { |
||
6374 | // Since the local options will hit the database directly, store the values |
||
6375 | // in a transient to allow for autoloading and caching on subsequent views. |
||
6376 | $local_options = get_transient( 'jetpack_idc_local' ); |
||
6377 | if ( false === $local_options ) { |
||
6378 | require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-functions.php'; |
||
6379 | $local_options = array( |
||
6380 | 'home' => Jetpack_Sync_Functions::home_url(), |
||
6381 | 'siteurl' => Jetpack_Sync_Functions::site_url(), |
||
6382 | ); |
||
6383 | set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS ); |
||
6384 | } |
||
6385 | |||
6386 | $options = array_merge( $local_options, $response ); |
||
6387 | |||
6388 | $returned_values = array(); |
||
6389 | foreach( $options as $key => $option ) { |
||
6390 | if ( 'error_code' === $key ) { |
||
6391 | $returned_values[ $key ] = $option; |
||
6392 | continue; |
||
6393 | } |
||
6394 | |||
6395 | if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) { |
||
6396 | continue; |
||
6397 | } |
||
6398 | |||
6399 | $returned_values[ $key ] = $normalized_url; |
||
6400 | } |
||
6401 | |||
6402 | set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS ); |
||
6403 | |||
6404 | return $returned_values; |
||
6405 | } |
||
6406 | |||
6407 | /** |
||
6408 | * Returns the value of the jetpack_sync_idc_optin filter, or constant. |
||
6409 | * If set to true, the site will be put into staging mode. |
||
6410 | * |
||
6411 | * @since 4.3.2 |
||
6412 | * @return bool |
||
6413 | */ |
||
6414 | public static function sync_idc_optin() { |
||
6415 | if ( Jetpack_Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) { |
||
6416 | $default = Jetpack_Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' ); |
||
6417 | } else { |
||
6418 | $default = ! Jetpack_Constants::is_defined( 'SUNRISE' ) && ! is_multisite(); |
||
6419 | } |
||
6420 | |||
6421 | /** |
||
6422 | * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home |
||
6423 | * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of |
||
6424 | * JETPACK_SYNC_IDC_OPTIN constant if set. |
||
6425 | * |
||
6426 | * @since 4.3.2 |
||
6427 | * |
||
6428 | * @param bool $default Whether the site is opted in to IDC mitigation. |
||
6429 | */ |
||
6430 | return (bool) apply_filters( 'jetpack_sync_idc_optin', $default ); |
||
6431 | } |
||
6432 | |||
6433 | /** |
||
6434 | * Maybe Use a .min.css stylesheet, maybe not. |
||
6435 | * |
||
6436 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. |
||
6437 | */ |
||
6438 | public static function maybe_min_asset( $url, $path, $plugin ) { |
||
6439 | // Short out on things trying to find actual paths. |
||
6440 | if ( ! $path || empty( $plugin ) ) { |
||
6441 | return $url; |
||
6442 | } |
||
6443 | |||
6444 | $path = ltrim( $path, '/' ); |
||
6445 | |||
6446 | // Strip out the abspath. |
||
6447 | $base = dirname( plugin_basename( $plugin ) ); |
||
6448 | |||
6449 | // Short out on non-Jetpack assets. |
||
6450 | if ( 'jetpack/' !== substr( $base, 0, 8 ) ) { |
||
6451 | return $url; |
||
6452 | } |
||
6453 | |||
6454 | // File name parsing. |
||
6455 | $file = "{$base}/{$path}"; |
||
6456 | $full_path = JETPACK__PLUGIN_DIR . substr( $file, 8 ); |
||
6457 | $file_name = substr( $full_path, strrpos( $full_path, '/' ) + 1 ); |
||
6458 | $file_name_parts_r = array_reverse( explode( '.', $file_name ) ); |
||
6459 | $extension = array_shift( $file_name_parts_r ); |
||
6460 | |||
6461 | if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) { |
||
6462 | // Already pointing at the minified version. |
||
6463 | if ( 'min' === $file_name_parts_r[0] ) { |
||
6464 | return $url; |
||
6465 | } |
||
6466 | |||
6467 | $min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path ); |
||
6468 | if ( file_exists( $min_full_path ) ) { |
||
6469 | $url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url ); |
||
6470 | // If it's a CSS file, stash it so we can set the .min suffix for rtl-ing. |
||
6471 | if ( 'css' === $extension ) { |
||
6472 | $key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path ); |
||
6473 | self::$min_assets[ $key ] = $path; |
||
6474 | } |
||
6475 | } |
||
6476 | } |
||
6477 | |||
6478 | return $url; |
||
6479 | } |
||
6480 | |||
6481 | /** |
||
6482 | * If the asset is minified, let's flag .min as the suffix. |
||
6483 | * |
||
6484 | * Attached to `style_loader_src` filter. |
||
6485 | * |
||
6486 | * @param string $tag The tag that would link to the external asset. |
||
6487 | * @param string $handle The registered handle of the script in question. |
||
6488 | * @param string $href The url of the asset in question. |
||
6489 | */ |
||
6490 | public static function set_suffix_on_min( $src, $handle ) { |
||
6491 | if ( false === strpos( $src, '.min.css' ) ) { |
||
6492 | return $src; |
||
6493 | } |
||
6494 | |||
6495 | if ( ! empty( self::$min_assets ) ) { |
||
6496 | foreach ( self::$min_assets as $file => $path ) { |
||
6497 | if ( false !== strpos( $src, $file ) ) { |
||
6498 | wp_style_add_data( $handle, 'suffix', '.min' ); |
||
6499 | return $src; |
||
6500 | } |
||
6501 | } |
||
6502 | } |
||
6503 | |||
6504 | return $src; |
||
6505 | } |
||
6506 | |||
6507 | /** |
||
6508 | * Maybe inlines a stylesheet. |
||
6509 | * |
||
6510 | * If you'd like to inline a stylesheet instead of printing a link to it, |
||
6511 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); |
||
6512 | * |
||
6513 | * Attached to `style_loader_tag` filter. |
||
6514 | * |
||
6515 | * @param string $tag The tag that would link to the external asset. |
||
6516 | * @param string $handle The registered handle of the script in question. |
||
6517 | * |
||
6518 | * @return string |
||
6519 | */ |
||
6520 | public static function maybe_inline_style( $tag, $handle ) { |
||
6521 | global $wp_styles; |
||
6522 | $item = $wp_styles->registered[ $handle ]; |
||
6523 | |||
6524 | if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) { |
||
6525 | return $tag; |
||
6526 | } |
||
6527 | |||
6528 | if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) { |
||
6529 | $href = $matches[1]; |
||
6530 | // Strip off query string |
||
6531 | if ( $pos = strpos( $href, '?' ) ) { |
||
6532 | $href = substr( $href, 0, $pos ); |
||
6533 | } |
||
6534 | // Strip off fragment |
||
6535 | if ( $pos = strpos( $href, '#' ) ) { |
||
6536 | $href = substr( $href, 0, $pos ); |
||
6537 | } |
||
6538 | } else { |
||
6539 | return $tag; |
||
6540 | } |
||
6541 | |||
6542 | $plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE ); |
||
6543 | if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) { |
||
6544 | return $tag; |
||
6545 | } |
||
6546 | |||
6547 | // If this stylesheet has a RTL version, and the RTL version replaces normal... |
||
6548 | if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) { |
||
6549 | // And this isn't the pass that actually deals with the RTL version... |
||
6550 | if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) { |
||
6551 | // Short out, as the RTL version will deal with it in a moment. |
||
6552 | return $tag; |
||
6553 | } |
||
6554 | } |
||
6555 | |||
6556 | $file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) ); |
||
6557 | $css = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href ); |
||
6558 | if ( $css ) { |
||
6559 | $tag = "<!-- Inline {$item->handle} -->\r\n"; |
||
6560 | if ( empty( $item->extra['after'] ) ) { |
||
6561 | wp_add_inline_style( $handle, $css ); |
||
6562 | } else { |
||
6563 | array_unshift( $item->extra['after'], $css ); |
||
6564 | wp_style_add_data( $handle, 'after', $item->extra['after'] ); |
||
6565 | } |
||
6566 | } |
||
6567 | |||
6568 | return $tag; |
||
6569 | } |
||
6570 | |||
6571 | /** |
||
6572 | * Loads a view file from the views |
||
6573 | * |
||
6574 | * Data passed in with the $data parameter will be available in the |
||
6575 | * template file as $data['value'] |
||
6576 | * |
||
6577 | * @param string $template - Template file to load |
||
6578 | * @param array $data - Any data to pass along to the template |
||
6579 | * @return boolean - If template file was found |
||
6580 | **/ |
||
6581 | public function load_view( $template, $data = array() ) { |
||
6582 | $views_dir = JETPACK__PLUGIN_DIR . 'views/'; |
||
6583 | |||
6584 | if( file_exists( $views_dir . $template ) ) { |
||
6585 | require_once( $views_dir . $template ); |
||
6586 | return true; |
||
6587 | } |
||
6588 | |||
6589 | error_log( "Jetpack: Unable to find view file $views_dir$template" ); |
||
6590 | return false; |
||
6591 | } |
||
6592 | |||
6593 | /** |
||
6594 | * Throws warnings for deprecated hooks to be removed from Jetpack |
||
6595 | */ |
||
6596 | public function deprecated_hooks() { |
||
6597 | global $wp_filter; |
||
6598 | |||
6599 | /* |
||
6600 | * Format: |
||
6601 | * deprecated_filter_name => replacement_name |
||
6602 | * |
||
6603 | * If there is no replacement, use null for replacement_name |
||
6604 | */ |
||
6605 | $deprecated_list = array( |
||
6606 | 'jetpack_bail_on_shortcode' => 'jetpack_shortcodes_to_include', |
||
6607 | 'wpl_sharing_2014_1' => null, |
||
6608 | 'jetpack-tools-to-include' => 'jetpack_tools_to_include', |
||
6609 | 'jetpack_identity_crisis_options_to_check' => null, |
||
6610 | 'update_option_jetpack_single_user_site' => null, |
||
6611 | 'audio_player_default_colors' => null, |
||
6612 | 'add_option_jetpack_featured_images_enabled' => null, |
||
6613 | 'add_option_jetpack_update_details' => null, |
||
6614 | 'add_option_jetpack_updates' => null, |
||
6615 | 'add_option_jetpack_network_name' => null, |
||
6616 | 'add_option_jetpack_network_allow_new_registrations' => null, |
||
6617 | 'add_option_jetpack_network_add_new_users' => null, |
||
6618 | 'add_option_jetpack_network_site_upload_space' => null, |
||
6619 | 'add_option_jetpack_network_upload_file_types' => null, |
||
6620 | 'add_option_jetpack_network_enable_administration_menus' => null, |
||
6621 | 'add_option_jetpack_is_multi_site' => null, |
||
6622 | 'add_option_jetpack_is_main_network' => null, |
||
6623 | 'add_option_jetpack_main_network_site' => null, |
||
6624 | 'jetpack_sync_all_registered_options' => null, |
||
6625 | 'jetpack_has_identity_crisis' => 'jetpack_sync_error_idc_validation', |
||
6626 | 'jetpack_is_post_mailable' => null, |
||
6627 | 'jetpack_seo_site_host' => null, |
||
6628 | 'jetpack_installed_plugin' => 'jetpack_plugin_installed', |
||
6629 | 'jetpack_holiday_snow_option_name' => null, |
||
6630 | 'jetpack_holiday_chance_of_snow' => null, |
||
6631 | 'jetpack_holiday_snow_js_url' => null, |
||
6632 | 'jetpack_is_holiday_snow_season' => null, |
||
6633 | 'jetpack_holiday_snow_option_updated' => null, |
||
6634 | 'jetpack_holiday_snowing' => null, |
||
6635 | 'jetpack_sso_auth_cookie_expirtation' => 'jetpack_sso_auth_cookie_expiration', |
||
6636 | 'jetpack_cache_plans' => null, |
||
6637 | 'jetpack_updated_theme' => 'jetpack_updated_themes', |
||
6638 | 'jetpack_lazy_images_skip_image_with_atttributes' => 'jetpack_lazy_images_skip_image_with_attributes', |
||
6639 | ); |
||
6640 | |||
6641 | // This is a silly loop depth. Better way? |
||
6642 | foreach( $deprecated_list AS $hook => $hook_alt ) { |
||
6643 | if ( has_action( $hook ) ) { |
||
6644 | foreach( $wp_filter[ $hook ] AS $func => $values ) { |
||
6645 | foreach( $values AS $hooked ) { |
||
6646 | if ( is_callable( $hooked['function'] ) ) { |
||
6647 | $function_name = 'an anonymous function'; |
||
6648 | } else { |
||
6649 | $function_name = $hooked['function']; |
||
6650 | } |
||
6651 | _deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt ); |
||
6652 | } |
||
6653 | } |
||
6654 | } |
||
6655 | } |
||
6656 | } |
||
6657 | |||
6658 | /** |
||
6659 | * Converts any url in a stylesheet, to the correct absolute url. |
||
6660 | * |
||
6661 | * Considerations: |
||
6662 | * - Normal, relative URLs `feh.png` |
||
6663 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` |
||
6664 | * - Schema-agnostic URLs `//domain.com/feh.png` |
||
6665 | * - Absolute URLs `http://domain.com/feh.png` |
||
6666 | * - Domain root relative URLs `/feh.png` |
||
6667 | * |
||
6668 | * @param $css string: The raw CSS -- should be read in directly from the file. |
||
6669 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
||
6670 | * |
||
6671 | * @return mixed|string |
||
6672 | */ |
||
6673 | public static function absolutize_css_urls( $css, $css_file_url ) { |
||
6674 | $pattern = '#url\((?P<path>[^)]*)\)#i'; |
||
6675 | $css_dir = dirname( $css_file_url ); |
||
6676 | $p = parse_url( $css_dir ); |
||
6677 | $domain = sprintf( |
||
6678 | '%1$s//%2$s%3$s%4$s', |
||
6679 | isset( $p['scheme'] ) ? "{$p['scheme']}:" : '', |
||
6680 | isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '', |
||
6681 | $p['host'], |
||
6682 | isset( $p['port'] ) ? ":{$p['port']}" : '' |
||
6683 | ); |
||
6684 | |||
6685 | if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) { |
||
6686 | $find = $replace = array(); |
||
6687 | foreach ( $matches as $match ) { |
||
6688 | $url = trim( $match['path'], "'\" \t" ); |
||
6689 | |||
6690 | // If this is a data url, we don't want to mess with it. |
||
6691 | if ( 'data:' === substr( $url, 0, 5 ) ) { |
||
6692 | continue; |
||
6693 | } |
||
6694 | |||
6695 | // If this is an absolute or protocol-agnostic url, |
||
6696 | // we don't want to mess with it. |
||
6697 | if ( preg_match( '#^(https?:)?//#i', $url ) ) { |
||
6698 | continue; |
||
6699 | } |
||
6700 | |||
6701 | switch ( substr( $url, 0, 1 ) ) { |
||
6702 | case '/': |
||
6703 | $absolute = $domain . $url; |
||
6704 | break; |
||
6705 | default: |
||
6706 | $absolute = $css_dir . '/' . $url; |
||
6707 | } |
||
6708 | |||
6709 | $find[] = $match[0]; |
||
6710 | $replace[] = sprintf( 'url("%s")', $absolute ); |
||
6711 | } |
||
6712 | $css = str_replace( $find, $replace, $css ); |
||
6713 | } |
||
6714 | |||
6715 | return $css; |
||
6716 | } |
||
6717 | |||
6718 | /** |
||
6719 | * This methods removes all of the registered css files on the front end |
||
6720 | * from Jetpack in favor of using a single file. In effect "imploding" |
||
6721 | * all the files into one file. |
||
6722 | * |
||
6723 | * Pros: |
||
6724 | * - Uses only ONE css asset connection instead of 15 |
||
6725 | * - Saves a minimum of 56k |
||
6726 | * - Reduces server load |
||
6727 | * - Reduces time to first painted byte |
||
6728 | * |
||
6729 | * Cons: |
||
6730 | * - Loads css for ALL modules. However all selectors are prefixed so it |
||
6731 | * should not cause any issues with themes. |
||
6732 | * - Plugins/themes dequeuing styles no longer do anything. See |
||
6733 | * jetpack_implode_frontend_css filter for a workaround |
||
6734 | * |
||
6735 | * For some situations developers may wish to disable css imploding and |
||
6736 | * instead operate in legacy mode where each file loads seperately and |
||
6737 | * can be edited individually or dequeued. This can be accomplished with |
||
6738 | * the following line: |
||
6739 | * |
||
6740 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); |
||
6741 | * |
||
6742 | * @since 3.2 |
||
6743 | **/ |
||
6744 | public function implode_frontend_css( $travis_test = false ) { |
||
6745 | $do_implode = true; |
||
6746 | if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) { |
||
6747 | $do_implode = false; |
||
6748 | } |
||
6749 | |||
6750 | /** |
||
6751 | * Allow CSS to be concatenated into a single jetpack.css file. |
||
6752 | * |
||
6753 | * @since 3.2.0 |
||
6754 | * |
||
6755 | * @param bool $do_implode Should CSS be concatenated? Default to true. |
||
6756 | */ |
||
6757 | $do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode ); |
||
6758 | |||
6759 | // Do not use the imploded file when default behaviour was altered through the filter |
||
6760 | if ( ! $do_implode ) { |
||
6761 | return; |
||
6762 | } |
||
6763 | |||
6764 | // We do not want to use the imploded file in dev mode, or if not connected |
||
6765 | if ( Jetpack::is_development_mode() || ! self::is_active() ) { |
||
6766 | if ( ! $travis_test ) { |
||
6767 | return; |
||
6768 | } |
||
6769 | } |
||
6770 | |||
6771 | // Do not use the imploded file if sharing css was dequeued via the sharing settings screen |
||
6772 | if ( get_option( 'sharedaddy_disable_resources' ) ) { |
||
6773 | return; |
||
6774 | } |
||
6775 | |||
6776 | /* |
||
6777 | * Now we assume Jetpack is connected and able to serve the single |
||
6778 | * file. |
||
6779 | * |
||
6780 | * In the future there will be a check here to serve the file locally |
||
6781 | * or potentially from the Jetpack CDN |
||
6782 | * |
||
6783 | * For now: |
||
6784 | * - Enqueue a single imploded css file |
||
6785 | * - Zero out the style_loader_tag for the bundled ones |
||
6786 | * - Be happy, drink scotch |
||
6787 | */ |
||
6788 | |||
6789 | add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 ); |
||
6790 | |||
6791 | $version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION; |
||
6792 | |||
6793 | wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version ); |
||
6794 | wp_style_add_data( 'jetpack_css', 'rtl', 'replace' ); |
||
6795 | } |
||
6796 | |||
6797 | function concat_remove_style_loader_tag( $tag, $handle ) { |
||
6798 | if ( in_array( $handle, $this->concatenated_style_handles ) ) { |
||
6799 | $tag = ''; |
||
6800 | if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
||
6801 | $tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n"; |
||
6802 | } |
||
6803 | } |
||
6804 | |||
6805 | return $tag; |
||
6806 | } |
||
6807 | |||
6808 | /* |
||
6809 | * Check the heartbeat data |
||
6810 | * |
||
6811 | * Organizes the heartbeat data by severity. For example, if the site |
||
6812 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. |
||
6813 | * |
||
6814 | * Data will be added to "caution" array, if it either: |
||
6815 | * - Out of date Jetpack version |
||
6816 | * - Out of date WP version |
||
6817 | * - Out of date PHP version |
||
6818 | * |
||
6819 | * $return array $filtered_data |
||
6820 | */ |
||
6821 | public static function jetpack_check_heartbeat_data() { |
||
6822 | $raw_data = Jetpack_Heartbeat::generate_stats_array(); |
||
6823 | |||
6824 | $good = array(); |
||
6825 | $caution = array(); |
||
6826 | $bad = array(); |
||
6827 | |||
6828 | foreach ( $raw_data as $stat => $value ) { |
||
6829 | |||
6830 | // Check jetpack version |
||
6831 | if ( 'version' == $stat ) { |
||
6832 | if ( version_compare( $value, JETPACK__VERSION, '<' ) ) { |
||
6833 | $caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION; |
||
6834 | continue; |
||
6835 | } |
||
6836 | } |
||
6837 | |||
6838 | // Check WP version |
||
6839 | if ( 'wp-version' == $stat ) { |
||
6840 | if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) { |
||
6841 | $caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION; |
||
6842 | continue; |
||
6843 | } |
||
6844 | } |
||
6845 | |||
6846 | // Check PHP version |
||
6847 | if ( 'php-version' == $stat ) { |
||
6848 | if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) { |
||
6849 | $caution[ $stat ] = $value . " - min supported is 5.2.4"; |
||
6850 | continue; |
||
6851 | } |
||
6852 | } |
||
6853 | |||
6854 | // Check ID crisis |
||
6855 | if ( 'identitycrisis' == $stat ) { |
||
6856 | if ( 'yes' == $value ) { |
||
6857 | $bad[ $stat ] = $value; |
||
6858 | continue; |
||
6859 | } |
||
6860 | } |
||
6861 | |||
6862 | // The rest are good :) |
||
6863 | $good[ $stat ] = $value; |
||
6864 | } |
||
6865 | |||
6866 | $filtered_data = array( |
||
6867 | 'good' => $good, |
||
6868 | 'caution' => $caution, |
||
6869 | 'bad' => $bad |
||
6870 | ); |
||
6871 | |||
6872 | return $filtered_data; |
||
6873 | } |
||
6874 | |||
6875 | |||
6876 | /* |
||
6877 | * This method is used to organize all options that can be reset |
||
6878 | * without disconnecting Jetpack. |
||
6879 | * |
||
6880 | * It is used in class.jetpack-cli.php to reset options |
||
6881 | * |
||
6882 | * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat. |
||
6883 | * |
||
6884 | * @return array of options to delete. |
||
6885 | */ |
||
6886 | public static function get_jetpack_options_for_reset() { |
||
6887 | return Jetpack_Options::get_options_for_reset(); |
||
6888 | } |
||
6889 | |||
6890 | /** |
||
6891 | * Check if an option of a Jetpack module has been updated. |
||
6892 | * |
||
6893 | * If any module option has been updated before Jump Start has been dismissed, |
||
6894 | * update the 'jumpstart' option so we can hide Jump Start. |
||
6895 | * |
||
6896 | * @param string $option_name |
||
6897 | * |
||
6898 | * @return bool |
||
6899 | */ |
||
6900 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
||
6901 | // Bail if Jump Start has already been dismissed |
||
6902 | if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) { |
||
6903 | return false; |
||
6904 | } |
||
6905 | |||
6906 | $jetpack = Jetpack::init(); |
||
6907 | |||
6908 | // Manual build of module options |
||
6909 | $option_names = self::get_jetpack_options_for_reset(); |
||
6910 | |||
6911 | if ( in_array( $option_name, $option_names['wp_options'] ) ) { |
||
6912 | Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' ); |
||
6913 | |||
6914 | //Jump start is being dismissed send data to MC Stats |
||
6915 | $jetpack->stat( 'jumpstart', 'manual,'.$option_name ); |
||
6916 | |||
6917 | $jetpack->do_stats( 'server_side' ); |
||
6918 | } |
||
6919 | |||
6920 | } |
||
6921 | |||
6922 | /* |
||
6923 | * Strip http:// or https:// from a url, replaces forward slash with ::, |
||
6924 | * so we can bring them directly to their site in calypso. |
||
6925 | * |
||
6926 | * @param string | url |
||
6927 | * @return string | url without the guff |
||
6928 | */ |
||
6929 | public static function build_raw_urls( $url ) { |
||
6930 | $strip_http = '/.*?:\/\//i'; |
||
6931 | $url = preg_replace( $strip_http, '', $url ); |
||
6932 | $url = str_replace( '/', '::', $url ); |
||
6933 | return $url; |
||
6934 | } |
||
6935 | |||
6936 | /** |
||
6937 | * Stores and prints out domains to prefetch for page speed optimization. |
||
6938 | * |
||
6939 | * @param mixed $new_urls |
||
6940 | */ |
||
6941 | public static function dns_prefetch( $new_urls = null ) { |
||
6942 | static $prefetch_urls = array(); |
||
6943 | if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) { |
||
6944 | echo "\r\n"; |
||
6945 | foreach ( $prefetch_urls as $this_prefetch_url ) { |
||
6946 | printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) ); |
||
6947 | } |
||
6948 | } elseif ( ! empty( $new_urls ) ) { |
||
6949 | if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) { |
||
6950 | add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ); |
||
6951 | } |
||
6952 | foreach ( (array) $new_urls as $this_new_url ) { |
||
6953 | $prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) ); |
||
6954 | } |
||
6955 | $prefetch_urls = array_unique( $prefetch_urls ); |
||
6956 | } |
||
6957 | } |
||
6958 | |||
6959 | public function wp_dashboard_setup() { |
||
6960 | if ( self::is_active() ) { |
||
6961 | add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 ); |
||
6962 | } |
||
6963 | |||
6964 | if ( has_action( 'jetpack_dashboard_widget' ) ) { |
||
6965 | wp_add_dashboard_widget( |
||
6966 | 'jetpack_summary_widget', |
||
6967 | esc_html__( 'Site Stats', 'jetpack' ), |
||
6968 | array( __CLASS__, 'dashboard_widget' ) |
||
6969 | ); |
||
6970 | wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION ); |
||
6971 | |||
6972 | // If we're inactive and not in development mode, sort our box to the top. |
||
6973 | if ( ! self::is_active() && ! self::is_development_mode() ) { |
||
6974 | global $wp_meta_boxes; |
||
6975 | |||
6976 | $dashboard = $wp_meta_boxes['dashboard']['normal']['core']; |
||
6977 | $ours = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] ); |
||
6978 | |||
6979 | $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard ); |
||
6980 | } |
||
6981 | } |
||
6982 | } |
||
6983 | |||
6984 | /** |
||
6985 | * @param mixed $result Value for the user's option |
||
6986 | * @return mixed |
||
6987 | */ |
||
6988 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
||
6989 | if ( ! is_array( $sorted ) ) { |
||
6990 | return $sorted; |
||
6991 | } |
||
6992 | |||
6993 | foreach ( $sorted as $box_context => $ids ) { |
||
6994 | if ( false === strpos( $ids, 'dashboard_stats' ) ) { |
||
6995 | // If the old id isn't anywhere in the ids, don't bother exploding and fail out. |
||
6996 | continue; |
||
6997 | } |
||
6998 | |||
6999 | $ids_array = explode( ',', $ids ); |
||
7000 | $key = array_search( 'dashboard_stats', $ids_array ); |
||
7001 | |||
7002 | if ( false !== $key ) { |
||
7003 | // If we've found that exact value in the option (and not `google_dashboard_stats` for example) |
||
7004 | $ids_array[ $key ] = 'jetpack_summary_widget'; |
||
7005 | $sorted[ $box_context ] = implode( ',', $ids_array ); |
||
7006 | // We've found it, stop searching, and just return. |
||
7007 | break; |
||
7008 | } |
||
7009 | } |
||
7010 | |||
7011 | return $sorted; |
||
7012 | } |
||
7013 | |||
7014 | public static function dashboard_widget() { |
||
7015 | /** |
||
7016 | * Fires when the dashboard is loaded. |
||
7017 | * |
||
7018 | * @since 3.4.0 |
||
7019 | */ |
||
7020 | do_action( 'jetpack_dashboard_widget' ); |
||
7021 | } |
||
7022 | |||
7023 | public static function dashboard_widget_footer() { |
||
7024 | ?> |
||
7025 | <footer> |
||
7026 | |||
7027 | <div class="protect"> |
||
7028 | <?php if ( Jetpack::is_module_active( 'protect' ) ) : ?> |
||
7029 | <h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3> |
||
7030 | <p><?php echo esc_html_x( 'Blocked malicious login attempts', '{#} Blocked malicious login attempts -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p> |
||
7031 | <?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?> |
||
7032 | <a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( array( 'action' => 'activate', 'module' => 'protect' ) ), 'jetpack_activate-protect' ) ); ?>" class="button button-jetpack" title="<?php esc_attr_e( 'Protect helps to keep you secure from brute-force login attacks.', 'jetpack' ); ?>"> |
||
7033 | <?php esc_html_e( 'Activate Protect', 'jetpack' ); ?> |
||
7034 | </a> |
||
7035 | <?php else : ?> |
||
7036 | <?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?> |
||
7037 | <?php endif; ?> |
||
7038 | </div> |
||
7039 | |||
7040 | <div class="akismet"> |
||
7041 | <?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?> |
||
7042 | <h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3> |
||
7043 | <p><?php echo esc_html_x( 'Spam comments blocked by Akismet.', '{#} Spam comments blocked by Akismet -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p> |
||
7044 | <?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?> |
||
7045 | <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'activate', 'plugin' => 'akismet/akismet.php' ), admin_url( 'plugins.php' ) ), 'activate-plugin_akismet/akismet.php' ) ); ?>" class="button button-jetpack"> |
||
7046 | <?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?> |
||
7047 | </a> |
||
7048 | <?php else : ?> |
||
7049 | <p><a href="<?php echo esc_url( 'https://akismet.com/?utm_source=jetpack&utm_medium=link&utm_campaign=Jetpack%20Dashboard%20Widget%20Footer%20Link' ); ?>"><?php esc_html_e( 'Akismet can help to keep your blog safe from spam!', 'jetpack' ); ?></a></p> |
||
7050 | <?php endif; ?> |
||
7051 | </div> |
||
7052 | |||
7053 | </footer> |
||
7054 | <?php |
||
7055 | } |
||
7056 | |||
7057 | /** |
||
7058 | * Return string containing the Jetpack logo. |
||
7059 | * |
||
7060 | * @since 3.9.0 |
||
7061 | * |
||
7062 | * @return string |
||
7063 | */ |
||
7064 | public static function get_jp_emblem() { |
||
7065 | return '<svg id="jetpack-logo__icon" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 32 32"><path fill="#00BE28" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16c8.8,0,16-7.2,16-16S24.8,0,16,0z M15.2,18.7h-8l8-15.5V18.7z M16.8,28.8 V13.3h8L16.8,28.8z"/></svg>'; |
||
7066 | } |
||
7067 | |||
7068 | /* |
||
7069 | * Adds a "blank" column in the user admin table to display indication of user connection. |
||
7070 | */ |
||
7071 | function jetpack_icon_user_connected( $columns ) { |
||
7072 | $columns['user_jetpack'] = ''; |
||
7073 | return $columns; |
||
7074 | } |
||
7075 | |||
7076 | /* |
||
7077 | * Show Jetpack icon if the user is linked. |
||
7078 | */ |
||
7079 | function jetpack_show_user_connected_icon( $val, $col, $user_id ) { |
||
7080 | if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) { |
||
7081 | $emblem_html = sprintf( |
||
7082 | '<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>', |
||
7083 | esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ), |
||
7084 | Jetpack::get_jp_emblem() |
||
7085 | ); |
||
7086 | return $emblem_html; |
||
7087 | } |
||
7088 | |||
7089 | return $val; |
||
7090 | } |
||
7091 | |||
7092 | /* |
||
7093 | * Style the Jetpack user column |
||
7094 | */ |
||
7095 | function jetpack_user_col_style() { |
||
7096 | global $current_screen; |
||
7097 | if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?> |
||
7098 | <style> |
||
7099 | .fixed .column-user_jetpack { |
||
7100 | width: 21px; |
||
7101 | } |
||
7102 | .jp-emblem-user-admin svg { |
||
7103 | width: 20px; |
||
7104 | height: 20px; |
||
7105 | } |
||
7106 | .jp-emblem-user-admin path { |
||
7107 | fill: #00BE28; |
||
7108 | } |
||
7109 | </style> |
||
7110 | <?php } |
||
7111 | } |
||
7112 | |||
7113 | /** |
||
7114 | * Checks if Akismet is active and working. |
||
7115 | * |
||
7116 | * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key |
||
7117 | * that implied usage of methods present since more recent version. |
||
7118 | * See https://github.com/Automattic/jetpack/pull/9585 |
||
7119 | * |
||
7120 | * @since 5.1.0 |
||
7121 | * |
||
7122 | * @return bool True = Akismet available. False = Aksimet not available. |
||
7123 | */ |
||
7124 | public static function is_akismet_active() { |
||
7125 | if ( method_exists( 'Akismet' , 'http_post' ) ) { |
||
7126 | $akismet_key = Akismet::get_api_key(); |
||
7127 | if ( ! $akismet_key ) { |
||
7128 | return false; |
||
7129 | } |
||
7130 | $cached_key_verification = get_transient( 'jetpack_akismet_key_is_valid' ); |
||
7131 | |||
7132 | // We cache the result of the Akismet key verification for ten minutes. |
||
7133 | if ( in_array( $cached_key_verification, array( 'valid', 'invalid' ) ) ) { |
||
7134 | $akismet_key_state = $cached_key_verification; |
||
7135 | } else { |
||
7136 | $akismet_key_state = Akismet::verify_key( $akismet_key ); |
||
7137 | if ( 'failed' === $akismet_key_state ) { |
||
7138 | return false; |
||
7139 | } |
||
7140 | set_transient( 'jetpack_akismet_key_is_valid', $akismet_key_state, 10 * MINUTE_IN_SECONDS ); |
||
7141 | } |
||
7142 | |||
7143 | return ( 'valid' === $akismet_key_state ); |
||
7144 | } |
||
7145 | return false; |
||
7146 | } |
||
7147 | |||
7148 | /** |
||
7149 | * Checks if one or more function names is in debug_backtrace |
||
7150 | * |
||
7151 | * @param $names Mixed string name of function or array of string names of functions |
||
7152 | * |
||
7153 | * @return bool |
||
7154 | */ |
||
7155 | public static function is_function_in_backtrace( $names ) { |
||
7156 | $backtrace = debug_backtrace( false ); // phpcs:ignore PHPCompatibility |
||
7157 | if ( ! is_array( $names ) ) { |
||
7158 | $names = array( $names ); |
||
7159 | } |
||
7160 | $names_as_keys = array_flip( $names ); |
||
7161 | |||
7162 | //Do check in constant O(1) time for PHP5.5+ |
||
7163 | if ( function_exists( 'array_column' ) ) { |
||
7164 | $backtrace_functions = array_column( $backtrace, 'function' ); // phpcs:ignore PHPCompatibility |
||
7165 | $backtrace_functions_as_keys = array_flip( $backtrace_functions ); |
||
7166 | $intersection = array_intersect_key( $backtrace_functions_as_keys, $names_as_keys ); |
||
7167 | return ! empty ( $intersection ); |
||
7168 | } |
||
7169 | |||
7170 | //Do check in linear O(n) time for < PHP5.5 ( using isset at least prevents O(n^2) ) |
||
7171 | foreach ( $backtrace as $call ) { |
||
7172 | if ( isset( $names_as_keys[ $call['function'] ] ) ) { |
||
7173 | return true; |
||
7174 | } |
||
7175 | } |
||
7176 | return false; |
||
7177 | } |
||
7178 | |||
7179 | /** |
||
7180 | * Given a minified path, and a non-minified path, will return |
||
7181 | * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy. |
||
7182 | * |
||
7183 | * Both `$min_base` and `$non_min_base` are expected to be relative to the |
||
7184 | * root Jetpack directory. |
||
7185 | * |
||
7186 | * @since 5.6.0 |
||
7187 | * |
||
7188 | * @param string $min_path |
||
7189 | * @param string $non_min_path |
||
7190 | * @return string The URL to the file |
||
7191 | */ |
||
7192 | public static function get_file_url_for_environment( $min_path, $non_min_path ) { |
||
7193 | $path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) ) |
||
7194 | ? $non_min_path |
||
7195 | : $min_path; |
||
7196 | |||
7197 | return plugins_url( $path, JETPACK__PLUGIN_FILE ); |
||
7198 | } |
||
7199 | |||
7200 | /** |
||
7201 | * Checks for whether Jetpack Rewind is enabled. |
||
7202 | * Will return true if the state of Rewind is anything except "unavailable". |
||
7203 | * @return bool|int|mixed |
||
7204 | */ |
||
7205 | public static function is_rewind_enabled() { |
||
7206 | if ( ! Jetpack::is_active() ) { |
||
7207 | return false; |
||
7208 | } |
||
7209 | |||
7210 | $rewind_enabled = get_transient( 'jetpack_rewind_enabled' ); |
||
7211 | if ( false === $rewind_enabled ) { |
||
7212 | jetpack_require_lib( 'class.core-rest-api-endpoints' ); |
||
7213 | $rewind_data = (array) Jetpack_Core_Json_Api_Endpoints::rewind_data(); |
||
7214 | $rewind_enabled = ( ! is_wp_error( $rewind_data ) |
||
7215 | && ! empty( $rewind_data['state'] ) |
||
7216 | && 'active' === $rewind_data['state'] ) |
||
7217 | ? 1 |
||
7218 | : 0; |
||
7219 | |||
7220 | set_transient( 'jetpack_rewind_enabled', $rewind_enabled, 10 * MINUTE_IN_SECONDS ); |
||
7221 | } |
||
7222 | return $rewind_enabled; |
||
7223 | } |
||
7224 | |||
7225 | /** |
||
7226 | * Checks whether or not TOS has been agreed upon. |
||
7227 | * Will return true if a user has clicked to register, or is already connected. |
||
7228 | */ |
||
7229 | public static function jetpack_tos_agreed() { |
||
7230 | return Jetpack_Options::get_option( 'tos_agreed' ) || Jetpack::is_active(); |
||
7231 | } |
||
7232 | |||
7233 | /** |
||
7234 | * Handles activating default modules as well general cleanup for the new connection. |
||
7235 | * |
||
7236 | * @param boolean $activate_sso Whether to activate the SSO module when activating default modules. |
||
7237 | * @param boolean $redirect_on_activation_error Whether to redirect on activation error. |
||
7238 | * @return void |
||
7239 | */ |
||
7240 | public static function handle_post_authorization_actions( $activate_sso = false, $redirect_on_activation_error = false ) { |
||
7241 | $other_modules = $activate_sso |
||
7242 | ? array( 'sso' ) |
||
7243 | : array(); |
||
7244 | |||
7245 | View Code Duplication | if ( $active_modules = Jetpack_Options::get_option( 'active_modules' ) ) { |
|
7246 | Jetpack::delete_active_modules(); |
||
7247 | |||
7248 | Jetpack::activate_default_modules( 999, 1, array_merge( $active_modules, $other_modules ), $redirect_on_activation_error, false ); |
||
7249 | } else { |
||
7250 | Jetpack::activate_default_modules( false, false, $other_modules, $redirect_on_activation_error, false ); |
||
7251 | } |
||
7252 | |||
7253 | // Since this is a fresh connection, be sure to clear out IDC options |
||
7254 | Jetpack_IDC::clear_all_idc_options(); |
||
7255 | Jetpack_Options::delete_raw_option( 'jetpack_last_connect_url_check' ); |
||
7256 | |||
7257 | // Start nonce cleaner |
||
7258 | wp_clear_scheduled_hook( 'jetpack_clean_nonces' ); |
||
7259 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); |
||
7260 | |||
7261 | Jetpack::state( 'message', 'authorized' ); |
||
7262 | } |
||
7263 | |||
7264 | /** |
||
7265 | <<<<<<< HEAD |
||
7266 | * Check if Gutenberg editor is available |
||
7267 | * |
||
7268 | * @since 6.5.0 |
||
7269 | * |
||
7270 | * @return bool |
||
7271 | */ |
||
7272 | public static function is_gutenberg_available() { |
||
7275 | |||
7276 | /** |
||
7277 | * Load Gutenberg editor blocks. |
||
7278 | * |
||
7279 | * This section meant for unstable phase of developing Jetpack's |
||
7280 | * Gutenberg extensions. If still around after Sep. 15, 2018 then |
||
7281 | * please file an issue to remove it; if nobody responds within one |
||
7282 | * week then please delete the code. |
||
7283 | * |
||
7284 | * |
||
7285 | * Loading blocks is disabled by default and enabled via filter: |
||
7286 | * add_filter( 'jetpack_gutenberg', '__return_true', 10 ); |
||
7287 | * |
||
7288 | * When enabled, blocks are loaded from CDN by default. To load locally instead: |
||
7289 | * add_filter( 'jetpack_gutenberg_cdn', '__return_false', 10 ); |
||
7290 | * |
||
7291 | * Note that when loaded locally, you need to build the files yourself: |
||
7292 | * - _inc/blocks/jetpack-editor.js |
||
7293 | * - _inc/blocks/jetpack-editor.css |
||
7294 | * |
||
7295 | * CDN cache is busted once a day or when Jetpack version changes. To customize it: |
||
7296 | * add_filter( 'jetpack_gutenberg_cdn_cache_buster', function( $version ) { return time(); }, 10, 1 ); |
||
7297 | * |
||
7298 | * @since 6.5.0 |
||
7299 | * |
||
7300 | * @return void |
||
7301 | */ |
||
7302 | public static function load_jetpack_gutenberg() { |
||
7367 | |||
7368 | /** |
||
7369 | * Returns a boolean for whether backups UI should be displayed or not. |
||
7370 | * |
||
7371 | * @return bool Should backups UI be displayed? |
||
7372 | */ |
||
7373 | public static function show_backups_ui() { |
||
7374 | /** |
||
7375 | * Whether UI for backups should be displayed. |
||
7376 | * |
||
7377 | * @since 6.5.0 |
||
7378 | * |
||
7379 | * @param bool $show_backups Should UI for backups be displayed? True by default. |
||
7380 | */ |
||
7381 | return Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) || apply_filters( 'jetpack_show_backups', true ); |
||
7382 | } |
||
7383 | } |
||
7384 |
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.