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 | * When making changes to that list, you must also update concat_list in tools/builder/frontend-css.js. | ||
| 39 | */ | ||
| 40 | public $concatenated_style_handles = array( | ||
| 41 | 'jetpack-carousel', | ||
| 42 | 'grunion.css', | ||
| 43 | 'the-neverending-homepage', | ||
| 44 | 'jetpack_likes', | ||
| 45 | 'jetpack_related-posts', | ||
| 46 | 'sharedaddy', | ||
| 47 | 'jetpack-slideshow', | ||
| 48 | 'presentations', | ||
| 49 | 'quiz', | ||
| 50 | 'jetpack-subscriptions', | ||
| 51 | 'jetpack-responsive-videos-style', | ||
| 52 | 'jetpack-social-menu', | ||
| 53 | 'tiled-gallery', | ||
| 54 | 'jetpack_display_posts_widget', | ||
| 55 | 'gravatar-profile-widget', | ||
| 56 | 'goodreads-widget', | ||
| 57 | 'jetpack_social_media_icons_widget', | ||
| 58 | 'jetpack-top-posts-widget', | ||
| 59 | 'jetpack_image_widget', | ||
| 60 | 'jetpack-my-community-widget', | ||
| 61 | 'jetpack-authors-widget', | ||
| 62 | 'wordads', | ||
| 63 | 'eu-cookie-law-style', | ||
| 64 | 'flickr-widget-style', | ||
| 65 | 'jetpack-search-widget', | ||
| 66 | 'jetpack-simple-payments-widget-style', | ||
| 67 | 'jetpack-widget-social-icons-styles', | ||
| 68 | ); | ||
| 69 | |||
| 70 | /** | ||
| 71 | * Contains all assets that have had their URL rewritten to minified versions. | ||
| 72 | * | ||
| 73 | * @var array | ||
| 74 | */ | ||
| 75 | static $min_assets = array(); | ||
| 76 | |||
| 77 | public $plugins_to_deactivate = array( | ||
| 78 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), | ||
| 79 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), | ||
| 80 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), | ||
| 81 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), | ||
| 82 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), | ||
| 83 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), | ||
| 84 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), | ||
| 85 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), | ||
| 86 | 'videopress' => array( 'video/video.php', 'VideoPress' ), | ||
| 87 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), | ||
| 88 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), | ||
| 89 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), | ||
| 90 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), | ||
| 91 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) | ||
| 92 | ); | ||
| 93 | |||
| 94 | static $capability_translations = array( | ||
| 95 | 'administrator' => 'manage_options', | ||
| 96 | 'editor' => 'edit_others_posts', | ||
| 97 | 'author' => 'publish_posts', | ||
| 98 | 'contributor' => 'edit_posts', | ||
| 99 | 'subscriber' => 'read', | ||
| 100 | ); | ||
| 101 | |||
| 102 | /** | ||
| 103 | * Map of modules that have conflicts with plugins and should not be auto-activated | ||
| 104 | * if the plugins are active. Used by filter_default_modules | ||
| 105 | * | ||
| 106 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, | ||
| 107 | * change `module-slug` and add this to your plugin: | ||
| 108 | * | ||
| 109 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); | ||
| 110 | 	 * function my_jetpack_get_default_modules( $modules ) { | ||
| 111 | * return array_diff( $modules, array( 'module-slug' ) ); | ||
| 112 | * } | ||
| 113 | * | ||
| 114 | * @var array | ||
| 115 | */ | ||
| 116 | private $conflicting_plugins = array( | ||
| 117 | 'comments' => array( | ||
| 118 | 'Intense Debate' => 'intensedebate/intensedebate.php', | ||
| 119 | 'Disqus' => 'disqus-comment-system/disqus.php', | ||
| 120 | 'Livefyre' => 'livefyre-comments/livefyre.php', | ||
| 121 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', | ||
| 122 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', | ||
| 123 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', | ||
| 124 | ), | ||
| 125 | 'comment-likes' => array( | ||
| 126 | 'Epoch' => 'epoch/plugincore.php', | ||
| 127 | ), | ||
| 128 | 'contact-form' => array( | ||
| 129 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', | ||
| 130 | 'Gravity Forms' => 'gravityforms/gravityforms.php', | ||
| 131 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', | ||
| 132 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', | ||
| 133 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', | ||
| 134 | 'Ninja Forms' => 'ninja-forms/ninja-forms.php', | ||
| 135 | ), | ||
| 136 | 'minileven' => array( | ||
| 137 | 'WPtouch' => 'wptouch/wptouch.php', | ||
| 138 | ), | ||
| 139 | 'latex' => array( | ||
| 140 | 'LaTeX for WordPress' => 'latex/latex.php', | ||
| 141 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', | ||
| 142 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', | ||
| 143 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', | ||
| 144 | 'Enable Latex' => 'enable-latex/enable-latex.php', | ||
| 145 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', | ||
| 146 | ), | ||
| 147 | 'protect' => array( | ||
| 148 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', | ||
| 149 | 'Captcha' => 'captcha/captcha.php', | ||
| 150 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', | ||
| 151 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', | ||
| 152 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', | ||
| 153 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', | ||
| 154 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', | ||
| 155 | 'Security-protection' => 'security-protection/security-protection.php', | ||
| 156 | 'Login Security' => 'login-security/login-security.php', | ||
| 157 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', | ||
| 158 | 'Wordfence Security' => 'wordfence/wordfence.php', | ||
| 159 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', | ||
| 160 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', | ||
| 161 | ), | ||
| 162 | 'random-redirect' => array( | ||
| 163 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', | ||
| 164 | ), | ||
| 165 | 'related-posts' => array( | ||
| 166 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', | ||
| 167 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', | ||
| 168 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', | ||
| 169 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', | ||
| 170 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', | ||
| 171 | 'outbrain' => 'outbrain/outbrain.php', | ||
| 172 | 'Shareaholic' => 'shareaholic/shareaholic.php', | ||
| 173 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', | ||
| 174 | ), | ||
| 175 | 'sharedaddy' => array( | ||
| 176 | 'AddThis' => 'addthis/addthis_social_widget.php', | ||
| 177 | 'Add To Any' => 'add-to-any/add-to-any.php', | ||
| 178 | 'ShareThis' => 'share-this/sharethis.php', | ||
| 179 | 'Shareaholic' => 'shareaholic/shareaholic.php', | ||
| 180 | ), | ||
| 181 | 'seo-tools' => array( | ||
| 182 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', | ||
| 183 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', | ||
| 184 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', | ||
| 185 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', | ||
| 186 | 'The SEO Framework' => 'autodescription/autodescription.php', | ||
| 187 | ), | ||
| 188 | 'verification-tools' => array( | ||
| 189 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', | ||
| 190 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', | ||
| 191 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', | ||
| 192 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', | ||
| 193 | 'The SEO Framework' => 'autodescription/autodescription.php', | ||
| 194 | ), | ||
| 195 | 'widget-visibility' => array( | ||
| 196 | 'Widget Logic' => 'widget-logic/widget_logic.php', | ||
| 197 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', | ||
| 198 | ), | ||
| 199 | 'sitemaps' => array( | ||
| 200 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', | ||
| 201 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', | ||
| 202 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', | ||
| 203 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', | ||
| 204 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', | ||
| 205 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', | ||
| 206 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', | ||
| 207 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', | ||
| 208 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', | ||
| 209 | 'The SEO Framework' => 'autodescription/autodescription.php', | ||
| 210 | 'Sitemap' => 'sitemap/sitemap.php', | ||
| 211 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', | ||
| 212 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', | ||
| 213 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', | ||
| 214 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', | ||
| 215 | ), | ||
| 216 | 'lazy-images' => array( | ||
| 217 | 'Lazy Load' => 'lazy-load/lazy-load.php', | ||
| 218 | 'BJ Lazy Load' => 'bj-lazy-load/bj-lazy-load.php', | ||
| 219 | 'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php', | ||
| 220 | ), | ||
| 221 | ); | ||
| 222 | |||
| 223 | /** | ||
| 224 | * Plugins for which we turn off our Facebook OG Tags implementation. | ||
| 225 | * | ||
| 226 | * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate | ||
| 227 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. | ||
| 228 | * | ||
| 229 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: | ||
| 230 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); | ||
| 231 | */ | ||
| 232 | private $open_graph_conflicting_plugins = array( | ||
| 233 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', | ||
| 234 | // 2 Click Social Media Buttons | ||
| 235 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook | ||
| 236 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags | ||
| 237 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail | ||
| 238 | 'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php', | ||
| 239 | // Open Graph Meta Tags by Heateor | ||
| 240 | 'facebook/facebook.php', // Facebook (official plugin) | ||
| 241 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one | ||
| 242 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', | ||
| 243 | // Facebook Featured Image & OG Meta Tags | ||
| 244 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags | ||
| 245 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', | ||
| 246 | // Facebook Open Graph Meta Tags for WordPress | ||
| 247 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag | ||
| 248 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer | ||
| 249 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', | ||
| 250 | // Fedmich's Facebook Open Graph Meta | ||
| 251 | 'network-publisher/networkpub.php', // Network Publisher | ||
| 252 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG | ||
| 253 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', | ||
| 254 | // NextScripts SNAP | ||
| 255 | 'og-tags/og-tags.php', // OG Tags | ||
| 256 | 'opengraph/opengraph.php', // Open Graph | ||
| 257 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', | ||
| 258 | // Open Graph Protocol Framework | ||
| 259 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments | ||
| 260 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate | ||
| 261 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic | ||
| 262 | 'shareaholic/sexy-bookmarks.php', // Shareaholic | ||
| 263 | 'sharepress/sharepress.php', // SharePress | ||
| 264 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect | ||
| 265 | 'social-discussions/social-discussions.php', // Social Discussions | ||
| 266 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit | ||
| 267 | 'socialize/socialize.php', // Socialize | ||
| 268 | 'squirrly-seo/squirrly.php', // SEO by SQUIRRLY™ | ||
| 269 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', | ||
| 270 | // Tweet, Like, Google +1 and Share | ||
| 271 | 'wordbooker/wordbooker.php', // Wordbooker | ||
| 272 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization | ||
| 273 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver | ||
| 274 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', | ||
| 275 | // WP Facebook Like Send & Open Graph Meta | ||
| 276 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol | ||
| 277 | 'wp-ogp/wp-ogp.php', // WP-OGP | ||
| 278 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin | ||
| 279 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button | ||
| 280 | 'open-graph-metabox/open-graph-metabox.php' // Open Graph Metabox | ||
| 281 | ); | ||
| 282 | |||
| 283 | /** | ||
| 284 | * Plugins for which we turn off our Twitter Cards Tags implementation. | ||
| 285 | */ | ||
| 286 | private $twitter_cards_conflicting_plugins = array( | ||
| 287 | // 'twitter/twitter.php', // The official one handles this on its own. | ||
| 288 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php | ||
| 289 | 'eewee-twitter-card/index.php', // Eewee Twitter Card | ||
| 290 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards | ||
| 291 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards | ||
| 292 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', | ||
| 293 | // Pure Web Brilliant's Social Graph Twitter Cards Extension | ||
| 294 | 'twitter-cards/twitter-cards.php', // Twitter Cards | ||
| 295 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta | ||
| 296 | 'wp-to-twitter/wp-to-twitter.php', // WP to Twitter | ||
| 297 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards | ||
| 298 | ); | ||
| 299 | |||
| 300 | /** | ||
| 301 | * Message to display in admin_notice | ||
| 302 | * @var string | ||
| 303 | */ | ||
| 304 | public $message = ''; | ||
| 305 | |||
| 306 | /** | ||
| 307 | * Error to display in admin_notice | ||
| 308 | * @var string | ||
| 309 | */ | ||
| 310 | public $error = ''; | ||
| 311 | |||
| 312 | /** | ||
| 313 | * Modules that need more privacy description. | ||
| 314 | * @var string | ||
| 315 | */ | ||
| 316 | public $privacy_checks = ''; | ||
| 317 | |||
| 318 | /** | ||
| 319 | * Stats to record once the page loads | ||
| 320 | * | ||
| 321 | * @var array | ||
| 322 | */ | ||
| 323 | public $stats = array(); | ||
| 324 | |||
| 325 | /** | ||
| 326 | * Jetpack_Sync object | ||
| 327 | */ | ||
| 328 | public $sync; | ||
| 329 | |||
| 330 | /** | ||
| 331 | * Verified data for JSON authorization request | ||
| 332 | */ | ||
| 333 | public $json_api_authorization_request = array(); | ||
| 334 | |||
| 335 | /** | ||
| 336 | * @var string Transient key used to prevent multiple simultaneous plugin upgrades | ||
| 337 | */ | ||
| 338 | public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock'; | ||
| 339 | |||
| 340 | /** | ||
| 341 | * Holds the singleton instance of this class | ||
| 342 | * @since 2.3.3 | ||
| 343 | * @var Jetpack | ||
| 344 | */ | ||
| 345 | static $instance = false; | ||
| 346 | |||
| 347 | /** | ||
| 348 | * Singleton | ||
| 349 | * @static | ||
| 350 | */ | ||
| 351 | 	public static function init() { | ||
| 352 | 		if ( ! self::$instance ) { | ||
| 353 | self::$instance = new Jetpack; | ||
| 354 | |||
| 355 | self::$instance->plugin_upgrade(); | ||
| 356 | } | ||
| 357 | |||
| 358 | return self::$instance; | ||
| 359 | } | ||
| 360 | |||
| 361 | /** | ||
| 362 | * Must never be called statically | ||
| 363 | */ | ||
| 364 | 	function plugin_upgrade() { | ||
| 365 | 		if ( Jetpack::is_active() ) { | ||
| 366 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); | ||
| 367 | 			if ( JETPACK__VERSION != $version ) { | ||
| 368 | // Prevent multiple upgrades at once - only a single process should trigger | ||
| 369 | // an upgrade to avoid stampedes | ||
| 370 | 				if ( false !== get_transient( self::$plugin_upgrade_lock_key ) ) { | ||
| 371 | return; | ||
| 372 | } | ||
| 373 | |||
| 374 | // Set a short lock to prevent multiple instances of the upgrade | ||
| 375 | set_transient( self::$plugin_upgrade_lock_key, 1, 10 ); | ||
| 376 | |||
| 377 | // check which active modules actually exist and remove others from active_modules list | ||
| 378 | $unfiltered_modules = Jetpack::get_active_modules(); | ||
| 379 | $modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) ); | ||
| 380 | 				if ( array_diff( $unfiltered_modules, $modules ) ) { | ||
| 381 | Jetpack::update_active_modules( $modules ); | ||
| 382 | } | ||
| 383 | |||
| 384 | add_action( 'init', array( __CLASS__, 'activate_new_modules' ) ); | ||
| 385 | |||
| 386 | // Upgrade to 4.3.0 | ||
| 387 | 				if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) { | ||
| 388 | Jetpack_Options::delete_option( 'identity_crisis_whitelist' ); | ||
| 389 | } | ||
| 390 | |||
| 391 | // Make sure Markdown for posts gets turned back on | ||
| 392 | 				if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) { | ||
| 393 | update_option( 'wpcom_publish_posts_with_markdown', true ); | ||
| 394 | } | ||
| 395 | |||
| 396 | 				if ( did_action( 'wp_loaded' ) ) { | ||
| 397 | self::upgrade_on_load(); | ||
| 398 | 				} else { | ||
| 399 | add_action( | ||
| 400 | 'wp_loaded', | ||
| 401 | array( __CLASS__, 'upgrade_on_load' ) | ||
| 402 | ); | ||
| 403 | } | ||
| 404 | } | ||
| 405 | } | ||
| 406 | } | ||
| 407 | |||
| 408 | /** | ||
| 409 | * Runs upgrade routines that need to have modules loaded. | ||
| 410 | */ | ||
| 411 | 	static function upgrade_on_load() { | ||
| 412 | |||
| 413 | // Not attempting any upgrades if jetpack_modules_loaded did not fire. | ||
| 414 | // This can happen in case Jetpack has been just upgraded and is | ||
| 415 | // being initialized late during the page load. In this case we wait | ||
| 416 | // until the next proper admin page load with Jetpack active. | ||
| 417 | 		if ( ! did_action( 'jetpack_modules_loaded' ) ) { | ||
| 418 | delete_transient( self::$plugin_upgrade_lock_key ); | ||
| 419 | |||
| 420 | return; | ||
| 421 | } | ||
| 422 | |||
| 423 | Jetpack::maybe_set_version_option(); | ||
| 424 | |||
| 425 | 		if ( method_exists( 'Jetpack_Widget_Conditions', 'migrate_post_type_rules' ) ) { | ||
| 426 | Jetpack_Widget_Conditions::migrate_post_type_rules(); | ||
| 427 | } | ||
| 428 | |||
| 429 | if ( | ||
| 430 | class_exists( 'Jetpack_Sitemap_Manager' ) | ||
| 431 | && version_compare( JETPACK__VERSION, '5.3', '>=' ) | ||
| 432 | 		) { | ||
| 433 | do_action( 'jetpack_sitemaps_purge_data' ); | ||
| 434 | } | ||
| 435 | |||
| 436 | delete_transient( self::$plugin_upgrade_lock_key ); | ||
| 437 | } | ||
| 438 | |||
| 439 | 	static function update_active_modules( $modules ) { | ||
| 493 | |||
| 494 | 	static function delete_active_modules() { | ||
| 497 | |||
| 498 | /** | ||
| 499 | * Constructor. Initializes WordPress hooks | ||
| 500 | */ | ||
| 501 | 	private function __construct() { | ||
| 502 | /* | ||
| 503 | * Check for and alert any deprecated hooks | ||
| 504 | */ | ||
| 505 | add_action( 'init', array( $this, 'deprecated_hooks' ) ); | ||
| 506 | |||
| 507 | /* | ||
| 508 | * Enable enhanced handling of previewing sites in Calypso | ||
| 509 | */ | ||
| 510 | 		if ( Jetpack::is_active() ) { | ||
| 511 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php'; | ||
| 512 | add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 ); | ||
| 513 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-keyring-service-helper.php'; | ||
| 514 | add_action( 'init', array( 'Jetpack_Keyring_Service_Helper', 'init' ), 9, 0 ); | ||
| 515 | } | ||
| 516 | |||
| 517 | /* | ||
| 518 | * Load things that should only be in Network Admin. | ||
| 519 | * | ||
| 520 | * For now blow away everything else until a more full | ||
| 521 | * understanding of what is needed at the network level is | ||
| 522 | * available | ||
| 523 | */ | ||
| 524 | 		if ( is_multisite() ) { | ||
| 525 | Jetpack_Network::init(); | ||
| 526 | } | ||
| 527 | |||
| 528 | /** | ||
| 529 | * Prepare Gutenberg Editor functionality | ||
| 530 | */ | ||
| 531 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-gutenberg.php'; | ||
| 532 | Jetpack_Gutenberg::init(); | ||
| 533 | Jetpack_Gutenberg::load_independent_blocks(); | ||
| 534 | add_action( 'enqueue_block_editor_assets', array( 'Jetpack_Gutenberg', 'enqueue_block_editor_assets' ) ); | ||
| 535 | |||
| 536 | add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 ); | ||
| 537 | |||
| 538 | // Unlink user before deleting the user from .com | ||
| 539 | add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 ); | ||
| 540 | add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 ); | ||
| 541 | |||
| 542 | // Alternate XML-RPC, via ?for=jetpack&jetpack=comms | ||
| 543 | 		if ( isset( $_GET['jetpack'] ) && 'comms' == $_GET['jetpack'] && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) { | ||
| 544 | 			if ( ! defined( 'XMLRPC_REQUEST' ) ) { | ||
| 545 | define( 'XMLRPC_REQUEST', true ); | ||
| 546 | } | ||
| 547 | |||
| 548 | add_action( 'template_redirect', array( $this, 'alternate_xmlrpc' ) ); | ||
| 549 | |||
| 550 | add_filter( 'xmlrpc_methods', array( $this, 'remove_non_jetpack_xmlrpc_methods' ), 1000 ); | ||
| 551 | } | ||
| 552 | |||
| 553 | 		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) { | ||
| 554 | @ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed. | ||
|  | |||
| 555 | |||
| 556 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php'; | ||
| 557 | $this->xmlrpc_server = new Jetpack_XMLRPC_Server(); | ||
| 558 | |||
| 559 | $this->require_jetpack_authentication(); | ||
| 560 | |||
| 561 | 			if ( Jetpack::is_active() ) { | ||
| 562 | // Hack to preserve $HTTP_RAW_POST_DATA | ||
| 563 | add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) ); | ||
| 564 | |||
| 565 | $signed = $this->verify_xml_rpc_signature(); | ||
| 566 | View Code Duplication | 				if ( $signed && ! is_wp_error( $signed ) ) { | |
| 567 | // The actual API methods. | ||
| 568 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) ); | ||
| 569 | 				} else { | ||
| 570 | // The jetpack.authorize method should be available for unauthenticated users on a site with an | ||
| 571 | // active Jetpack connection, so that additional users can link their account. | ||
| 572 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) ); | ||
| 573 | } | ||
| 574 | View Code Duplication | 			} else { | |
| 575 | // The bootstrap API methods. | ||
| 576 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) ); | ||
| 577 | $signed = $this->verify_xml_rpc_signature(); | ||
| 578 | 				if ( $signed && ! is_wp_error( $signed ) ) { | ||
| 579 | // the jetpack Provision method is available for blog-token-signed requests | ||
| 580 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'provision_xmlrpc_methods' ) ); | ||
| 581 | } | ||
| 582 | } | ||
| 583 | |||
| 584 | // Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on. | ||
| 585 | add_filter( 'pre_option_enable_xmlrpc', '__return_true' ); | ||
| 586 | } elseif ( | ||
| 587 | is_admin() && | ||
| 588 | isset( $_POST['action'] ) && ( | ||
| 589 | 'jetpack_upload_file' == $_POST['action'] || | ||
| 590 | 'jetpack_update_file' == $_POST['action'] | ||
| 591 | ) | ||
| 592 | 		) { | ||
| 593 | $this->require_jetpack_authentication(); | ||
| 594 | $this->add_remote_request_handlers(); | ||
| 595 | 		} else { | ||
| 596 | 			if ( Jetpack::is_active() ) { | ||
| 597 | add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) ); | ||
| 598 | add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) ); | ||
| 599 | } | ||
| 600 | } | ||
| 601 | |||
| 602 | 		if ( Jetpack::is_active() ) { | ||
| 603 | Jetpack_Heartbeat::init(); | ||
| 604 | 			if ( Jetpack::is_module_active( 'stats' ) && Jetpack::is_module_active( 'search' ) ) { | ||
| 605 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php'; | ||
| 606 | Jetpack_Search_Performance_Logger::init(); | ||
| 607 | } | ||
| 608 | } | ||
| 609 | |||
| 610 | add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) ); | ||
| 611 | add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) ); | ||
| 612 | |||
| 613 | add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) ); | ||
| 614 | 		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) { | ||
| 615 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); | ||
| 616 | } | ||
| 617 | |||
| 618 | add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) ); | ||
| 619 | |||
| 620 | add_action( 'admin_init', array( $this, 'admin_init' ) ); | ||
| 621 | add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) ); | ||
| 622 | |||
| 623 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); | ||
| 624 | |||
| 625 | add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) ); | ||
| 626 | // Filter the dashboard meta box order to swap the new one in in place of the old one. | ||
| 627 | add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) ); | ||
| 628 | |||
| 629 | // returns HTTPS support status | ||
| 630 | add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) ); | ||
| 631 | |||
| 632 | // JITM AJAX callback function | ||
| 633 | add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) ); | ||
| 634 | |||
| 635 | // Universal ajax callback for all tracking events triggered via js | ||
| 636 | add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) ); | ||
| 637 | |||
| 638 | add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) ); | ||
| 639 | |||
| 640 | add_action( 'wp_loaded', array( $this, 'register_assets' ) ); | ||
| 641 | add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) ); | ||
| 642 | add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) ); | ||
| 643 | add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) ); | ||
| 644 | |||
| 645 | add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 ); | ||
| 646 | |||
| 647 | /** | ||
| 648 | * These actions run checks to load additional files. | ||
| 649 | * They check for external files or plugins, so they need to run as late as possible. | ||
| 650 | */ | ||
| 651 | add_action( 'wp_head', array( $this, 'check_open_graph' ), 1 ); | ||
| 652 | add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ), 999 ); | ||
| 653 | add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 ); | ||
| 654 | |||
| 655 | add_filter( 'plugins_url', array( 'Jetpack', 'maybe_min_asset' ), 1, 3 ); | ||
| 656 | add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2 ); | ||
| 657 | add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 ); | ||
| 658 | |||
| 659 | add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 ); | ||
| 660 | add_filter( 'profile_update', array( 'Jetpack', 'user_meta_cleanup' ) ); | ||
| 661 | |||
| 662 | add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) ); | ||
| 663 | add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 ); | ||
| 664 | |||
| 665 | // A filter to control all just in time messages | ||
| 666 | add_filter( 'jetpack_just_in_time_msgs', '__return_true', 9 ); | ||
| 667 | add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9); | ||
| 668 | |||
| 669 | // If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin. | ||
| 670 | // We should make sure to only do this for front end links. | ||
| 671 | 		if ( Jetpack::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) { | ||
| 672 | add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 ); | ||
| 673 | add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 ); | ||
| 674 | |||
| 675 | //we'll override wp_notify_postauthor and wp_notify_moderator pluggable functions | ||
| 676 | //so they point moderation links on emails to Calypso | ||
| 677 | jetpack_require_lib( 'functions.wp-notify' ); | ||
| 678 | } | ||
| 679 | |||
| 680 | // Update the Jetpack plan from API on heartbeats | ||
| 681 | add_action( 'jetpack_heartbeat', array( 'Jetpack_Plan', 'refresh_from_wpcom' ) ); | ||
| 682 | |||
| 683 | /** | ||
| 684 | * This is the hack to concatenate all css files into one. | ||
| 685 | * For description and reasoning see the implode_frontend_css method | ||
| 686 | * | ||
| 687 | * Super late priority so we catch all the registered styles | ||
| 688 | */ | ||
| 689 | 		if( !is_admin() ) { | ||
| 690 | add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first | ||
| 691 | add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles` | ||
| 692 | } | ||
| 693 | |||
| 694 | /** | ||
| 695 | * These are sync actions that we need to keep track of for jitms | ||
| 696 | */ | ||
| 697 | add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 ); | ||
| 698 | |||
| 699 | // Actually push the stats on shutdown. | ||
| 700 | 		if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) { | ||
| 701 | add_action( 'shutdown', array( $this, 'push_stats' ) ); | ||
| 702 | } | ||
| 703 | } | ||
| 704 | |||
| 705 | /** | ||
| 706 | * This is ported over from the manage module, which has been deprecated and baked in here. | ||
| 707 | * | ||
| 708 | * @param $domains | ||
| 709 | */ | ||
| 710 | 	function add_wpcom_to_allowed_redirect_hosts( $domains ) { | ||
| 711 | add_filter( 'allowed_redirect_hosts', array( $this, 'allow_wpcom_domain' ) ); | ||
| 712 | } | ||
| 713 | |||
| 714 | /** | ||
| 715 | * Return $domains, with 'wordpress.com' appended. | ||
| 716 | * This is ported over from the manage module, which has been deprecated and baked in here. | ||
| 717 | * | ||
| 718 | * @param $domains | ||
| 719 | * @return array | ||
| 720 | */ | ||
| 721 | 	function allow_wpcom_domain( $domains ) { | ||
| 722 | 		if ( empty( $domains ) ) { | ||
| 723 | $domains = array(); | ||
| 724 | } | ||
| 725 | $domains[] = 'wordpress.com'; | ||
| 726 | return array_unique( $domains ); | ||
| 727 | } | ||
| 728 | |||
| 729 | 	function point_edit_post_links_to_calypso( $default_url, $post_id ) { | ||
| 730 | $post = get_post( $post_id ); | ||
| 731 | |||
| 732 | 		if ( empty( $post ) ) { | ||
| 733 | return $default_url; | ||
| 734 | } | ||
| 735 | |||
| 736 | $post_type = $post->post_type; | ||
| 737 | |||
| 738 | // Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso. | ||
| 739 | // https://en.support.wordpress.com/custom-post-types/ | ||
| 740 | $allowed_post_types = array( | ||
| 741 | 'post' => 'post', | ||
| 742 | 'page' => 'page', | ||
| 743 | 'jetpack-portfolio' => 'edit/jetpack-portfolio', | ||
| 744 | 'jetpack-testimonial' => 'edit/jetpack-testimonial', | ||
| 745 | ); | ||
| 746 | |||
| 747 | 		if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) { | ||
| 748 | return $default_url; | ||
| 749 | } | ||
| 750 | |||
| 751 | $path_prefix = $allowed_post_types[ $post_type ]; | ||
| 752 | |||
| 753 | $site_slug = Jetpack::build_raw_urls( get_home_url() ); | ||
| 754 | |||
| 755 | return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) ); | ||
| 756 | } | ||
| 757 | |||
| 758 | 	function point_edit_comment_links_to_calypso( $url ) { | ||
| 759 | // Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID. | ||
| 760 | wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args ); | ||
| 761 | return esc_url( sprintf( 'https://wordpress.com/comment/%s/%d', | ||
| 762 | Jetpack::build_raw_urls( get_home_url() ), | ||
| 763 | $query_args['amp;c'] | ||
| 764 | ) ); | ||
| 765 | } | ||
| 766 | |||
| 767 | 	function jetpack_track_last_sync_callback( $params ) { | ||
| 768 | /** | ||
| 769 | * Filter to turn off jitm caching | ||
| 770 | * | ||
| 771 | * @since 5.4.0 | ||
| 772 | * | ||
| 773 | * @param bool false Whether to cache just in time messages | ||
| 774 | */ | ||
| 775 | 		if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) { | ||
| 776 | return $params; | ||
| 777 | } | ||
| 778 | |||
| 779 | 		if ( is_array( $params ) && isset( $params[0] ) ) { | ||
| 780 | $option = $params[0]; | ||
| 781 | 			if ( 'active_plugins' === $option ) { | ||
| 782 | // use the cache if we can, but not terribly important if it gets evicted | ||
| 783 | set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS ); | ||
| 784 | } | ||
| 785 | } | ||
| 786 | |||
| 787 | return $params; | ||
| 788 | } | ||
| 789 | |||
| 790 | 	function jetpack_connection_banner_callback() { | ||
| 791 | check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' ); | ||
| 792 | |||
| 793 | 		if ( isset( $_REQUEST['dismissBanner'] ) ) { | ||
| 794 | Jetpack_Options::update_option( 'dismissed_connection_banner', 1 ); | ||
| 795 | wp_send_json_success(); | ||
| 796 | } | ||
| 797 | |||
| 798 | wp_die(); | ||
| 799 | } | ||
| 800 | |||
| 801 | /** | ||
| 802 | * Removes all XML-RPC methods that are not `jetpack.*`. | ||
| 803 | * Only used in our alternate XML-RPC endpoint, where we want to | ||
| 804 | * ensure that Core and other plugins' methods are not exposed. | ||
| 805 | * | ||
| 806 | * @param array $methods | ||
| 807 | * @return array filtered $methods | ||
| 808 | */ | ||
| 809 | 	function remove_non_jetpack_xmlrpc_methods( $methods ) { | ||
| 810 | $jetpack_methods = array(); | ||
| 811 | |||
| 812 | 		foreach ( $methods as $method => $callback ) { | ||
| 813 | 			if ( 0 === strpos( $method, 'jetpack.' ) ) { | ||
| 814 | $jetpack_methods[ $method ] = $callback; | ||
| 815 | } | ||
| 816 | } | ||
| 817 | |||
| 818 | return $jetpack_methods; | ||
| 819 | } | ||
| 820 | |||
| 821 | /** | ||
| 822 | * Since a lot of hosts use a hammer approach to "protecting" WordPress sites, | ||
| 823 | * and just blanket block all requests to /xmlrpc.php, or apply other overly-sensitive | ||
| 824 | * security/firewall policies, we provide our own alternate XML RPC API endpoint | ||
| 825 | * which is accessible via a different URI. Most of the below is copied directly | ||
| 826 | * from /xmlrpc.php so that we're replicating it as closely as possible. | ||
| 827 | */ | ||
| 828 | 	function alternate_xmlrpc() { | ||
| 829 | // phpcs:disable PHPCompatibility.Variables.RemovedPredefinedGlobalVariables.http_raw_post_dataDeprecatedRemoved | ||
| 830 | global $HTTP_RAW_POST_DATA; | ||
| 831 | |||
| 832 | // Some browser-embedded clients send cookies. We don't want them. | ||
| 833 | $_COOKIE = array(); | ||
| 834 | |||
| 835 | // A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default, | ||
| 836 | // but we can do it ourself. | ||
| 837 | 		if ( ! isset( $HTTP_RAW_POST_DATA ) ) { | ||
| 838 | $HTTP_RAW_POST_DATA = file_get_contents( 'php://input' ); | ||
| 839 | } | ||
| 840 | |||
| 841 | // fix for mozBlog and other cases where '<?xml' isn't on the very first line | ||
| 842 | 		if ( isset( $HTTP_RAW_POST_DATA ) ) { | ||
| 843 | $HTTP_RAW_POST_DATA = trim( $HTTP_RAW_POST_DATA ); | ||
| 844 | } | ||
| 845 | |||
| 846 | // phpcs:enable | ||
| 847 | |||
| 848 | include_once( ABSPATH . 'wp-admin/includes/admin.php' ); | ||
| 849 | include_once( ABSPATH . WPINC . '/class-IXR.php' ); | ||
| 850 | include_once( ABSPATH . WPINC . '/class-wp-xmlrpc-server.php' ); | ||
| 851 | |||
| 852 | /** | ||
| 853 | * Filters the class used for handling XML-RPC requests. | ||
| 854 | * | ||
| 855 | * @since 3.1.0 | ||
| 856 | * | ||
| 857 | * @param string $class The name of the XML-RPC server class. | ||
| 858 | */ | ||
| 859 | $wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' ); | ||
| 860 | $wp_xmlrpc_server = new $wp_xmlrpc_server_class; | ||
| 861 | |||
| 862 | // Fire off the request | ||
| 863 | nocache_headers(); | ||
| 864 | $wp_xmlrpc_server->serve_request(); | ||
| 865 | |||
| 866 | exit; | ||
| 867 | } | ||
| 868 | |||
| 869 | 	function jetpack_admin_ajax_tracks_callback() { | ||
| 870 | // Check for nonce | ||
| 871 | 		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) { | ||
| 872 | wp_die( 'Permissions check failed.' ); | ||
| 873 | } | ||
| 874 | |||
| 875 | 		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) { | ||
| 876 | wp_die( 'No valid event name or type.' ); | ||
| 877 | } | ||
| 878 | |||
| 879 | $tracks_data = array(); | ||
| 880 | 		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) { | ||
| 881 | 			if ( is_array( $_REQUEST['tracksEventProp'] ) ) { | ||
| 882 | $tracks_data = $_REQUEST['tracksEventProp']; | ||
| 883 | 			} else { | ||
| 884 | $tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] ); | ||
| 885 | } | ||
| 886 | } | ||
| 887 | |||
| 888 | JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data ); | ||
| 889 | wp_send_json_success(); | ||
| 890 | wp_die(); | ||
| 891 | } | ||
| 892 | |||
| 893 | /** | ||
| 894 | * The callback for the JITM ajax requests. | ||
| 895 | */ | ||
| 896 | 	function jetpack_jitm_ajax_callback() { | ||
| 897 | // Check for nonce | ||
| 898 | 		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) { | ||
| 899 | wp_die( 'Module activation failed due to lack of appropriate permissions' ); | ||
| 900 | } | ||
| 901 | 		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) { | ||
| 902 | $module_slug = $_REQUEST['jitmModule']; | ||
| 903 | Jetpack::log( 'activate', $module_slug ); | ||
| 904 | Jetpack::activate_module( $module_slug, false, false ); | ||
| 905 | Jetpack::state( 'message', 'no_message' ); | ||
| 906 | |||
| 907 | //A Jetpack module is being activated through a JITM, track it | ||
| 908 | $this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION ); | ||
| 909 | $this->do_stats( 'server_side' ); | ||
| 910 | |||
| 911 | wp_send_json_success(); | ||
| 912 | } | ||
| 913 | 		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) { | ||
| 914 | // get the hide_jitm options array | ||
| 915 | $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' ); | ||
| 916 | $module_slug = $_REQUEST['jitmModule']; | ||
| 917 | |||
| 918 | 			if( ! $jetpack_hide_jitm ) { | ||
| 919 | $jetpack_hide_jitm = array( | ||
| 920 | $module_slug => 'hide' | ||
| 921 | ); | ||
| 922 | 			} else { | ||
| 923 | $jetpack_hide_jitm[$module_slug] = 'hide'; | ||
| 924 | } | ||
| 925 | |||
| 926 | Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm ); | ||
| 927 | |||
| 928 | //jitm is being dismissed forever, track it | ||
| 929 | $this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION ); | ||
| 930 | $this->do_stats( 'server_side' ); | ||
| 931 | |||
| 932 | wp_send_json_success(); | ||
| 933 | } | ||
| 934 | View Code Duplication | 		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) { | |
| 935 | $module_slug = $_REQUEST['jitmModule']; | ||
| 936 | |||
| 937 | // User went to WordPress.com, track this | ||
| 938 | $this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION ); | ||
| 939 | $this->do_stats( 'server_side' ); | ||
| 940 | |||
| 941 | wp_send_json_success(); | ||
| 942 | } | ||
| 943 | View Code Duplication | 		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) { | |
| 944 | $track = $_REQUEST['jitmModule']; | ||
| 945 | |||
| 946 | // User is viewing JITM, track it. | ||
| 947 | $this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION ); | ||
| 948 | $this->do_stats( 'server_side' ); | ||
| 949 | |||
| 950 | wp_send_json_success(); | ||
| 951 | } | ||
| 952 | } | ||
| 953 | |||
| 954 | /** | ||
| 955 | * If there are any stats that need to be pushed, but haven't been, push them now. | ||
| 956 | */ | ||
| 957 | 	function push_stats() { | ||
| 958 | 		if ( ! empty( $this->stats ) ) { | ||
| 959 | $this->do_stats( 'server_side' ); | ||
| 960 | } | ||
| 961 | } | ||
| 962 | |||
| 963 | 	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { | ||
| 964 | 		switch( $cap ) { | ||
| 965 | case 'jetpack_connect' : | ||
| 966 | case 'jetpack_reconnect' : | ||
| 967 | 				if ( Jetpack::is_development_mode() ) { | ||
| 968 | $caps = array( 'do_not_allow' ); | ||
| 969 | break; | ||
| 970 | } | ||
| 971 | /** | ||
| 972 | * Pass through. If it's not development mode, these should match disconnect. | ||
| 973 | * Let users disconnect if it's development mode, just in case things glitch. | ||
| 974 | */ | ||
| 975 | case 'jetpack_disconnect' : | ||
| 976 | /** | ||
| 977 | * In multisite, can individual site admins manage their own connection? | ||
| 978 | * | ||
| 979 | * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class. | ||
| 980 | */ | ||
| 981 | 				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { | ||
| 982 | 					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) { | ||
| 983 | /** | ||
| 984 | * We need to update the option name -- it's terribly unclear which | ||
| 985 | * direction the override goes. | ||
| 986 | * | ||
| 987 | * @todo: Update the option name to `sub-sites-can-manage-own-connections` | ||
| 988 | */ | ||
| 989 | $caps = array( 'do_not_allow' ); | ||
| 990 | break; | ||
| 991 | } | ||
| 992 | } | ||
| 993 | |||
| 994 | $caps = array( 'manage_options' ); | ||
| 995 | break; | ||
| 996 | case 'jetpack_manage_modules' : | ||
| 997 | case 'jetpack_activate_modules' : | ||
| 998 | case 'jetpack_deactivate_modules' : | ||
| 999 | $caps = array( 'manage_options' ); | ||
| 1000 | break; | ||
| 1001 | case 'jetpack_configure_modules' : | ||
| 1002 | $caps = array( 'manage_options' ); | ||
| 1003 | break; | ||
| 1004 | case 'jetpack_manage_autoupdates' : | ||
| 1005 | $caps = array( | ||
| 1006 | 'manage_options', | ||
| 1007 | 'update_plugins', | ||
| 1008 | ); | ||
| 1009 | break; | ||
| 1010 | case 'jetpack_network_admin_page': | ||
| 1011 | case 'jetpack_network_settings_page': | ||
| 1012 | $caps = array( 'manage_network_plugins' ); | ||
| 1013 | break; | ||
| 1014 | case 'jetpack_network_sites_page': | ||
| 1015 | $caps = array( 'manage_sites' ); | ||
| 1016 | break; | ||
| 1017 | case 'jetpack_admin_page' : | ||
| 1018 | 				if ( Jetpack::is_development_mode() ) { | ||
| 1019 | $caps = array( 'manage_options' ); | ||
| 1020 | break; | ||
| 1021 | 				} else { | ||
| 1022 | $caps = array( 'read' ); | ||
| 1023 | } | ||
| 1024 | break; | ||
| 1025 | case 'jetpack_connect_user' : | ||
| 1026 | 				if ( Jetpack::is_development_mode() ) { | ||
| 1027 | $caps = array( 'do_not_allow' ); | ||
| 1028 | break; | ||
| 1029 | } | ||
| 1030 | $caps = array( 'read' ); | ||
| 1031 | break; | ||
| 1032 | } | ||
| 1033 | return $caps; | ||
| 1034 | } | ||
| 1035 | |||
| 1036 | 	function require_jetpack_authentication() { | ||
| 1037 | // Don't let anyone authenticate | ||
| 1038 | $_COOKIE = array(); | ||
| 1039 | remove_all_filters( 'authenticate' ); | ||
| 1040 | remove_all_actions( 'wp_login_failed' ); | ||
| 1041 | |||
| 1042 | 		if ( Jetpack::is_active() ) { | ||
| 1043 | // Allow Jetpack authentication | ||
| 1044 | add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 ); | ||
| 1045 | } | ||
| 1046 | } | ||
| 1047 | |||
| 1048 | /** | ||
| 1049 | * Load language files | ||
| 1050 | * @action plugins_loaded | ||
| 1051 | */ | ||
| 1052 | 	public static function plugin_textdomain() { | ||
| 1053 | // Note to self, the third argument must not be hardcoded, to account for relocated folders. | ||
| 1054 | load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' ); | ||
| 1055 | } | ||
| 1056 | |||
| 1057 | /** | ||
| 1058 | * Register assets for use in various modules and the Jetpack admin page. | ||
| 1059 | * | ||
| 1060 | * @uses wp_script_is, wp_register_script, plugins_url | ||
| 1061 | * @action wp_loaded | ||
| 1062 | * @return null | ||
| 1063 | */ | ||
| 1064 | 	public function register_assets() { | ||
| 1065 | 		if ( ! wp_script_is( 'spin', 'registered' ) ) { | ||
| 1066 | wp_register_script( | ||
| 1067 | 'spin', | ||
| 1068 | self::get_file_url_for_environment( '_inc/build/spin.min.js', '_inc/spin.js' ), | ||
| 1069 | false, | ||
| 1070 | '1.3' | ||
| 1071 | ); | ||
| 1072 | } | ||
| 1073 | |||
| 1074 | 		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) { | ||
| 1075 | wp_register_script( | ||
| 1076 | 'jquery.spin', | ||
| 1077 | self::get_file_url_for_environment( '_inc/build/jquery.spin.min.js', '_inc/jquery.spin.js' ), | ||
| 1078 | array( 'jquery', 'spin' ), | ||
| 1079 | '1.3' | ||
| 1080 | ); | ||
| 1081 | } | ||
| 1082 | |||
| 1083 | View Code Duplication | 		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { | |
| 1084 | wp_register_script( | ||
| 1085 | 'jetpack-gallery-settings', | ||
| 1086 | self::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ), | ||
| 1087 | array( 'media-views' ), | ||
| 1088 | '20121225' | ||
| 1089 | ); | ||
| 1090 | } | ||
| 1091 | |||
| 1092 | 		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) { | ||
| 1093 | wp_register_script( | ||
| 1094 | 'jetpack-twitter-timeline', | ||
| 1095 | self::get_file_url_for_environment( '_inc/build/twitter-timeline.min.js', '_inc/twitter-timeline.js' ), | ||
| 1096 | array( 'jquery' ), | ||
| 1097 | '4.0.0', | ||
| 1098 | true | ||
| 1099 | ); | ||
| 1100 | } | ||
| 1101 | |||
| 1102 | 		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) { | ||
| 1103 | wp_register_script( | ||
| 1104 | 'jetpack-facebook-embed', | ||
| 1105 | self::get_file_url_for_environment( '_inc/build/facebook-embed.min.js', '_inc/facebook-embed.js' ), | ||
| 1106 | array( 'jquery' ), | ||
| 1107 | null, | ||
| 1108 | true | ||
| 1109 | ); | ||
| 1110 | |||
| 1111 | /** This filter is documented in modules/sharedaddy/sharing-sources.php */ | ||
| 1112 | $fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ); | ||
| 1113 | 			if ( ! is_numeric( $fb_app_id ) ) { | ||
| 1114 | $fb_app_id = ''; | ||
| 1115 | } | ||
| 1116 | wp_localize_script( | ||
| 1117 | 'jetpack-facebook-embed', | ||
| 1118 | 'jpfbembed', | ||
| 1119 | array( | ||
| 1120 | 'appid' => $fb_app_id, | ||
| 1121 | 'locale' => $this->get_locale(), | ||
| 1122 | ) | ||
| 1123 | ); | ||
| 1124 | } | ||
| 1125 | |||
| 1126 | /** | ||
| 1127 | * As jetpack_register_genericons is by default fired off a hook, | ||
| 1128 | * the hook may have already fired by this point. | ||
| 1129 | * So, let's just trigger it manually. | ||
| 1130 | */ | ||
| 1131 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); | ||
| 1132 | jetpack_register_genericons(); | ||
| 1133 | |||
| 1134 | /** | ||
| 1135 | * Register the social logos | ||
| 1136 | */ | ||
| 1137 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); | ||
| 1138 | jetpack_register_social_logos(); | ||
| 1139 | |||
| 1140 | View Code Duplication | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) | |
| 1141 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); | ||
| 1142 | } | ||
| 1143 | |||
| 1144 | /** | ||
| 1145 | * Guess locale from language code. | ||
| 1146 | * | ||
| 1147 | * @param string $lang Language code. | ||
| 1148 | * @return string|bool | ||
| 1149 | */ | ||
| 1150 | View Code Duplication | 	function guess_locale_from_lang( $lang ) { | |
| 1151 | 		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { | ||
| 1152 | return 'en_US'; | ||
| 1153 | } | ||
| 1154 | |||
| 1155 | 		if ( ! class_exists( 'GP_Locales' ) ) { | ||
| 1156 | 			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { | ||
| 1157 | return false; | ||
| 1158 | } | ||
| 1159 | |||
| 1160 | require JETPACK__GLOTPRESS_LOCALES_PATH; | ||
| 1161 | } | ||
| 1162 | |||
| 1163 | 		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { | ||
| 1164 | // WP.com: get_locale() returns 'it' | ||
| 1165 | $locale = GP_Locales::by_slug( $lang ); | ||
| 1166 | 		} else { | ||
| 1167 | // Jetpack: get_locale() returns 'it_IT'; | ||
| 1168 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); | ||
| 1169 | } | ||
| 1170 | |||
| 1171 | 		if ( ! $locale ) { | ||
| 1172 | return false; | ||
| 1173 | } | ||
| 1174 | |||
| 1175 | 		if ( empty( $locale->facebook_locale ) ) { | ||
| 1176 | 			if ( empty( $locale->wp_locale ) ) { | ||
| 1177 | return false; | ||
| 1178 | 			} else { | ||
| 1179 | // Facebook SDK is smart enough to fall back to en_US if a | ||
| 1180 | // locale isn't supported. Since supported Facebook locales | ||
| 1181 | // can fall out of sync, we'll attempt to use the known | ||
| 1182 | // wp_locale value and rely on said fallback. | ||
| 1183 | return $locale->wp_locale; | ||
| 1184 | } | ||
| 1185 | } | ||
| 1186 | |||
| 1187 | return $locale->facebook_locale; | ||
| 1188 | } | ||
| 1189 | |||
| 1190 | /** | ||
| 1191 | * Get the locale. | ||
| 1192 | * | ||
| 1193 | * @return string|bool | ||
| 1194 | */ | ||
| 1195 | 	function get_locale() { | ||
| 1196 | $locale = $this->guess_locale_from_lang( get_locale() ); | ||
| 1197 | |||
| 1198 | 		if ( ! $locale ) { | ||
| 1199 | $locale = 'en_US'; | ||
| 1200 | } | ||
| 1201 | |||
| 1202 | return $locale; | ||
| 1203 | } | ||
| 1204 | |||
| 1205 | /** | ||
| 1206 | * Device Pixels support | ||
| 1207 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. | ||
| 1208 | */ | ||
| 1209 | 	function devicepx() { | ||
| 1210 | 		if ( Jetpack::is_active() && ! Jetpack_AMP_Support::is_amp_request() ) { | ||
| 1211 | wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true ); | ||
| 1212 | } | ||
| 1213 | } | ||
| 1214 | |||
| 1215 | /** | ||
| 1216 | * Return the network_site_url so that .com knows what network this site is a part of. | ||
| 1217 | * @param bool $option | ||
| 1218 | * @return string | ||
| 1219 | */ | ||
| 1220 | 	public function jetpack_main_network_site_option( $option ) { | ||
| 1221 | return network_site_url(); | ||
| 1222 | } | ||
| 1223 | /** | ||
| 1224 | * Network Name. | ||
| 1225 | */ | ||
| 1226 | 	static function network_name( $option = null ) { | ||
| 1227 | global $current_site; | ||
| 1228 | return $current_site->site_name; | ||
| 1229 | } | ||
| 1230 | /** | ||
| 1231 | * Does the network allow new user and site registrations. | ||
| 1232 | * @return string | ||
| 1233 | */ | ||
| 1234 | 	static function network_allow_new_registrations( $option = null ) { | ||
| 1235 | 		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' ); | ||
| 1236 | } | ||
| 1237 | /** | ||
| 1238 | * Does the network allow admins to add new users. | ||
| 1239 | * @return boolian | ||
| 1240 | */ | ||
| 1241 | 	static function network_add_new_users( $option = null ) { | ||
| 1242 | return (bool) get_site_option( 'add_new_users' ); | ||
| 1243 | } | ||
| 1244 | /** | ||
| 1245 | * File upload psace left per site in MB. | ||
| 1246 | * -1 means NO LIMIT. | ||
| 1247 | * @return number | ||
| 1248 | */ | ||
| 1249 | 	static function network_site_upload_space( $option = null ) { | ||
| 1250 | // value in MB | ||
| 1251 | return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() ); | ||
| 1252 | } | ||
| 1253 | |||
| 1254 | /** | ||
| 1255 | * Network allowed file types. | ||
| 1256 | * @return string | ||
| 1257 | */ | ||
| 1258 | 	static function network_upload_file_types( $option = null ) { | ||
| 1259 | return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' ); | ||
| 1260 | } | ||
| 1261 | |||
| 1262 | /** | ||
| 1263 | * Maximum file upload size set by the network. | ||
| 1264 | * @return number | ||
| 1265 | */ | ||
| 1266 | 	static function network_max_upload_file_size( $option = null ) { | ||
| 1267 | // value in KB | ||
| 1268 | return get_site_option( 'fileupload_maxk', 300 ); | ||
| 1269 | } | ||
| 1270 | |||
| 1271 | /** | ||
| 1272 | * Lets us know if a site allows admins to manage the network. | ||
| 1273 | * @return array | ||
| 1274 | */ | ||
| 1275 | 	static function network_enable_administration_menus( $option = null ) { | ||
| 1276 | return get_site_option( 'menu_items' ); | ||
| 1277 | } | ||
| 1278 | |||
| 1279 | /** | ||
| 1280 | * If a user has been promoted to or demoted from admin, we need to clear the | ||
| 1281 | * jetpack_other_linked_admins transient. | ||
| 1282 | * | ||
| 1283 | * @since 4.3.2 | ||
| 1284 | * @since 4.4.0 $old_roles is null by default and if it's not passed, the transient is cleared. | ||
| 1285 | * | ||
| 1286 | * @param int $user_id The user ID whose role changed. | ||
| 1287 | * @param string $role The new role. | ||
| 1288 | * @param array $old_roles An array of the user's previous roles. | ||
| 1289 | */ | ||
| 1290 | 	function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) { | ||
| 1291 | if ( 'administrator' == $role | ||
| 1292 | || ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) ) | ||
| 1293 | || is_null( $old_roles ) | ||
| 1294 | 		) { | ||
| 1295 | delete_transient( 'jetpack_other_linked_admins' ); | ||
| 1296 | } | ||
| 1297 | } | ||
| 1298 | |||
| 1299 | /** | ||
| 1300 | * Checks to see if there are any other users available to become primary | ||
| 1301 | * Users must both: | ||
| 1302 | * - Be linked to wpcom | ||
| 1303 | * - Be an admin | ||
| 1304 | * | ||
| 1305 | * @return mixed False if no other users are linked, Int if there are. | ||
| 1306 | */ | ||
| 1307 | 	static function get_other_linked_admins() { | ||
| 1308 | $other_linked_users = get_transient( 'jetpack_other_linked_admins' ); | ||
| 1309 | |||
| 1310 | 		if ( false === $other_linked_users ) { | ||
| 1311 | $admins = get_users( array( 'role' => 'administrator' ) ); | ||
| 1312 | 			if ( count( $admins ) > 1 ) { | ||
| 1313 | $available = array(); | ||
| 1314 | 				foreach ( $admins as $admin ) { | ||
| 1315 | 					if ( Jetpack::is_user_connected( $admin->ID ) ) { | ||
| 1316 | $available[] = $admin->ID; | ||
| 1317 | } | ||
| 1318 | } | ||
| 1319 | |||
| 1320 | $count_connected_admins = count( $available ); | ||
| 1321 | 				if ( count( $available ) > 1 ) { | ||
| 1322 | $other_linked_users = $count_connected_admins; | ||
| 1323 | 				} else { | ||
| 1324 | $other_linked_users = 0; | ||
| 1325 | } | ||
| 1326 | 			} else { | ||
| 1327 | $other_linked_users = 0; | ||
| 1328 | } | ||
| 1329 | |||
| 1330 | set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS ); | ||
| 1331 | } | ||
| 1332 | |||
| 1333 | return ( 0 === $other_linked_users ) ? false : $other_linked_users; | ||
| 1334 | } | ||
| 1335 | |||
| 1336 | /** | ||
| 1337 | * Return whether we are dealing with a multi network setup or not. | ||
| 1338 | * The reason we are type casting this is because we want to avoid the situation where | ||
| 1339 | * the result is false since when is_main_network_option return false it cases | ||
| 1340 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the | ||
| 1341 | * database which could be set to anything as opposed to what this function returns. | ||
| 1342 | * @param bool $option | ||
| 1343 | * | ||
| 1344 | * @return boolean | ||
| 1345 | */ | ||
| 1346 | 	public function is_main_network_option( $option ) { | ||
| 1347 | // return '1' or '' | ||
| 1348 | return (string) (bool) Jetpack::is_multi_network(); | ||
| 1349 | } | ||
| 1350 | |||
| 1351 | /** | ||
| 1352 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. | ||
| 1353 | * | ||
| 1354 | * @param string $option | ||
| 1355 | * @return boolean | ||
| 1356 | */ | ||
| 1357 | 	public function is_multisite( $option ) { | ||
| 1358 | return (string) (bool) is_multisite(); | ||
| 1359 | } | ||
| 1360 | |||
| 1361 | /** | ||
| 1362 | * Implemented since there is no core is multi network function | ||
| 1363 | * Right now there is no way to tell if we which network is the dominant network on the system | ||
| 1364 | * | ||
| 1365 | * @since 3.3 | ||
| 1366 | * @return boolean | ||
| 1367 | */ | ||
| 1368 | 	public static function is_multi_network() { | ||
| 1369 | global $wpdb; | ||
| 1370 | |||
| 1371 | // if we don't have a multi site setup no need to do any more | ||
| 1372 | 		if ( ! is_multisite() ) { | ||
| 1373 | return false; | ||
| 1374 | } | ||
| 1375 | |||
| 1376 | 		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); | ||
| 1377 | 		if ( $num_sites > 1 ) { | ||
| 1378 | return true; | ||
| 1379 | 		} else { | ||
| 1380 | return false; | ||
| 1381 | } | ||
| 1382 | } | ||
| 1383 | |||
| 1384 | /** | ||
| 1385 | * Trigger an update to the main_network_site when we update the siteurl of a site. | ||
| 1386 | * @return null | ||
| 1387 | */ | ||
| 1388 | 	function update_jetpack_main_network_site_option() { | ||
| 1389 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 1390 | } | ||
| 1391 | /** | ||
| 1392 | * Triggered after a user updates the network settings via Network Settings Admin Page | ||
| 1393 | * | ||
| 1394 | */ | ||
| 1395 | 	function update_jetpack_network_settings() { | ||
| 1396 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 1397 | // Only sync this info for the main network site. | ||
| 1398 | } | ||
| 1399 | |||
| 1400 | /** | ||
| 1401 | * Get back if the current site is single user site. | ||
| 1402 | * | ||
| 1403 | * @return bool | ||
| 1404 | */ | ||
| 1405 | 	public static function is_single_user_site() { | ||
| 1406 | global $wpdb; | ||
| 1407 | |||
| 1408 | View Code Duplication | 		if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) { | |
| 1409 | 			$some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" ); | ||
| 1410 | set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS ); | ||
| 1411 | } | ||
| 1412 | return 1 === (int) $some_users; | ||
| 1413 | } | ||
| 1414 | |||
| 1415 | /** | ||
| 1416 | * Returns true if the site has file write access false otherwise. | ||
| 1417 | * @return string ( '1' | '0' ) | ||
| 1418 | **/ | ||
| 1419 | 	public static function file_system_write_access() { | ||
| 1420 | 		if ( ! function_exists( 'get_filesystem_method' ) ) { | ||
| 1421 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); | ||
| 1422 | } | ||
| 1423 | |||
| 1424 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); | ||
| 1425 | |||
| 1426 | $filesystem_method = get_filesystem_method(); | ||
| 1427 | 		if ( $filesystem_method === 'direct' ) { | ||
| 1428 | return 1; | ||
| 1429 | } | ||
| 1430 | |||
| 1431 | ob_start(); | ||
| 1432 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); | ||
| 1433 | ob_end_clean(); | ||
| 1434 | 		if ( $filesystem_credentials_are_stored ) { | ||
| 1435 | return 1; | ||
| 1436 | } | ||
| 1437 | return 0; | ||
| 1438 | } | ||
| 1439 | |||
| 1440 | /** | ||
| 1441 | * Finds out if a site is using a version control system. | ||
| 1442 | * @return string ( '1' | '0' ) | ||
| 1443 | **/ | ||
| 1444 | 	public static function is_version_controlled() { | ||
| 1445 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' ); | ||
| 1446 | return (string) (int) Jetpack_Sync_Functions::is_version_controlled(); | ||
| 1447 | } | ||
| 1448 | |||
| 1449 | /** | ||
| 1450 | * Determines whether the current theme supports featured images or not. | ||
| 1451 | * @return string ( '1' | '0' ) | ||
| 1452 | */ | ||
| 1453 | 	public static function featured_images_enabled() { | ||
| 1454 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 1455 | return current_theme_supports( 'post-thumbnails' ) ? '1' : '0'; | ||
| 1456 | } | ||
| 1457 | |||
| 1458 | /** | ||
| 1459 | * Wrapper for core's get_avatar_url(). This one is deprecated. | ||
| 1460 | * | ||
| 1461 | * @deprecated 4.7 use get_avatar_url instead. | ||
| 1462 | * @param int|string|object $id_or_email A user ID, email address, or comment object | ||
| 1463 | * @param int $size Size of the avatar image | ||
| 1464 | * @param string $default URL to a default image to use if no avatar is available | ||
| 1465 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled | ||
| 1466 | * | ||
| 1467 | * @return array | ||
| 1468 | */ | ||
| 1469 | 	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { | ||
| 1470 | _deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' ); | ||
| 1471 | return get_avatar_url( $id_or_email, array( | ||
| 1472 | 'size' => $size, | ||
| 1473 | 'default' => $default, | ||
| 1474 | 'force_default' => $force_display, | ||
| 1475 | ) ); | ||
| 1476 | } | ||
| 1477 | |||
| 1478 | /** | ||
| 1479 | * jetpack_updates is saved in the following schema: | ||
| 1480 | * | ||
| 1481 | * array ( | ||
| 1482 | * 'plugins' => (int) Number of plugin updates available. | ||
| 1483 | * 'themes' => (int) Number of theme updates available. | ||
| 1484 | * 'wordpress' => (int) Number of WordPress core updates available. | ||
| 1485 | * 'translations' => (int) Number of translation updates available. | ||
| 1486 | * 'total' => (int) Total of all available updates. | ||
| 1487 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. | ||
| 1488 | * ) | ||
| 1489 | * @return array | ||
| 1490 | */ | ||
| 1491 | 	public static function get_updates() { | ||
| 1492 | $update_data = wp_get_update_data(); | ||
| 1493 | |||
| 1494 | // Stores the individual update counts as well as the total count. | ||
| 1495 | 		if ( isset( $update_data['counts'] ) ) { | ||
| 1496 | $updates = $update_data['counts']; | ||
| 1497 | } | ||
| 1498 | |||
| 1499 | // If we need to update WordPress core, let's find the latest version number. | ||
| 1500 | View Code Duplication | 		if ( ! empty( $updates['wordpress'] ) ) { | |
| 1501 | $cur = get_preferred_from_update_core(); | ||
| 1502 | 			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { | ||
| 1503 | $updates['wp_update_version'] = $cur->current; | ||
| 1504 | } | ||
| 1505 | } | ||
| 1506 | return isset( $updates ) ? $updates : array(); | ||
| 1507 | } | ||
| 1508 | |||
| 1509 | 	public static function get_update_details() { | ||
| 1510 | $update_details = array( | ||
| 1511 | 'update_core' => get_site_transient( 'update_core' ), | ||
| 1512 | 'update_plugins' => get_site_transient( 'update_plugins' ), | ||
| 1513 | 'update_themes' => get_site_transient( 'update_themes' ), | ||
| 1514 | ); | ||
| 1515 | return $update_details; | ||
| 1516 | } | ||
| 1517 | |||
| 1518 | 	public static function refresh_update_data() { | ||
| 1519 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 1520 | |||
| 1521 | } | ||
| 1522 | |||
| 1523 | 	public static function refresh_theme_data() { | ||
| 1524 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 1525 | } | ||
| 1526 | |||
| 1527 | /** | ||
| 1528 | * Is Jetpack active? | ||
| 1529 | */ | ||
| 1530 | 	public static function is_active() { | ||
| 1531 | return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); | ||
| 1532 | } | ||
| 1533 | |||
| 1534 | /** | ||
| 1535 | * Make an API call to WordPress.com for plan status | ||
| 1536 | * | ||
| 1537 | * @deprecated 7.2.0 Use Jetpack_Plan::refresh_from_wpcom. | ||
| 1538 | * | ||
| 1539 | * @return bool True if plan is updated, false if no update | ||
| 1540 | */ | ||
| 1541 | 	public static function refresh_active_plan_from_wpcom() { | ||
| 1542 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::refresh_from_wpcom' ); | ||
| 1543 | return Jetpack_Plan::refresh_from_wpcom(); | ||
| 1544 | } | ||
| 1545 | |||
| 1546 | /** | ||
| 1547 | * Get the plan that this Jetpack site is currently using | ||
| 1548 | * | ||
| 1549 | * @deprecated 7.2.0 Use Jetpack_Plan::get. | ||
| 1550 | * @return array Active Jetpack plan details. | ||
| 1551 | */ | ||
| 1552 | 	public static function get_active_plan() { | ||
| 1553 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::get' ); | ||
| 1554 | return Jetpack_Plan::get(); | ||
| 1555 | } | ||
| 1556 | |||
| 1557 | /** | ||
| 1558 | * Determine whether the active plan supports a particular feature | ||
| 1559 | * | ||
| 1560 | * @deprecated 7.2.0 Use Jetpack_Plan::supports. | ||
| 1561 | * @return bool True if plan supports feature, false if not. | ||
| 1562 | */ | ||
| 1563 | 	public static function active_plan_supports( $feature ) { | ||
| 1564 | _deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::supports' ); | ||
| 1565 | return Jetpack_Plan::supports( $feature ); | ||
| 1566 | } | ||
| 1567 | |||
| 1568 | /** | ||
| 1569 | * Is Jetpack in development (offline) mode? | ||
| 1570 | */ | ||
| 1571 | 	public static function is_development_mode() { | ||
| 1572 | $development_mode = false; | ||
| 1573 | |||
| 1574 | 		if ( defined( 'JETPACK_DEV_DEBUG' ) ) { | ||
| 1575 | $development_mode = JETPACK_DEV_DEBUG; | ||
| 1576 | 		} elseif ( $site_url = site_url() ) { | ||
| 1577 | $development_mode = false === strpos( $site_url, '.' ); | ||
| 1578 | } | ||
| 1579 | |||
| 1580 | /** | ||
| 1581 | * Filters Jetpack's development mode. | ||
| 1582 | * | ||
| 1583 | * @see https://jetpack.com/support/development-mode/ | ||
| 1584 | * | ||
| 1585 | * @since 2.2.1 | ||
| 1586 | * | ||
| 1587 | * @param bool $development_mode Is Jetpack's development mode active. | ||
| 1588 | */ | ||
| 1589 | $development_mode = ( bool ) apply_filters( 'jetpack_development_mode', $development_mode ); | ||
| 1590 | return $development_mode; | ||
| 1591 | } | ||
| 1592 | |||
| 1593 | /** | ||
| 1594 | * Whether the site is currently onboarding or not. | ||
| 1595 | * A site is considered as being onboarded if it currently has an onboarding token. | ||
| 1596 | * | ||
| 1597 | * @since 5.8 | ||
| 1598 | * | ||
| 1599 | * @access public | ||
| 1600 | * @static | ||
| 1601 | * | ||
| 1602 | * @return bool True if the site is currently onboarding, false otherwise | ||
| 1603 | */ | ||
| 1604 | 	public static function is_onboarding() { | ||
| 1605 | return Jetpack_Options::get_option( 'onboarding' ) !== false; | ||
| 1606 | } | ||
| 1607 | |||
| 1608 | /** | ||
| 1609 | * Determines reason for Jetpack development mode. | ||
| 1610 | */ | ||
| 1611 | 	public static function development_mode_trigger_text() { | ||
| 1612 | 		if ( ! Jetpack::is_development_mode() ) { | ||
| 1613 | return __( 'Jetpack is not in Development Mode.', 'jetpack' ); | ||
| 1614 | } | ||
| 1615 | |||
| 1616 | 		if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) { | ||
| 1617 | $notice = __( 'The JETPACK_DEV_DEBUG constant is defined in wp-config.php or elsewhere.', 'jetpack' ); | ||
| 1618 | 		} elseif ( site_url() && false === strpos( site_url(), '.' ) ) { | ||
| 1619 | $notice = __( 'The site URL lacking a dot (e.g. http://localhost).', 'jetpack' ); | ||
| 1620 | 		} else { | ||
| 1621 | $notice = __( 'The jetpack_development_mode filter is set to true.', 'jetpack' ); | ||
| 1622 | } | ||
| 1623 | |||
| 1624 | return $notice; | ||
| 1625 | |||
| 1626 | } | ||
| 1627 | /** | ||
| 1628 | * Get Jetpack development mode notice text and notice class. | ||
| 1629 | * | ||
| 1630 | * Mirrors the checks made in Jetpack::is_development_mode | ||
| 1631 | * | ||
| 1632 | */ | ||
| 1633 | 	public static function show_development_mode_notice() { | ||
| 1634 | View Code Duplication | 		if ( Jetpack::is_development_mode() ) { | |
| 1635 | $notice = sprintf( | ||
| 1636 | /* translators: %s is a URL */ | ||
| 1637 | __( 'In <a href="%s" target="_blank">Development Mode</a>:', 'jetpack' ), | ||
| 1638 | 'https://jetpack.com/support/development-mode/' | ||
| 1639 | ); | ||
| 1640 | |||
| 1641 | $notice .= ' ' . Jetpack::development_mode_trigger_text(); | ||
| 1642 | |||
| 1643 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; | ||
| 1644 | } | ||
| 1645 | |||
| 1646 | // Throw up a notice if using a development version and as for feedback. | ||
| 1647 | 		if ( Jetpack::is_development_version() ) { | ||
| 1648 | /* translators: %s is a URL */ | ||
| 1649 | $notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), 'https://jetpack.com/contact-support/beta-group/' ); | ||
| 1650 | |||
| 1651 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; | ||
| 1652 | } | ||
| 1653 | // Throw up a notice if using staging mode | ||
| 1654 | 		if ( Jetpack::is_staging_site() ) { | ||
| 1655 | /* translators: %s is a URL */ | ||
| 1656 | $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' ); | ||
| 1657 | |||
| 1658 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; | ||
| 1659 | } | ||
| 1660 | } | ||
| 1661 | |||
| 1662 | /** | ||
| 1663 | * Whether Jetpack's version maps to a public release, or a development version. | ||
| 1664 | */ | ||
| 1665 | 	public static function is_development_version() { | ||
| 1666 | /** | ||
| 1667 | * Allows filtering whether this is a development version of Jetpack. | ||
| 1668 | * | ||
| 1669 | * This filter is especially useful for tests. | ||
| 1670 | * | ||
| 1671 | * @since 4.3.0 | ||
| 1672 | * | ||
| 1673 | * @param bool $development_version Is this a develoment version of Jetpack? | ||
| 1674 | */ | ||
| 1675 | return (bool) apply_filters( | ||
| 1676 | 'jetpack_development_version', | ||
| 1677 | ! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) ) | ||
| 1678 | ); | ||
| 1679 | } | ||
| 1680 | |||
| 1681 | /** | ||
| 1682 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? | ||
| 1683 | */ | ||
| 1684 | 	public static function is_user_connected( $user_id = false ) { | ||
| 1685 | $user_id = false === $user_id ? get_current_user_id() : absint( $user_id ); | ||
| 1686 | 		if ( ! $user_id ) { | ||
| 1687 | return false; | ||
| 1688 | } | ||
| 1689 | |||
| 1690 | return (bool) Jetpack_Data::get_access_token( $user_id ); | ||
| 1691 | } | ||
| 1692 | |||
| 1693 | /** | ||
| 1694 | * Get the wpcom user data of the current|specified connected user. | ||
| 1695 | */ | ||
| 1696 | 	public static function get_connected_user_data( $user_id = null ) { | ||
| 1697 | 		if ( ! $user_id ) { | ||
| 1698 | $user_id = get_current_user_id(); | ||
| 1699 | } | ||
| 1700 | |||
| 1701 | $transient_key = "jetpack_connected_user_data_$user_id"; | ||
| 1702 | |||
| 1703 | 		if ( $cached_user_data = get_transient( $transient_key ) ) { | ||
| 1704 | return $cached_user_data; | ||
| 1705 | } | ||
| 1706 | |||
| 1707 | Jetpack::load_xml_rpc_client(); | ||
| 1708 | $xml = new Jetpack_IXR_Client( array( | ||
| 1709 | 'user_id' => $user_id, | ||
| 1710 | ) ); | ||
| 1711 | $xml->query( 'wpcom.getUser' ); | ||
| 1712 | 		if ( ! $xml->isError() ) { | ||
| 1713 | $user_data = $xml->getResponse(); | ||
| 1714 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); | ||
| 1715 | return $user_data; | ||
| 1716 | } | ||
| 1717 | |||
| 1718 | return false; | ||
| 1719 | } | ||
| 1720 | |||
| 1721 | /** | ||
| 1722 | * Get the wpcom email of the current|specified connected user. | ||
| 1723 | */ | ||
| 1724 | View Code Duplication | 	public static function get_connected_user_email( $user_id = null ) { | |
| 1725 | 		if ( ! $user_id ) { | ||
| 1726 | $user_id = get_current_user_id(); | ||
| 1727 | } | ||
| 1728 | Jetpack::load_xml_rpc_client(); | ||
| 1729 | $xml = new Jetpack_IXR_Client( array( | ||
| 1730 | 'user_id' => $user_id, | ||
| 1731 | ) ); | ||
| 1732 | $xml->query( 'wpcom.getUserEmail' ); | ||
| 1733 | 		if ( ! $xml->isError() ) { | ||
| 1734 | return $xml->getResponse(); | ||
| 1735 | } | ||
| 1736 | return false; | ||
| 1737 | } | ||
| 1738 | |||
| 1739 | /** | ||
| 1740 | * Get the wpcom email of the master user. | ||
| 1741 | */ | ||
| 1742 | 	public static function get_master_user_email() { | ||
| 1743 | $master_user_id = Jetpack_Options::get_option( 'master_user' ); | ||
| 1744 | 		if ( $master_user_id ) { | ||
| 1745 | return self::get_connected_user_email( $master_user_id ); | ||
| 1746 | } | ||
| 1747 | return ''; | ||
| 1748 | } | ||
| 1749 | |||
| 1750 | 	function current_user_is_connection_owner() { | ||
| 1751 | $user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); | ||
| 1752 | return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id; | ||
| 1753 | } | ||
| 1754 | |||
| 1755 | /** | ||
| 1756 | * Gets current user IP address. | ||
| 1757 | * | ||
| 1758 | * @param bool $check_all_headers Check all headers? Default is `false`. | ||
| 1759 | * | ||
| 1760 | * @return string Current user IP address. | ||
| 1761 | */ | ||
| 1762 | 	public static function current_user_ip( $check_all_headers = false ) { | ||
| 1763 | 		if ( $check_all_headers ) { | ||
| 1764 | foreach ( array( | ||
| 1765 | 'HTTP_CF_CONNECTING_IP', | ||
| 1766 | 'HTTP_CLIENT_IP', | ||
| 1767 | 'HTTP_X_FORWARDED_FOR', | ||
| 1768 | 'HTTP_X_FORWARDED', | ||
| 1769 | 'HTTP_X_CLUSTER_CLIENT_IP', | ||
| 1770 | 'HTTP_FORWARDED_FOR', | ||
| 1771 | 'HTTP_FORWARDED', | ||
| 1772 | 'HTTP_VIA', | ||
| 1773 | 			) as $key ) { | ||
| 1774 | 				if ( ! empty( $_SERVER[ $key ] ) ) { | ||
| 1775 | return $_SERVER[ $key ]; | ||
| 1776 | } | ||
| 1777 | } | ||
| 1778 | } | ||
| 1779 | |||
| 1780 | return ! empty( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : ''; | ||
| 1781 | } | ||
| 1782 | |||
| 1783 | /** | ||
| 1784 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. | ||
| 1785 | */ | ||
| 1786 | 	function extra_oembed_providers() { | ||
| 1787 | // Cloudup: https://dev.cloudup.com/#oembed | ||
| 1788 | wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' ); | ||
| 1789 | wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' ); | ||
| 1790 | wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true ); | ||
| 1791 | wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true ); | ||
| 1792 | wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true ); | ||
| 1793 | wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true ); | ||
| 1794 | } | ||
| 1795 | |||
| 1796 | /** | ||
| 1797 | * Synchronize connected user role changes | ||
| 1798 | */ | ||
| 1799 | 	function user_role_change( $user_id ) { | ||
| 1800 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' ); | ||
| 1801 | Jetpack_Sync_Users::user_role_change( $user_id ); | ||
| 1802 | } | ||
| 1803 | |||
| 1804 | /** | ||
| 1805 | * Loads the currently active modules. | ||
| 1806 | */ | ||
| 1807 | 	public static function load_modules() { | ||
| 1808 | if ( | ||
| 1809 | ! self::is_active() | ||
| 1810 | && ! self::is_development_mode() | ||
| 1811 | && ! self::is_onboarding() | ||
| 1812 | && ( | ||
| 1813 | ! is_multisite() | ||
| 1814 | || ! get_site_option( 'jetpack_protect_active' ) | ||
| 1815 | ) | ||
| 1816 | 		) { | ||
| 1817 | return; | ||
| 1818 | } | ||
| 1819 | |||
| 1820 | $version = Jetpack_Options::get_option( 'version' ); | ||
| 1821 | View Code Duplication | 		if ( ! $version ) { | |
| 1822 | $version = $old_version = JETPACK__VERSION . ':' . time(); | ||
| 1823 | /** This action is documented in class.jetpack.php */ | ||
| 1824 | do_action( 'updating_jetpack_version', $version, false ); | ||
| 1825 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); | ||
| 1826 | } | ||
| 1827 | list( $version ) = explode( ':', $version ); | ||
| 1828 | |||
| 1829 | $modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) ); | ||
| 1830 | |||
| 1831 | $modules_data = array(); | ||
| 1832 | |||
| 1833 | // Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check. | ||
| 1834 | 		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) { | ||
| 1835 | $updated_modules = array(); | ||
| 1836 | 			foreach ( $modules as $module ) { | ||
| 1837 | $modules_data[ $module ] = Jetpack::get_module( $module ); | ||
| 1838 | 				if ( ! isset( $modules_data[ $module ]['changed'] ) ) { | ||
| 1839 | continue; | ||
| 1840 | } | ||
| 1841 | |||
| 1842 | 				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) { | ||
| 1843 | continue; | ||
| 1844 | } | ||
| 1845 | |||
| 1846 | $updated_modules[] = $module; | ||
| 1847 | } | ||
| 1848 | |||
| 1849 | $modules = array_diff( $modules, $updated_modules ); | ||
| 1850 | } | ||
| 1851 | |||
| 1852 | $is_development_mode = Jetpack::is_development_mode(); | ||
| 1853 | |||
| 1854 | 		foreach ( $modules as $index => $module ) { | ||
| 1855 | // If we're in dev mode, disable modules requiring a connection | ||
| 1856 | 			if ( $is_development_mode ) { | ||
| 1857 | // Prime the pump if we need to | ||
| 1858 | 				if ( empty( $modules_data[ $module ] ) ) { | ||
| 1859 | $modules_data[ $module ] = Jetpack::get_module( $module ); | ||
| 1860 | } | ||
| 1861 | // If the module requires a connection, but we're in local mode, don't include it. | ||
| 1862 | 				if ( $modules_data[ $module ]['requires_connection'] ) { | ||
| 1863 | continue; | ||
| 1864 | } | ||
| 1865 | } | ||
| 1866 | |||
| 1867 | 			if ( did_action( 'jetpack_module_loaded_' . $module ) ) { | ||
| 1868 | continue; | ||
| 1869 | } | ||
| 1870 | |||
| 1871 | 			if ( ! include_once( Jetpack::get_module_path( $module ) ) ) { | ||
| 1872 | unset( $modules[ $index ] ); | ||
| 1873 | self::update_active_modules( array_values( $modules ) ); | ||
| 1874 | continue; | ||
| 1875 | } | ||
| 1876 | |||
| 1877 | /** | ||
| 1878 | * Fires when a specific module is loaded. | ||
| 1879 | * The dynamic part of the hook, $module, is the module slug. | ||
| 1880 | * | ||
| 1881 | * @since 1.1.0 | ||
| 1882 | */ | ||
| 1883 | do_action( 'jetpack_module_loaded_' . $module ); | ||
| 1884 | } | ||
| 1885 | |||
| 1886 | /** | ||
| 1887 | * Fires when all the modules are loaded. | ||
| 1888 | * | ||
| 1889 | * @since 1.1.0 | ||
| 1890 | */ | ||
| 1891 | do_action( 'jetpack_modules_loaded' ); | ||
| 1892 | |||
| 1893 | // Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme. | ||
| 1894 | require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' ); | ||
| 1895 | } | ||
| 1896 | |||
| 1897 | /** | ||
| 1898 | * Check if Jetpack's REST API compat file should be included | ||
| 1899 | * @action plugins_loaded | ||
| 1900 | * @return null | ||
| 1901 | */ | ||
| 1902 | 	public function check_rest_api_compat() { | ||
| 1903 | /** | ||
| 1904 | * Filters the list of REST API compat files to be included. | ||
| 1905 | * | ||
| 1906 | * @since 2.2.5 | ||
| 1907 | * | ||
| 1908 | * @param array $args Array of REST API compat files to include. | ||
| 1909 | */ | ||
| 1910 | $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() ); | ||
| 1911 | |||
| 1912 | if ( function_exists( 'bbpress' ) ) | ||
| 1913 | $_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php'; | ||
| 1914 | |||
| 1915 | foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include ) | ||
| 1916 | require_once $_jetpack_rest_api_compat_include; | ||
| 1917 | } | ||
| 1918 | |||
| 1919 | /** | ||
| 1920 | * Gets all plugins currently active in values, regardless of whether they're | ||
| 1921 | * traditionally activated or network activated. | ||
| 1922 | * | ||
| 1923 | * @todo Store the result in core's object cache maybe? | ||
| 1924 | */ | ||
| 1925 | 	public static function get_active_plugins() { | ||
| 1926 | $active_plugins = (array) get_option( 'active_plugins', array() ); | ||
| 1927 | |||
| 1928 | 		if ( is_multisite() ) { | ||
| 1929 | // Due to legacy code, active_sitewide_plugins stores them in the keys, | ||
| 1930 | // whereas active_plugins stores them in the values. | ||
| 1931 | $network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); | ||
| 1932 | 			if ( $network_plugins ) { | ||
| 1933 | $active_plugins = array_merge( $active_plugins, $network_plugins ); | ||
| 1934 | } | ||
| 1935 | } | ||
| 1936 | |||
| 1937 | sort( $active_plugins ); | ||
| 1938 | |||
| 1939 | return array_unique( $active_plugins ); | ||
| 1940 | } | ||
| 1941 | |||
| 1942 | /** | ||
| 1943 | * Gets and parses additional plugin data to send with the heartbeat data | ||
| 1944 | * | ||
| 1945 | * @since 3.8.1 | ||
| 1946 | * | ||
| 1947 | * @return array Array of plugin data | ||
| 1948 | */ | ||
| 1949 | 	public static function get_parsed_plugin_data() { | ||
| 1950 | 		if ( ! function_exists( 'get_plugins' ) ) { | ||
| 1951 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); | ||
| 1952 | } | ||
| 1953 | /** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */ | ||
| 1954 | $all_plugins = apply_filters( 'all_plugins', get_plugins() ); | ||
| 1955 | $active_plugins = Jetpack::get_active_plugins(); | ||
| 1956 | |||
| 1957 | $plugins = array(); | ||
| 1958 | 		foreach ( $all_plugins as $path => $plugin_data ) { | ||
| 1959 | $plugins[ $path ] = array( | ||
| 1960 | 'is_active' => in_array( $path, $active_plugins ), | ||
| 1961 | 'file' => $path, | ||
| 1962 | 'name' => $plugin_data['Name'], | ||
| 1963 | 'version' => $plugin_data['Version'], | ||
| 1964 | 'author' => $plugin_data['Author'], | ||
| 1965 | ); | ||
| 1966 | } | ||
| 1967 | |||
| 1968 | return $plugins; | ||
| 1969 | } | ||
| 1970 | |||
| 1971 | /** | ||
| 1972 | * Gets and parses theme data to send with the heartbeat data | ||
| 1973 | * | ||
| 1974 | * @since 3.8.1 | ||
| 1975 | * | ||
| 1976 | * @return array Array of theme data | ||
| 1977 | */ | ||
| 1978 | 	public static function get_parsed_theme_data() { | ||
| 1979 | $all_themes = wp_get_themes( array( 'allowed' => true ) ); | ||
| 1980 | $header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' ); | ||
| 1981 | |||
| 1982 | $themes = array(); | ||
| 1983 | 		foreach ( $all_themes as $slug => $theme_data ) { | ||
| 1984 | $theme_headers = array(); | ||
| 1985 | 			foreach ( $header_keys as $header_key ) { | ||
| 1986 | $theme_headers[ $header_key ] = $theme_data->get( $header_key ); | ||
| 1987 | } | ||
| 1988 | |||
| 1989 | $themes[ $slug ] = array( | ||
| 1990 | 'is_active_theme' => $slug == wp_get_theme()->get_template(), | ||
| 1991 | 'slug' => $slug, | ||
| 1992 | 'theme_root' => $theme_data->get_theme_root_uri(), | ||
| 1993 | 'parent' => $theme_data->parent(), | ||
| 1994 | 'headers' => $theme_headers | ||
| 1995 | ); | ||
| 1996 | } | ||
| 1997 | |||
| 1998 | return $themes; | ||
| 1999 | } | ||
| 2000 | |||
| 2001 | /** | ||
| 2002 | * Checks whether a specific plugin is active. | ||
| 2003 | * | ||
| 2004 | * We don't want to store these in a static variable, in case | ||
| 2005 | * there are switch_to_blog() calls involved. | ||
| 2006 | */ | ||
| 2007 | 	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { | ||
| 2008 | return in_array( $plugin, self::get_active_plugins() ); | ||
| 2009 | } | ||
| 2010 | |||
| 2011 | /** | ||
| 2012 | * Check if Jetpack's Open Graph tags should be used. | ||
| 2013 | * If certain plugins are active, Jetpack's og tags are suppressed. | ||
| 2014 | * | ||
| 2015 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters | ||
| 2016 | * @action plugins_loaded | ||
| 2017 | * @return null | ||
| 2018 | */ | ||
| 2019 | 	public function check_open_graph() { | ||
| 2020 | 		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) { | ||
| 2021 | add_filter( 'jetpack_enable_open_graph', '__return_true', 0 ); | ||
| 2022 | } | ||
| 2023 | |||
| 2024 | $active_plugins = self::get_active_plugins(); | ||
| 2025 | |||
| 2026 | 		if ( ! empty( $active_plugins ) ) { | ||
| 2027 | 			foreach ( $this->open_graph_conflicting_plugins as $plugin ) { | ||
| 2028 | 				if ( in_array( $plugin, $active_plugins ) ) { | ||
| 2029 | add_filter( 'jetpack_enable_open_graph', '__return_false', 99 ); | ||
| 2030 | break; | ||
| 2031 | } | ||
| 2032 | } | ||
| 2033 | } | ||
| 2034 | |||
| 2035 | /** | ||
| 2036 | * Allow the addition of Open Graph Meta Tags to all pages. | ||
| 2037 | * | ||
| 2038 | * @since 2.0.3 | ||
| 2039 | * | ||
| 2040 | * @param bool false Should Open Graph Meta tags be added. Default to false. | ||
| 2041 | */ | ||
| 2042 | 		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) { | ||
| 2043 | require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php'; | ||
| 2044 | } | ||
| 2045 | } | ||
| 2046 | |||
| 2047 | /** | ||
| 2048 | * Check if Jetpack's Twitter tags should be used. | ||
| 2049 | * If certain plugins are active, Jetpack's twitter tags are suppressed. | ||
| 2050 | * | ||
| 2051 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters | ||
| 2052 | * @action plugins_loaded | ||
| 2053 | * @return null | ||
| 2054 | */ | ||
| 2055 | 	public function check_twitter_tags() { | ||
| 2056 | |||
| 2057 | $active_plugins = self::get_active_plugins(); | ||
| 2058 | |||
| 2059 | 		if ( ! empty( $active_plugins ) ) { | ||
| 2060 | 			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) { | ||
| 2061 | 				if ( in_array( $plugin, $active_plugins ) ) { | ||
| 2062 | add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 ); | ||
| 2063 | break; | ||
| 2064 | } | ||
| 2065 | } | ||
| 2066 | } | ||
| 2067 | |||
| 2068 | /** | ||
| 2069 | * Allow Twitter Card Meta tags to be disabled. | ||
| 2070 | * | ||
| 2071 | * @since 2.6.0 | ||
| 2072 | * | ||
| 2073 | * @param bool true Should Twitter Card Meta tags be disabled. Default to true. | ||
| 2074 | */ | ||
| 2075 | 		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) { | ||
| 2076 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php'; | ||
| 2077 | } | ||
| 2078 | } | ||
| 2079 | |||
| 2080 | /** | ||
| 2081 | * Allows plugins to submit security reports. | ||
| 2082 | * | ||
| 2083 | * @param string $type Report type (login_form, backup, file_scanning, spam) | ||
| 2084 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data | ||
| 2085 | * @param array $args See definitions above | ||
| 2086 | */ | ||
| 2087 | 	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { | ||
| 2088 | _deprecated_function( __FUNCTION__, 'jetpack-4.2', null ); | ||
| 2089 | } | ||
| 2090 | |||
| 2091 | /* Jetpack Options API */ | ||
| 2092 | |||
| 2093 | 	public static function get_option_names( $type = 'compact' ) { | ||
| 2094 | return Jetpack_Options::get_option_names( $type ); | ||
| 2095 | } | ||
| 2096 | |||
| 2097 | /** | ||
| 2098 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. | ||
| 2099 | * | ||
| 2100 | * @param string $name Option name | ||
| 2101 | * @param mixed $default (optional) | ||
| 2102 | */ | ||
| 2103 | 	public static function get_option( $name, $default = false ) { | ||
| 2104 | return Jetpack_Options::get_option( $name, $default ); | ||
| 2105 | } | ||
| 2106 | |||
| 2107 | /** | ||
| 2108 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. | ||
| 2109 | * | ||
| 2110 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. | ||
| 2111 | * @param string $name Option name | ||
| 2112 | * @param mixed $value Option value | ||
| 2113 | */ | ||
| 2114 | 	public static function update_option( $name, $value ) { | ||
| 2115 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' ); | ||
| 2116 | return Jetpack_Options::update_option( $name, $value ); | ||
| 2117 | } | ||
| 2118 | |||
| 2119 | /** | ||
| 2120 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. | ||
| 2121 | * | ||
| 2122 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. | ||
| 2123 | * @param array $array array( option name => option value, ... ) | ||
| 2124 | */ | ||
| 2125 | 	public static function update_options( $array ) { | ||
| 2126 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' ); | ||
| 2127 | return Jetpack_Options::update_options( $array ); | ||
| 2128 | } | ||
| 2129 | |||
| 2130 | /** | ||
| 2131 | * Deletes the given option. May be passed multiple option names as an array. | ||
| 2132 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. | ||
| 2133 | * | ||
| 2134 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. | ||
| 2135 | * @param string|array $names | ||
| 2136 | */ | ||
| 2137 | 	public static function delete_option( $names ) { | ||
| 2138 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' ); | ||
| 2139 | return Jetpack_Options::delete_option( $names ); | ||
| 2140 | } | ||
| 2141 | |||
| 2142 | /** | ||
| 2143 | * Enters a user token into the user_tokens option | ||
| 2144 | * | ||
| 2145 | * @param int $user_id | ||
| 2146 | * @param string $token | ||
| 2147 | * return bool | ||
| 2148 | */ | ||
| 2149 | 	public static function update_user_token( $user_id, $token, $is_master_user ) { | ||
| 2150 | // not designed for concurrent updates | ||
| 2151 | $user_tokens = Jetpack_Options::get_option( 'user_tokens' ); | ||
| 2152 | if ( ! is_array( $user_tokens ) ) | ||
| 2153 | $user_tokens = array(); | ||
| 2154 | $user_tokens[$user_id] = $token; | ||
| 2155 | 		if ( $is_master_user ) { | ||
| 2156 | $master_user = $user_id; | ||
| 2157 | $options = compact( 'user_tokens', 'master_user' ); | ||
| 2158 | 		} else { | ||
| 2159 | $options = compact( 'user_tokens' ); | ||
| 2160 | } | ||
| 2161 | return Jetpack_Options::update_options( $options ); | ||
| 2162 | } | ||
| 2163 | |||
| 2164 | /** | ||
| 2165 | * Returns an array of all PHP files in the specified absolute path. | ||
| 2166 | * Equivalent to glob( "$absolute_path/*.php" ). | ||
| 2167 | * | ||
| 2168 | * @param string $absolute_path The absolute path of the directory to search. | ||
| 2169 | * @return array Array of absolute paths to the PHP files. | ||
| 2170 | */ | ||
| 2171 | 	public static function glob_php( $absolute_path ) { | ||
| 2172 | 		if ( function_exists( 'glob' ) ) { | ||
| 2173 | return glob( "$absolute_path/*.php" ); | ||
| 2174 | } | ||
| 2175 | |||
| 2176 | $absolute_path = untrailingslashit( $absolute_path ); | ||
| 2177 | $files = array(); | ||
| 2178 | 		if ( ! $dir = @opendir( $absolute_path ) ) { | ||
| 2179 | return $files; | ||
| 2180 | } | ||
| 2181 | |||
| 2182 | 		while ( false !== $file = readdir( $dir ) ) { | ||
| 2183 | 			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) { | ||
| 2184 | continue; | ||
| 2185 | } | ||
| 2186 | |||
| 2187 | $file = "$absolute_path/$file"; | ||
| 2188 | |||
| 2189 | 			if ( ! is_file( $file ) ) { | ||
| 2190 | continue; | ||
| 2191 | } | ||
| 2192 | |||
| 2193 | $files[] = $file; | ||
| 2194 | } | ||
| 2195 | |||
| 2196 | closedir( $dir ); | ||
| 2197 | |||
| 2198 | return $files; | ||
| 2199 | } | ||
| 2200 | |||
| 2201 | 	public static function activate_new_modules( $redirect = false ) { | ||
| 2202 | 		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { | ||
| 2203 | return; | ||
| 2204 | } | ||
| 2205 | |||
| 2206 | $jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic] | ||
| 2207 | View Code Duplication | 		if ( ! $jetpack_old_version ) { | |
| 2208 | $jetpack_old_version = $version = $old_version = '1.1:' . time(); | ||
| 2209 | /** This action is documented in class.jetpack.php */ | ||
| 2210 | do_action( 'updating_jetpack_version', $version, false ); | ||
| 2211 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); | ||
| 2212 | } | ||
| 2213 | |||
| 2214 | list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic] | ||
| 2215 | |||
| 2216 | 		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) { | ||
| 2217 | return; | ||
| 2218 | } | ||
| 2219 | |||
| 2220 | $active_modules = Jetpack::get_active_modules(); | ||
| 2221 | $reactivate_modules = array(); | ||
| 2222 | 		foreach ( $active_modules as $active_module ) { | ||
| 2223 | $module = Jetpack::get_module( $active_module ); | ||
| 2224 | 			if ( ! isset( $module['changed'] ) ) { | ||
| 2225 | continue; | ||
| 2226 | } | ||
| 2227 | |||
| 2228 | 			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) { | ||
| 2229 | continue; | ||
| 2230 | } | ||
| 2231 | |||
| 2232 | $reactivate_modules[] = $active_module; | ||
| 2233 | Jetpack::deactivate_module( $active_module ); | ||
| 2234 | } | ||
| 2235 | |||
| 2236 | $new_version = JETPACK__VERSION . ':' . time(); | ||
| 2237 | /** This action is documented in class.jetpack.php */ | ||
| 2238 | do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version ); | ||
| 2239 | Jetpack_Options::update_options( | ||
| 2240 | array( | ||
| 2241 | 'version' => $new_version, | ||
| 2242 | 'old_version' => $jetpack_old_version, | ||
| 2243 | ) | ||
| 2244 | ); | ||
| 2245 | |||
| 2246 | Jetpack::state( 'message', 'modules_activated' ); | ||
| 2247 | Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules ); | ||
| 2248 | |||
| 2249 | 		if ( $redirect ) { | ||
| 2250 | $page = 'jetpack'; // make sure we redirect to either settings or the jetpack page | ||
| 2251 | 			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) { | ||
| 2252 | $page = $_GET['page']; | ||
| 2253 | } | ||
| 2254 | |||
| 2255 | wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) ); | ||
| 2256 | exit; | ||
| 2257 | } | ||
| 2258 | } | ||
| 2259 | |||
| 2260 | /** | ||
| 2261 | * List available Jetpack modules. Simply lists .php files in /modules/. | ||
| 2262 | * Make sure to tuck away module "library" files in a sub-directory. | ||
| 2263 | */ | ||
| 2264 | 	public static function get_available_modules( $min_version = false, $max_version = false ) { | ||
| 2265 | static $modules = null; | ||
| 2266 | |||
| 2267 | 		if ( ! isset( $modules ) ) { | ||
| 2268 | $available_modules_option = Jetpack_Options::get_option( 'available_modules', array() ); | ||
| 2269 | // Use the cache if we're on the front-end and it's available... | ||
| 2270 | 			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) { | ||
| 2271 | $modules = $available_modules_option[ JETPACK__VERSION ]; | ||
| 2272 | 			} else { | ||
| 2273 | $files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' ); | ||
| 2274 | |||
| 2275 | $modules = array(); | ||
| 2276 | |||
| 2277 | 				foreach ( $files as $file ) { | ||
| 2278 | 					if ( ! $headers = Jetpack::get_module( $file ) ) { | ||
| 2279 | continue; | ||
| 2280 | } | ||
| 2281 | |||
| 2282 | $modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced']; | ||
| 2283 | } | ||
| 2284 | |||
| 2285 | Jetpack_Options::update_option( 'available_modules', array( | ||
| 2286 | JETPACK__VERSION => $modules, | ||
| 2287 | ) ); | ||
| 2288 | } | ||
| 2289 | } | ||
| 2290 | |||
| 2291 | /** | ||
| 2292 | * Filters the array of modules available to be activated. | ||
| 2293 | * | ||
| 2294 | * @since 2.4.0 | ||
| 2295 | * | ||
| 2296 | * @param array $modules Array of available modules. | ||
| 2297 | * @param string $min_version Minimum version number required to use modules. | ||
| 2298 | * @param string $max_version Maximum version number required to use modules. | ||
| 2299 | */ | ||
| 2300 | $mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version ); | ||
| 2301 | |||
| 2302 | 		if ( ! $min_version && ! $max_version ) { | ||
| 2303 | return array_keys( $mods ); | ||
| 2304 | } | ||
| 2305 | |||
| 2306 | $r = array(); | ||
| 2307 | 		foreach ( $mods as $slug => $introduced ) { | ||
| 2308 | 			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) { | ||
| 2309 | continue; | ||
| 2310 | } | ||
| 2311 | |||
| 2312 | 			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) { | ||
| 2313 | continue; | ||
| 2314 | } | ||
| 2315 | |||
| 2316 | $r[] = $slug; | ||
| 2317 | } | ||
| 2318 | |||
| 2319 | return $r; | ||
| 2320 | } | ||
| 2321 | |||
| 2322 | /** | ||
| 2323 | * Default modules loaded on activation. | ||
| 2324 | */ | ||
| 2325 | 	public static function get_default_modules( $min_version = false, $max_version = false ) { | ||
| 2326 | $return = array(); | ||
| 2327 | |||
| 2328 | 		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) { | ||
| 2329 | $module_data = Jetpack::get_module( $module ); | ||
| 2330 | |||
| 2331 | 			switch ( strtolower( $module_data['auto_activate'] ) ) { | ||
| 2332 | case 'yes' : | ||
| 2333 | $return[] = $module; | ||
| 2334 | break; | ||
| 2335 | case 'public' : | ||
| 2336 | 					if ( Jetpack_Options::get_option( 'public' ) ) { | ||
| 2337 | $return[] = $module; | ||
| 2338 | } | ||
| 2339 | break; | ||
| 2340 | case 'no' : | ||
| 2341 | default : | ||
| 2342 | break; | ||
| 2343 | } | ||
| 2344 | } | ||
| 2345 | /** | ||
| 2346 | * Filters the array of default modules. | ||
| 2347 | * | ||
| 2348 | * @since 2.5.0 | ||
| 2349 | * | ||
| 2350 | * @param array $return Array of default modules. | ||
| 2351 | * @param string $min_version Minimum version number required to use modules. | ||
| 2352 | * @param string $max_version Maximum version number required to use modules. | ||
| 2353 | */ | ||
| 2354 | return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version ); | ||
| 2355 | } | ||
| 2356 | |||
| 2357 | /** | ||
| 2358 | * Checks activated modules during auto-activation to determine | ||
| 2359 | * if any of those modules are being deprecated. If so, close | ||
| 2360 | * them out, and add any replacement modules. | ||
| 2361 | * | ||
| 2362 | * Runs at priority 99 by default. | ||
| 2363 | * | ||
| 2364 | * This is run late, so that it can still activate a module if | ||
| 2365 | * the new module is a replacement for another that the user | ||
| 2366 | * currently has active, even if something at the normal priority | ||
| 2367 | * would kibosh everything. | ||
| 2368 | * | ||
| 2369 | * @since 2.6 | ||
| 2370 | * @uses jetpack_get_default_modules filter | ||
| 2371 | * @param array $modules | ||
| 2372 | * @return array | ||
| 2373 | */ | ||
| 2374 | 	function handle_deprecated_modules( $modules ) { | ||
| 2375 | $deprecated_modules = array( | ||
| 2376 | 'debug' => null, // Closed out and moved to the debugger library. | ||
| 2377 | 'wpcc' => 'sso', // Closed out in 2.6 -- SSO provides the same functionality. | ||
| 2378 | 'gplus-authorship' => null, // Closed out in 3.2 -- Google dropped support. | ||
| 2379 | ); | ||
| 2380 | |||
| 2381 | // Don't activate SSO if they never completed activating WPCC. | ||
| 2382 | 		if ( Jetpack::is_module_active( 'wpcc' ) ) { | ||
| 2383 | $wpcc_options = Jetpack_Options::get_option( 'wpcc_options' ); | ||
| 2384 | 			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) { | ||
| 2385 | $deprecated_modules['wpcc'] = null; | ||
| 2386 | } | ||
| 2387 | } | ||
| 2388 | |||
| 2389 | 		foreach ( $deprecated_modules as $module => $replacement ) { | ||
| 2390 | 			if ( Jetpack::is_module_active( $module ) ) { | ||
| 2391 | self::deactivate_module( $module ); | ||
| 2392 | 				if ( $replacement ) { | ||
| 2393 | $modules[] = $replacement; | ||
| 2394 | } | ||
| 2395 | } | ||
| 2396 | } | ||
| 2397 | |||
| 2398 | return array_unique( $modules ); | ||
| 2399 | } | ||
| 2400 | |||
| 2401 | /** | ||
| 2402 | * Checks activated plugins during auto-activation to determine | ||
| 2403 | * if any of those plugins are in the list with a corresponding module | ||
| 2404 | * that is not compatible with the plugin. The module will not be allowed | ||
| 2405 | * to auto-activate. | ||
| 2406 | * | ||
| 2407 | * @since 2.6 | ||
| 2408 | * @uses jetpack_get_default_modules filter | ||
| 2409 | * @param array $modules | ||
| 2410 | * @return array | ||
| 2411 | */ | ||
| 2412 | 	function filter_default_modules( $modules ) { | ||
| 2413 | |||
| 2414 | $active_plugins = self::get_active_plugins(); | ||
| 2415 | |||
| 2416 | 		if ( ! empty( $active_plugins ) ) { | ||
| 2417 | |||
| 2418 | // For each module we'd like to auto-activate... | ||
| 2419 | 			foreach ( $modules as $key => $module ) { | ||
| 2420 | // If there are potential conflicts for it... | ||
| 2421 | 				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) { | ||
| 2422 | // For each potential conflict... | ||
| 2423 | 					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) { | ||
| 2424 | // If that conflicting plugin is active... | ||
| 2425 | 						if ( in_array( $plugin, $active_plugins ) ) { | ||
| 2426 | // Remove that item from being auto-activated. | ||
| 2427 | unset( $modules[ $key ] ); | ||
| 2428 | } | ||
| 2429 | } | ||
| 2430 | } | ||
| 2431 | } | ||
| 2432 | } | ||
| 2433 | |||
| 2434 | return $modules; | ||
| 2435 | } | ||
| 2436 | |||
| 2437 | /** | ||
| 2438 | * Extract a module's slug from its full path. | ||
| 2439 | */ | ||
| 2440 | 	public static function get_module_slug( $file ) { | ||
| 2441 | return str_replace( '.php', '', basename( $file ) ); | ||
| 2442 | } | ||
| 2443 | |||
| 2444 | /** | ||
| 2445 | * Generate a module's path from its slug. | ||
| 2446 | */ | ||
| 2447 | 	public static function get_module_path( $slug ) { | ||
| 2448 | return JETPACK__PLUGIN_DIR . "modules/$slug.php"; | ||
| 2449 | } | ||
| 2450 | |||
| 2451 | /** | ||
| 2452 | * Load module data from module file. Headers differ from WordPress | ||
| 2453 | * plugin headers to avoid them being identified as standalone | ||
| 2454 | * plugins on the WordPress plugins page. | ||
| 2455 | */ | ||
| 2456 | 	public static function get_module( $module ) { | ||
| 2457 | $headers = array( | ||
| 2458 | 'name' => 'Module Name', | ||
| 2459 | 'description' => 'Module Description', | ||
| 2460 | 'jumpstart_desc' => 'Jumpstart Description', | ||
| 2461 | 'sort' => 'Sort Order', | ||
| 2462 | 'recommendation_order' => 'Recommendation Order', | ||
| 2463 | 'introduced' => 'First Introduced', | ||
| 2464 | 'changed' => 'Major Changes In', | ||
| 2465 | 'deactivate' => 'Deactivate', | ||
| 2466 | 'free' => 'Free', | ||
| 2467 | 'requires_connection' => 'Requires Connection', | ||
| 2468 | 'auto_activate' => 'Auto Activate', | ||
| 2469 | 'module_tags' => 'Module Tags', | ||
| 2470 | 'feature' => 'Feature', | ||
| 2471 | 'additional_search_queries' => 'Additional Search Queries', | ||
| 2472 | 'plan_classes' => 'Plans', | ||
| 2473 | ); | ||
| 2474 | |||
| 2475 | $file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) ); | ||
| 2476 | |||
| 2477 | $mod = Jetpack::get_file_data( $file, $headers ); | ||
| 2478 | 		if ( empty( $mod['name'] ) ) { | ||
| 2479 | return false; | ||
| 2480 | } | ||
| 2481 | |||
| 2482 | $mod['sort'] = empty( $mod['sort'] ) ? 10 : (int) $mod['sort']; | ||
| 2483 | $mod['recommendation_order'] = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order']; | ||
| 2484 | $mod['deactivate'] = empty( $mod['deactivate'] ); | ||
| 2485 | $mod['free'] = empty( $mod['free'] ); | ||
| 2486 | $mod['requires_connection'] = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true; | ||
| 2487 | |||
| 2488 | 		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) { | ||
| 2489 | $mod['auto_activate'] = 'No'; | ||
| 2490 | 		} else { | ||
| 2491 | $mod['auto_activate'] = (string) $mod['auto_activate']; | ||
| 2492 | } | ||
| 2493 | |||
| 2494 | 		if ( $mod['module_tags'] ) { | ||
| 2495 | $mod['module_tags'] = explode( ',', $mod['module_tags'] ); | ||
| 2496 | $mod['module_tags'] = array_map( 'trim', $mod['module_tags'] ); | ||
| 2497 | $mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] ); | ||
| 2498 | 		} else { | ||
| 2499 | $mod['module_tags'] = array( self::translate_module_tag( 'Other' ) ); | ||
| 2500 | } | ||
| 2501 | |||
| 2502 | View Code Duplication | 		if ( $mod['plan_classes'] ) { | |
| 2503 | $mod['plan_classes'] = explode( ',', $mod['plan_classes'] ); | ||
| 2504 | $mod['plan_classes'] = array_map( 'strtolower', array_map( 'trim', $mod['plan_classes'] ) ); | ||
| 2505 | 		} else { | ||
| 2506 | $mod['plan_classes'] = array( 'free' ); | ||
| 2507 | } | ||
| 2508 | |||
| 2509 | View Code Duplication | 		if ( $mod['feature'] ) { | |
| 2510 | $mod['feature'] = explode( ',', $mod['feature'] ); | ||
| 2511 | $mod['feature'] = array_map( 'trim', $mod['feature'] ); | ||
| 2512 | 		} else { | ||
| 2513 | $mod['feature'] = array( self::translate_module_tag( 'Other' ) ); | ||
| 2514 | } | ||
| 2515 | |||
| 2516 | /** | ||
| 2517 | * Filters the feature array on a module. | ||
| 2518 | * | ||
| 2519 | * This filter allows you to control where each module is filtered: Recommended, | ||
| 2520 | * Jumpstart, and the default "Other" listing. | ||
| 2521 | * | ||
| 2522 | * @since 3.5.0 | ||
| 2523 | * | ||
| 2524 | * @param array $mod['feature'] The areas to feature this module: | ||
| 2525 | * 'Jumpstart' adds to the "Jumpstart" option to activate many modules at once. | ||
| 2526 | * 'Recommended' shows on the main Jetpack admin screen. | ||
| 2527 | * 'Other' should be the default if no other value is in the array. | ||
| 2528 | * @param string $module The slug of the module, e.g. sharedaddy. | ||
| 2529 | * @param array $mod All the currently assembled module data. | ||
| 2530 | */ | ||
| 2531 | $mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod ); | ||
| 2532 | |||
| 2533 | /** | ||
| 2534 | * Filter the returned data about a module. | ||
| 2535 | * | ||
| 2536 | * This filter allows overriding any info about Jetpack modules. It is dangerous, | ||
| 2537 | * so please be careful. | ||
| 2538 | * | ||
| 2539 | * @since 3.6.0 | ||
| 2540 | * | ||
| 2541 | * @param array $mod The details of the requested module. | ||
| 2542 | * @param string $module The slug of the module, e.g. sharedaddy | ||
| 2543 | * @param string $file The path to the module source file. | ||
| 2544 | */ | ||
| 2545 | return apply_filters( 'jetpack_get_module', $mod, $module, $file ); | ||
| 2546 | } | ||
| 2547 | |||
| 2548 | /** | ||
| 2549 | * Like core's get_file_data implementation, but caches the result. | ||
| 2550 | */ | ||
| 2551 | 	public static function get_file_data( $file, $headers ) { | ||
| 2552 | //Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated | ||
| 2553 | $file_name = basename( $file ); | ||
| 2554 | |||
| 2555 | $cache_key = 'jetpack_file_data_' . JETPACK__VERSION; | ||
| 2556 | |||
| 2557 | $file_data_option = get_transient( $cache_key ); | ||
| 2558 | |||
| 2559 | 		if ( false === $file_data_option ) { | ||
| 2560 | $file_data_option = array(); | ||
| 2561 | } | ||
| 2562 | |||
| 2563 | $key = md5( $file_name . serialize( $headers ) ); | ||
| 2564 | $refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 ); | ||
| 2565 | |||
| 2566 | // If we don't need to refresh the cache, and already have the value, short-circuit! | ||
| 2567 | 		if ( ! $refresh_cache && isset( $file_data_option[ $key ] ) ) { | ||
| 2568 | return $file_data_option[ $key ]; | ||
| 2569 | } | ||
| 2570 | |||
| 2571 | $data = get_file_data( $file, $headers ); | ||
| 2572 | |||
| 2573 | $file_data_option[ $key ] = $data; | ||
| 2574 | |||
| 2575 | set_transient( $cache_key, $file_data_option, 29 * DAY_IN_SECONDS ); | ||
| 2576 | |||
| 2577 | return $data; | ||
| 2578 | } | ||
| 2579 | |||
| 2580 | |||
| 2581 | /** | ||
| 2582 | * Return translated module tag. | ||
| 2583 | * | ||
| 2584 | * @param string $tag Tag as it appears in each module heading. | ||
| 2585 | * | ||
| 2586 | * @return mixed | ||
| 2587 | */ | ||
| 2588 | 	public static function translate_module_tag( $tag ) { | ||
| 2589 | return jetpack_get_module_i18n_tag( $tag ); | ||
| 2590 | } | ||
| 2591 | |||
| 2592 | /** | ||
| 2593 | * Get i18n strings as a JSON-encoded string | ||
| 2594 | * | ||
| 2595 | * @return string The locale as JSON | ||
| 2596 | */ | ||
| 2597 | 	public static function get_i18n_data_json() { | ||
| 2598 | |||
| 2599 | // WordPress 5.0 uses md5 hashes of file paths to associate translation | ||
| 2600 | // JSON files with the file they should be included for. This is an md5 | ||
| 2601 | // of '_inc/build/admin.js'. | ||
| 2602 | $path_md5 = '1bac79e646a8bf4081a5011ab72d5807'; | ||
| 2603 | |||
| 2604 | $i18n_json = | ||
| 2605 | JETPACK__PLUGIN_DIR | ||
| 2606 | . 'languages/json/jetpack-' | ||
| 2607 | . get_user_locale() | ||
| 2608 | . '-' | ||
| 2609 | . $path_md5 | ||
| 2610 | . '.json'; | ||
| 2611 | |||
| 2612 | 		if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) { | ||
| 2613 | $locale_data = @file_get_contents( $i18n_json ); | ||
| 2614 | 			if ( $locale_data ) { | ||
| 2615 | return $locale_data; | ||
| 2616 | } | ||
| 2617 | } | ||
| 2618 | |||
| 2619 | // Return valid empty Jed locale | ||
| 2620 | 		return '{ "locale_data": { "messages": { "": {} } } }'; | ||
| 2621 | } | ||
| 2622 | |||
| 2623 | /** | ||
| 2624 | * Add locale data setup to wp-i18n | ||
| 2625 | * | ||
| 2626 | * Any Jetpack script that depends on wp-i18n should use this method to set up the locale. | ||
| 2627 | * | ||
| 2628 | * The locale setup depends on an adding inline script. This is error-prone and could easily | ||
| 2629 | * result in multiple additions of the same script when exactly 0 or 1 is desireable. | ||
| 2630 | * | ||
| 2631 | * This method provides a safe way to request the setup multiple times but add the script at | ||
| 2632 | * most once. | ||
| 2633 | * | ||
| 2634 | * @since 6.7.0 | ||
| 2635 | * | ||
| 2636 | * @return void | ||
| 2637 | */ | ||
| 2638 | 	public static function setup_wp_i18n_locale_data() { | ||
| 2639 | static $script_added = false; | ||
| 2640 | 		if ( ! $script_added ) { | ||
| 2641 | $script_added = true; | ||
| 2642 | wp_add_inline_script( | ||
| 2643 | 'wp-i18n', | ||
| 2644 | 'wp.i18n.setLocaleData( ' . Jetpack::get_i18n_data_json() . ', \'jetpack\' );' | ||
| 2645 | ); | ||
| 2646 | } | ||
| 2647 | } | ||
| 2648 | |||
| 2649 | /** | ||
| 2650 | * Return module name translation. Uses matching string created in modules/module-headings.php. | ||
| 2651 | * | ||
| 2652 | * @since 3.9.2 | ||
| 2653 | * | ||
| 2654 | * @param array $modules | ||
| 2655 | * | ||
| 2656 | * @return string|void | ||
| 2657 | */ | ||
| 2658 | 	public static function get_translated_modules( $modules ) { | ||
| 2659 | 		foreach ( $modules as $index => $module ) { | ||
| 2660 | $i18n_module = jetpack_get_module_i18n( $module['module'] ); | ||
| 2661 | 			if ( isset( $module['name'] ) ) { | ||
| 2662 | $modules[ $index ]['name'] = $i18n_module['name']; | ||
| 2663 | } | ||
| 2664 | 			if ( isset( $module['description'] ) ) { | ||
| 2665 | $modules[ $index ]['description'] = $i18n_module['description']; | ||
| 2666 | $modules[ $index ]['short_description'] = $i18n_module['description']; | ||
| 2667 | } | ||
| 2668 | } | ||
| 2669 | return $modules; | ||
| 2670 | } | ||
| 2671 | |||
| 2672 | /** | ||
| 2673 | * Get a list of activated modules as an array of module slugs. | ||
| 2674 | */ | ||
| 2675 | 	public static function get_active_modules() { | ||
| 2676 | $active = Jetpack_Options::get_option( 'active_modules' ); | ||
| 2677 | |||
| 2678 | 		if ( ! is_array( $active ) ) { | ||
| 2679 | $active = array(); | ||
| 2680 | } | ||
| 2681 | |||
| 2682 | 		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) { | ||
| 2683 | $active[] = 'vaultpress'; | ||
| 2684 | 		} else { | ||
| 2685 | $active = array_diff( $active, array( 'vaultpress' ) ); | ||
| 2686 | } | ||
| 2687 | |||
| 2688 | //If protect is active on the main site of a multisite, it should be active on all sites. | ||
| 2689 | 		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) { | ||
| 2690 | $active[] = 'protect'; | ||
| 2691 | } | ||
| 2692 | |||
| 2693 | /** | ||
| 2694 | * Allow filtering of the active modules. | ||
| 2695 | * | ||
| 2696 | * Gives theme and plugin developers the power to alter the modules that | ||
| 2697 | * are activated on the fly. | ||
| 2698 | * | ||
| 2699 | * @since 5.8.0 | ||
| 2700 | * | ||
| 2701 | * @param array $active Array of active module slugs. | ||
| 2702 | */ | ||
| 2703 | $active = apply_filters( 'jetpack_active_modules', $active ); | ||
| 2704 | |||
| 2705 | return array_unique( $active ); | ||
| 2706 | } | ||
| 2707 | |||
| 2708 | /** | ||
| 2709 | * Check whether or not a Jetpack module is active. | ||
| 2710 | * | ||
| 2711 | * @param string $module The slug of a Jetpack module. | ||
| 2712 | * @return bool | ||
| 2713 | * | ||
| 2714 | * @static | ||
| 2715 | */ | ||
| 2716 | 	public static function is_module_active( $module ) { | ||
| 2717 | return in_array( $module, self::get_active_modules() ); | ||
| 2718 | } | ||
| 2719 | |||
| 2720 | 	public static function is_module( $module ) { | ||
| 2721 | return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() ); | ||
| 2722 | } | ||
| 2723 | |||
| 2724 | /** | ||
| 2725 | * Catches PHP errors. Must be used in conjunction with output buffering. | ||
| 2726 | * | ||
| 2727 | * @param bool $catch True to start catching, False to stop. | ||
| 2728 | * | ||
| 2729 | * @static | ||
| 2730 | */ | ||
| 2731 | 	public static function catch_errors( $catch ) { | ||
| 2732 | static $display_errors, $error_reporting; | ||
| 2733 | |||
| 2734 | 		if ( $catch ) { | ||
| 2735 | $display_errors = @ini_set( 'display_errors', 1 ); | ||
| 2736 | $error_reporting = @error_reporting( E_ALL ); | ||
| 2737 | add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); | ||
| 2738 | 		} else { | ||
| 2739 | @ini_set( 'display_errors', $display_errors ); | ||
| 2740 | @error_reporting( $error_reporting ); | ||
| 2741 | remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); | ||
| 2742 | } | ||
| 2743 | } | ||
| 2744 | |||
| 2745 | /** | ||
| 2746 | 	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) | ||
| 2747 | */ | ||
| 2748 | 	public static function catch_errors_on_shutdown() { | ||
| 2749 | Jetpack::state( 'php_errors', self::alias_directories( ob_get_clean() ) ); | ||
| 2750 | } | ||
| 2751 | |||
| 2752 | /** | ||
| 2753 | * Rewrite any string to make paths easier to read. | ||
| 2754 | * | ||
| 2755 | * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR | ||
| 2756 | * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR. | ||
| 2757 | * | ||
| 2758 | * @param $string | ||
| 2759 | * @return mixed | ||
| 2760 | */ | ||
| 2761 | 	public static function alias_directories( $string ) { | ||
| 2762 | // ABSPATH has a trailing slash. | ||
| 2763 | $string = str_replace( ABSPATH, 'ABSPATH/', $string ); | ||
| 2764 | // WP_CONTENT_DIR does not have a trailing slash. | ||
| 2765 | $string = str_replace( WP_CONTENT_DIR, 'WP_CONTENT_DIR', $string ); | ||
| 2766 | |||
| 2767 | return $string; | ||
| 2768 | } | ||
| 2769 | |||
| 2770 | public static function activate_default_modules( | ||
| 2771 | $min_version = false, | ||
| 2772 | $max_version = false, | ||
| 2773 | $other_modules = array(), | ||
| 2774 | $redirect = true, | ||
| 2775 | $send_state_messages = true | ||
| 2776 | 	) { | ||
| 2777 | $jetpack = Jetpack::init(); | ||
| 2778 | |||
| 2779 | $modules = Jetpack::get_default_modules( $min_version, $max_version ); | ||
| 2780 | $modules = array_merge( $other_modules, $modules ); | ||
| 2781 | |||
| 2782 | // Look for standalone plugins and disable if active. | ||
| 2783 | |||
| 2784 | $to_deactivate = array(); | ||
| 2785 | 		foreach ( $modules as $module ) { | ||
| 2786 | 			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) { | ||
| 2787 | $to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module]; | ||
| 2788 | } | ||
| 2789 | } | ||
| 2790 | |||
| 2791 | $deactivated = array(); | ||
| 2792 | 		foreach ( $to_deactivate as $module => $deactivate_me ) { | ||
| 2793 | list( $probable_file, $probable_title ) = $deactivate_me; | ||
| 2794 | 			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) { | ||
| 2795 | $deactivated[] = $module; | ||
| 2796 | } | ||
| 2797 | } | ||
| 2798 | |||
| 2799 | 		if ( $deactivated && $redirect ) { | ||
| 2800 | Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) ); | ||
| 2801 | |||
| 2802 | $url = add_query_arg( | ||
| 2803 | array( | ||
| 2804 | 'action' => 'activate_default_modules', | ||
| 2805 | '_wpnonce' => wp_create_nonce( 'activate_default_modules' ), | ||
| 2806 | ), | ||
| 2807 | add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) ) | ||
| 2808 | ); | ||
| 2809 | wp_safe_redirect( $url ); | ||
| 2810 | exit; | ||
| 2811 | } | ||
| 2812 | |||
| 2813 | /** | ||
| 2814 | * Fires before default modules are activated. | ||
| 2815 | * | ||
| 2816 | * @since 1.9.0 | ||
| 2817 | * | ||
| 2818 | * @param string $min_version Minimum version number required to use modules. | ||
| 2819 | * @param string $max_version Maximum version number required to use modules. | ||
| 2820 | * @param array $other_modules Array of other modules to activate alongside the default modules. | ||
| 2821 | */ | ||
| 2822 | do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules ); | ||
| 2823 | |||
| 2824 | // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating | ||
| 2825 | 		if ( $send_state_messages ) { | ||
| 2826 | Jetpack::restate(); | ||
| 2827 | Jetpack::catch_errors( true ); | ||
| 2828 | } | ||
| 2829 | |||
| 2830 | $active = Jetpack::get_active_modules(); | ||
| 2831 | |||
| 2832 | 		foreach ( $modules as $module ) { | ||
| 2833 | 			if ( did_action( "jetpack_module_loaded_$module" ) ) { | ||
| 2834 | $active[] = $module; | ||
| 2835 | self::update_active_modules( $active ); | ||
| 2836 | continue; | ||
| 2837 | } | ||
| 2838 | |||
| 2839 | 			if ( $send_state_messages && in_array( $module, $active ) ) { | ||
| 2840 | $module_info = Jetpack::get_module( $module ); | ||
| 2841 | View Code Duplication | 				if ( ! $module_info['deactivate'] ) { | |
| 2842 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; | ||
| 2843 | 					if ( $active_state = Jetpack::state( $state ) ) { | ||
| 2844 | $active_state = explode( ',', $active_state ); | ||
| 2845 | 					} else { | ||
| 2846 | $active_state = array(); | ||
| 2847 | } | ||
| 2848 | $active_state[] = $module; | ||
| 2849 | Jetpack::state( $state, implode( ',', $active_state ) ); | ||
| 2850 | } | ||
| 2851 | continue; | ||
| 2852 | } | ||
| 2853 | |||
| 2854 | $file = Jetpack::get_module_path( $module ); | ||
| 2855 | 			if ( ! file_exists( $file ) ) { | ||
| 2856 | continue; | ||
| 2857 | } | ||
| 2858 | |||
| 2859 | // we'll override this later if the plugin can be included without fatal error | ||
| 2860 | 			if ( $redirect ) { | ||
| 2861 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); | ||
| 2862 | } | ||
| 2863 | |||
| 2864 | 			if ( $send_state_messages ) { | ||
| 2865 | Jetpack::state( 'error', 'module_activation_failed' ); | ||
| 2866 | Jetpack::state( 'module', $module ); | ||
| 2867 | } | ||
| 2868 | |||
| 2869 | ob_start(); | ||
| 2870 | require_once $file; | ||
| 2871 | |||
| 2872 | $active[] = $module; | ||
| 2873 | |||
| 2874 | View Code Duplication | 			if ( $send_state_messages ) { | |
| 2875 | |||
| 2876 | $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules'; | ||
| 2877 | 				if ( $active_state = Jetpack::state( $state ) ) { | ||
| 2878 | $active_state = explode( ',', $active_state ); | ||
| 2879 | 				} else { | ||
| 2880 | $active_state = array(); | ||
| 2881 | } | ||
| 2882 | $active_state[] = $module; | ||
| 2883 | Jetpack::state( $state, implode( ',', $active_state ) ); | ||
| 2884 | } | ||
| 2885 | |||
| 2886 | Jetpack::update_active_modules( $active ); | ||
| 2887 | |||
| 2888 | ob_end_clean(); | ||
| 2889 | } | ||
| 2890 | |||
| 2891 | 		if ( $send_state_messages ) { | ||
| 2892 | Jetpack::state( 'error', false ); | ||
| 2893 | Jetpack::state( 'module', false ); | ||
| 2894 | } | ||
| 2895 | |||
| 2896 | Jetpack::catch_errors( false ); | ||
| 2897 | /** | ||
| 2898 | * Fires when default modules are activated. | ||
| 2899 | * | ||
| 2900 | * @since 1.9.0 | ||
| 2901 | * | ||
| 2902 | * @param string $min_version Minimum version number required to use modules. | ||
| 2903 | * @param string $max_version Maximum version number required to use modules. | ||
| 2904 | * @param array $other_modules Array of other modules to activate alongside the default modules. | ||
| 2905 | */ | ||
| 2906 | do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules ); | ||
| 2907 | } | ||
| 2908 | |||
| 2909 | 	public static function activate_module( $module, $exit = true, $redirect = true ) { | ||
| 2910 | /** | ||
| 2911 | * Fires before a module is activated. | ||
| 2912 | * | ||
| 2913 | * @since 2.6.0 | ||
| 2914 | * | ||
| 2915 | * @param string $module Module slug. | ||
| 2916 | * @param bool $exit Should we exit after the module has been activated. Default to true. | ||
| 2917 | * @param bool $redirect Should the user be redirected after module activation? Default to true. | ||
| 2918 | */ | ||
| 2919 | do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect ); | ||
| 2920 | |||
| 2921 | $jetpack = Jetpack::init(); | ||
| 2922 | |||
| 2923 | if ( ! strlen( $module ) ) | ||
| 2924 | return false; | ||
| 2925 | |||
| 2926 | if ( ! Jetpack::is_module( $module ) ) | ||
| 2927 | return false; | ||
| 2928 | |||
| 2929 | // If it's already active, then don't do it again | ||
| 2930 | $active = Jetpack::get_active_modules(); | ||
| 2931 | 		foreach ( $active as $act ) { | ||
| 2932 | if ( $act == $module ) | ||
| 2933 | return true; | ||
| 2934 | } | ||
| 2935 | |||
| 2936 | $module_data = Jetpack::get_module( $module ); | ||
| 2937 | |||
| 2938 | 		if ( ! Jetpack::is_active() ) { | ||
| 2939 | if ( ! Jetpack::is_development_mode() && ! Jetpack::is_onboarding() ) | ||
| 2940 | return false; | ||
| 2941 | |||
| 2942 | // If we're not connected but in development mode, make sure the module doesn't require a connection | ||
| 2943 | if ( Jetpack::is_development_mode() && $module_data['requires_connection'] ) | ||
| 2944 | return false; | ||
| 2945 | } | ||
| 2946 | |||
| 2947 | // Check and see if the old plugin is active | ||
| 2948 | 		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) { | ||
| 2949 | // Deactivate the old plugin | ||
| 2950 | 			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) { | ||
| 2951 | // If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module | ||
| 2952 | // We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load. | ||
| 2953 | Jetpack::state( 'deactivated_plugins', $module ); | ||
| 2954 | wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) ); | ||
| 2955 | exit; | ||
| 2956 | } | ||
| 2957 | } | ||
| 2958 | |||
| 2959 | // Protect won't work with mis-configured IPs | ||
| 2960 | 		if ( 'protect' === $module ) { | ||
| 2961 | include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php'; | ||
| 2962 | 			if ( ! jetpack_protect_get_ip() ) { | ||
| 2963 | Jetpack::state( 'message', 'protect_misconfigured_ip' ); | ||
| 2964 | return false; | ||
| 2965 | } | ||
| 2966 | } | ||
| 2967 | |||
| 2968 | 		if ( ! Jetpack_Plan::supports( $module ) ) { | ||
| 2969 | return false; | ||
| 2970 | } | ||
| 2971 | |||
| 2972 | // Check the file for fatal errors, a la wp-admin/plugins.php::activate | ||
| 2973 | Jetpack::state( 'module', $module ); | ||
| 2974 | Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error | ||
| 2975 | |||
| 2976 | Jetpack::catch_errors( true ); | ||
| 2977 | ob_start(); | ||
| 2978 | require Jetpack::get_module_path( $module ); | ||
| 2979 | /** This action is documented in class.jetpack.php */ | ||
| 2980 | do_action( 'jetpack_activate_module', $module ); | ||
| 2981 | $active[] = $module; | ||
| 2982 | Jetpack::update_active_modules( $active ); | ||
| 2983 | |||
| 2984 | Jetpack::state( 'error', false ); // the override | ||
| 2985 | ob_end_clean(); | ||
| 2986 | Jetpack::catch_errors( false ); | ||
| 2987 | |||
| 2988 | 		if ( $redirect ) { | ||
| 2989 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) ); | ||
| 2990 | } | ||
| 2991 | 		if ( $exit ) { | ||
| 2992 | exit; | ||
| 2993 | } | ||
| 2994 | return true; | ||
| 2995 | } | ||
| 2996 | |||
| 2997 | 	function activate_module_actions( $module ) { | ||
| 2998 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); | ||
| 2999 | } | ||
| 3000 | |||
| 3001 | 	public static function deactivate_module( $module ) { | ||
| 3002 | /** | ||
| 3003 | * Fires when a module is deactivated. | ||
| 3004 | * | ||
| 3005 | * @since 1.9.0 | ||
| 3006 | * | ||
| 3007 | * @param string $module Module slug. | ||
| 3008 | */ | ||
| 3009 | do_action( 'jetpack_pre_deactivate_module', $module ); | ||
| 3010 | |||
| 3011 | $jetpack = Jetpack::init(); | ||
| 3012 | |||
| 3013 | $active = Jetpack::get_active_modules(); | ||
| 3014 | $new = array_filter( array_diff( $active, (array) $module ) ); | ||
| 3015 | |||
| 3016 | return self::update_active_modules( $new ); | ||
| 3017 | } | ||
| 3018 | |||
| 3019 | 	public static function enable_module_configurable( $module ) { | ||
| 3020 | $module = Jetpack::get_module_slug( $module ); | ||
| 3021 | add_filter( 'jetpack_module_configurable_' . $module, '__return_true' ); | ||
| 3022 | } | ||
| 3023 | |||
| 3024 | /** | ||
| 3025 | * Composes a module configure URL. It uses Jetpack settings search as default value | ||
| 3026 | * It is possible to redefine resulting URL by using "jetpack_module_configuration_url_$module" filter | ||
| 3027 | * | ||
| 3028 | * @param string $module Module slug | ||
| 3029 | * @return string $url module configuration URL | ||
| 3030 | */ | ||
| 3031 | 	public static function module_configuration_url( $module ) { | ||
| 3032 | $module = Jetpack::get_module_slug( $module ); | ||
| 3033 | $default_url = Jetpack::admin_url() . "#/settings?term=$module"; | ||
| 3034 | /** | ||
| 3035 | * Allows to modify configure_url of specific module to be able to redirect to some custom location. | ||
| 3036 | * | ||
| 3037 | * @since 6.9.0 | ||
| 3038 | * | ||
| 3039 | * @param string $default_url Default url, which redirects to jetpack settings page. | ||
| 3040 | */ | ||
| 3041 | $url = apply_filters( 'jetpack_module_configuration_url_' . $module, $default_url ); | ||
| 3042 | |||
| 3043 | return $url; | ||
| 3044 | } | ||
| 3045 | |||
| 3046 | /* Installation */ | ||
| 3047 | 	public static function bail_on_activation( $message, $deactivate = true ) { | ||
| 3048 | ?> | ||
| 3049 | <!doctype html> | ||
| 3050 | <html> | ||
| 3051 | <head> | ||
| 3052 | <meta charset="<?php bloginfo( 'charset' ); ?>"> | ||
| 3053 | <style> | ||
| 3054 | * { | ||
| 3055 | text-align: center; | ||
| 3056 | margin: 0; | ||
| 3057 | padding: 0; | ||
| 3058 | font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif; | ||
| 3059 | } | ||
| 3060 | p { | ||
| 3061 | margin-top: 1em; | ||
| 3062 | font-size: 18px; | ||
| 3063 | } | ||
| 3064 | </style> | ||
| 3065 | <body> | ||
| 3066 | <p><?php echo esc_html( $message ); ?></p> | ||
| 3067 | </body> | ||
| 3068 | </html> | ||
| 3069 | <?php | ||
| 3070 | 		if ( $deactivate ) { | ||
| 3071 | $plugins = get_option( 'active_plugins' ); | ||
| 3072 | $jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ); | ||
| 3073 | $update = false; | ||
| 3074 | 			foreach ( $plugins as $i => $plugin ) { | ||
| 3075 | 				if ( $plugin === $jetpack ) { | ||
| 3076 | $plugins[$i] = false; | ||
| 3077 | $update = true; | ||
| 3078 | } | ||
| 3079 | } | ||
| 3080 | |||
| 3081 | 			if ( $update ) { | ||
| 3082 | update_option( 'active_plugins', array_filter( $plugins ) ); | ||
| 3083 | } | ||
| 3084 | } | ||
| 3085 | exit; | ||
| 3086 | } | ||
| 3087 | |||
| 3088 | /** | ||
| 3089 | 	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() | ||
| 3090 | * @static | ||
| 3091 | */ | ||
| 3092 | 	public static function plugin_activation( $network_wide ) { | ||
| 3093 | Jetpack_Options::update_option( 'activated', 1 ); | ||
| 3094 | |||
| 3095 | 		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) { | ||
| 3096 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) ); | ||
| 3097 | } | ||
| 3098 | |||
| 3099 | if ( $network_wide ) | ||
| 3100 | Jetpack::state( 'network_nag', true ); | ||
| 3101 | |||
| 3102 | // For firing one-off events (notices) immediately after activation | ||
| 3103 | set_transient( 'activated_jetpack', true, .1 * MINUTE_IN_SECONDS ); | ||
| 3104 | |||
| 3105 | update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) ); | ||
| 3106 | |||
| 3107 | Jetpack::plugin_initialize(); | ||
| 3108 | } | ||
| 3109 | |||
| 3110 | 	public static function get_activation_source( $referer_url ) { | ||
| 3111 | |||
| 3112 | 		if ( defined( 'WP_CLI' ) && WP_CLI ) { | ||
| 3113 | return array( 'wp-cli', null ); | ||
| 3114 | } | ||
| 3115 | |||
| 3116 | $referer = parse_url( $referer_url ); | ||
| 3117 | |||
| 3118 | $source_type = 'unknown'; | ||
| 3119 | $source_query = null; | ||
| 3120 | |||
| 3121 | 		if ( ! is_array( $referer ) ) { | ||
| 3122 | return array( $source_type, $source_query ); | ||
| 3123 | } | ||
| 3124 | |||
| 3125 | $plugins_path = parse_url( admin_url( 'plugins.php' ), PHP_URL_PATH ); | ||
| 3126 | $plugins_install_path = parse_url( admin_url( 'plugin-install.php' ), PHP_URL_PATH );// /wp-admin/plugin-install.php | ||
| 3127 | |||
| 3128 | 		if ( isset( $referer['query'] ) ) { | ||
| 3129 | parse_str( $referer['query'], $query_parts ); | ||
| 3130 | 		} else { | ||
| 3131 | $query_parts = array(); | ||
| 3132 | } | ||
| 3133 | |||
| 3134 | 		if ( $plugins_path === $referer['path'] ) { | ||
| 3135 | $source_type = 'list'; | ||
| 3136 | 		} elseif ( $plugins_install_path === $referer['path'] ) { | ||
| 3137 | $tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured'; | ||
| 3138 | 			switch( $tab ) { | ||
| 3139 | case 'popular': | ||
| 3140 | $source_type = 'popular'; | ||
| 3141 | break; | ||
| 3142 | case 'recommended': | ||
| 3143 | $source_type = 'recommended'; | ||
| 3144 | break; | ||
| 3145 | case 'favorites': | ||
| 3146 | $source_type = 'favorites'; | ||
| 3147 | break; | ||
| 3148 | case 'search': | ||
| 3149 | $source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' ); | ||
| 3150 | $source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null; | ||
| 3151 | break; | ||
| 3152 | default: | ||
| 3153 | $source_type = 'featured'; | ||
| 3154 | } | ||
| 3155 | } | ||
| 3156 | |||
| 3157 | return array( $source_type, $source_query ); | ||
| 3158 | } | ||
| 3159 | |||
| 3160 | /** | ||
| 3161 | * Runs before bumping version numbers up to a new version | ||
| 3162 | * @param string $version Version:timestamp | ||
| 3163 | * @param string $old_version Old Version:timestamp or false if not set yet. | ||
| 3164 | * @return null [description] | ||
| 3165 | */ | ||
| 3166 | 	public static function do_version_bump( $version, $old_version ) { | ||
| 3167 | 		if ( ! $old_version ) { // For new sites | ||
| 3168 | // There used to be stuff here, but this seems like it might be useful to someone in the future... | ||
| 3169 | } | ||
| 3170 | } | ||
| 3171 | |||
| 3172 | /** | ||
| 3173 | * Sets the internal version number and activation state. | ||
| 3174 | * @static | ||
| 3175 | */ | ||
| 3176 | 	public static function plugin_initialize() { | ||
| 3193 | |||
| 3194 | /** | ||
| 3195 | * Removes all connection options | ||
| 3196 | * @static | ||
| 3197 | */ | ||
| 3198 | 	public static function plugin_deactivation( ) { | ||
| 3207 | |||
| 3208 | /** | ||
| 3209 | * Disconnects from the Jetpack servers. | ||
| 3210 | * Forgets all connection details and tells the Jetpack servers to do the same. | ||
| 3211 | * @static | ||
| 3212 | */ | ||
| 3213 | 	public static function disconnect( $update_activated_state = true ) { | ||
| 3274 | |||
| 3275 | /** | ||
| 3276 | * Unlinks the current user from the linked WordPress.com user | ||
| 3277 | */ | ||
| 3278 | 	public static function unlink_user( $user_id = null ) { | ||
| 3309 | |||
| 3310 | /** | ||
| 3311 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() | ||
| 3312 | */ | ||
| 3313 | 	public static function try_registration() { | ||
| 3341 | |||
| 3342 | /** | ||
| 3343 | * Tracking an internal event log. Try not to put too much chaff in here. | ||
| 3344 | * | ||
| 3345 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) | ||
| 3346 | */ | ||
| 3347 | 	public static function log( $code, $data = null ) { | ||
| 3387 | |||
| 3388 | /** | ||
| 3389 | * Get the internal event log. | ||
| 3390 | * | ||
| 3391 | * @param $event (string) - only return the specific log events | ||
| 3392 | * @param $num (int) - get specific number of latest results, limited to 200 | ||
| 3393 | * | ||
| 3394 | * @return array of log events || WP_Error for invalid params | ||
| 3395 | */ | ||
| 3396 | 	public static function get_log( $event = false, $num = false ) { | ||
| 3432 | |||
| 3433 | /** | ||
| 3434 | * Log modification of important settings. | ||
| 3435 | */ | ||
| 3436 | 	public static function log_settings_change( $option, $old_value, $value ) { | ||
| 3443 | |||
| 3444 | /** | ||
| 3445 | * Return stat data for WPCOM sync | ||
| 3446 | */ | ||
| 3447 | 	public static function get_stat_data( $encode = true, $extended = true ) { | ||
| 3461 | |||
| 3462 | /** | ||
| 3463 | * Get additional stat data to sync to WPCOM | ||
| 3464 | */ | ||
| 3465 | 	public static function get_additional_stat_data( $prefix = '' ) { | ||
| 3476 | |||
| 3477 | 	private static function get_site_user_count() { | ||
| 3492 | |||
| 3493 | /* Admin Pages */ | ||
| 3494 | |||
| 3495 | 	function admin_init() { | ||
| 3496 | // If the plugin is not connected, display a connect message. | ||
| 3497 | if ( | ||
| 3498 | // the plugin was auto-activated and needs its candy | ||
| 3499 | Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' ) | ||
| 3500 | || | ||
| 3501 | // the plugin is active, but was never activated. Probably came from a site-wide network activation | ||
| 3502 | ! Jetpack_Options::get_option( 'activated' ) | ||
| 3503 | 		) { | ||
| 3504 | Jetpack::plugin_initialize(); | ||
| 3505 | } | ||
| 3506 | |||
| 3507 | 		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) { | ||
| 3508 | Jetpack_Connection_Banner::init(); | ||
| 3509 | 		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) { | ||
| 3510 | // Upgrade: 1.1 -> 1.1.1 | ||
| 3511 | // Check and see if host can verify the Jetpack servers' SSL certificate | ||
| 3512 | $args = array(); | ||
| 3513 | Jetpack_Client::_wp_remote_request( | ||
| 3514 | Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ), | ||
| 3515 | $args, | ||
| 3516 | true | ||
| 3517 | ); | ||
| 3518 | } | ||
| 3519 | |||
| 3520 | 		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) { | ||
| 3521 | add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) ); | ||
| 3522 | } | ||
| 3523 | |||
| 3524 | add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) ); | ||
| 3525 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) ); | ||
| 3526 | add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) ); | ||
| 3527 | |||
| 3528 | 		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) { | ||
| 3529 | // Artificially throw errors in certain whitelisted cases during plugin activation | ||
| 3530 | add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) ); | ||
| 3531 | } | ||
| 3532 | |||
| 3533 | // Add custom column in wp-admin/users.php to show whether user is linked. | ||
| 3534 | add_filter( 'manage_users_columns', array( $this, 'jetpack_icon_user_connected' ) ); | ||
| 3535 | add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 ); | ||
| 3536 | add_action( 'admin_print_styles', array( $this, 'jetpack_user_col_style' ) ); | ||
| 3537 | } | ||
| 3538 | |||
| 3539 | 	function admin_body_class( $admin_body_class = '' ) { | ||
| 3540 | $classes = explode( ' ', trim( $admin_body_class ) ); | ||
| 3541 | |||
| 3542 | $classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected'; | ||
| 3543 | |||
| 3544 | $admin_body_class = implode( ' ', array_unique( $classes ) ); | ||
| 3545 | return " $admin_body_class "; | ||
| 3546 | } | ||
| 3547 | |||
| 3548 | 	static function add_jetpack_pagestyles( $admin_body_class = '' ) { | ||
| 3549 | return $admin_body_class . ' jetpack-pagestyles '; | ||
| 3550 | } | ||
| 3551 | |||
| 3552 | /** | ||
| 3553 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. | ||
| 3554 | * This function artificially throws errors for such cases (whitelisted). | ||
| 3555 | * | ||
| 3556 | * @param string $plugin The activated plugin. | ||
| 3557 | */ | ||
| 3558 | 	function throw_error_on_activate_plugin( $plugin ) { | ||
| 3559 | $active_modules = Jetpack::get_active_modules(); | ||
| 3560 | |||
| 3561 | // The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks. | ||
| 3562 | 		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) { | ||
| 3563 | $throw = false; | ||
| 3564 | |||
| 3565 | // Try and make sure it really was the stats plugin | ||
| 3566 | 			if ( ! class_exists( 'ReflectionFunction' ) ) { | ||
| 3567 | 				if ( 'stats.php' == basename( $plugin ) ) { | ||
| 3568 | $throw = true; | ||
| 3569 | } | ||
| 3570 | 			} else { | ||
| 3571 | $reflection = new ReflectionFunction( 'stats_get_api_key' ); | ||
| 3572 | 				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) { | ||
| 3573 | $throw = true; | ||
| 3574 | } | ||
| 3575 | } | ||
| 3576 | |||
| 3577 | 			if ( $throw ) { | ||
| 3578 | trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR ); | ||
| 3579 | } | ||
| 3580 | } | ||
| 3581 | } | ||
| 3582 | |||
| 3583 | 	function intercept_plugin_error_scrape_init() { | ||
| 3584 | add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 ); | ||
| 3585 | } | ||
| 3586 | |||
| 3587 | 	function intercept_plugin_error_scrape( $action, $result ) { | ||
| 3588 | 		if ( ! $result ) { | ||
| 3589 | return; | ||
| 3590 | } | ||
| 3591 | |||
| 3592 | 		foreach ( $this->plugins_to_deactivate as $deactivate_me ) { | ||
| 3593 | 			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) { | ||
| 3594 | Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old “%1$s” plugin.', 'jetpack' ), $deactivate_me[1] ), false ); | ||
| 3595 | } | ||
| 3596 | } | ||
| 3597 | } | ||
| 3598 | |||
| 3599 | 	function add_remote_request_handlers() { | ||
| 3600 | add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) ); | ||
| 3601 | add_action( 'wp_ajax_nopriv_jetpack_update_file', array( $this, 'remote_request_handlers' ) ); | ||
| 3602 | } | ||
| 3603 | |||
| 3604 | 	function remote_request_handlers() { | ||
| 3605 | $action = current_filter(); | ||
| 3606 | |||
| 3644 | |||
| 3645 | /** | ||
| 3646 | * Uploads a file gotten from the global $_FILES. | ||
| 3647 | * If `$update_media_item` is true and `post_id` is defined | ||
| 3648 | * the attachment file of the media item (gotten through of the post_id) | ||
| 3649 | * will be updated instead of add a new one. | ||
| 3650 | * | ||
| 3651 | * @param boolean $update_media_item - update media attachment | ||
| 3652 | * @return array - An array describing the uploadind files process | ||
| 3653 | */ | ||
| 3654 | 	function upload_handler( $update_media_item = false ) { | ||
| 3776 | |||
| 3777 | /** | ||
| 3778 | * Add help to the Jetpack page | ||
| 3779 | * | ||
| 3780 | * @since Jetpack (1.2.3) | ||
| 3781 | * @return false if not the Jetpack page | ||
| 3782 | */ | ||
| 3783 | 	function admin_help() { | ||
| 3824 | |||
| 3825 | 	function admin_menu_css() { | ||
| 3828 | |||
| 3829 | 	function admin_menu_order() { | ||
| 3832 | |||
| 3833 | View Code Duplication | 	function jetpack_menu_order( $menu_order ) { | |
| 3848 | |||
| 3849 | 	function admin_banner_styles() { | ||
| 3870 | |||
| 3871 | 	function plugin_action_links( $actions ) { | ||
| 3886 | |||
| 3887 | /* | ||
| 3888 | * Registration flow: | ||
| 3889 | * 1 - ::admin_page_load() action=register | ||
| 3890 | * 2 - ::try_registration() | ||
| 3891 | * 3 - ::register() | ||
| 3892 | * - Creates jetpack_register option containing two secrets and a timestamp | ||
| 3893 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with | ||
| 3894 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id | ||
| 3895 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's | ||
| 3896 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 | ||
| 3897 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 | ||
| 3898 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with | ||
| 3899 | * jetpack_id, jetpack_secret, jetpack_public | ||
| 3900 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret | ||
| 3901 | * 4 - redirect to https://wordpress.com/start/jetpack-connect | ||
| 3902 | * 5 - user logs in with WP.com account | ||
| 3903 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize | ||
| 3904 | * - Jetpack_Client_Server::authorize() | ||
| 3905 | * - Jetpack_Client_Server::get_token() | ||
| 3906 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with | ||
| 3907 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login | ||
| 3908 | * - which responds with access_token, token_type, scope | ||
| 3909 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id | ||
| 3910 | * - Jetpack::activate_default_modules() | ||
| 3911 | * - Deactivates deprecated plugins | ||
| 3912 | * - Activates all default modules | ||
| 3913 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users | ||
| 3914 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com | ||
| 3915 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized | ||
| 3916 | * Done! | ||
| 3917 | */ | ||
| 3918 | |||
| 3919 | /** | ||
| 3920 | * Handles the page load events for the Jetpack admin page | ||
| 3921 | */ | ||
| 3922 | 	function admin_page_load() { | ||
| 4187 | |||
| 4188 | 	function admin_notices() { | ||
| 4280 | |||
| 4281 | /** | ||
| 4282 | * Record a stat for later output. This will only currently output in the admin_footer. | ||
| 4283 | */ | ||
| 4284 | 	function stat( $group, $detail ) { | ||
| 4289 | |||
| 4290 | /** | ||
| 4291 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" | ||
| 4292 | */ | ||
| 4293 | 	function do_stats( $method = '' ) { | ||
| 4308 | |||
| 4309 | /** | ||
| 4310 | * Runs stats code for a one-off, server-side. | ||
| 4311 | * | ||
| 4312 | 	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. | ||
| 4313 | * | ||
| 4314 | * @return bool If it worked. | ||
| 4315 | */ | ||
| 4316 | 	static function do_server_side_stat( $args ) { | ||
| 4326 | |||
| 4327 | /** | ||
| 4328 | * Builds the stats url. | ||
| 4329 | * | ||
| 4330 | * @param $args array|string The arguments to append to the URL. | ||
| 4331 | * | ||
| 4332 | * @return string The URL to be pinged. | ||
| 4333 | */ | ||
| 4334 | 	static function build_stats_url( $args ) { | ||
| 4354 | |||
| 4355 | 	static function translate_current_user_to_role() { | ||
| 4364 | |||
| 4365 | 	static function translate_user_to_role( $user ) { | ||
| 4374 | |||
| 4375 | 	static function translate_role_to_cap( $role ) { | ||
| 4382 | |||
| 4383 | 	static function sign_role( $role, $user_id = null ) { | ||
| 4399 | |||
| 4400 | |||
| 4401 | /** | ||
| 4402 | * Builds a URL to the Jetpack connection auth page | ||
| 4403 | * | ||
| 4404 | * @since 3.9.5 | ||
| 4405 | * | ||
| 4406 | * @param bool $raw If true, URL will not be escaped. | ||
| 4407 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. | ||
| 4408 | * If string, will be a custom redirect. | ||
| 4409 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. | ||
| 4410 | * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0 | ||
| 4411 | * | ||
| 4412 | * @return string Connect URL | ||
| 4413 | */ | ||
| 4414 | 	function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) { | ||
| 4538 | |||
| 4539 | /** | ||
| 4540 | * Get our assumed site creation date. | ||
| 4541 | * Calculated based on the earlier date of either: | ||
| 4542 | * - Earliest admin user registration date. | ||
| 4543 | * - Earliest date of post of any post type. | ||
| 4544 | * | ||
| 4545 | * @since 7.2.0 | ||
| 4546 | * | ||
| 4547 | * @return string Assumed site creation date and time. | ||
| 4548 | */ | ||
| 4549 | 	public static function get_assumed_site_creation_date() { | ||
| 4576 | |||
| 4577 | 	public static function apply_activation_source_to_args( &$args ) { | ||
| 4588 | |||
| 4589 | 	function build_reconnect_url( $raw = false ) { | ||
| 4593 | |||
| 4594 | 	public static function admin_url( $args = null ) { | ||
| 4599 | |||
| 4600 | 	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { | ||
| 4604 | |||
| 4605 | 	function dismiss_jetpack_notice() { | ||
| 4637 | |||
| 4638 | 	public static function sort_modules( $a, $b ) { | ||
| 4644 | |||
| 4645 | 	function ajax_recheck_ssl() { | ||
| 4653 | |||
| 4654 | /* Client API */ | ||
| 4655 | |||
| 4656 | /** | ||
| 4657 | * Returns the requested Jetpack API URL | ||
| 4658 | * | ||
| 4659 | * @return string | ||
| 4660 | */ | ||
| 4661 | 	public static function api_url( $relative_url ) { | ||
| 4664 | |||
| 4665 | /** | ||
| 4666 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets | ||
| 4667 | */ | ||
| 4668 | 	public static function fix_url_for_bad_hosts( $url ) { | ||
| 4684 | |||
| 4685 | /** | ||
| 4686 | * Create a random secret for validating onboarding payload | ||
| 4687 | * | ||
| 4688 | * @return string Secret token | ||
| 4689 | */ | ||
| 4690 | 	public static function create_onboarding_token() { | ||
| 4698 | |||
| 4699 | /** | ||
| 4700 | * Remove the onboarding token | ||
| 4701 | * | ||
| 4702 | * @return bool True on success, false on failure | ||
| 4703 | */ | ||
| 4704 | 	public static function invalidate_onboarding_token() { | ||
| 4707 | |||
| 4708 | /** | ||
| 4709 | * Validate an onboarding token for a specific action | ||
| 4710 | * | ||
| 4711 | * @return boolean True if token/action pair is accepted, false if not | ||
| 4712 | */ | ||
| 4713 | 	public static function validate_onboarding_token_action( $token, $action ) { | ||
| 4731 | |||
| 4732 | /** | ||
| 4733 | * Checks to see if the URL is using SSL to connect with Jetpack | ||
| 4734 | * | ||
| 4735 | * @since 2.3.3 | ||
| 4736 | * @return boolean | ||
| 4737 | */ | ||
| 4738 | 	public static function permit_ssl( $force_recheck = false ) { | ||
| 4780 | |||
| 4781 | /* | ||
| 4782 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. | ||
| 4783 | */ | ||
| 4784 | 	public function alert_auto_ssl_fail() { | ||
| 4833 | |||
| 4834 | /** | ||
| 4835 | * Returns the Jetpack XML-RPC API | ||
| 4836 | * | ||
| 4837 | * @return string | ||
| 4838 | */ | ||
| 4839 | 	public static function xmlrpc_api_url() { | ||
| 4843 | |||
| 4844 | /** | ||
| 4845 | * Creates two secret tokens and the end of life timestamp for them. | ||
| 4846 | * | ||
| 4847 | * Note these tokens are unique per call, NOT static per site for connecting. | ||
| 4848 | * | ||
| 4849 | * @since 2.6 | ||
| 4850 | * @return array | ||
| 4851 | */ | ||
| 4852 | 	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) { | ||
| 4878 | |||
| 4879 | 	public static function get_secrets( $action, $user_id ) { | ||
| 4894 | |||
| 4895 | 	public static function delete_secrets( $action, $user_id ) { | ||
| 4903 | |||
| 4904 | /** | ||
| 4905 | * Builds the timeout limit for queries talking with the wpcom servers. | ||
| 4906 | * | ||
| 4907 | * Based on local php max_execution_time in php.ini | ||
| 4908 | * | ||
| 4909 | * @since 2.6 | ||
| 4910 | * @return int | ||
| 4911 | * @deprecated | ||
| 4912 | **/ | ||
| 4913 | 	public function get_remote_query_timeout_limit() { | ||
| 4917 | |||
| 4918 | /** | ||
| 4919 | * Builds the timeout limit for queries talking with the wpcom servers. | ||
| 4920 | * | ||
| 4921 | * Based on local php max_execution_time in php.ini | ||
| 4922 | * | ||
| 4923 | * @since 5.4 | ||
| 4924 | * @return int | ||
| 4925 | **/ | ||
| 4926 | 	public static function get_max_execution_time() { | ||
| 4935 | |||
| 4936 | /** | ||
| 4937 | * Sets a minimum request timeout, and returns the current timeout | ||
| 4938 | * | ||
| 4939 | * @since 5.4 | ||
| 4940 | **/ | ||
| 4941 | 	public static function set_min_time_limit( $min_timeout ) { | ||
| 4949 | |||
| 4950 | |||
| 4951 | /** | ||
| 4952 | * Takes the response from the Jetpack register new site endpoint and | ||
| 4953 | * verifies it worked properly. | ||
| 4954 | * | ||
| 4955 | * @since 2.6 | ||
| 4956 | * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures | ||
| 4957 | **/ | ||
| 4958 | 	public function validate_remote_register_response( $response ) { | ||
| 4998 | /** | ||
| 4999 | * @return bool|WP_Error | ||
| 5000 | */ | ||
| 5001 | 	public static function register() { | ||
| 5106 | |||
| 5107 | /** | ||
| 5108 | * If the db version is showing something other that what we've got now, bump it to current. | ||
| 5109 | * | ||
| 5110 | * @return bool: True if the option was incorrect and updated, false if nothing happened. | ||
| 5111 | */ | ||
| 5112 | 	public static function maybe_set_version_option() { | ||
| 5126 | |||
| 5127 | /* Client Server API */ | ||
| 5128 | |||
| 5129 | /** | ||
| 5130 | * Loads the Jetpack XML-RPC client | ||
| 5131 | */ | ||
| 5132 | 	public static function load_xml_rpc_client() { | ||
| 5136 | |||
| 5137 | /** | ||
| 5138 | * Resets the saved authentication state in between testing requests. | ||
| 5139 | */ | ||
| 5140 | 	public function reset_saved_auth_state() { | ||
| 5144 | |||
| 5145 | 	function verify_xml_rpc_signature() { | ||
| 5275 | |||
| 5276 | /** | ||
| 5277 | * Authenticates XML-RPC and other requests from the Jetpack Server | ||
| 5278 | */ | ||
| 5279 | 	function authenticate_jetpack( $user, $username, $password ) { | ||
| 5302 | |||
| 5303 | // Authenticates requests from Jetpack server to WP REST API endpoints. | ||
| 5304 | // Uses the existing XMLRPC request signing implementation. | ||
| 5305 | 	function wp_rest_authenticate( $user ) { | ||
| 5380 | |||
| 5381 | /** | ||
| 5382 | * Report authentication status to the WP REST API. | ||
| 5383 | * | ||
| 5384 | * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not | ||
| 5385 | 	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} | ||
| 5386 | */ | ||
| 5387 | 	public function wp_rest_authentication_errors( $value ) { | ||
| 5393 | |||
| 5394 | 	function add_nonce( $timestamp, $nonce ) { | ||
| 5432 | |||
| 5433 | /** | ||
| 5434 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. | ||
| 5435 | * Capture it here so we can verify the signature later. | ||
| 5436 | */ | ||
| 5437 | 	function xmlrpc_methods( $methods ) { | ||
| 5441 | |||
| 5442 | 	function public_xmlrpc_methods( $methods ) { | ||
| 5448 | |||
| 5449 | 	function jetpack_getOptions( $args ) { | ||
| 5489 | |||
| 5490 | 	function xmlrpc_options( $options ) { | ||
| 5508 | |||
| 5509 | 	public static function clean_nonces( $all = false ) { | ||
| 5530 | |||
| 5531 | /** | ||
| 5532 | * State is passed via cookies from one request to the next, but never to subsequent requests. | ||
| 5533 | * SET: state( $key, $value ); | ||
| 5534 | * GET: $value = state( $key ); | ||
| 5535 | * | ||
| 5536 | * @param string $key | ||
| 5537 | * @param string $value | ||
| 5538 | * @param bool $restate private | ||
| 5539 | */ | ||
| 5540 | 	public static function state( $key = null, $value = null, $restate = false ) { | ||
| 5590 | |||
| 5591 | 	public static function restate() { | ||
| 5594 | |||
| 5595 | 	public static function check_privacy( $file ) { | ||
| 5630 | |||
| 5631 | /** | ||
| 5632 | * Helper method for multicall XMLRPC. | ||
| 5633 | */ | ||
| 5634 | 	public static function xmlrpc_async_call() { | ||
| 5676 | |||
| 5677 | 	public static function staticize_subdomain( $url ) { | ||
| 5712 | |||
| 5713 | /* JSON API Authorization */ | ||
| 5714 | |||
| 5715 | /** | ||
| 5716 | * Handles the login action for Authorizing the JSON API | ||
| 5717 | */ | ||
| 5718 | 	function login_form_json_api_authorization() { | ||
| 5727 | |||
| 5728 | // Make sure the login form is POSTed to the signed URL so we can reverify the request | ||
| 5729 | 	function post_login_form_to_signed_url( $url, $path, $scheme ) { | ||
| 5742 | |||
| 5743 | // Make sure the POSTed request is handled by the same action | ||
| 5744 | 	function preserve_action_in_login_form_for_json_api_authorization() { | ||
| 5748 | |||
| 5749 | // If someone logs in to approve API access, store the Access Code in usermeta | ||
| 5750 | 	function store_json_api_authorization_token( $user_login, $user ) { | ||
| 5756 | |||
| 5757 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access | ||
| 5758 | 	function allow_wpcom_public_api_domain( $domains ) { | ||
| 5762 | |||
| 5763 | 	static function is_redirect_encoded( $redirect_url ) { | ||
| 5766 | |||
| 5767 | // Add all wordpress.com environments to the safe redirect whitelist | ||
| 5768 | 	function allow_wpcom_environments( $domains ) { | ||
| 5775 | |||
| 5776 | // Add the Access Code details to the public-api.wordpress.com redirect | ||
| 5777 | 	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { | ||
| 5789 | |||
| 5790 | |||
| 5791 | /** | ||
| 5792 | * Verifies the request by checking the signature | ||
| 5793 | * | ||
| 5794 | * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow | ||
| 5795 | * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO. | ||
| 5796 | * | ||
| 5797 | * @param null|array $environment | ||
| 5798 | */ | ||
| 5799 | 	function verify_json_api_authorization_request( $environment = null ) { | ||
| 5903 | |||
| 5904 | 	function login_message_json_api_authorization( $message ) { | ||
| 5910 | |||
| 5911 | /** | ||
| 5912 | * Get $content_width, but with a <s>twist</s> filter. | ||
| 5913 | */ | ||
| 5914 | 	public static function get_content_width() { | ||
| 5925 | |||
| 5926 | /** | ||
| 5927 | * Pings the WordPress.com Mirror Site for the specified options. | ||
| 5928 | * | ||
| 5929 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site | ||
| 5930 | * | ||
| 5931 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site | ||
| 5932 | */ | ||
| 5933 | 	public function get_cloud_site_options( $option_names ) { | ||
| 5949 | |||
| 5950 | /** | ||
| 5951 | * Checks if the site is currently in an identity crisis. | ||
| 5952 | * | ||
| 5953 | * @return array|bool Array of options that are in a crisis, or false if everything is OK. | ||
| 5954 | */ | ||
| 5955 | 	public static function check_identity_crisis() { | ||
| 5962 | |||
| 5963 | /** | ||
| 5964 | * Checks whether the home and siteurl specifically are whitelisted | ||
| 5965 | * Written so that we don't have re-check $key and $value params every time | ||
| 5966 | * we want to check if this site is whitelisted, for example in footer.php | ||
| 5967 | * | ||
| 5968 | * @since 3.8.0 | ||
| 5969 | * @return bool True = already whitelisted False = not whitelisted | ||
| 5970 | */ | ||
| 5971 | 	public static function is_staging_site() { | ||
| 6030 | |||
| 6031 | /** | ||
| 6032 | * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup. | ||
| 6033 | * | ||
| 6034 | * @since 4.4.0 | ||
| 6035 | * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC | ||
| 6036 | * | ||
| 6037 | * @return bool | ||
| 6038 | */ | ||
| 6039 | 	public static function validate_sync_error_idc_option() { | ||
| 6083 | |||
| 6084 | /** | ||
| 6085 | * Normalizes a url by doing three things: | ||
| 6086 | * - Strips protocol | ||
| 6087 | * - Strips www | ||
| 6088 | * - Adds a trailing slash | ||
| 6089 | * | ||
| 6090 | * @since 4.4.0 | ||
| 6091 | * @param string $url | ||
| 6092 | * @return WP_Error|string | ||
| 6093 | */ | ||
| 6094 | 	public static function normalize_url_protocol_agnostic( $url ) { | ||
| 6104 | |||
| 6105 | /** | ||
| 6106 | * Gets the value that is to be saved in the jetpack_sync_error_idc option. | ||
| 6107 | * | ||
| 6108 | * @since 4.4.0 | ||
| 6109 | * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB | ||
| 6110 | * | ||
| 6111 | * @param array $response | ||
| 6112 | * @return array Array of the local urls, wpcom urls, and error code | ||
| 6113 | */ | ||
| 6114 | 	public static function get_sync_error_idc_option( $response = array() ) { | ||
| 6147 | |||
| 6148 | /** | ||
| 6149 | * Returns the value of the jetpack_sync_idc_optin filter, or constant. | ||
| 6150 | * If set to true, the site will be put into staging mode. | ||
| 6151 | * | ||
| 6152 | * @since 4.3.2 | ||
| 6153 | * @return bool | ||
| 6154 | */ | ||
| 6155 | 	public static function sync_idc_optin() { | ||
| 6173 | |||
| 6174 | /** | ||
| 6175 | * Maybe Use a .min.css stylesheet, maybe not. | ||
| 6176 | * | ||
| 6177 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. | ||
| 6178 | */ | ||
| 6179 | 	public static function maybe_min_asset( $url, $path, $plugin ) { | ||
| 6221 | |||
| 6222 | /** | ||
| 6223 | * If the asset is minified, let's flag .min as the suffix. | ||
| 6224 | * | ||
| 6225 | * Attached to `style_loader_src` filter. | ||
| 6226 | * | ||
| 6227 | * @param string $tag The tag that would link to the external asset. | ||
| 6228 | * @param string $handle The registered handle of the script in question. | ||
| 6229 | * @param string $href The url of the asset in question. | ||
| 6230 | */ | ||
| 6231 | 	public static function set_suffix_on_min( $src, $handle ) { | ||
| 6247 | |||
| 6248 | /** | ||
| 6249 | * Maybe inlines a stylesheet. | ||
| 6250 | * | ||
| 6251 | * If you'd like to inline a stylesheet instead of printing a link to it, | ||
| 6252 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); | ||
| 6253 | * | ||
| 6254 | * Attached to `style_loader_tag` filter. | ||
| 6255 | * | ||
| 6256 | * @param string $tag The tag that would link to the external asset. | ||
| 6257 | * @param string $handle The registered handle of the script in question. | ||
| 6258 | * | ||
| 6259 | * @return string | ||
| 6260 | */ | ||
| 6261 | 	public static function maybe_inline_style( $tag, $handle ) { | ||
| 6311 | |||
| 6312 | /** | ||
| 6313 | * Loads a view file from the views | ||
| 6314 | * | ||
| 6315 | * Data passed in with the $data parameter will be available in the | ||
| 6316 | * template file as $data['value'] | ||
| 6317 | * | ||
| 6318 | * @param string $template - Template file to load | ||
| 6319 | * @param array $data - Any data to pass along to the template | ||
| 6320 | * @return boolean - If template file was found | ||
| 6321 | **/ | ||
| 6322 | 	public function load_view( $template, $data = array() ) { | ||
| 6333 | |||
| 6334 | /** | ||
| 6335 | * Throws warnings for deprecated hooks to be removed from Jetpack | ||
| 6336 | */ | ||
| 6337 | 	public function deprecated_hooks() { | ||
| 6406 | |||
| 6407 | /** | ||
| 6408 | * Converts any url in a stylesheet, to the correct absolute url. | ||
| 6409 | * | ||
| 6410 | * Considerations: | ||
| 6411 | * - Normal, relative URLs `feh.png` | ||
| 6412 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` | ||
| 6413 | * - Schema-agnostic URLs `//domain.com/feh.png` | ||
| 6414 | * - Absolute URLs `http://domain.com/feh.png` | ||
| 6415 | * - Domain root relative URLs `/feh.png` | ||
| 6416 | * | ||
| 6417 | * @param $css string: The raw CSS -- should be read in directly from the file. | ||
| 6418 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. | ||
| 6419 | * | ||
| 6420 | * @return mixed|string | ||
| 6421 | */ | ||
| 6422 | 	public static function absolutize_css_urls( $css, $css_file_url ) { | ||
| 6466 | |||
| 6467 | /** | ||
| 6468 | * This methods removes all of the registered css files on the front end | ||
| 6469 | * from Jetpack in favor of using a single file. In effect "imploding" | ||
| 6470 | * all the files into one file. | ||
| 6471 | * | ||
| 6472 | * Pros: | ||
| 6473 | * - Uses only ONE css asset connection instead of 15 | ||
| 6474 | * - Saves a minimum of 56k | ||
| 6475 | * - Reduces server load | ||
| 6476 | * - Reduces time to first painted byte | ||
| 6477 | * | ||
| 6478 | * Cons: | ||
| 6479 | * - Loads css for ALL modules. However all selectors are prefixed so it | ||
| 6480 | * should not cause any issues with themes. | ||
| 6481 | * - Plugins/themes dequeuing styles no longer do anything. See | ||
| 6482 | * jetpack_implode_frontend_css filter for a workaround | ||
| 6483 | * | ||
| 6484 | * For some situations developers may wish to disable css imploding and | ||
| 6485 | * instead operate in legacy mode where each file loads seperately and | ||
| 6486 | * can be edited individually or dequeued. This can be accomplished with | ||
| 6487 | * the following line: | ||
| 6488 | * | ||
| 6489 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); | ||
| 6490 | * | ||
| 6491 | * @since 3.2 | ||
| 6492 | **/ | ||
| 6493 | 	public function implode_frontend_css( $travis_test = false ) { | ||
| 6550 | |||
| 6551 | 	function concat_remove_style_loader_tag( $tag, $handle ) { | ||
| 6561 | |||
| 6562 | /* | ||
| 6563 | * Check the heartbeat data | ||
| 6564 | * | ||
| 6565 | * Organizes the heartbeat data by severity. For example, if the site | ||
| 6566 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. | ||
| 6567 | * | ||
| 6568 | * Data will be added to "caution" array, if it either: | ||
| 6569 | * - Out of date Jetpack version | ||
| 6570 | * - Out of date WP version | ||
| 6571 | * - Out of date PHP version | ||
| 6572 | * | ||
| 6573 | * $return array $filtered_data | ||
| 6574 | */ | ||
| 6575 | 	public static function jetpack_check_heartbeat_data() { | ||
| 6628 | |||
| 6629 | |||
| 6630 | /* | ||
| 6631 | * This method is used to organize all options that can be reset | ||
| 6632 | * without disconnecting Jetpack. | ||
| 6633 | * | ||
| 6634 | * It is used in class.jetpack-cli.php to reset options | ||
| 6635 | * | ||
| 6636 | * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat. | ||
| 6637 | * | ||
| 6638 | * @return array of options to delete. | ||
| 6639 | */ | ||
| 6640 | 	public static function get_jetpack_options_for_reset() { | ||
| 6643 | |||
| 6644 | /* | ||
| 6645 | * Strip http:// or https:// from a url, replaces forward slash with ::, | ||
| 6646 | * so we can bring them directly to their site in calypso. | ||
| 6647 | * | ||
| 6648 | * @param string | url | ||
| 6649 | * @return string | url without the guff | ||
| 6650 | */ | ||
| 6651 | 	public static function build_raw_urls( $url ) { | ||
| 6657 | |||
| 6658 | /** | ||
| 6659 | * Stores and prints out domains to prefetch for page speed optimization. | ||
| 6660 | * | ||
| 6661 | * @param mixed $new_urls | ||
| 6662 | */ | ||
| 6663 | 	public static function dns_prefetch( $new_urls = null ) { | ||
| 6680 | |||
| 6681 | 	public function wp_dashboard_setup() { | ||
| 6714 | |||
| 6715 | /** | ||
| 6716 | * @param mixed $result Value for the user's option | ||
| 6717 | * @return mixed | ||
| 6718 | */ | ||
| 6719 | 	function get_user_option_meta_box_order_dashboard( $sorted ) { | ||
| 6744 | |||
| 6745 | 	public static function dashboard_widget() { | ||
| 6753 | |||
| 6754 | 	public static function dashboard_widget_footer() { | ||
| 6787 | |||
| 6788 | /** | ||
| 6789 | * Return string containing the Jetpack logo. | ||
| 6790 | * | ||
| 6791 | * @since 3.9.0 | ||
| 6792 | * | ||
| 6793 | * @param bool $logotype Should we use the full logotype (logo + text). Default to false. | ||
| 6794 | * | ||
| 6795 | * @return string | ||
| 6796 | */ | ||
| 6797 | 	public static function get_jp_emblem( $logotype = false ) { | ||
| 6815 | |||
| 6816 | /* | ||
| 6817 | * Adds a "blank" column in the user admin table to display indication of user connection. | ||
| 6818 | */ | ||
| 6819 | 	function jetpack_icon_user_connected( $columns ) { | ||
| 6823 | |||
| 6824 | /* | ||
| 6825 | * Show Jetpack icon if the user is linked. | ||
| 6826 | */ | ||
| 6827 | 	function jetpack_show_user_connected_icon( $val, $col, $user_id ) { | ||
| 6839 | |||
| 6840 | /* | ||
| 6841 | * Style the Jetpack user column | ||
| 6842 | */ | ||
| 6843 | 	function jetpack_user_col_style() { | ||
| 6860 | |||
| 6861 | /** | ||
| 6862 | * Checks if Akismet is active and working. | ||
| 6863 | * | ||
| 6864 | * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key | ||
| 6865 | * that implied usage of methods present since more recent version. | ||
| 6866 | * See https://github.com/Automattic/jetpack/pull/9585 | ||
| 6867 | * | ||
| 6868 | * @since 5.1.0 | ||
| 6869 | * | ||
| 6870 | * @return bool True = Akismet available. False = Aksimet not available. | ||
| 6871 | */ | ||
| 6872 | 	public static function is_akismet_active() { | ||
| 6907 | |||
| 6908 | /** | ||
| 6909 | * Checks if one or more function names is in debug_backtrace | ||
| 6910 | * | ||
| 6911 | * @param $names Mixed string name of function or array of string names of functions | ||
| 6912 | * | ||
| 6913 | * @return bool | ||
| 6914 | */ | ||
| 6915 | 	public static function is_function_in_backtrace( $names ) { | ||
| 6938 | |||
| 6939 | /** | ||
| 6940 | * Given a minified path, and a non-minified path, will return | ||
| 6941 | * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy. | ||
| 6942 | * | ||
| 6943 | * Both `$min_base` and `$non_min_base` are expected to be relative to the | ||
| 6944 | * root Jetpack directory. | ||
| 6945 | * | ||
| 6946 | * @since 5.6.0 | ||
| 6947 | * | ||
| 6948 | * @param string $min_path | ||
| 6949 | * @param string $non_min_path | ||
| 6950 | * @return string The URL to the file | ||
| 6951 | */ | ||
| 6952 | 	public static function get_file_url_for_environment( $min_path, $non_min_path ) { | ||
| 6959 | |||
| 6960 | /** | ||
| 6961 | * Checks for whether Jetpack Backup & Scan is enabled. | ||
| 6962 | * Will return true if the state of Backup & Scan is anything except "unavailable". | ||
| 6963 | * @return bool|int|mixed | ||
| 6964 | */ | ||
| 6965 | 	public static function is_rewind_enabled() { | ||
| 6984 | |||
| 6985 | /** | ||
| 6986 | * Checks whether or not TOS has been agreed upon. | ||
| 6987 | * Will return true if a user has clicked to register, or is already connected. | ||
| 6988 | */ | ||
| 6989 | 	public static function jetpack_tos_agreed() { | ||
| 6992 | |||
| 6993 | /** | ||
| 6994 | * Handles activating default modules as well general cleanup for the new connection. | ||
| 6995 | * | ||
| 6996 | * @param boolean $activate_sso Whether to activate the SSO module when activating default modules. | ||
| 6997 | * @param boolean $redirect_on_activation_error Whether to redirect on activation error. | ||
| 6998 | * @param boolean $send_state_messages Whether to send state messages. | ||
| 6999 | * @return void | ||
| 7000 | */ | ||
| 7001 | public static function handle_post_authorization_actions( | ||
| 7030 | |||
| 7031 | /** | ||
| 7032 | * Returns a boolean for whether backups UI should be displayed or not. | ||
| 7033 | * | ||
| 7034 | * @return bool Should backups UI be displayed? | ||
| 7035 | */ | ||
| 7036 | 	public static function show_backups_ui() { | ||
| 7046 | |||
| 7047 | /* | ||
| 7048 | * Deprecated manage functions | ||
| 7049 | */ | ||
| 7050 | 	function prepare_manage_jetpack_notice() { | ||
| 7071 | |||
| 7072 | /** | ||
| 7073 | * Clean leftoveruser meta. | ||
| 7074 | * | ||
| 7075 | * Delete Jetpack-related user meta when it is no longer needed. | ||
| 7076 | * | ||
| 7077 | * @since 7.3.0 | ||
| 7078 | * | ||
| 7079 | * @param int $user_id User ID being updated. | ||
| 7080 | */ | ||
| 7081 | 	public static function user_meta_cleanup( $user_id ) { | ||
| 7096 | } | ||
| 7097 | 
If you suppress an error, we recommend checking for the error condition explicitly: