Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Jetpack often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Jetpack, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 27 | class Jetpack { |
||
| 28 | public $xmlrpc_server = null; |
||
| 29 | |||
| 30 | private $xmlrpc_verification = null; |
||
| 31 | private $rest_authentication_status = null; |
||
| 32 | |||
| 33 | public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA'] |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var array The handles of styles that are concatenated into jetpack.css |
||
| 37 | */ |
||
| 38 | public $concatenated_style_handles = array( |
||
| 39 | 'jetpack-carousel', |
||
| 40 | 'grunion.css', |
||
| 41 | 'the-neverending-homepage', |
||
| 42 | 'jetpack_likes', |
||
| 43 | 'jetpack_related-posts', |
||
| 44 | 'sharedaddy', |
||
| 45 | 'jetpack-slideshow', |
||
| 46 | 'presentations', |
||
| 47 | 'jetpack-subscriptions', |
||
| 48 | 'jetpack-responsive-videos-style', |
||
| 49 | 'jetpack-social-menu', |
||
| 50 | 'tiled-gallery', |
||
| 51 | 'jetpack_display_posts_widget', |
||
| 52 | 'gravatar-profile-widget', |
||
| 53 | 'goodreads-widget', |
||
| 54 | 'jetpack_social_media_icons_widget', |
||
| 55 | 'jetpack-top-posts-widget', |
||
| 56 | 'jetpack_image_widget', |
||
| 57 | 'jetpack-my-community-widget', |
||
| 58 | 'wordads', |
||
| 59 | 'eu-cookie-law-style', |
||
| 60 | 'flickr-widget-style', |
||
| 61 | ); |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Contains all assets that have had their URL rewritten to minified versions. |
||
| 65 | * |
||
| 66 | * @var array |
||
| 67 | */ |
||
| 68 | static $min_assets = array(); |
||
|
|
|||
| 69 | |||
| 70 | public $plugins_to_deactivate = array( |
||
| 71 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
| 72 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
| 73 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), |
||
| 74 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), |
||
| 75 | 'after-the-deadline' => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ), |
||
| 76 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), |
||
| 77 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), |
||
| 78 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), |
||
| 79 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), |
||
| 80 | 'videopress' => array( 'video/video.php', 'VideoPress' ), |
||
| 81 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), |
||
| 82 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), |
||
| 83 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), |
||
| 84 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), |
||
| 85 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) |
||
| 86 | ); |
||
| 87 | |||
| 88 | static $capability_translations = array( |
||
| 89 | 'administrator' => 'manage_options', |
||
| 90 | 'editor' => 'edit_others_posts', |
||
| 91 | 'author' => 'publish_posts', |
||
| 92 | 'contributor' => 'edit_posts', |
||
| 93 | 'subscriber' => 'read', |
||
| 94 | ); |
||
| 95 | |||
| 96 | /** |
||
| 97 | * Map of modules that have conflicts with plugins and should not be auto-activated |
||
| 98 | * if the plugins are active. Used by filter_default_modules |
||
| 99 | * |
||
| 100 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, |
||
| 101 | * change `module-slug` and add this to your plugin: |
||
| 102 | * |
||
| 103 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); |
||
| 104 | * function my_jetpack_get_default_modules( $modules ) { |
||
| 105 | * return array_diff( $modules, array( 'module-slug' ) ); |
||
| 106 | * } |
||
| 107 | * |
||
| 108 | * @var array |
||
| 109 | */ |
||
| 110 | private $conflicting_plugins = array( |
||
| 111 | 'comments' => array( |
||
| 112 | 'Intense Debate' => 'intensedebate/intensedebate.php', |
||
| 113 | 'Disqus' => 'disqus-comment-system/disqus.php', |
||
| 114 | 'Livefyre' => 'livefyre-comments/livefyre.php', |
||
| 115 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', |
||
| 116 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', |
||
| 117 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', |
||
| 118 | ), |
||
| 119 | 'comment-likes' => array( |
||
| 120 | 'Epoch' => 'epoch/plugincore.php', |
||
| 121 | ), |
||
| 122 | 'contact-form' => array( |
||
| 123 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', |
||
| 124 | 'Gravity Forms' => 'gravityforms/gravityforms.php', |
||
| 125 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', |
||
| 126 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', |
||
| 127 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', |
||
| 128 | 'Ninja Forms' => 'ninja-forms/ninja-forms.php', |
||
| 129 | ), |
||
| 130 | 'minileven' => array( |
||
| 131 | 'WPtouch' => 'wptouch/wptouch.php', |
||
| 132 | ), |
||
| 133 | 'latex' => array( |
||
| 134 | 'LaTeX for WordPress' => 'latex/latex.php', |
||
| 135 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', |
||
| 136 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', |
||
| 137 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', |
||
| 138 | 'Enable Latex' => 'enable-latex/enable-latex.php', |
||
| 139 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', |
||
| 140 | ), |
||
| 141 | 'protect' => array( |
||
| 142 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', |
||
| 143 | 'Captcha' => 'captcha/captcha.php', |
||
| 144 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', |
||
| 145 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', |
||
| 146 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', |
||
| 147 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', |
||
| 148 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', |
||
| 149 | 'Security-protection' => 'security-protection/security-protection.php', |
||
| 150 | 'Login Security' => 'login-security/login-security.php', |
||
| 151 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', |
||
| 152 | 'Wordfence Security' => 'wordfence/wordfence.php', |
||
| 153 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', |
||
| 154 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', |
||
| 155 | ), |
||
| 156 | 'random-redirect' => array( |
||
| 157 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', |
||
| 158 | ), |
||
| 159 | 'related-posts' => array( |
||
| 160 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', |
||
| 161 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', |
||
| 162 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', |
||
| 163 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', |
||
| 164 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', |
||
| 165 | 'outbrain' => 'outbrain/outbrain.php', |
||
| 166 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
| 167 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', |
||
| 168 | ), |
||
| 169 | 'sharedaddy' => array( |
||
| 170 | 'AddThis' => 'addthis/addthis_social_widget.php', |
||
| 171 | 'Add To Any' => 'add-to-any/add-to-any.php', |
||
| 172 | 'ShareThis' => 'share-this/sharethis.php', |
||
| 173 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
| 174 | ), |
||
| 175 | 'seo-tools' => array( |
||
| 176 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
| 177 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
| 178 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
| 179 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
| 180 | ), |
||
| 181 | 'verification-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 | ), |
||
| 187 | 'widget-visibility' => array( |
||
| 188 | 'Widget Logic' => 'widget-logic/widget_logic.php', |
||
| 189 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', |
||
| 190 | ), |
||
| 191 | 'sitemaps' => array( |
||
| 192 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', |
||
| 193 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', |
||
| 194 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', |
||
| 195 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', |
||
| 196 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', |
||
| 197 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
| 198 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
| 199 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
| 200 | 'All in One SEO Pack Pro' => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
||
| 201 | 'Sitemap' => 'sitemap/sitemap.php', |
||
| 202 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', |
||
| 203 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', |
||
| 204 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', |
||
| 205 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', |
||
| 206 | ), |
||
| 207 | ); |
||
| 208 | |||
| 209 | /** |
||
| 210 | * Plugins for which we turn off our Facebook OG Tags implementation. |
||
| 211 | * |
||
| 212 | * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate |
||
| 213 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. |
||
| 214 | * |
||
| 215 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: |
||
| 216 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); |
||
| 217 | */ |
||
| 218 | private $open_graph_conflicting_plugins = array( |
||
| 219 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', |
||
| 220 | // 2 Click Social Media Buttons |
||
| 221 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook |
||
| 222 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags |
||
| 223 | 'autodescription/autodescription.php', // The SEO Framework |
||
| 224 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail |
||
| 225 | 'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php', |
||
| 226 | // Open Graph Meta Tags by Heateor |
||
| 227 | 'facebook/facebook.php', // Facebook (official plugin) |
||
| 228 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one |
||
| 229 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', |
||
| 230 | // Facebook Featured Image & OG Meta Tags |
||
| 231 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags |
||
| 232 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', |
||
| 233 | // Facebook Open Graph Meta Tags for WordPress |
||
| 234 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag |
||
| 235 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer |
||
| 236 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', |
||
| 237 | // Fedmich's Facebook Open Graph Meta |
||
| 238 | 'network-publisher/networkpub.php', // Network Publisher |
||
| 239 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG |
||
| 240 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', |
||
| 241 | // NextScripts SNAP |
||
| 242 | 'og-tags/og-tags.php', // OG Tags |
||
| 243 | 'opengraph/opengraph.php', // Open Graph |
||
| 244 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', |
||
| 245 | // Open Graph Protocol Framework |
||
| 246 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments |
||
| 247 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate |
||
| 248 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic |
||
| 249 | 'shareaholic/sexy-bookmarks.php', // Shareaholic |
||
| 250 | 'sharepress/sharepress.php', // SharePress |
||
| 251 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect |
||
| 252 | 'social-discussions/social-discussions.php', // Social Discussions |
||
| 253 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit |
||
| 254 | 'socialize/socialize.php', // Socialize |
||
| 255 | 'squirrly-seo/squirrly.php', // SEO by SQUIRRLY™ |
||
| 256 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', |
||
| 257 | // Tweet, Like, Google +1 and Share |
||
| 258 | 'wordbooker/wordbooker.php', // Wordbooker |
||
| 259 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization |
||
| 260 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver |
||
| 261 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', |
||
| 262 | // WP Facebook Like Send & Open Graph Meta |
||
| 263 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol |
||
| 264 | 'wp-ogp/wp-ogp.php', // WP-OGP |
||
| 265 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin |
||
| 266 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php' // WP Facebook Like Button |
||
| 267 | ); |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Plugins for which we turn off our Twitter Cards Tags implementation. |
||
| 271 | */ |
||
| 272 | private $twitter_cards_conflicting_plugins = array( |
||
| 273 | // 'twitter/twitter.php', // The official one handles this on its own. |
||
| 274 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php |
||
| 275 | 'eewee-twitter-card/index.php', // Eewee Twitter Card |
||
| 276 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards |
||
| 277 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards |
||
| 278 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', |
||
| 279 | // Pure Web Brilliant's Social Graph Twitter Cards Extension |
||
| 280 | 'twitter-cards/twitter-cards.php', // Twitter Cards |
||
| 281 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta |
||
| 282 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards |
||
| 283 | ); |
||
| 284 | |||
| 285 | /** |
||
| 286 | * Message to display in admin_notice |
||
| 287 | * @var string |
||
| 288 | */ |
||
| 289 | public $message = ''; |
||
| 290 | |||
| 291 | /** |
||
| 292 | * Error to display in admin_notice |
||
| 293 | * @var string |
||
| 294 | */ |
||
| 295 | public $error = ''; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Modules that need more privacy description. |
||
| 299 | * @var string |
||
| 300 | */ |
||
| 301 | public $privacy_checks = ''; |
||
| 302 | |||
| 303 | /** |
||
| 304 | * Stats to record once the page loads |
||
| 305 | * |
||
| 306 | * @var array |
||
| 307 | */ |
||
| 308 | public $stats = array(); |
||
| 309 | |||
| 310 | /** |
||
| 311 | * Jetpack_Sync object |
||
| 312 | */ |
||
| 313 | public $sync; |
||
| 314 | |||
| 315 | /** |
||
| 316 | * Verified data for JSON authorization request |
||
| 317 | */ |
||
| 318 | public $json_api_authorization_request = array(); |
||
| 319 | |||
| 320 | /** |
||
| 321 | * Holds the singleton instance of this class |
||
| 322 | * @since 2.3.3 |
||
| 323 | * @var Jetpack |
||
| 324 | */ |
||
| 325 | static $instance = false; |
||
| 326 | |||
| 327 | /** |
||
| 328 | * Singleton |
||
| 329 | * @static |
||
| 330 | */ |
||
| 331 | public static function init() { |
||
| 332 | if ( ! self::$instance ) { |
||
| 333 | self::$instance = new Jetpack; |
||
| 334 | |||
| 335 | self::$instance->plugin_upgrade(); |
||
| 336 | } |
||
| 337 | |||
| 338 | return self::$instance; |
||
| 339 | } |
||
| 340 | |||
| 341 | /** |
||
| 342 | * Must never be called statically |
||
| 343 | */ |
||
| 344 | function plugin_upgrade() { |
||
| 345 | if ( Jetpack::is_active() ) { |
||
| 346 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
| 347 | if ( JETPACK__VERSION != $version ) { |
||
| 348 | |||
| 349 | // check which active modules actually exist and remove others from active_modules list |
||
| 350 | $unfiltered_modules = Jetpack::get_active_modules(); |
||
| 351 | $modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) ); |
||
| 352 | if ( array_diff( $unfiltered_modules, $modules ) ) { |
||
| 353 | Jetpack::update_active_modules( $modules ); |
||
| 354 | } |
||
| 355 | |||
| 356 | add_action( 'init', array( __CLASS__, 'activate_new_modules' ) ); |
||
| 357 | |||
| 358 | // Upgrade to 4.3.0 |
||
| 359 | if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) { |
||
| 360 | Jetpack_Options::delete_option( 'identity_crisis_whitelist' ); |
||
| 361 | } |
||
| 362 | |||
| 363 | // Make sure Markdown for posts gets turned back on |
||
| 364 | if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) { |
||
| 365 | update_option( 'wpcom_publish_posts_with_markdown', true ); |
||
| 366 | } |
||
| 367 | |||
| 368 | if ( did_action( 'wp_loaded' ) ) { |
||
| 369 | self::upgrade_on_load(); |
||
| 370 | } else { |
||
| 371 | add_action( |
||
| 372 | 'wp_loaded', |
||
| 373 | array( __CLASS__, 'upgrade_on_load' ) |
||
| 374 | ); |
||
| 375 | } |
||
| 376 | } |
||
| 377 | } |
||
| 378 | } |
||
| 379 | |||
| 380 | /** |
||
| 381 | * Runs upgrade routines that need to have modules loaded. |
||
| 382 | */ |
||
| 383 | static function upgrade_on_load() { |
||
| 384 | |||
| 385 | // Not attempting any upgrades if jetpack_modules_loaded did not fire. |
||
| 386 | // This can happen in case Jetpack has been just upgraded and is |
||
| 387 | // being initialized late during the page load. In this case we wait |
||
| 388 | // until the next proper admin page load with Jetpack active. |
||
| 389 | if ( ! did_action( 'jetpack_modules_loaded' ) ) { |
||
| 390 | return; |
||
| 391 | } |
||
| 392 | |||
| 393 | Jetpack::maybe_set_version_option(); |
||
| 394 | |||
| 395 | if ( class_exists( 'Jetpack_Widget_Conditions' ) ) { |
||
| 396 | Jetpack_Widget_Conditions::migrate_post_type_rules(); |
||
| 397 | } |
||
| 398 | |||
| 399 | if ( |
||
| 400 | class_exists( 'Jetpack_Sitemap_Manager' ) |
||
| 401 | && version_compare( JETPACK__VERSION, '5.3', '>=' ) |
||
| 402 | ) { |
||
| 403 | do_action( 'jetpack_sitemaps_purge_data' ); |
||
| 404 | } |
||
| 405 | } |
||
| 406 | |||
| 407 | static function activate_manage( ) { |
||
| 408 | if ( did_action( 'init' ) || current_filter() == 'init' ) { |
||
| 409 | self::activate_module( 'manage', false, false ); |
||
| 410 | } else if ( ! has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) { |
||
| 411 | add_action( 'init', array( __CLASS__, 'activate_manage' ) ); |
||
| 412 | } |
||
| 413 | } |
||
| 414 | |||
| 415 | static function update_active_modules( $modules ) { |
||
| 416 | $current_modules = Jetpack_Options::get_option( 'active_modules', array() ); |
||
| 417 | |||
| 418 | $success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) ); |
||
| 419 | |||
| 420 | if ( is_array( $modules ) && is_array( $current_modules ) ) { |
||
| 421 | $new_active_modules = array_diff( $modules, $current_modules ); |
||
| 422 | foreach( $new_active_modules as $module ) { |
||
| 423 | /** |
||
| 424 | * Fires when a specific module is activated. |
||
| 425 | * |
||
| 426 | * @since 1.9.0 |
||
| 427 | * |
||
| 428 | * @param string $module Module slug. |
||
| 429 | * @param boolean $success whether the module was activated. @since 4.2 |
||
| 430 | */ |
||
| 431 | do_action( 'jetpack_activate_module', $module, $success ); |
||
| 432 | |||
| 433 | /** |
||
| 434 | * Fires when a module is activated. |
||
| 435 | * The dynamic part of the filter, $module, is the module slug. |
||
| 436 | * |
||
| 437 | * @since 1.9.0 |
||
| 438 | * |
||
| 439 | * @param string $module Module slug. |
||
| 440 | */ |
||
| 441 | do_action( "jetpack_activate_module_$module", $module ); |
||
| 442 | } |
||
| 443 | |||
| 444 | $new_deactive_modules = array_diff( $current_modules, $modules ); |
||
| 445 | foreach( $new_deactive_modules as $module ) { |
||
| 446 | /** |
||
| 447 | * Fired after a module has been deactivated. |
||
| 448 | * |
||
| 449 | * @since 4.2.0 |
||
| 450 | * |
||
| 451 | * @param string $module Module slug. |
||
| 452 | * @param boolean $success whether the module was deactivated. |
||
| 453 | */ |
||
| 454 | do_action( 'jetpack_deactivate_module', $module, $success ); |
||
| 455 | /** |
||
| 456 | * Fires when a module is deactivated. |
||
| 457 | * The dynamic part of the filter, $module, is the module slug. |
||
| 458 | * |
||
| 459 | * @since 1.9.0 |
||
| 460 | * |
||
| 461 | * @param string $module Module slug. |
||
| 462 | */ |
||
| 463 | do_action( "jetpack_deactivate_module_$module", $module ); |
||
| 464 | } |
||
| 465 | } |
||
| 466 | |||
| 467 | return $success; |
||
| 468 | } |
||
| 469 | |||
| 470 | static function delete_active_modules() { |
||
| 471 | self::update_active_modules( array() ); |
||
| 472 | } |
||
| 473 | |||
| 474 | /** |
||
| 475 | * Constructor. Initializes WordPress hooks |
||
| 476 | */ |
||
| 477 | private function __construct() { |
||
| 478 | /* |
||
| 479 | * Check for and alert any deprecated hooks |
||
| 480 | */ |
||
| 481 | add_action( 'init', array( $this, 'deprecated_hooks' ) ); |
||
| 482 | |||
| 483 | /* |
||
| 484 | * Enable enhanced handling of previewing sites in Calypso |
||
| 485 | */ |
||
| 486 | if ( Jetpack::is_active() ) { |
||
| 487 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php'; |
||
| 488 | add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 ); |
||
| 489 | } |
||
| 490 | |||
| 491 | /* |
||
| 492 | * Load things that should only be in Network Admin. |
||
| 493 | * |
||
| 494 | * For now blow away everything else until a more full |
||
| 495 | * understanding of what is needed at the network level is |
||
| 496 | * available |
||
| 497 | */ |
||
| 498 | if( is_multisite() ) { |
||
| 499 | Jetpack_Network::init(); |
||
| 500 | } |
||
| 501 | |||
| 502 | add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 ); |
||
| 503 | |||
| 504 | // Unlink user before deleting the user from .com |
||
| 505 | add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 ); |
||
| 506 | add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 ); |
||
| 507 | |||
| 508 | if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) { |
||
| 509 | @ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed. |
||
| 510 | |||
| 511 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php'; |
||
| 512 | $this->xmlrpc_server = new Jetpack_XMLRPC_Server(); |
||
| 513 | |||
| 514 | $this->require_jetpack_authentication(); |
||
| 515 | |||
| 516 | if ( Jetpack::is_active() ) { |
||
| 517 | // Hack to preserve $HTTP_RAW_POST_DATA |
||
| 518 | add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) ); |
||
| 519 | |||
| 520 | $signed = $this->verify_xml_rpc_signature(); |
||
| 521 | if ( $signed && ! is_wp_error( $signed ) ) { |
||
| 522 | // The actual API methods. |
||
| 523 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) ); |
||
| 524 | } else { |
||
| 525 | // The jetpack.authorize method should be available for unauthenticated users on a site with an |
||
| 526 | // active Jetpack connection, so that additional users can link their account. |
||
| 527 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) ); |
||
| 528 | } |
||
| 529 | } else { |
||
| 530 | // The bootstrap API methods. |
||
| 531 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) ); |
||
| 532 | } |
||
| 533 | |||
| 534 | // Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on. |
||
| 535 | add_filter( 'pre_option_enable_xmlrpc', '__return_true' ); |
||
| 536 | } elseif ( |
||
| 537 | is_admin() && |
||
| 538 | isset( $_POST['action'] ) && ( |
||
| 539 | 'jetpack_upload_file' == $_POST['action'] || |
||
| 540 | 'jetpack_update_file' == $_POST['action'] |
||
| 541 | ) |
||
| 542 | ) { |
||
| 543 | $this->require_jetpack_authentication(); |
||
| 544 | $this->add_remote_request_handlers(); |
||
| 545 | } else { |
||
| 546 | if ( Jetpack::is_active() ) { |
||
| 547 | add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) ); |
||
| 548 | add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) ); |
||
| 549 | } |
||
| 550 | } |
||
| 551 | |||
| 552 | if ( Jetpack::is_active() ) { |
||
| 553 | Jetpack_Heartbeat::init(); |
||
| 554 | } |
||
| 555 | |||
| 556 | add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) ); |
||
| 557 | add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) ); |
||
| 558 | |||
| 559 | add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) ); |
||
| 560 | if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) { |
||
| 561 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); |
||
| 562 | } |
||
| 563 | |||
| 564 | add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) ); |
||
| 565 | |||
| 566 | add_action( 'admin_init', array( $this, 'admin_init' ) ); |
||
| 567 | add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) ); |
||
| 568 | |||
| 569 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
||
| 570 | |||
| 571 | add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) ); |
||
| 572 | // Filter the dashboard meta box order to swap the new one in in place of the old one. |
||
| 573 | add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) ); |
||
| 574 | |||
| 575 | // returns HTTPS support status |
||
| 576 | add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) ); |
||
| 577 | |||
| 578 | // If any module option is updated before Jump Start is dismissed, hide Jump Start. |
||
| 579 | add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) ); |
||
| 580 | |||
| 581 | // JITM AJAX callback function |
||
| 582 | add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) ); |
||
| 583 | |||
| 584 | // Universal ajax callback for all tracking events triggered via js |
||
| 585 | add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) ); |
||
| 586 | |||
| 587 | add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) ); |
||
| 588 | |||
| 589 | add_action( 'wp_loaded', array( $this, 'register_assets' ) ); |
||
| 590 | add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 591 | add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 592 | add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 593 | |||
| 594 | add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 ); |
||
| 595 | |||
| 596 | /** |
||
| 597 | * These actions run checks to load additional files. |
||
| 598 | * They check for external files or plugins, so they need to run as late as possible. |
||
| 599 | */ |
||
| 600 | add_action( 'wp_head', array( $this, 'check_open_graph' ), 1 ); |
||
| 601 | add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ), 999 ); |
||
| 602 | add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 ); |
||
| 603 | |||
| 604 | add_filter( 'plugins_url', array( 'Jetpack', 'maybe_min_asset' ), 1, 3 ); |
||
| 605 | add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2 ); |
||
| 606 | add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 ); |
||
| 607 | |||
| 608 | add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 ); |
||
| 609 | |||
| 610 | add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) ); |
||
| 611 | add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 ); |
||
| 612 | |||
| 613 | // A filter to control all just in time messages |
||
| 614 | add_filter( 'jetpack_just_in_time_msgs', '__return_true', 9 ); |
||
| 615 | add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9); |
||
| 616 | |||
| 617 | // If enabled, point edit post and page links to Calypso instead of WP-Admin. |
||
| 618 | // We should make sure to only do this for front end links. |
||
| 619 | if ( Jetpack_Options::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) { |
||
| 620 | add_filter( 'get_edit_post_link', array( $this, 'point_edit_links_to_calypso' ), 1, 2 ); |
||
| 621 | } |
||
| 622 | |||
| 623 | // Update the Jetpack plan from API on heartbeats |
||
| 624 | add_action( 'jetpack_heartbeat', array( $this, 'refresh_active_plan_from_wpcom' ) ); |
||
| 625 | |||
| 626 | /** |
||
| 627 | * This is the hack to concatinate all css files into one. |
||
| 628 | * For description and reasoning see the implode_frontend_css method |
||
| 629 | * |
||
| 630 | * Super late priority so we catch all the registered styles |
||
| 631 | */ |
||
| 632 | if( !is_admin() ) { |
||
| 633 | add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first |
||
| 634 | add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles` |
||
| 635 | } |
||
| 636 | |||
| 637 | /** |
||
| 638 | * These are sync actions that we need to keep track of for jitms |
||
| 639 | */ |
||
| 640 | add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 ); |
||
| 641 | } |
||
| 642 | |||
| 643 | function point_edit_links_to_calypso( $default_url, $post_id ) { |
||
| 644 | $post = get_post( $post_id ); |
||
| 645 | |||
| 646 | if ( empty( $post ) ) { |
||
| 647 | return $default_url; |
||
| 648 | } |
||
| 649 | |||
| 650 | $post_type = $post->post_type; |
||
| 651 | |||
| 652 | // Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso. |
||
| 653 | // https://en.support.wordpress.com/custom-post-types/ |
||
| 654 | $allowed_post_types = array( |
||
| 655 | 'post' => 'post', |
||
| 656 | 'page' => 'page', |
||
| 657 | 'jetpack-portfolio' => 'edit/jetpack-portfolio', |
||
| 658 | 'jetpack-testimonial' => 'edit/jetpack-testimonial', |
||
| 659 | ); |
||
| 660 | |||
| 661 | if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) { |
||
| 662 | return $default_url; |
||
| 663 | } |
||
| 664 | |||
| 665 | $path_prefix = $allowed_post_types[ $post_type ]; |
||
| 666 | |||
| 667 | $site_slug = Jetpack::build_raw_urls( get_home_url() ); |
||
| 668 | |||
| 669 | return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) ); |
||
| 670 | } |
||
| 671 | |||
| 672 | function jetpack_track_last_sync_callback( $params ) { |
||
| 673 | /** |
||
| 674 | * Filter to turn off jitm caching |
||
| 675 | * |
||
| 676 | * @since 5.4.0 |
||
| 677 | * |
||
| 678 | * @param bool false Whether to cache just in time messages |
||
| 679 | */ |
||
| 680 | if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) { |
||
| 681 | return $params; |
||
| 682 | } |
||
| 683 | |||
| 684 | if ( is_array( $params ) && isset( $params[0] ) ) { |
||
| 685 | $option = $params[0]; |
||
| 686 | if ( 'active_plugins' === $option ) { |
||
| 687 | // use the cache if we can, but not terribly important if it gets evicted |
||
| 688 | set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS ); |
||
| 689 | } |
||
| 690 | } |
||
| 691 | |||
| 692 | return $params; |
||
| 693 | } |
||
| 694 | |||
| 695 | function jetpack_connection_banner_callback() { |
||
| 696 | check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' ); |
||
| 697 | |||
| 698 | if ( isset( $_REQUEST['dismissBanner'] ) ) { |
||
| 699 | Jetpack_Options::update_option( 'dismissed_connection_banner', 1 ); |
||
| 700 | wp_send_json_success(); |
||
| 701 | } |
||
| 702 | |||
| 703 | wp_die(); |
||
| 704 | } |
||
| 705 | |||
| 706 | function jetpack_admin_ajax_tracks_callback() { |
||
| 707 | // Check for nonce |
||
| 708 | if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) { |
||
| 709 | wp_die( 'Permissions check failed.' ); |
||
| 710 | } |
||
| 711 | |||
| 712 | if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] ) ) { |
||
| 713 | wp_die( 'No valid event name or type.' ); |
||
| 714 | } |
||
| 715 | |||
| 716 | $tracks_data = array(); |
||
| 717 | if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) { |
||
| 718 | $tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] ); |
||
| 719 | } |
||
| 720 | |||
| 721 | JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data ); |
||
| 722 | wp_send_json_success(); |
||
| 723 | wp_die(); |
||
| 724 | } |
||
| 725 | |||
| 726 | /** |
||
| 727 | * The callback for the JITM ajax requests. |
||
| 728 | */ |
||
| 729 | function jetpack_jitm_ajax_callback() { |
||
| 730 | // Check for nonce |
||
| 731 | if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) { |
||
| 732 | wp_die( 'Module activation failed due to lack of appropriate permissions' ); |
||
| 733 | } |
||
| 734 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) { |
||
| 735 | $module_slug = $_REQUEST['jitmModule']; |
||
| 736 | Jetpack::log( 'activate', $module_slug ); |
||
| 737 | Jetpack::activate_module( $module_slug, false, false ); |
||
| 738 | Jetpack::state( 'message', 'no_message' ); |
||
| 739 | |||
| 740 | //A Jetpack module is being activated through a JITM, track it |
||
| 741 | $this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION ); |
||
| 742 | $this->do_stats( 'server_side' ); |
||
| 743 | |||
| 744 | wp_send_json_success(); |
||
| 745 | } |
||
| 746 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) { |
||
| 747 | // get the hide_jitm options array |
||
| 748 | $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' ); |
||
| 749 | $module_slug = $_REQUEST['jitmModule']; |
||
| 750 | |||
| 751 | if( ! $jetpack_hide_jitm ) { |
||
| 752 | $jetpack_hide_jitm = array( |
||
| 753 | $module_slug => 'hide' |
||
| 754 | ); |
||
| 755 | } else { |
||
| 756 | $jetpack_hide_jitm[$module_slug] = 'hide'; |
||
| 757 | } |
||
| 758 | |||
| 759 | Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm ); |
||
| 760 | |||
| 761 | //jitm is being dismissed forever, track it |
||
| 762 | $this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION ); |
||
| 763 | $this->do_stats( 'server_side' ); |
||
| 764 | |||
| 765 | wp_send_json_success(); |
||
| 766 | } |
||
| 767 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) { |
|
| 768 | $module_slug = $_REQUEST['jitmModule']; |
||
| 769 | |||
| 770 | // User went to WordPress.com, track this |
||
| 771 | $this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION ); |
||
| 772 | $this->do_stats( 'server_side' ); |
||
| 773 | |||
| 774 | wp_send_json_success(); |
||
| 775 | } |
||
| 776 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) { |
|
| 777 | $track = $_REQUEST['jitmModule']; |
||
| 778 | |||
| 779 | // User is viewing JITM, track it. |
||
| 780 | $this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION ); |
||
| 781 | $this->do_stats( 'server_side' ); |
||
| 782 | |||
| 783 | wp_send_json_success(); |
||
| 784 | } |
||
| 785 | } |
||
| 786 | |||
| 787 | /** |
||
| 788 | * If there are any stats that need to be pushed, but haven't been, push them now. |
||
| 789 | */ |
||
| 790 | function __destruct() { |
||
| 791 | if ( ! empty( $this->stats ) ) { |
||
| 792 | $this->do_stats( 'server_side' ); |
||
| 793 | } |
||
| 794 | } |
||
| 795 | |||
| 796 | function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { |
||
| 797 | switch( $cap ) { |
||
| 798 | case 'jetpack_connect' : |
||
| 799 | case 'jetpack_reconnect' : |
||
| 800 | if ( Jetpack::is_development_mode() ) { |
||
| 801 | $caps = array( 'do_not_allow' ); |
||
| 802 | break; |
||
| 803 | } |
||
| 804 | /** |
||
| 805 | * Pass through. If it's not development mode, these should match disconnect. |
||
| 806 | * Let users disconnect if it's development mode, just in case things glitch. |
||
| 807 | */ |
||
| 808 | case 'jetpack_disconnect' : |
||
| 809 | /** |
||
| 810 | * In multisite, can individual site admins manage their own connection? |
||
| 811 | * |
||
| 812 | * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class. |
||
| 813 | */ |
||
| 814 | if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
| 815 | if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) { |
||
| 816 | /** |
||
| 817 | * We need to update the option name -- it's terribly unclear which |
||
| 818 | * direction the override goes. |
||
| 819 | * |
||
| 820 | * @todo: Update the option name to `sub-sites-can-manage-own-connections` |
||
| 821 | */ |
||
| 822 | $caps = array( 'do_not_allow' ); |
||
| 823 | break; |
||
| 824 | } |
||
| 825 | } |
||
| 826 | |||
| 827 | $caps = array( 'manage_options' ); |
||
| 828 | break; |
||
| 829 | case 'jetpack_manage_modules' : |
||
| 830 | case 'jetpack_activate_modules' : |
||
| 831 | case 'jetpack_deactivate_modules' : |
||
| 832 | $caps = array( 'manage_options' ); |
||
| 833 | break; |
||
| 834 | case 'jetpack_configure_modules' : |
||
| 835 | $caps = array( 'manage_options' ); |
||
| 836 | break; |
||
| 837 | case 'jetpack_network_admin_page': |
||
| 838 | case 'jetpack_network_settings_page': |
||
| 839 | $caps = array( 'manage_network_plugins' ); |
||
| 840 | break; |
||
| 841 | case 'jetpack_network_sites_page': |
||
| 842 | $caps = array( 'manage_sites' ); |
||
| 843 | break; |
||
| 844 | case 'jetpack_admin_page' : |
||
| 845 | if ( Jetpack::is_development_mode() ) { |
||
| 846 | $caps = array( 'manage_options' ); |
||
| 847 | break; |
||
| 848 | } else { |
||
| 849 | $caps = array( 'read' ); |
||
| 850 | } |
||
| 851 | break; |
||
| 852 | case 'jetpack_connect_user' : |
||
| 853 | if ( Jetpack::is_development_mode() ) { |
||
| 854 | $caps = array( 'do_not_allow' ); |
||
| 855 | break; |
||
| 856 | } |
||
| 857 | $caps = array( 'read' ); |
||
| 858 | break; |
||
| 859 | } |
||
| 860 | return $caps; |
||
| 861 | } |
||
| 862 | |||
| 863 | function require_jetpack_authentication() { |
||
| 864 | // Don't let anyone authenticate |
||
| 865 | $_COOKIE = array(); |
||
| 866 | remove_all_filters( 'authenticate' ); |
||
| 867 | remove_all_actions( 'wp_login_failed' ); |
||
| 868 | |||
| 869 | if ( Jetpack::is_active() ) { |
||
| 870 | // Allow Jetpack authentication |
||
| 871 | add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 ); |
||
| 872 | } |
||
| 873 | } |
||
| 874 | |||
| 875 | /** |
||
| 876 | * Load language files |
||
| 877 | * @action plugins_loaded |
||
| 878 | */ |
||
| 879 | public static function plugin_textdomain() { |
||
| 880 | // Note to self, the third argument must not be hardcoded, to account for relocated folders. |
||
| 881 | load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' ); |
||
| 882 | } |
||
| 883 | |||
| 884 | /** |
||
| 885 | * Register assets for use in various modules and the Jetpack admin page. |
||
| 886 | * |
||
| 887 | * @uses wp_script_is, wp_register_script, plugins_url |
||
| 888 | * @action wp_loaded |
||
| 889 | * @return null |
||
| 890 | */ |
||
| 891 | public function register_assets() { |
||
| 892 | View Code Duplication | if ( ! wp_script_is( 'spin', 'registered' ) ) { |
|
| 893 | wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' ); |
||
| 894 | } |
||
| 895 | |||
| 896 | View Code Duplication | if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) { |
|
| 897 | wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' ); |
||
| 898 | } |
||
| 899 | |||
| 900 | View Code Duplication | if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { |
|
| 901 | wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' ); |
||
| 902 | } |
||
| 903 | |||
| 904 | View Code Duplication | if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) { |
|
| 905 | wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true ); |
||
| 906 | } |
||
| 907 | |||
| 908 | if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) { |
||
| 909 | wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true ); |
||
| 910 | |||
| 911 | /** This filter is documented in modules/sharedaddy/sharing-sources.php */ |
||
| 912 | $fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ); |
||
| 913 | if ( ! is_numeric( $fb_app_id ) ) { |
||
| 914 | $fb_app_id = ''; |
||
| 915 | } |
||
| 916 | wp_localize_script( |
||
| 917 | 'jetpack-facebook-embed', |
||
| 918 | 'jpfbembed', |
||
| 919 | array( |
||
| 920 | 'appid' => $fb_app_id, |
||
| 921 | 'locale' => $this->get_locale(), |
||
| 922 | ) |
||
| 923 | ); |
||
| 924 | } |
||
| 925 | |||
| 926 | /** |
||
| 927 | * As jetpack_register_genericons is by default fired off a hook, |
||
| 928 | * the hook may have already fired by this point. |
||
| 929 | * So, let's just trigger it manually. |
||
| 930 | */ |
||
| 931 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); |
||
| 932 | jetpack_register_genericons(); |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Register the social logos |
||
| 936 | */ |
||
| 937 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); |
||
| 938 | jetpack_register_social_logos(); |
||
| 939 | |||
| 940 | View Code Duplication | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) |
|
| 941 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
||
| 942 | } |
||
| 943 | |||
| 944 | /** |
||
| 945 | * Guess locale from language code. |
||
| 946 | * |
||
| 947 | * @param string $lang Language code. |
||
| 948 | * @return string|bool |
||
| 949 | */ |
||
| 950 | function guess_locale_from_lang( $lang ) { |
||
| 951 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
||
| 952 | return 'en_US'; |
||
| 953 | } |
||
| 954 | |||
| 955 | View Code Duplication | if ( ! class_exists( 'GP_Locales' ) ) { |
|
| 956 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
||
| 957 | return false; |
||
| 958 | } |
||
| 959 | |||
| 960 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
||
| 961 | } |
||
| 962 | |||
| 963 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
||
| 964 | // WP.com: get_locale() returns 'it' |
||
| 965 | $locale = GP_Locales::by_slug( $lang ); |
||
| 966 | } else { |
||
| 967 | // Jetpack: get_locale() returns 'it_IT'; |
||
| 968 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
||
| 969 | } |
||
| 970 | |||
| 971 | if ( ! $locale ) { |
||
| 972 | return false; |
||
| 973 | } |
||
| 974 | |||
| 975 | if ( empty( $locale->facebook_locale ) ) { |
||
| 976 | if ( empty( $locale->wp_locale ) ) { |
||
| 977 | return false; |
||
| 978 | } else { |
||
| 979 | // Facebook SDK is smart enough to fall back to en_US if a |
||
| 980 | // locale isn't supported. Since supported Facebook locales |
||
| 981 | // can fall out of sync, we'll attempt to use the known |
||
| 982 | // wp_locale value and rely on said fallback. |
||
| 983 | return $locale->wp_locale; |
||
| 984 | } |
||
| 985 | } |
||
| 986 | |||
| 987 | return $locale->facebook_locale; |
||
| 988 | } |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Get the locale. |
||
| 992 | * |
||
| 993 | * @return string|bool |
||
| 994 | */ |
||
| 995 | function get_locale() { |
||
| 996 | $locale = $this->guess_locale_from_lang( get_locale() ); |
||
| 997 | |||
| 998 | if ( ! $locale ) { |
||
| 999 | $locale = 'en_US'; |
||
| 1000 | } |
||
| 1001 | |||
| 1002 | return $locale; |
||
| 1003 | } |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * Device Pixels support |
||
| 1007 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. |
||
| 1008 | */ |
||
| 1009 | function devicepx() { |
||
| 1010 | if ( Jetpack::is_active() ) { |
||
| 1011 | wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true ); |
||
| 1012 | } |
||
| 1013 | } |
||
| 1014 | |||
| 1015 | /** |
||
| 1016 | * Return the network_site_url so that .com knows what network this site is a part of. |
||
| 1017 | * @param bool $option |
||
| 1018 | * @return string |
||
| 1019 | */ |
||
| 1020 | public function jetpack_main_network_site_option( $option ) { |
||
| 1021 | return network_site_url(); |
||
| 1022 | } |
||
| 1023 | /** |
||
| 1024 | * Network Name. |
||
| 1025 | */ |
||
| 1026 | static function network_name( $option = null ) { |
||
| 1027 | global $current_site; |
||
| 1028 | return $current_site->site_name; |
||
| 1029 | } |
||
| 1030 | /** |
||
| 1031 | * Does the network allow new user and site registrations. |
||
| 1032 | * @return string |
||
| 1033 | */ |
||
| 1034 | static function network_allow_new_registrations( $option = null ) { |
||
| 1035 | return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' ); |
||
| 1036 | } |
||
| 1037 | /** |
||
| 1038 | * Does the network allow admins to add new users. |
||
| 1039 | * @return boolian |
||
| 1040 | */ |
||
| 1041 | static function network_add_new_users( $option = null ) { |
||
| 1042 | return (bool) get_site_option( 'add_new_users' ); |
||
| 1043 | } |
||
| 1044 | /** |
||
| 1045 | * File upload psace left per site in MB. |
||
| 1046 | * -1 means NO LIMIT. |
||
| 1047 | * @return number |
||
| 1048 | */ |
||
| 1049 | static function network_site_upload_space( $option = null ) { |
||
| 1050 | // value in MB |
||
| 1051 | return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() ); |
||
| 1052 | } |
||
| 1053 | |||
| 1054 | /** |
||
| 1055 | * Network allowed file types. |
||
| 1056 | * @return string |
||
| 1057 | */ |
||
| 1058 | static function network_upload_file_types( $option = null ) { |
||
| 1059 | return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' ); |
||
| 1060 | } |
||
| 1061 | |||
| 1062 | /** |
||
| 1063 | * Maximum file upload size set by the network. |
||
| 1064 | * @return number |
||
| 1065 | */ |
||
| 1066 | static function network_max_upload_file_size( $option = null ) { |
||
| 1067 | // value in KB |
||
| 1068 | return get_site_option( 'fileupload_maxk', 300 ); |
||
| 1069 | } |
||
| 1070 | |||
| 1071 | /** |
||
| 1072 | * Lets us know if a site allows admins to manage the network. |
||
| 1073 | * @return array |
||
| 1074 | */ |
||
| 1075 | static function network_enable_administration_menus( $option = null ) { |
||
| 1076 | return get_site_option( 'menu_items' ); |
||
| 1077 | } |
||
| 1078 | |||
| 1079 | /** |
||
| 1080 | * If a user has been promoted to or demoted from admin, we need to clear the |
||
| 1081 | * jetpack_other_linked_admins transient. |
||
| 1082 | * |
||
| 1083 | * @since 4.3.2 |
||
| 1084 | * @since 4.4.0 $old_roles is null by default and if it's not passed, the transient is cleared. |
||
| 1085 | * |
||
| 1086 | * @param int $user_id The user ID whose role changed. |
||
| 1087 | * @param string $role The new role. |
||
| 1088 | * @param array $old_roles An array of the user's previous roles. |
||
| 1089 | */ |
||
| 1090 | function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) { |
||
| 1091 | if ( 'administrator' == $role |
||
| 1092 | || ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) ) |
||
| 1093 | || is_null( $old_roles ) |
||
| 1094 | ) { |
||
| 1095 | delete_transient( 'jetpack_other_linked_admins' ); |
||
| 1096 | } |
||
| 1097 | } |
||
| 1098 | |||
| 1099 | /** |
||
| 1100 | * Checks to see if there are any other users available to become primary |
||
| 1101 | * Users must both: |
||
| 1102 | * - Be linked to wpcom |
||
| 1103 | * - Be an admin |
||
| 1104 | * |
||
| 1105 | * @return mixed False if no other users are linked, Int if there are. |
||
| 1106 | */ |
||
| 1107 | static function get_other_linked_admins() { |
||
| 1108 | $other_linked_users = get_transient( 'jetpack_other_linked_admins' ); |
||
| 1109 | |||
| 1110 | if ( false === $other_linked_users ) { |
||
| 1111 | $admins = get_users( array( 'role' => 'administrator' ) ); |
||
| 1112 | if ( count( $admins ) > 1 ) { |
||
| 1113 | $available = array(); |
||
| 1114 | foreach ( $admins as $admin ) { |
||
| 1115 | if ( Jetpack::is_user_connected( $admin->ID ) ) { |
||
| 1116 | $available[] = $admin->ID; |
||
| 1117 | } |
||
| 1118 | } |
||
| 1119 | |||
| 1120 | $count_connected_admins = count( $available ); |
||
| 1121 | if ( count( $available ) > 1 ) { |
||
| 1122 | $other_linked_users = $count_connected_admins; |
||
| 1123 | } else { |
||
| 1124 | $other_linked_users = 0; |
||
| 1125 | } |
||
| 1126 | } else { |
||
| 1127 | $other_linked_users = 0; |
||
| 1128 | } |
||
| 1129 | |||
| 1130 | set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS ); |
||
| 1131 | } |
||
| 1132 | |||
| 1133 | return ( 0 === $other_linked_users ) ? false : $other_linked_users; |
||
| 1134 | } |
||
| 1135 | |||
| 1136 | /** |
||
| 1137 | * Return whether we are dealing with a multi network setup or not. |
||
| 1138 | * The reason we are type casting this is because we want to avoid the situation where |
||
| 1139 | * the result is false since when is_main_network_option return false it cases |
||
| 1140 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the |
||
| 1141 | * database which could be set to anything as opposed to what this function returns. |
||
| 1142 | * @param bool $option |
||
| 1143 | * |
||
| 1144 | * @return boolean |
||
| 1145 | */ |
||
| 1146 | public function is_main_network_option( $option ) { |
||
| 1147 | // return '1' or '' |
||
| 1148 | return (string) (bool) Jetpack::is_multi_network(); |
||
| 1149 | } |
||
| 1150 | |||
| 1151 | /** |
||
| 1152 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
||
| 1153 | * |
||
| 1154 | * @param string $option |
||
| 1155 | * @return boolean |
||
| 1156 | */ |
||
| 1157 | public function is_multisite( $option ) { |
||
| 1158 | return (string) (bool) is_multisite(); |
||
| 1159 | } |
||
| 1160 | |||
| 1161 | /** |
||
| 1162 | * Implemented since there is no core is multi network function |
||
| 1163 | * Right now there is no way to tell if we which network is the dominant network on the system |
||
| 1164 | * |
||
| 1165 | * @since 3.3 |
||
| 1166 | * @return boolean |
||
| 1167 | */ |
||
| 1168 | public static function is_multi_network() { |
||
| 1169 | global $wpdb; |
||
| 1170 | |||
| 1171 | // if we don't have a multi site setup no need to do any more |
||
| 1172 | if ( ! is_multisite() ) { |
||
| 1173 | return false; |
||
| 1174 | } |
||
| 1175 | |||
| 1176 | $num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); |
||
| 1177 | if ( $num_sites > 1 ) { |
||
| 1178 | return true; |
||
| 1179 | } else { |
||
| 1180 | return false; |
||
| 1181 | } |
||
| 1182 | } |
||
| 1183 | |||
| 1184 | /** |
||
| 1185 | * Trigger an update to the main_network_site when we update the siteurl of a site. |
||
| 1186 | * @return null |
||
| 1187 | */ |
||
| 1188 | function update_jetpack_main_network_site_option() { |
||
| 1189 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1190 | } |
||
| 1191 | /** |
||
| 1192 | * Triggered after a user updates the network settings via Network Settings Admin Page |
||
| 1193 | * |
||
| 1194 | */ |
||
| 1195 | function update_jetpack_network_settings() { |
||
| 1196 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1197 | // Only sync this info for the main network site. |
||
| 1198 | } |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Get back if the current site is single user site. |
||
| 1202 | * |
||
| 1203 | * @return bool |
||
| 1204 | */ |
||
| 1205 | public static function is_single_user_site() { |
||
| 1206 | global $wpdb; |
||
| 1207 | |||
| 1208 | View Code Duplication | if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) { |
|
| 1209 | $some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" ); |
||
| 1210 | set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS ); |
||
| 1211 | } |
||
| 1212 | return 1 === (int) $some_users; |
||
| 1213 | } |
||
| 1214 | |||
| 1215 | /** |
||
| 1216 | * Returns true if the site has file write access false otherwise. |
||
| 1217 | * @return string ( '1' | '0' ) |
||
| 1218 | **/ |
||
| 1219 | public static function file_system_write_access() { |
||
| 1220 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
||
| 1221 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
||
| 1222 | } |
||
| 1223 | |||
| 1224 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
||
| 1225 | |||
| 1226 | $filesystem_method = get_filesystem_method(); |
||
| 1227 | if ( $filesystem_method === 'direct' ) { |
||
| 1228 | return 1; |
||
| 1229 | } |
||
| 1230 | |||
| 1231 | ob_start(); |
||
| 1232 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); |
||
| 1233 | ob_end_clean(); |
||
| 1234 | if ( $filesystem_credentials_are_stored ) { |
||
| 1235 | return 1; |
||
| 1236 | } |
||
| 1237 | return 0; |
||
| 1238 | } |
||
| 1239 | |||
| 1240 | /** |
||
| 1241 | * Finds out if a site is using a version control system. |
||
| 1242 | * @return string ( '1' | '0' ) |
||
| 1243 | **/ |
||
| 1244 | public static function is_version_controlled() { |
||
| 1245 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' ); |
||
| 1246 | return (string) (int) Jetpack_Sync_Functions::is_version_controlled(); |
||
| 1247 | } |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * Determines whether the current theme supports featured images or not. |
||
| 1251 | * @return string ( '1' | '0' ) |
||
| 1252 | */ |
||
| 1253 | public static function featured_images_enabled() { |
||
| 1254 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1255 | return current_theme_supports( 'post-thumbnails' ) ? '1' : '0'; |
||
| 1256 | } |
||
| 1257 | |||
| 1258 | /** |
||
| 1259 | * Wrapper for core's get_avatar_url(). This one is deprecated. |
||
| 1260 | * |
||
| 1261 | * @deprecated 4.7 use get_avatar_url instead. |
||
| 1262 | * @param int|string|object $id_or_email A user ID, email address, or comment object |
||
| 1263 | * @param int $size Size of the avatar image |
||
| 1264 | * @param string $default URL to a default image to use if no avatar is available |
||
| 1265 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled |
||
| 1266 | * |
||
| 1267 | * @return array |
||
| 1268 | */ |
||
| 1269 | public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { |
||
| 1270 | _deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' ); |
||
| 1271 | return get_avatar_url( $id_or_email, array( |
||
| 1272 | 'size' => $size, |
||
| 1273 | 'default' => $default, |
||
| 1274 | 'force_default' => $force_display, |
||
| 1275 | ) ); |
||
| 1276 | } |
||
| 1277 | |||
| 1278 | /** |
||
| 1279 | * jetpack_updates is saved in the following schema: |
||
| 1280 | * |
||
| 1281 | * array ( |
||
| 1282 | * 'plugins' => (int) Number of plugin updates available. |
||
| 1283 | * 'themes' => (int) Number of theme updates available. |
||
| 1284 | * 'wordpress' => (int) Number of WordPress core updates available. |
||
| 1285 | * 'translations' => (int) Number of translation updates available. |
||
| 1286 | * 'total' => (int) Total of all available updates. |
||
| 1287 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. |
||
| 1288 | * ) |
||
| 1289 | * @return array |
||
| 1290 | */ |
||
| 1291 | public static function get_updates() { |
||
| 1292 | $update_data = wp_get_update_data(); |
||
| 1293 | |||
| 1294 | // Stores the individual update counts as well as the total count. |
||
| 1295 | if ( isset( $update_data['counts'] ) ) { |
||
| 1296 | $updates = $update_data['counts']; |
||
| 1297 | } |
||
| 1298 | |||
| 1299 | // If we need to update WordPress core, let's find the latest version number. |
||
| 1300 | View Code Duplication | if ( ! empty( $updates['wordpress'] ) ) { |
|
| 1301 | $cur = get_preferred_from_update_core(); |
||
| 1302 | if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { |
||
| 1303 | $updates['wp_update_version'] = $cur->current; |
||
| 1304 | } |
||
| 1305 | } |
||
| 1306 | return isset( $updates ) ? $updates : array(); |
||
| 1307 | } |
||
| 1308 | |||
| 1309 | public static function get_update_details() { |
||
| 1310 | $update_details = array( |
||
| 1311 | 'update_core' => get_site_transient( 'update_core' ), |
||
| 1312 | 'update_plugins' => get_site_transient( 'update_plugins' ), |
||
| 1313 | 'update_themes' => get_site_transient( 'update_themes' ), |
||
| 1314 | ); |
||
| 1315 | return $update_details; |
||
| 1316 | } |
||
| 1317 | |||
| 1318 | public static function refresh_update_data() { |
||
| 1319 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1320 | |||
| 1321 | } |
||
| 1322 | |||
| 1323 | public static function refresh_theme_data() { |
||
| 1324 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1325 | } |
||
| 1326 | |||
| 1327 | /** |
||
| 1328 | * Is Jetpack active? |
||
| 1329 | */ |
||
| 1330 | public static function is_active() { |
||
| 1331 | return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
| 1332 | } |
||
| 1333 | |||
| 1334 | /** |
||
| 1335 | * Make an API call to WordPress.com for plan status |
||
| 1336 | * |
||
| 1337 | * @uses Jetpack_Options::get_option() |
||
| 1338 | * @uses Jetpack_Client::wpcom_json_api_request_as_blog() |
||
| 1339 | * @uses update_option() |
||
| 1340 | * |
||
| 1341 | * @access public |
||
| 1342 | * @static |
||
| 1343 | * |
||
| 1344 | * @return bool True if plan is updated, false if no update |
||
| 1345 | */ |
||
| 1346 | public static function refresh_active_plan_from_wpcom() { |
||
| 1347 | // Make the API request |
||
| 1348 | $request = sprintf( '/sites/%d', Jetpack_Options::get_option( 'id' ) ); |
||
| 1349 | $response = Jetpack_Client::wpcom_json_api_request_as_blog( $request, '1.1' ); |
||
| 1350 | |||
| 1351 | // Bail if there was an error or malformed response |
||
| 1352 | if ( is_wp_error( $response ) || ! is_array( $response ) || ! isset( $response['body'] ) ) { |
||
| 1353 | return false; |
||
| 1354 | } |
||
| 1355 | |||
| 1356 | // Decode the results |
||
| 1357 | $results = json_decode( $response['body'], true ); |
||
| 1358 | |||
| 1359 | // Bail if there were no results or plan details returned |
||
| 1360 | if ( ! is_array( $results ) || ! isset( $results['plan'] ) ) { |
||
| 1361 | return false; |
||
| 1362 | } |
||
| 1363 | |||
| 1364 | // Store the option and return true if updated |
||
| 1365 | return update_option( 'jetpack_active_plan', $results['plan'] ); |
||
| 1366 | } |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Get the plan that this Jetpack site is currently using |
||
| 1370 | * |
||
| 1371 | * @uses get_option() |
||
| 1372 | * |
||
| 1373 | * @access public |
||
| 1374 | * @static |
||
| 1375 | * |
||
| 1376 | * @return array Active Jetpack plan details |
||
| 1377 | */ |
||
| 1378 | public static function get_active_plan() { |
||
| 1379 | $plan = get_option( 'jetpack_active_plan', array() ); |
||
| 1380 | |||
| 1381 | // Set the default options |
||
| 1382 | if ( empty( $plan ) || ( isset( $plan['product_slug'] ) && 'jetpack_free' === $plan['product_slug'] ) ) { |
||
| 1383 | $plan = wp_parse_args( $plan, array( |
||
| 1384 | 'product_slug' => 'jetpack_free', |
||
| 1385 | 'supports' => array(), |
||
| 1386 | 'class' => 'free', |
||
| 1387 | ) ); |
||
| 1388 | } |
||
| 1389 | |||
| 1390 | // Define what paid modules are supported by personal plans |
||
| 1391 | $personal_plans = array( |
||
| 1392 | 'jetpack_personal', |
||
| 1393 | 'jetpack_personal_monthly', |
||
| 1394 | 'personal-bundle', |
||
| 1395 | ); |
||
| 1396 | |||
| 1397 | if ( in_array( $plan['product_slug'], $personal_plans ) ) { |
||
| 1398 | $plan['supports'] = array( |
||
| 1399 | 'akismet', |
||
| 1400 | ); |
||
| 1401 | $plan['class'] = 'personal'; |
||
| 1402 | } |
||
| 1403 | |||
| 1404 | // Define what paid modules are supported by premium plans |
||
| 1405 | $premium_plans = array( |
||
| 1406 | 'jetpack_premium', |
||
| 1407 | 'jetpack_premium_monthly', |
||
| 1408 | 'value_bundle', |
||
| 1409 | ); |
||
| 1410 | |||
| 1411 | View Code Duplication | if ( in_array( $plan['product_slug'], $premium_plans ) ) { |
|
| 1412 | $plan['supports'] = array( |
||
| 1413 | 'videopress', |
||
| 1414 | 'akismet', |
||
| 1415 | 'vaultpress', |
||
| 1416 | 'wordads', |
||
| 1417 | ); |
||
| 1418 | $plan['class'] = 'premium'; |
||
| 1419 | } |
||
| 1420 | |||
| 1421 | // Define what paid modules are supported by professional plans |
||
| 1422 | $business_plans = array( |
||
| 1423 | 'jetpack_business', |
||
| 1424 | 'jetpack_business_monthly', |
||
| 1425 | 'business-bundle', |
||
| 1426 | ); |
||
| 1427 | |||
| 1428 | View Code Duplication | if ( in_array( $plan['product_slug'], $business_plans ) ) { |
|
| 1429 | $plan['supports'] = array( |
||
| 1430 | 'videopress', |
||
| 1431 | 'akismet', |
||
| 1432 | 'vaultpress', |
||
| 1433 | 'seo-tools', |
||
| 1434 | 'google-analytics', |
||
| 1435 | 'wordads', |
||
| 1436 | ); |
||
| 1437 | $plan['class'] = 'business'; |
||
| 1438 | } |
||
| 1439 | |||
| 1440 | // Make sure we have an array here in the event database data is stale |
||
| 1441 | if ( ! isset( $plan['supports'] ) ) { |
||
| 1442 | $plan['supports'] = array(); |
||
| 1443 | } |
||
| 1444 | |||
| 1445 | return $plan; |
||
| 1446 | } |
||
| 1447 | |||
| 1448 | /** |
||
| 1449 | * Determine whether the active plan supports a particular feature |
||
| 1450 | * |
||
| 1451 | * @uses Jetpack::get_active_plan() |
||
| 1452 | * |
||
| 1453 | * @access public |
||
| 1454 | * @static |
||
| 1455 | * |
||
| 1456 | * @return bool True if plan supports feature, false if not |
||
| 1457 | */ |
||
| 1458 | public static function active_plan_supports( $feature ) { |
||
| 1459 | $plan = Jetpack::get_active_plan(); |
||
| 1460 | |||
| 1461 | if ( in_array( $feature, $plan['supports'] ) ) { |
||
| 1462 | return true; |
||
| 1463 | } |
||
| 1464 | |||
| 1465 | return false; |
||
| 1466 | } |
||
| 1467 | |||
| 1468 | /** |
||
| 1469 | * Is Jetpack in development (offline) mode? |
||
| 1470 | */ |
||
| 1471 | public static function is_development_mode() { |
||
| 1472 | $development_mode = false; |
||
| 1473 | |||
| 1474 | if ( defined( 'JETPACK_DEV_DEBUG' ) ) { |
||
| 1475 | $development_mode = JETPACK_DEV_DEBUG; |
||
| 1476 | } elseif ( $site_url = site_url() ) { |
||
| 1477 | $development_mode = false === strpos( $site_url, '.' ); |
||
| 1478 | } |
||
| 1479 | |||
| 1480 | /** |
||
| 1481 | * Filters Jetpack's development mode. |
||
| 1482 | * |
||
| 1483 | * @see https://jetpack.com/support/development-mode/ |
||
| 1484 | * |
||
| 1485 | * @since 2.2.1 |
||
| 1486 | * |
||
| 1487 | * @param bool $development_mode Is Jetpack's development mode active. |
||
| 1488 | */ |
||
| 1489 | return apply_filters( 'jetpack_development_mode', $development_mode ); |
||
| 1490 | } |
||
| 1491 | |||
| 1492 | /** |
||
| 1493 | * Get Jetpack development mode notice text and notice class. |
||
| 1494 | * |
||
| 1495 | * Mirrors the checks made in Jetpack::is_development_mode |
||
| 1496 | * |
||
| 1497 | */ |
||
| 1498 | public static function show_development_mode_notice() { |
||
| 1499 | if ( Jetpack::is_development_mode() ) { |
||
| 1500 | if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) { |
||
| 1501 | $notice = sprintf( |
||
| 1502 | /* translators: %s is a URL */ |
||
| 1503 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ), |
||
| 1504 | 'https://jetpack.com/support/development-mode/' |
||
| 1505 | ); |
||
| 1506 | } elseif ( site_url() && false === strpos( site_url(), '.' ) ) { |
||
| 1507 | $notice = sprintf( |
||
| 1508 | /* translators: %s is a URL */ |
||
| 1509 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ), |
||
| 1510 | 'https://jetpack.com/support/development-mode/' |
||
| 1511 | ); |
||
| 1512 | } else { |
||
| 1513 | $notice = sprintf( |
||
| 1514 | /* translators: %s is a URL */ |
||
| 1515 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ), |
||
| 1516 | 'https://jetpack.com/support/development-mode/' |
||
| 1517 | ); |
||
| 1518 | } |
||
| 1519 | |||
| 1520 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1521 | } |
||
| 1522 | |||
| 1523 | // Throw up a notice if using a development version and as for feedback. |
||
| 1524 | if ( Jetpack::is_development_version() ) { |
||
| 1525 | /* translators: %s is a URL */ |
||
| 1526 | $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/' ); |
||
| 1527 | |||
| 1528 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1529 | } |
||
| 1530 | // Throw up a notice if using staging mode |
||
| 1531 | if ( Jetpack::is_staging_site() ) { |
||
| 1532 | /* translators: %s is a URL */ |
||
| 1533 | $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' ); |
||
| 1534 | |||
| 1535 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1536 | } |
||
| 1537 | } |
||
| 1538 | |||
| 1539 | /** |
||
| 1540 | * Whether Jetpack's version maps to a public release, or a development version. |
||
| 1541 | */ |
||
| 1542 | public static function is_development_version() { |
||
| 1543 | /** |
||
| 1544 | * Allows filtering whether this is a development version of Jetpack. |
||
| 1545 | * |
||
| 1546 | * This filter is especially useful for tests. |
||
| 1547 | * |
||
| 1548 | * @since 4.3.0 |
||
| 1549 | * |
||
| 1550 | * @param bool $development_version Is this a develoment version of Jetpack? |
||
| 1551 | */ |
||
| 1552 | return (bool) apply_filters( |
||
| 1553 | 'jetpack_development_version', |
||
| 1554 | ! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) ) |
||
| 1555 | ); |
||
| 1556 | } |
||
| 1557 | |||
| 1558 | /** |
||
| 1559 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? |
||
| 1560 | */ |
||
| 1561 | public static function is_user_connected( $user_id = false ) { |
||
| 1562 | $user_id = false === $user_id ? get_current_user_id() : absint( $user_id ); |
||
| 1563 | if ( ! $user_id ) { |
||
| 1564 | return false; |
||
| 1565 | } |
||
| 1566 | |||
| 1567 | return (bool) Jetpack_Data::get_access_token( $user_id ); |
||
| 1568 | } |
||
| 1569 | |||
| 1570 | /** |
||
| 1571 | * Get the wpcom user data of the current|specified connected user. |
||
| 1572 | */ |
||
| 1573 | public static function get_connected_user_data( $user_id = null ) { |
||
| 1574 | if ( ! $user_id ) { |
||
| 1575 | $user_id = get_current_user_id(); |
||
| 1576 | } |
||
| 1577 | |||
| 1578 | $transient_key = "jetpack_connected_user_data_$user_id"; |
||
| 1579 | |||
| 1580 | if ( $cached_user_data = get_transient( $transient_key ) ) { |
||
| 1581 | return $cached_user_data; |
||
| 1582 | } |
||
| 1583 | |||
| 1584 | Jetpack::load_xml_rpc_client(); |
||
| 1585 | $xml = new Jetpack_IXR_Client( array( |
||
| 1586 | 'user_id' => $user_id, |
||
| 1587 | ) ); |
||
| 1588 | $xml->query( 'wpcom.getUser' ); |
||
| 1589 | if ( ! $xml->isError() ) { |
||
| 1590 | $user_data = $xml->getResponse(); |
||
| 1591 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); |
||
| 1592 | return $user_data; |
||
| 1593 | } |
||
| 1594 | |||
| 1595 | return false; |
||
| 1596 | } |
||
| 1597 | |||
| 1598 | /** |
||
| 1599 | * Get the wpcom email of the current|specified connected user. |
||
| 1600 | */ |
||
| 1601 | View Code Duplication | public static function get_connected_user_email( $user_id = null ) { |
|
| 1615 | |||
| 1616 | /** |
||
| 1617 | * Get the wpcom email of the master user. |
||
| 1618 | */ |
||
| 1619 | public static function get_master_user_email() { |
||
| 1626 | |||
| 1627 | function current_user_is_connection_owner() { |
||
| 1631 | |||
| 1632 | /** |
||
| 1633 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. |
||
| 1634 | */ |
||
| 1635 | function extra_oembed_providers() { |
||
| 1636 | // Cloudup: https://dev.cloudup.com/#oembed |
||
| 1637 | wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' ); |
||
| 1638 | wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' ); |
||
| 1639 | wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true ); |
||
| 1640 | wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true ); |
||
| 1641 | wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true ); |
||
| 1642 | wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true ); |
||
| 1643 | } |
||
| 1644 | |||
| 1645 | /** |
||
| 1646 | * Synchronize connected user role changes |
||
| 1647 | */ |
||
| 1648 | function user_role_change( $user_id ) { |
||
| 1649 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' ); |
||
| 1650 | Jetpack_Sync_Users::user_role_change( $user_id ); |
||
| 1651 | } |
||
| 1652 | |||
| 1653 | /** |
||
| 1654 | * Loads the currently active modules. |
||
| 1655 | */ |
||
| 1656 | public static function load_modules() { |
||
| 1657 | if ( ! self::is_active() && !self::is_development_mode() ) { |
||
| 1658 | if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) { |
||
| 1659 | return; |
||
| 1660 | } |
||
| 1661 | } |
||
| 1662 | |||
| 1663 | $version = Jetpack_Options::get_option( 'version' ); |
||
| 1664 | View Code Duplication | if ( ! $version ) { |
|
| 1665 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
| 1666 | /** This action is documented in class.jetpack.php */ |
||
| 1667 | do_action( 'updating_jetpack_version', $version, false ); |
||
| 1668 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
| 1669 | } |
||
| 1670 | list( $version ) = explode( ':', $version ); |
||
| 1671 | |||
| 1672 | $modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) ); |
||
| 1673 | |||
| 1674 | $modules_data = array(); |
||
| 1675 | |||
| 1676 | // Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check. |
||
| 1677 | if ( version_compare( $version, JETPACK__VERSION, '<' ) ) { |
||
| 1678 | $updated_modules = array(); |
||
| 1679 | foreach ( $modules as $module ) { |
||
| 1680 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
| 1681 | if ( ! isset( $modules_data[ $module ]['changed'] ) ) { |
||
| 1682 | continue; |
||
| 1683 | } |
||
| 1684 | |||
| 1685 | if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) { |
||
| 1686 | continue; |
||
| 1740 | |||
| 1741 | /** |
||
| 1742 | * Check if Jetpack's REST API compat file should be included |
||
| 1743 | * @action plugins_loaded |
||
| 1744 | * @return null |
||
| 1745 | */ |
||
| 1746 | public function check_rest_api_compat() { |
||
| 1762 | |||
| 1763 | /** |
||
| 1764 | * Gets all plugins currently active in values, regardless of whether they're |
||
| 1765 | * traditionally activated or network activated. |
||
| 1766 | * |
||
| 1767 | * @todo Store the result in core's object cache maybe? |
||
| 1768 | */ |
||
| 1769 | public static function get_active_plugins() { |
||
| 1785 | |||
| 1786 | /** |
||
| 1787 | * Gets and parses additional plugin data to send with the heartbeat data |
||
| 1788 | * |
||
| 1789 | * @since 3.8.1 |
||
| 1790 | * |
||
| 1791 | * @return array Array of plugin data |
||
| 1792 | */ |
||
| 1793 | public static function get_parsed_plugin_data() { |
||
| 1814 | |||
| 1815 | /** |
||
| 1816 | * Gets and parses theme data to send with the heartbeat data |
||
| 1817 | * |
||
| 1818 | * @since 3.8.1 |
||
| 1819 | * |
||
| 1820 | * @return array Array of theme data |
||
| 1821 | */ |
||
| 1822 | public static function get_parsed_theme_data() { |
||
| 1844 | |||
| 1845 | /** |
||
| 1846 | * Checks whether a specific plugin is active. |
||
| 1847 | * |
||
| 1848 | * We don't want to store these in a static variable, in case |
||
| 1849 | * there are switch_to_blog() calls involved. |
||
| 1850 | */ |
||
| 1851 | public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { |
||
| 1854 | |||
| 1855 | /** |
||
| 1856 | * Check if Jetpack's Open Graph tags should be used. |
||
| 1857 | * If certain plugins are active, Jetpack's og tags are suppressed. |
||
| 1858 | * |
||
| 1859 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
| 1860 | * @action plugins_loaded |
||
| 1861 | * @return null |
||
| 1862 | */ |
||
| 1863 | public function check_open_graph() { |
||
| 1890 | |||
| 1891 | /** |
||
| 1892 | * Check if Jetpack's Twitter tags should be used. |
||
| 1893 | * If certain plugins are active, Jetpack's twitter tags are suppressed. |
||
| 1894 | * |
||
| 1895 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
| 1896 | * @action plugins_loaded |
||
| 1897 | * @return null |
||
| 1898 | */ |
||
| 1899 | public function check_twitter_tags() { |
||
| 1923 | |||
| 1924 | /** |
||
| 1925 | * Allows plugins to submit security reports. |
||
| 1926 | * |
||
| 1927 | * @param string $type Report type (login_form, backup, file_scanning, spam) |
||
| 1928 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data |
||
| 1929 | * @param array $args See definitions above |
||
| 1930 | */ |
||
| 1931 | public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { |
||
| 1934 | |||
| 1935 | /* Jetpack Options API */ |
||
| 1936 | |||
| 1937 | public static function get_option_names( $type = 'compact' ) { |
||
| 1940 | |||
| 1941 | /** |
||
| 1942 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. |
||
| 1943 | * |
||
| 1944 | * @param string $name Option name |
||
| 1945 | * @param mixed $default (optional) |
||
| 1946 | */ |
||
| 1947 | public static function get_option( $name, $default = false ) { |
||
| 1950 | |||
| 1951 | /** |
||
| 1952 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. |
||
| 1953 | * |
||
| 1954 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. |
||
| 1955 | * @param string $name Option name |
||
| 1956 | * @param mixed $value Option value |
||
| 1957 | */ |
||
| 1958 | public static function update_option( $name, $value ) { |
||
| 1962 | |||
| 1963 | /** |
||
| 1964 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. |
||
| 1965 | * |
||
| 1966 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. |
||
| 1967 | * @param array $array array( option name => option value, ... ) |
||
| 1968 | */ |
||
| 1969 | public static function update_options( $array ) { |
||
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Deletes the given option. May be passed multiple option names as an array. |
||
| 1976 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. |
||
| 1977 | * |
||
| 1978 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. |
||
| 1979 | * @param string|array $names |
||
| 1980 | */ |
||
| 1981 | public static function delete_option( $names ) { |
||
| 1985 | |||
| 1986 | /** |
||
| 1987 | * Enters a user token into the user_tokens option |
||
| 1988 | * |
||
| 1989 | * @param int $user_id |
||
| 1990 | * @param string $token |
||
| 1991 | * return bool |
||
| 1992 | */ |
||
| 1993 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
||
| 2007 | |||
| 2008 | /** |
||
| 2009 | * Returns an array of all PHP files in the specified absolute path. |
||
| 2010 | * Equivalent to glob( "$absolute_path/*.php" ). |
||
| 2011 | * |
||
| 2012 | * @param string $absolute_path The absolute path of the directory to search. |
||
| 2013 | * @return array Array of absolute paths to the PHP files. |
||
| 2014 | */ |
||
| 2015 | public static function glob_php( $absolute_path ) { |
||
| 2044 | |||
| 2045 | public static function activate_new_modules( $redirect = false ) { |
||
| 2103 | |||
| 2104 | /** |
||
| 2105 | * List available Jetpack modules. Simply lists .php files in /modules/. |
||
| 2106 | * Make sure to tuck away module "library" files in a sub-directory. |
||
| 2107 | */ |
||
| 2108 | public static function get_available_modules( $min_version = false, $max_version = false ) { |
||
| 2165 | |||
| 2166 | /** |
||
| 2167 | * Default modules loaded on activation. |
||
| 2168 | */ |
||
| 2169 | public static function get_default_modules( $min_version = false, $max_version = false ) { |
||
| 2200 | |||
| 2201 | /** |
||
| 2202 | * Checks activated modules during auto-activation to determine |
||
| 2203 | * if any of those modules are being deprecated. If so, close |
||
| 2204 | * them out, and add any replacement modules. |
||
| 2205 | * |
||
| 2206 | * Runs at priority 99 by default. |
||
| 2207 | * |
||
| 2208 | * This is run late, so that it can still activate a module if |
||
| 2209 | * the new module is a replacement for another that the user |
||
| 2210 | * currently has active, even if something at the normal priority |
||
| 2211 | * would kibosh everything. |
||
| 2212 | * |
||
| 2213 | * @since 2.6 |
||
| 2214 | * @uses jetpack_get_default_modules filter |
||
| 2215 | * @param array $modules |
||
| 2216 | * @return array |
||
| 2217 | */ |
||
| 2218 | function handle_deprecated_modules( $modules ) { |
||
| 2244 | |||
| 2245 | /** |
||
| 2246 | * Checks activated plugins during auto-activation to determine |
||
| 2247 | * if any of those plugins are in the list with a corresponding module |
||
| 2248 | * that is not compatible with the plugin. The module will not be allowed |
||
| 2249 | * to auto-activate. |
||
| 2250 | * |
||
| 2251 | * @since 2.6 |
||
| 2252 | * @uses jetpack_get_default_modules filter |
||
| 2253 | * @param array $modules |
||
| 2254 | * @return array |
||
| 2255 | */ |
||
| 2256 | function filter_default_modules( $modules ) { |
||
| 2280 | |||
| 2281 | /** |
||
| 2282 | * Extract a module's slug from its full path. |
||
| 2283 | */ |
||
| 2284 | public static function get_module_slug( $file ) { |
||
| 2287 | |||
| 2288 | /** |
||
| 2289 | * Generate a module's path from its slug. |
||
| 2290 | */ |
||
| 2291 | public static function get_module_path( $slug ) { |
||
| 2294 | |||
| 2295 | /** |
||
| 2296 | * Load module data from module file. Headers differ from WordPress |
||
| 2297 | * plugin headers to avoid them being identified as standalone |
||
| 2298 | * plugins on the WordPress plugins page. |
||
| 2299 | */ |
||
| 2300 | public static function get_module( $module ) { |
||
| 2383 | |||
| 2384 | /** |
||
| 2385 | * Like core's get_file_data implementation, but caches the result. |
||
| 2386 | */ |
||
| 2387 | public static function get_file_data( $file, $headers ) { |
||
| 2424 | |||
| 2425 | |||
| 2426 | /** |
||
| 2427 | * Return translated module tag. |
||
| 2428 | * |
||
| 2429 | * @param string $tag Tag as it appears in each module heading. |
||
| 2430 | * |
||
| 2431 | * @return mixed |
||
| 2432 | */ |
||
| 2433 | public static function translate_module_tag( $tag ) { |
||
| 2436 | |||
| 2437 | /** |
||
| 2438 | * Return module name translation. Uses matching string created in modules/module-headings.php. |
||
| 2439 | * |
||
| 2440 | * @since 3.9.2 |
||
| 2441 | * |
||
| 2442 | * @param array $modules |
||
| 2443 | * |
||
| 2444 | * @return string|void |
||
| 2445 | */ |
||
| 2446 | public static function get_translated_modules( $modules ) { |
||
| 2459 | |||
| 2460 | /** |
||
| 2461 | * Get a list of activated modules as an array of module slugs. |
||
| 2462 | */ |
||
| 2463 | public static function get_active_modules() { |
||
| 2483 | |||
| 2484 | /** |
||
| 2485 | * Check whether or not a Jetpack module is active. |
||
| 2486 | * |
||
| 2487 | * @param string $module The slug of a Jetpack module. |
||
| 2488 | * @return bool |
||
| 2489 | * |
||
| 2490 | * @static |
||
| 2491 | */ |
||
| 2492 | public static function is_module_active( $module ) { |
||
| 2495 | |||
| 2496 | public static function is_module( $module ) { |
||
| 2499 | |||
| 2500 | /** |
||
| 2501 | * Catches PHP errors. Must be used in conjunction with output buffering. |
||
| 2502 | * |
||
| 2503 | * @param bool $catch True to start catching, False to stop. |
||
| 2504 | * |
||
| 2505 | * @static |
||
| 2506 | */ |
||
| 2507 | public static function catch_errors( $catch ) { |
||
| 2520 | |||
| 2521 | /** |
||
| 2522 | * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) |
||
| 2523 | */ |
||
| 2524 | public static function catch_errors_on_shutdown() { |
||
| 2527 | |||
| 2528 | /** |
||
| 2529 | * Rewrite any string to make paths easier to read. |
||
| 2530 | * |
||
| 2531 | * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR |
||
| 2532 | * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR. |
||
| 2533 | * |
||
| 2534 | * @param $string |
||
| 2535 | * @return mixed |
||
| 2536 | */ |
||
| 2537 | public static function alias_directories( $string ) { |
||
| 2545 | |||
| 2546 | public static function activate_default_modules( |
||
| 2682 | |||
| 2683 | public static function activate_module( $module, $exit = true, $redirect = true ) { |
||
| 2776 | |||
| 2777 | function activate_module_actions( $module ) { |
||
| 2780 | |||
| 2781 | public static function deactivate_module( $module ) { |
||
| 2808 | |||
| 2809 | public static function enable_module_configurable( $module ) { |
||
| 2813 | |||
| 2814 | public static function module_configuration_url( $module ) { |
||
| 2818 | |||
| 2819 | public static function module_configuration_load( $module, $method ) { |
||
| 2823 | |||
| 2824 | public static function module_configuration_head( $module, $method ) { |
||
| 2828 | |||
| 2829 | public static function module_configuration_screen( $module, $method ) { |
||
| 2833 | |||
| 2834 | public static function module_configuration_activation_screen( $module, $method ) { |
||
| 2838 | |||
| 2839 | /* Installation */ |
||
| 2840 | |||
| 2841 | public static function bail_on_activation( $message, $deactivate = true ) { |
||
| 2881 | |||
| 2882 | /** |
||
| 2883 | * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() |
||
| 2884 | * @static |
||
| 2885 | */ |
||
| 2886 | public static function plugin_activation( $network_wide ) { |
||
| 2903 | |||
| 2904 | public static function get_activation_source( $referer_url ) { |
||
| 2953 | |||
| 2954 | /** |
||
| 2955 | * Runs before bumping version numbers up to a new version |
||
| 2956 | * @param string $version Version:timestamp |
||
| 2957 | * @param string $old_version Old Version:timestamp or false if not set yet. |
||
| 2958 | * @return null [description] |
||
| 2959 | */ |
||
| 2960 | public static function do_version_bump( $version, $old_version ) { |
||
| 2967 | |||
| 2968 | /** |
||
| 2969 | * Sets the internal version number and activation state. |
||
| 2970 | * @static |
||
| 2971 | */ |
||
| 2972 | public static function plugin_initialize() { |
||
| 2989 | |||
| 2990 | /** |
||
| 2991 | * Removes all connection options |
||
| 2992 | * @static |
||
| 2993 | */ |
||
| 2994 | public static function plugin_deactivation( ) { |
||
| 3003 | |||
| 3004 | /** |
||
| 3005 | * Disconnects from the Jetpack servers. |
||
| 3006 | * Forgets all connection details and tells the Jetpack servers to do the same. |
||
| 3007 | * @static |
||
| 3008 | */ |
||
| 3009 | public static function disconnect( $update_activated_state = true ) { |
||
| 3070 | |||
| 3071 | /** |
||
| 3072 | * Unlinks the current user from the linked WordPress.com user |
||
| 3073 | */ |
||
| 3074 | public static function unlink_user( $user_id = null ) { |
||
| 3105 | |||
| 3106 | /** |
||
| 3107 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() |
||
| 3108 | */ |
||
| 3109 | public static function try_registration() { |
||
| 3134 | |||
| 3135 | /** |
||
| 3136 | * Tracking an internal event log. Try not to put too much chaff in here. |
||
| 3137 | * |
||
| 3138 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) |
||
| 3139 | */ |
||
| 3140 | public static function log( $code, $data = null ) { |
||
| 3180 | |||
| 3181 | /** |
||
| 3182 | * Get the internal event log. |
||
| 3183 | * |
||
| 3184 | * @param $event (string) - only return the specific log events |
||
| 3185 | * @param $num (int) - get specific number of latest results, limited to 200 |
||
| 3186 | * |
||
| 3187 | * @return array of log events || WP_Error for invalid params |
||
| 3188 | */ |
||
| 3189 | public static function get_log( $event = false, $num = false ) { |
||
| 3225 | |||
| 3226 | /** |
||
| 3227 | * Log modification of important settings. |
||
| 3228 | */ |
||
| 3229 | public static function log_settings_change( $option, $old_value, $value ) { |
||
| 3236 | |||
| 3237 | /** |
||
| 3238 | * Return stat data for WPCOM sync |
||
| 3239 | */ |
||
| 3240 | public static function get_stat_data( $encode = true, $extended = true ) { |
||
| 3254 | |||
| 3255 | /** |
||
| 3256 | * Get additional stat data to sync to WPCOM |
||
| 3257 | */ |
||
| 3258 | public static function get_additional_stat_data( $prefix = '' ) { |
||
| 3269 | |||
| 3270 | private static function get_site_user_count() { |
||
| 3285 | |||
| 3286 | /* Admin Pages */ |
||
| 3287 | |||
| 3288 | function admin_init() { |
||
| 3337 | |||
| 3338 | function admin_body_class( $admin_body_class = '' ) { |
||
| 3346 | |||
| 3347 | static function add_jetpack_pagestyles( $admin_body_class = '' ) { |
||
| 3350 | |||
| 3351 | /** |
||
| 3352 | * Call this function if you want the Big Jetpack Manage Notice to show up. |
||
| 3353 | * |
||
| 3354 | * @return null |
||
| 3355 | */ |
||
| 3356 | function prepare_manage_jetpack_notice() { |
||
| 3361 | |||
| 3362 | function manage_activate_screen() { |
||
| 3365 | /** |
||
| 3366 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. |
||
| 3367 | * This function artificially throws errors for such cases (whitelisted). |
||
| 3368 | * |
||
| 3369 | * @param string $plugin The activated plugin. |
||
| 3370 | */ |
||
| 3371 | function throw_error_on_activate_plugin( $plugin ) { |
||
| 3395 | |||
| 3396 | function intercept_plugin_error_scrape_init() { |
||
| 3399 | |||
| 3400 | function intercept_plugin_error_scrape( $action, $result ) { |
||
| 3411 | |||
| 3412 | function add_remote_request_handlers() { |
||
| 3416 | |||
| 3417 | function remote_request_handlers() { |
||
| 3457 | |||
| 3458 | /** |
||
| 3459 | * Uploads a file gotten from the global $_FILES. |
||
| 3460 | * If `$update_media_item` is true and `post_id` is defined |
||
| 3461 | * the attachment file of the media item (gotten through of the post_id) |
||
| 3462 | * will be updated instead of add a new one. |
||
| 3463 | * |
||
| 3464 | * @param boolean $update_media_item - update media attachment |
||
| 3465 | * @return array - An array describing the uploadind files process |
||
| 3466 | */ |
||
| 3467 | function upload_handler( $update_media_item = false ) { |
||
| 3589 | |||
| 3590 | /** |
||
| 3591 | * Add help to the Jetpack page |
||
| 3592 | * |
||
| 3593 | * @since Jetpack (1.2.3) |
||
| 3594 | * @return false if not the Jetpack page |
||
| 3595 | */ |
||
| 3596 | function admin_help() { |
||
| 3637 | |||
| 3638 | function admin_menu_css() { |
||
| 3641 | |||
| 3642 | function admin_menu_order() { |
||
| 3645 | |||
| 3646 | View Code Duplication | function jetpack_menu_order( $menu_order ) { |
|
| 3661 | |||
| 3662 | function admin_head() { |
||
| 3667 | |||
| 3668 | function admin_banner_styles() { |
||
| 3689 | |||
| 3690 | function plugin_action_links( $actions ) { |
||
| 3705 | |||
| 3706 | /** |
||
| 3707 | * This is the first banner |
||
| 3708 | * It should be visible only to user that can update the option |
||
| 3709 | * Are not connected |
||
| 3710 | * |
||
| 3711 | * @return null |
||
| 3712 | */ |
||
| 3713 | function admin_jetpack_manage_notice() { |
||
| 3743 | |||
| 3744 | /** |
||
| 3745 | * Returns the url that the user clicks to remove the notice for the big banner |
||
| 3746 | * @return string |
||
| 3747 | */ |
||
| 3748 | function opt_out_jetpack_manage_url() { |
||
| 3752 | /** |
||
| 3753 | * Returns the url that the user clicks to opt in to Jetpack Manage |
||
| 3754 | * @return string |
||
| 3755 | */ |
||
| 3756 | function opt_in_jetpack_manage_url() { |
||
| 3759 | |||
| 3760 | function opt_in_jetpack_manage_notice() { |
||
| 3770 | /** |
||
| 3771 | * Determines whether to show the notice of not true = display notice |
||
| 3772 | * @return bool |
||
| 3773 | */ |
||
| 3774 | function can_display_jetpack_manage_notice() { |
||
| 3796 | |||
| 3797 | /* |
||
| 3798 | * Registration flow: |
||
| 3799 | * 1 - ::admin_page_load() action=register |
||
| 3800 | * 2 - ::try_registration() |
||
| 3801 | * 3 - ::register() |
||
| 3802 | * - Creates jetpack_register option containing two secrets and a timestamp |
||
| 3803 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with |
||
| 3804 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id |
||
| 3805 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's |
||
| 3806 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 |
||
| 3807 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 |
||
| 3808 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with |
||
| 3809 | * jetpack_id, jetpack_secret, jetpack_public |
||
| 3810 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret |
||
| 3811 | * 4 - redirect to https://wordpress.com/start/jetpack-connect |
||
| 3812 | * 5 - user logs in with WP.com account |
||
| 3813 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize |
||
| 3814 | * - Jetpack_Client_Server::authorize() |
||
| 3815 | * - Jetpack_Client_Server::get_token() |
||
| 3816 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with |
||
| 3817 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login |
||
| 3818 | * - which responds with access_token, token_type, scope |
||
| 3819 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id |
||
| 3820 | * - Jetpack::activate_default_modules() |
||
| 3821 | * - Deactivates deprecated plugins |
||
| 3822 | * - Activates all default modules |
||
| 3823 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users |
||
| 3824 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com |
||
| 3825 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized |
||
| 3826 | * Done! |
||
| 3827 | */ |
||
| 3828 | |||
| 3829 | /** |
||
| 3830 | * Handles the page load events for the Jetpack admin page |
||
| 3831 | */ |
||
| 3832 | function admin_page_load() { |
||
| 4069 | |||
| 4070 | function admin_notices() { |
||
| 4167 | |||
| 4168 | /** |
||
| 4169 | * Record a stat for later output. This will only currently output in the admin_footer. |
||
| 4170 | */ |
||
| 4171 | function stat( $group, $detail ) { |
||
| 4176 | |||
| 4177 | /** |
||
| 4178 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" |
||
| 4179 | */ |
||
| 4180 | function do_stats( $method = '' ) { |
||
| 4195 | |||
| 4196 | /** |
||
| 4197 | * Runs stats code for a one-off, server-side. |
||
| 4198 | * |
||
| 4199 | * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. |
||
| 4200 | * |
||
| 4201 | * @return bool If it worked. |
||
| 4202 | */ |
||
| 4203 | static function do_server_side_stat( $args ) { |
||
| 4213 | |||
| 4214 | /** |
||
| 4215 | * Builds the stats url. |
||
| 4216 | * |
||
| 4217 | * @param $args array|string The arguments to append to the URL. |
||
| 4218 | * |
||
| 4219 | * @return string The URL to be pinged. |
||
| 4220 | */ |
||
| 4221 | static function build_stats_url( $args ) { |
||
| 4241 | |||
| 4242 | static function translate_current_user_to_role() { |
||
| 4251 | |||
| 4252 | static function translate_user_to_role( $user ) { |
||
| 4261 | |||
| 4262 | static function translate_role_to_cap( $role ) { |
||
| 4269 | |||
| 4270 | static function sign_role( $role, $user_id = null ) { |
||
| 4286 | |||
| 4287 | |||
| 4288 | /** |
||
| 4289 | * Builds a URL to the Jetpack connection auth page |
||
| 4290 | * |
||
| 4291 | * @since 3.9.5 |
||
| 4292 | * |
||
| 4293 | * @param bool $raw If true, URL will not be escaped. |
||
| 4294 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. |
||
| 4295 | * If string, will be a custom redirect. |
||
| 4296 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. |
||
| 4297 | * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0 |
||
| 4298 | * |
||
| 4299 | * @return string Connect URL |
||
| 4300 | */ |
||
| 4301 | function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) { |
||
| 4422 | |||
| 4423 | public static function apply_activation_source_to_args( &$args ) { |
||
| 4434 | |||
| 4435 | function build_reconnect_url( $raw = false ) { |
||
| 4439 | |||
| 4440 | public static function admin_url( $args = null ) { |
||
| 4445 | |||
| 4446 | public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { |
||
| 4450 | |||
| 4451 | function dismiss_jetpack_notice() { |
||
| 4525 | |||
| 4526 | public static function admin_screen_configure_module( $module_id ) { |
||
| 4578 | |||
| 4579 | /** |
||
| 4580 | * Display link to activate the module to see the settings screen. |
||
| 4581 | * @param string $module_id |
||
| 4582 | * @return null |
||
| 4583 | */ |
||
| 4584 | public static function display_activate_module_link( $module_id ) { |
||
| 4636 | |||
| 4637 | public static function sort_modules( $a, $b ) { |
||
| 4643 | |||
| 4644 | function ajax_recheck_ssl() { |
||
| 4652 | |||
| 4653 | /* Client API */ |
||
| 4654 | |||
| 4655 | /** |
||
| 4656 | * Returns the requested Jetpack API URL |
||
| 4657 | * |
||
| 4658 | * @return string |
||
| 4659 | */ |
||
| 4660 | public static function api_url( $relative_url ) { |
||
| 4663 | |||
| 4664 | /** |
||
| 4665 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets |
||
| 4666 | */ |
||
| 4667 | public static function fix_url_for_bad_hosts( $url ) { |
||
| 4683 | |||
| 4684 | /** |
||
| 4685 | * Checks to see if the URL is using SSL to connect with Jetpack |
||
| 4686 | * |
||
| 4687 | * @since 2.3.3 |
||
| 4688 | * @return boolean |
||
| 4689 | */ |
||
| 4690 | public static function permit_ssl( $force_recheck = false ) { |
||
| 4732 | |||
| 4733 | /* |
||
| 4734 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. |
||
| 4735 | */ |
||
| 4736 | public function alert_auto_ssl_fail() { |
||
| 4785 | |||
| 4786 | /** |
||
| 4787 | * Returns the Jetpack XML-RPC API |
||
| 4788 | * |
||
| 4789 | * @return string |
||
| 4790 | */ |
||
| 4791 | public static function xmlrpc_api_url() { |
||
| 4795 | |||
| 4796 | /** |
||
| 4797 | * Creates two secret tokens and the end of life timestamp for them. |
||
| 4798 | * |
||
| 4799 | * Note these tokens are unique per call, NOT static per site for connecting. |
||
| 4800 | * |
||
| 4801 | * @since 2.6 |
||
| 4802 | * @return array |
||
| 4803 | */ |
||
| 4804 | public static function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
||
| 4830 | |||
| 4831 | public static function get_secrets( $action, $user_id ) { |
||
| 4846 | |||
| 4847 | public static function delete_secrets( $action, $user_id ) { |
||
| 4855 | |||
| 4856 | /** |
||
| 4857 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
| 4858 | * |
||
| 4859 | * Based on local php max_execution_time in php.ini |
||
| 4860 | * |
||
| 4861 | * @since 2.6 |
||
| 4862 | * @return int |
||
| 4863 | **/ |
||
| 4864 | public function get_remote_query_timeout_limit() { |
||
| 4870 | |||
| 4871 | |||
| 4872 | /** |
||
| 4873 | * Takes the response from the Jetpack register new site endpoint and |
||
| 4874 | * verifies it worked properly. |
||
| 4875 | * |
||
| 4876 | * @since 2.6 |
||
| 4877 | * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures |
||
| 4878 | **/ |
||
| 4879 | public function validate_remote_register_response( $response ) { |
||
| 4919 | /** |
||
| 4920 | * @return bool|WP_Error |
||
| 4921 | */ |
||
| 4922 | public static function register() { |
||
| 5024 | |||
| 5025 | /** |
||
| 5026 | * If the db version is showing something other that what we've got now, bump it to current. |
||
| 5027 | * |
||
| 5028 | * @return bool: True if the option was incorrect and updated, false if nothing happened. |
||
| 5029 | */ |
||
| 5030 | public static function maybe_set_version_option() { |
||
| 5044 | |||
| 5045 | /* Client Server API */ |
||
| 5046 | |||
| 5047 | /** |
||
| 5048 | * Loads the Jetpack XML-RPC client |
||
| 5049 | */ |
||
| 5050 | public static function load_xml_rpc_client() { |
||
| 5054 | |||
| 5055 | /** |
||
| 5056 | * Resets the saved authentication state in between testing requests. |
||
| 5057 | */ |
||
| 5058 | public function reset_saved_auth_state() { |
||
| 5062 | |||
| 5063 | function verify_xml_rpc_signature() { |
||
| 5162 | |||
| 5163 | /** |
||
| 5164 | * Authenticates XML-RPC and other requests from the Jetpack Server |
||
| 5165 | */ |
||
| 5166 | function authenticate_jetpack( $user, $username, $password ) { |
||
| 5189 | |||
| 5190 | // Authenticates requests from Jetpack server to WP REST API endpoints. |
||
| 5191 | // Uses the existing XMLRPC request signing implementation. |
||
| 5192 | function wp_rest_authenticate( $user ) { |
||
| 5286 | |||
| 5287 | /** |
||
| 5288 | * Report authentication status to the WP REST API. |
||
| 5289 | * |
||
| 5290 | * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
||
| 5291 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
||
| 5292 | */ |
||
| 5293 | public function wp_rest_authentication_errors( $value ) { |
||
| 5299 | |||
| 5300 | function add_nonce( $timestamp, $nonce ) { |
||
| 5338 | |||
| 5339 | /** |
||
| 5340 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
||
| 5341 | * Capture it here so we can verify the signature later. |
||
| 5342 | */ |
||
| 5343 | function xmlrpc_methods( $methods ) { |
||
| 5347 | |||
| 5348 | function public_xmlrpc_methods( $methods ) { |
||
| 5354 | |||
| 5355 | function jetpack_getOptions( $args ) { |
||
| 5395 | |||
| 5396 | function xmlrpc_options( $options ) { |
||
| 5414 | |||
| 5415 | public static function clean_nonces( $all = false ) { |
||
| 5436 | |||
| 5437 | /** |
||
| 5438 | * State is passed via cookies from one request to the next, but never to subsequent requests. |
||
| 5439 | * SET: state( $key, $value ); |
||
| 5440 | * GET: $value = state( $key ); |
||
| 5441 | * |
||
| 5442 | * @param string $key |
||
| 5443 | * @param string $value |
||
| 5444 | * @param bool $restate private |
||
| 5445 | */ |
||
| 5446 | public static function state( $key = null, $value = null, $restate = false ) { |
||
| 5496 | |||
| 5497 | public static function restate() { |
||
| 5500 | |||
| 5501 | public static function check_privacy( $file ) { |
||
| 5536 | |||
| 5537 | /** |
||
| 5538 | * Helper method for multicall XMLRPC. |
||
| 5539 | */ |
||
| 5540 | public static function xmlrpc_async_call() { |
||
| 5582 | |||
| 5583 | public static function staticize_subdomain( $url ) { |
||
| 5618 | |||
| 5619 | /* JSON API Authorization */ |
||
| 5620 | |||
| 5621 | /** |
||
| 5622 | * Handles the login action for Authorizing the JSON API |
||
| 5623 | */ |
||
| 5624 | function login_form_json_api_authorization() { |
||
| 5633 | |||
| 5634 | // Make sure the login form is POSTed to the signed URL so we can reverify the request |
||
| 5635 | function post_login_form_to_signed_url( $url, $path, $scheme ) { |
||
| 5648 | |||
| 5649 | // Make sure the POSTed request is handled by the same action |
||
| 5650 | function preserve_action_in_login_form_for_json_api_authorization() { |
||
| 5654 | |||
| 5655 | // If someone logs in to approve API access, store the Access Code in usermeta |
||
| 5656 | function store_json_api_authorization_token( $user_login, $user ) { |
||
| 5662 | |||
| 5663 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access |
||
| 5664 | function allow_wpcom_public_api_domain( $domains ) { |
||
| 5668 | |||
| 5669 | // Add the Access Code details to the public-api.wordpress.com redirect |
||
| 5670 | function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { |
||
| 5682 | |||
| 5683 | |||
| 5684 | /** |
||
| 5685 | * Verifies the request by checking the signature |
||
| 5686 | * |
||
| 5687 | * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow |
||
| 5688 | * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO. |
||
| 5689 | * |
||
| 5690 | * @param null|array $environment |
||
| 5691 | */ |
||
| 5692 | function verify_json_api_authorization_request( $environment = null ) { |
||
| 5785 | |||
| 5786 | function login_message_json_api_authorization( $message ) { |
||
| 5792 | |||
| 5793 | /** |
||
| 5794 | * Get $content_width, but with a <s>twist</s> filter. |
||
| 5795 | */ |
||
| 5796 | public static function get_content_width() { |
||
| 5807 | |||
| 5808 | /** |
||
| 5809 | * Pings the WordPress.com Mirror Site for the specified options. |
||
| 5810 | * |
||
| 5811 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site |
||
| 5812 | * |
||
| 5813 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site |
||
| 5814 | */ |
||
| 5815 | public function get_cloud_site_options( $option_names ) { |
||
| 5831 | |||
| 5832 | /** |
||
| 5833 | * Checks if the site is currently in an identity crisis. |
||
| 5834 | * |
||
| 5835 | * @return array|bool Array of options that are in a crisis, or false if everything is OK. |
||
| 5836 | */ |
||
| 5837 | public static function check_identity_crisis() { |
||
| 5844 | |||
| 5845 | /** |
||
| 5846 | * Checks whether the home and siteurl specifically are whitelisted |
||
| 5847 | * Written so that we don't have re-check $key and $value params every time |
||
| 5848 | * we want to check if this site is whitelisted, for example in footer.php |
||
| 5849 | * |
||
| 5850 | * @since 3.8.0 |
||
| 5851 | * @return bool True = already whitelisted False = not whitelisted |
||
| 5852 | */ |
||
| 5853 | public static function is_staging_site() { |
||
| 5912 | |||
| 5913 | /** |
||
| 5914 | * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup. |
||
| 5915 | * |
||
| 5916 | * @return bool |
||
| 5917 | */ |
||
| 5918 | public static function validate_sync_error_idc_option() { |
||
| 5962 | |||
| 5963 | /** |
||
| 5964 | * Normalizes a url by doing three things: |
||
| 5965 | * - Strips protocol |
||
| 5966 | * - Strips www |
||
| 5967 | * - Adds a trailing slash |
||
| 5968 | * |
||
| 5969 | * @since 4.4.0 |
||
| 5970 | * @param string $url |
||
| 5971 | * @return WP_Error|string |
||
| 5972 | */ |
||
| 5973 | public static function normalize_url_protocol_agnostic( $url ) { |
||
| 5983 | |||
| 5984 | /** |
||
| 5985 | * Gets the value that is to be saved in the jetpack_sync_error_idc option. |
||
| 5986 | * |
||
| 5987 | * @since 4.4.0 |
||
| 5988 | * |
||
| 5989 | * @param array $response |
||
| 5990 | * @return array Array of the local urls, wpcom urls, and error code |
||
| 5991 | */ |
||
| 5992 | public static function get_sync_error_idc_option( $response = array() ) { |
||
| 6017 | |||
| 6018 | /** |
||
| 6019 | * Returns the value of the jetpack_sync_idc_optin filter, or constant. |
||
| 6020 | * If set to true, the site will be put into staging mode. |
||
| 6021 | * |
||
| 6022 | * @since 4.3.2 |
||
| 6023 | * @return bool |
||
| 6024 | */ |
||
| 6025 | public static function sync_idc_optin() { |
||
| 6043 | |||
| 6044 | /** |
||
| 6045 | * Maybe Use a .min.css stylesheet, maybe not. |
||
| 6046 | * |
||
| 6047 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. |
||
| 6048 | */ |
||
| 6049 | public static function maybe_min_asset( $url, $path, $plugin ) { |
||
| 6091 | |||
| 6092 | /** |
||
| 6093 | * If the asset is minified, let's flag .min as the suffix. |
||
| 6094 | * |
||
| 6095 | * Attached to `style_loader_src` filter. |
||
| 6096 | * |
||
| 6097 | * @param string $tag The tag that would link to the external asset. |
||
| 6098 | * @param string $handle The registered handle of the script in question. |
||
| 6099 | * @param string $href The url of the asset in question. |
||
| 6100 | */ |
||
| 6101 | public static function set_suffix_on_min( $src, $handle ) { |
||
| 6117 | |||
| 6118 | /** |
||
| 6119 | * Maybe inlines a stylesheet. |
||
| 6120 | * |
||
| 6121 | * If you'd like to inline a stylesheet instead of printing a link to it, |
||
| 6122 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); |
||
| 6123 | * |
||
| 6124 | * Attached to `style_loader_tag` filter. |
||
| 6125 | * |
||
| 6126 | * @param string $tag The tag that would link to the external asset. |
||
| 6127 | * @param string $handle The registered handle of the script in question. |
||
| 6128 | * |
||
| 6129 | * @return string |
||
| 6130 | */ |
||
| 6131 | public static function maybe_inline_style( $tag, $handle ) { |
||
| 6181 | |||
| 6182 | /** |
||
| 6183 | * Loads a view file from the views |
||
| 6184 | * |
||
| 6185 | * Data passed in with the $data parameter will be available in the |
||
| 6186 | * template file as $data['value'] |
||
| 6187 | * |
||
| 6188 | * @param string $template - Template file to load |
||
| 6189 | * @param array $data - Any data to pass along to the template |
||
| 6190 | * @return boolean - If template file was found |
||
| 6191 | **/ |
||
| 6192 | public function load_view( $template, $data = array() ) { |
||
| 6203 | |||
| 6204 | /** |
||
| 6205 | * Throws warnings for deprecated hooks to be removed from Jetpack |
||
| 6206 | */ |
||
| 6207 | public function deprecated_hooks() { |
||
| 6257 | |||
| 6258 | /** |
||
| 6259 | * Converts any url in a stylesheet, to the correct absolute url. |
||
| 6260 | * |
||
| 6261 | * Considerations: |
||
| 6262 | * - Normal, relative URLs `feh.png` |
||
| 6263 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` |
||
| 6264 | * - Schema-agnostic URLs `//domain.com/feh.png` |
||
| 6265 | * - Absolute URLs `http://domain.com/feh.png` |
||
| 6266 | * - Domain root relative URLs `/feh.png` |
||
| 6267 | * |
||
| 6268 | * @param $css string: The raw CSS -- should be read in directly from the file. |
||
| 6269 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
||
| 6270 | * |
||
| 6271 | * @return mixed|string |
||
| 6272 | */ |
||
| 6273 | public static function absolutize_css_urls( $css, $css_file_url ) { |
||
| 6317 | |||
| 6318 | /** |
||
| 6319 | * This methods removes all of the registered css files on the front end |
||
| 6320 | * from Jetpack in favor of using a single file. In effect "imploding" |
||
| 6321 | * all the files into one file. |
||
| 6322 | * |
||
| 6323 | * Pros: |
||
| 6324 | * - Uses only ONE css asset connection instead of 15 |
||
| 6325 | * - Saves a minimum of 56k |
||
| 6326 | * - Reduces server load |
||
| 6327 | * - Reduces time to first painted byte |
||
| 6328 | * |
||
| 6329 | * Cons: |
||
| 6330 | * - Loads css for ALL modules. However all selectors are prefixed so it |
||
| 6331 | * should not cause any issues with themes. |
||
| 6332 | * - Plugins/themes dequeuing styles no longer do anything. See |
||
| 6333 | * jetpack_implode_frontend_css filter for a workaround |
||
| 6334 | * |
||
| 6335 | * For some situations developers may wish to disable css imploding and |
||
| 6336 | * instead operate in legacy mode where each file loads seperately and |
||
| 6337 | * can be edited individually or dequeued. This can be accomplished with |
||
| 6338 | * the following line: |
||
| 6339 | * |
||
| 6340 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); |
||
| 6341 | * |
||
| 6342 | * @since 3.2 |
||
| 6343 | **/ |
||
| 6344 | public function implode_frontend_css( $travis_test = false ) { |
||
| 6396 | |||
| 6397 | function concat_remove_style_loader_tag( $tag, $handle ) { |
||
| 6407 | |||
| 6408 | /* |
||
| 6409 | * Check the heartbeat data |
||
| 6410 | * |
||
| 6411 | * Organizes the heartbeat data by severity. For example, if the site |
||
| 6412 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. |
||
| 6413 | * |
||
| 6414 | * Data will be added to "caution" array, if it either: |
||
| 6415 | * - Out of date Jetpack version |
||
| 6416 | * - Out of date WP version |
||
| 6417 | * - Out of date PHP version |
||
| 6418 | * |
||
| 6419 | * $return array $filtered_data |
||
| 6420 | */ |
||
| 6421 | public static function jetpack_check_heartbeat_data() { |
||
| 6474 | |||
| 6475 | |||
| 6476 | /* |
||
| 6477 | * This method is used to organize all options that can be reset |
||
| 6478 | * without disconnecting Jetpack. |
||
| 6479 | * |
||
| 6480 | * It is used in class.jetpack-cli.php to reset options |
||
| 6481 | * |
||
| 6482 | * @return array of options to delete. |
||
| 6483 | */ |
||
| 6484 | public static function get_jetpack_options_for_reset() { |
||
| 6551 | |||
| 6552 | /** |
||
| 6553 | * Check if an option of a Jetpack module has been updated. |
||
| 6554 | * |
||
| 6555 | * If any module option has been updated before Jump Start has been dismissed, |
||
| 6556 | * update the 'jumpstart' option so we can hide Jump Start. |
||
| 6557 | * |
||
| 6558 | * @param string $option_name |
||
| 6559 | * |
||
| 6560 | * @return bool |
||
| 6561 | */ |
||
| 6562 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
||
| 6583 | |||
| 6584 | /* |
||
| 6585 | * Strip http:// or https:// from a url, replaces forward slash with ::, |
||
| 6586 | * so we can bring them directly to their site in calypso. |
||
| 6587 | * |
||
| 6588 | * @param string | url |
||
| 6589 | * @return string | url without the guff |
||
| 6590 | */ |
||
| 6591 | public static function build_raw_urls( $url ) { |
||
| 6597 | |||
| 6598 | /** |
||
| 6599 | * Stores and prints out domains to prefetch for page speed optimization. |
||
| 6600 | * |
||
| 6601 | * @param mixed $new_urls |
||
| 6602 | */ |
||
| 6603 | public static function dns_prefetch( $new_urls = null ) { |
||
| 6620 | |||
| 6621 | public function wp_dashboard_setup() { |
||
| 6646 | |||
| 6647 | /** |
||
| 6648 | * @param mixed $result Value for the user's option |
||
| 6649 | * @return mixed |
||
| 6650 | */ |
||
| 6651 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
||
| 6676 | |||
| 6677 | public static function dashboard_widget() { |
||
| 6685 | |||
| 6686 | public static function dashboard_widget_footer() { |
||
| 6719 | |||
| 6720 | /** |
||
| 6721 | * Return string containing the Jetpack logo. |
||
| 6722 | * |
||
| 6723 | * @since 3.9.0 |
||
| 6724 | * |
||
| 6725 | * @return string |
||
| 6726 | */ |
||
| 6727 | public static function get_jp_emblem() { |
||
| 6730 | |||
| 6731 | /* |
||
| 6732 | * Adds a "blank" column in the user admin table to display indication of user connection. |
||
| 6733 | */ |
||
| 6734 | function jetpack_icon_user_connected( $columns ) { |
||
| 6738 | |||
| 6739 | /* |
||
| 6740 | * Show Jetpack icon if the user is linked. |
||
| 6741 | */ |
||
| 6742 | function jetpack_show_user_connected_icon( $val, $col, $user_id ) { |
||
| 6754 | |||
| 6755 | /* |
||
| 6756 | * Style the Jetpack user column |
||
| 6757 | */ |
||
| 6758 | function jetpack_user_col_style() { |
||
| 6775 | |||
| 6776 | /** |
||
| 6777 | * Checks if Akismet is active and working. |
||
| 6778 | * |
||
| 6779 | * @since 5.1.0 |
||
| 6780 | * @return bool True = Akismet available. False = Aksimet not available. |
||
| 6781 | */ |
||
| 6782 | public static function is_akismet_active() { |
||
| 6788 | |||
| 6789 | /** |
||
| 6790 | * Checks if one or more function names is in debug_backtrace |
||
| 6791 | * |
||
| 6792 | * @param $names Mixed string name of function or array of string names of functions |
||
| 6793 | * |
||
| 6794 | * @return bool |
||
| 6795 | */ |
||
| 6796 | public static function is_function_in_backtrace( $names ) { |
||
| 6819 | } |
||
| 6820 |
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.