Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Jetpack often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Jetpack, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | class Jetpack { |
||
| 26 | public $xmlrpc_server = null; |
||
| 27 | |||
| 28 | private $xmlrpc_verification = null; |
||
| 29 | |||
| 30 | public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA'] |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var array The handles of styles that are concatenated into jetpack.css |
||
| 34 | */ |
||
| 35 | public $concatenated_style_handles = array( |
||
| 36 | 'jetpack-carousel', |
||
| 37 | 'grunion.css', |
||
| 38 | 'the-neverending-homepage', |
||
| 39 | 'jetpack_likes', |
||
| 40 | 'jetpack_related-posts', |
||
| 41 | 'sharedaddy', |
||
| 42 | 'jetpack-slideshow', |
||
| 43 | 'presentations', |
||
| 44 | 'jetpack-subscriptions', |
||
| 45 | 'tiled-gallery', |
||
| 46 | 'widget-conditions', |
||
| 47 | 'jetpack_display_posts_widget', |
||
| 48 | 'gravatar-profile-widget', |
||
| 49 | 'widget-grid-and-list', |
||
| 50 | 'jetpack-widgets', |
||
| 51 | 'goodreads-widget', |
||
| 52 | 'jetpack_social_media_icons_widget', |
||
| 53 | ); |
||
| 54 | |||
| 55 | public $plugins_to_deactivate = array( |
||
| 56 | 'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
| 57 | 'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ), |
||
| 58 | 'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), |
||
| 59 | 'twitter-widget' => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ), |
||
| 60 | 'after-the-deadline' => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ), |
||
| 61 | 'contact-form' => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ), |
||
| 62 | 'contact-form' => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ), |
||
| 63 | 'custom-css' => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ), |
||
| 64 | 'random-redirect' => array( 'random-redirect/random-redirect.php', 'Random Redirect' ), |
||
| 65 | 'videopress' => array( 'video/video.php', 'VideoPress' ), |
||
| 66 | 'widget-visibility' => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ), |
||
| 67 | 'widget-visibility' => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ), |
||
| 68 | 'sharedaddy' => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), |
||
| 69 | 'omnisearch' => array( 'jetpack-omnisearch/omnisearch.php', 'Jetpack Omnisearch' ), |
||
| 70 | 'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ), |
||
| 71 | 'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' ) |
||
| 72 | ); |
||
| 73 | |||
| 74 | static $capability_translations = array( |
||
|
|
|||
| 75 | 'administrator' => 'manage_options', |
||
| 76 | 'editor' => 'edit_others_posts', |
||
| 77 | 'author' => 'publish_posts', |
||
| 78 | 'contributor' => 'edit_posts', |
||
| 79 | 'subscriber' => 'read', |
||
| 80 | ); |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Map of modules that have conflicts with plugins and should not be auto-activated |
||
| 84 | * if the plugins are active. Used by filter_default_modules |
||
| 85 | * |
||
| 86 | * Plugin Authors: If you'd like to prevent a single module from auto-activating, |
||
| 87 | * change `module-slug` and add this to your plugin: |
||
| 88 | * |
||
| 89 | * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' ); |
||
| 90 | * function my_jetpack_get_default_modules( $modules ) { |
||
| 91 | * return array_diff( $modules, array( 'module-slug' ) ); |
||
| 92 | * } |
||
| 93 | * |
||
| 94 | * @var array |
||
| 95 | */ |
||
| 96 | private $conflicting_plugins = array( |
||
| 97 | 'comments' => array( |
||
| 98 | 'Intense Debate' => 'intensedebate/intensedebate.php', |
||
| 99 | 'Disqus' => 'disqus-comment-system/disqus.php', |
||
| 100 | 'Livefyre' => 'livefyre-comments/livefyre.php', |
||
| 101 | 'Comments Evolved for WordPress' => 'gplus-comments/comments-evolved.php', |
||
| 102 | 'Google+ Comments' => 'google-plus-comments/google-plus-comments.php', |
||
| 103 | 'WP-SpamShield Anti-Spam' => 'wp-spamshield/wp-spamshield.php', |
||
| 104 | ), |
||
| 105 | 'contact-form' => array( |
||
| 106 | 'Contact Form 7' => 'contact-form-7/wp-contact-form-7.php', |
||
| 107 | 'Gravity Forms' => 'gravityforms/gravityforms.php', |
||
| 108 | 'Contact Form Plugin' => 'contact-form-plugin/contact_form.php', |
||
| 109 | 'Easy Contact Forms' => 'easy-contact-forms/easy-contact-forms.php', |
||
| 110 | 'Fast Secure Contact Form' => 'si-contact-form/si-contact-form.php', |
||
| 111 | ), |
||
| 112 | 'minileven' => array( |
||
| 113 | 'WPtouch' => 'wptouch/wptouch.php', |
||
| 114 | ), |
||
| 115 | 'latex' => array( |
||
| 116 | 'LaTeX for WordPress' => 'latex/latex.php', |
||
| 117 | 'Youngwhans Simple Latex' => 'youngwhans-simple-latex/yw-latex.php', |
||
| 118 | 'Easy WP LaTeX' => 'easy-wp-latex-lite/easy-wp-latex-lite.php', |
||
| 119 | 'MathJax-LaTeX' => 'mathjax-latex/mathjax-latex.php', |
||
| 120 | 'Enable Latex' => 'enable-latex/enable-latex.php', |
||
| 121 | 'WP QuickLaTeX' => 'wp-quicklatex/wp-quicklatex.php', |
||
| 122 | ), |
||
| 123 | 'protect' => array( |
||
| 124 | 'Limit Login Attempts' => 'limit-login-attempts/limit-login-attempts.php', |
||
| 125 | 'Captcha' => 'captcha/captcha.php', |
||
| 126 | 'Brute Force Login Protection' => 'brute-force-login-protection/brute-force-login-protection.php', |
||
| 127 | 'Login Security Solution' => 'login-security-solution/login-security-solution.php', |
||
| 128 | 'WPSecureOps Brute Force Protect' => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php', |
||
| 129 | 'BulletProof Security' => 'bulletproof-security/bulletproof-security.php', |
||
| 130 | 'SiteGuard WP Plugin' => 'siteguard/siteguard.php', |
||
| 131 | 'Security-protection' => 'security-protection/security-protection.php', |
||
| 132 | 'Login Security' => 'login-security/login-security.php', |
||
| 133 | 'Botnet Attack Blocker' => 'botnet-attack-blocker/botnet-attack-blocker.php', |
||
| 134 | 'Wordfence Security' => 'wordfence/wordfence.php', |
||
| 135 | 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', |
||
| 136 | 'iThemes Security' => 'better-wp-security/better-wp-security.php', |
||
| 137 | ), |
||
| 138 | 'random-redirect' => array( |
||
| 139 | 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', |
||
| 140 | ), |
||
| 141 | 'related-posts' => array( |
||
| 142 | 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', |
||
| 143 | 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', |
||
| 144 | 'nrelate Related Content' => 'nrelate-related-content/nrelate-related.php', |
||
| 145 | 'Contextual Related Posts' => 'contextual-related-posts/contextual-related-posts.php', |
||
| 146 | 'Related Posts for WordPress' => 'microkids-related-posts/microkids-related-posts.php', |
||
| 147 | 'outbrain' => 'outbrain/outbrain.php', |
||
| 148 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
| 149 | 'Sexybookmarks' => 'sexybookmarks/shareaholic.php', |
||
| 150 | ), |
||
| 151 | 'sharedaddy' => array( |
||
| 152 | 'AddThis' => 'addthis/addthis_social_widget.php', |
||
| 153 | 'Add To Any' => 'add-to-any/add-to-any.php', |
||
| 154 | 'ShareThis' => 'share-this/sharethis.php', |
||
| 155 | 'Shareaholic' => 'shareaholic/shareaholic.php', |
||
| 156 | ), |
||
| 157 | 'verification-tools' => array( |
||
| 158 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
| 159 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
| 160 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
| 161 | ), |
||
| 162 | 'widget-visibility' => array( |
||
| 163 | 'Widget Logic' => 'widget-logic/widget_logic.php', |
||
| 164 | 'Dynamic Widgets' => 'dynamic-widgets/dynamic-widgets.php', |
||
| 165 | ), |
||
| 166 | 'sitemaps' => array( |
||
| 167 | 'Google XML Sitemaps' => 'google-sitemap-generator/sitemap.php', |
||
| 168 | 'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php', |
||
| 169 | 'Google XML Sitemaps for qTranslate' => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php', |
||
| 170 | 'XML Sitemap & Google News feeds' => 'xml-sitemap-feed/xml-sitemap.php', |
||
| 171 | 'Google Sitemap by BestWebSoft' => 'google-sitemap-plugin/google-sitemap-plugin.php', |
||
| 172 | 'WordPress SEO by Yoast' => 'wordpress-seo/wp-seo.php', |
||
| 173 | 'WordPress SEO Premium by Yoast' => 'wordpress-seo-premium/wp-seo-premium.php', |
||
| 174 | 'All in One SEO Pack' => 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
||
| 175 | 'Sitemap' => 'sitemap/sitemap.php', |
||
| 176 | 'Simple Wp Sitemap' => 'simple-wp-sitemap/simple-wp-sitemap.php', |
||
| 177 | 'Simple Sitemap' => 'simple-sitemap/simple-sitemap.php', |
||
| 178 | 'XML Sitemaps' => 'xml-sitemaps/xml-sitemaps.php', |
||
| 179 | 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php', |
||
| 180 | ), |
||
| 181 | ); |
||
| 182 | |||
| 183 | /** |
||
| 184 | * Plugins for which we turn off our Facebook OG Tags implementation. |
||
| 185 | * |
||
| 186 | * Note: WordPress SEO by Yoast and WordPress SEO Premium by Yoast automatically deactivate |
||
| 187 | * Jetpack's Open Graph tags via filter when their Social Meta modules are active. |
||
| 188 | * |
||
| 189 | * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: |
||
| 190 | * add_filter( 'jetpack_enable_open_graph', '__return_false' ); |
||
| 191 | */ |
||
| 192 | private $open_graph_conflicting_plugins = array( |
||
| 193 | '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php', |
||
| 194 | // 2 Click Social Media Buttons |
||
| 195 | 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook |
||
| 196 | 'add-meta-tags/add-meta-tags.php', // Add Meta Tags |
||
| 197 | 'autodescription/autodescription.php', // The SEO Framework |
||
| 198 | 'easy-facebook-share-thumbnails/esft.php', // Easy Facebook Share Thumbnail |
||
| 199 | 'facebook/facebook.php', // Facebook (official plugin) |
||
| 200 | 'facebook-awd/AWD_facebook.php', // Facebook AWD All in one |
||
| 201 | 'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php', |
||
| 202 | // Facebook Featured Image & OG Meta Tags |
||
| 203 | 'facebook-meta-tags/facebook-metatags.php', // Facebook Meta Tags |
||
| 204 | 'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php', |
||
| 205 | // Facebook Open Graph Meta Tags for WordPress |
||
| 206 | 'facebook-revised-open-graph-meta-tag/index.php', // Facebook Revised Open Graph Meta Tag |
||
| 207 | 'facebook-thumb-fixer/_facebook-thumb-fixer.php', // Facebook Thumb Fixer |
||
| 208 | 'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php', |
||
| 209 | // Fedmich's Facebook Open Graph Meta |
||
| 210 | 'header-footer/plugin.php', // Header and Footer |
||
| 211 | 'network-publisher/networkpub.php', // Network Publisher |
||
| 212 | 'nextgen-facebook/nextgen-facebook.php', // NextGEN Facebook OG |
||
| 213 | 'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php', |
||
| 214 | // NextScripts SNAP |
||
| 215 | 'opengraph/opengraph.php', // Open Graph |
||
| 216 | 'open-graph-protocol-framework/open-graph-protocol-framework.php', |
||
| 217 | // Open Graph Protocol Framework |
||
| 218 | 'seo-facebook-comments/seofacebook.php', // SEO Facebook Comments |
||
| 219 | 'seo-ultimate/seo-ultimate.php', // SEO Ultimate |
||
| 220 | 'sexybookmarks/sexy-bookmarks.php', // Shareaholic |
||
| 221 | 'shareaholic/sexy-bookmarks.php', // Shareaholic |
||
| 222 | 'sharepress/sharepress.php', // SharePress |
||
| 223 | 'simple-facebook-connect/sfc.php', // Simple Facebook Connect |
||
| 224 | 'social-discussions/social-discussions.php', // Social Discussions |
||
| 225 | 'social-sharing-toolkit/social_sharing_toolkit.php', // Social Sharing Toolkit |
||
| 226 | 'socialize/socialize.php', // Socialize |
||
| 227 | 'only-tweet-like-share-and-google-1/tweet-like-plusone.php', |
||
| 228 | // Tweet, Like, Google +1 and Share |
||
| 229 | 'wordbooker/wordbooker.php', // Wordbooker |
||
| 230 | 'wpsso/wpsso.php', // WordPress Social Sharing Optimization |
||
| 231 | 'wp-caregiver/wp-caregiver.php', // WP Caregiver |
||
| 232 | 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', |
||
| 233 | // WP Facebook Like Send & Open Graph Meta |
||
| 234 | 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol |
||
| 235 | 'wp-ogp/wp-ogp.php', // WP-OGP |
||
| 236 | 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin |
||
| 237 | 'wp-fb-share-like-button/wp_fb_share-like_widget.php' // WP Facebook Like Button |
||
| 238 | ); |
||
| 239 | |||
| 240 | /** |
||
| 241 | * Plugins for which we turn off our Twitter Cards Tags implementation. |
||
| 242 | */ |
||
| 243 | private $twitter_cards_conflicting_plugins = array( |
||
| 244 | // 'twitter/twitter.php', // The official one handles this on its own. |
||
| 245 | // // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php |
||
| 246 | 'eewee-twitter-card/index.php', // Eewee Twitter Card |
||
| 247 | 'ig-twitter-cards/ig-twitter-cards.php', // IG:Twitter Cards |
||
| 248 | 'jm-twitter-cards/jm-twitter-cards.php', // JM Twitter Cards |
||
| 249 | 'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php', |
||
| 250 | // Pure Web Brilliant's Social Graph Twitter Cards Extension |
||
| 251 | 'twitter-cards/twitter-cards.php', // Twitter Cards |
||
| 252 | 'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta |
||
| 253 | 'wp-twitter-cards/twitter_cards.php', // WP Twitter Cards |
||
| 254 | ); |
||
| 255 | |||
| 256 | /** |
||
| 257 | * Message to display in admin_notice |
||
| 258 | * @var string |
||
| 259 | */ |
||
| 260 | public $message = ''; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Error to display in admin_notice |
||
| 264 | * @var string |
||
| 265 | */ |
||
| 266 | public $error = ''; |
||
| 267 | |||
| 268 | /** |
||
| 269 | * Modules that need more privacy description. |
||
| 270 | * @var string |
||
| 271 | */ |
||
| 272 | public $privacy_checks = ''; |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Stats to record once the page loads |
||
| 276 | * |
||
| 277 | * @var array |
||
| 278 | */ |
||
| 279 | public $stats = array(); |
||
| 280 | |||
| 281 | /** |
||
| 282 | * Jetpack_Sync object |
||
| 283 | */ |
||
| 284 | public $sync; |
||
| 285 | |||
| 286 | /** |
||
| 287 | * Verified data for JSON authorization request |
||
| 288 | */ |
||
| 289 | public $json_api_authorization_request = array(); |
||
| 290 | |||
| 291 | /** |
||
| 292 | * Holds the singleton instance of this class |
||
| 293 | * @since 2.3.3 |
||
| 294 | * @var Jetpack |
||
| 295 | */ |
||
| 296 | static $instance = false; |
||
| 297 | |||
| 298 | /** |
||
| 299 | * Singleton |
||
| 300 | * @static |
||
| 301 | */ |
||
| 302 | public static function init() { |
||
| 303 | if ( ! self::$instance ) { |
||
| 304 | if ( did_action( 'plugins_loaded' ) ) |
||
| 305 | self::plugin_textdomain(); |
||
| 306 | else |
||
| 307 | add_action( 'plugins_loaded', array( __CLASS__, 'plugin_textdomain' ), 99 ); |
||
| 308 | |||
| 309 | self::$instance = new Jetpack; |
||
| 310 | |||
| 311 | self::$instance->plugin_upgrade(); |
||
| 312 | } |
||
| 313 | |||
| 314 | return self::$instance; |
||
| 315 | } |
||
| 316 | |||
| 317 | /** |
||
| 318 | * Must never be called statically |
||
| 319 | */ |
||
| 320 | function plugin_upgrade() { |
||
| 321 | if ( Jetpack::is_active() ) { |
||
| 322 | list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) ); |
||
| 323 | if ( JETPACK__VERSION != $version ) { |
||
| 324 | |||
| 325 | // Check which active modules actually exist and remove others from active_modules list |
||
| 326 | $unfiltered_modules = Jetpack::get_active_modules(); |
||
| 327 | $modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) ); |
||
| 328 | if ( array_diff( $unfiltered_modules, $modules ) ) { |
||
| 329 | Jetpack::update_active_modules( $modules ); |
||
| 330 | } |
||
| 331 | |||
| 332 | // Reset cached module data |
||
| 333 | Jetpack_Options::delete_option( 'file_data' ); |
||
| 334 | |||
| 335 | add_action( 'init', array( __CLASS__, 'activate_new_modules' ) ); |
||
| 336 | Jetpack::maybe_set_version_option(); |
||
| 337 | } |
||
| 338 | } |
||
| 339 | } |
||
| 340 | |||
| 341 | static function activate_manage( ) { |
||
| 342 | if ( did_action( 'init' ) || current_filter() == 'init' ) { |
||
| 343 | self::activate_module( 'manage', false, false ); |
||
| 344 | } else if ( ! has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) { |
||
| 345 | add_action( 'init', array( __CLASS__, 'activate_manage' ) ); |
||
| 346 | } |
||
| 347 | } |
||
| 348 | |||
| 349 | static function update_active_modules( $modules ) { |
||
| 350 | $current_modules = Jetpack_Options::get_option( 'active_modules', array() ); |
||
| 351 | |||
| 352 | $success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) ); |
||
| 353 | |||
| 354 | if ( is_array( $modules ) && is_array( $current_modules ) ) { |
||
| 355 | $new_active_modules = array_diff( $modules, $current_modules ); |
||
| 356 | foreach( $new_active_modules as $module ) { |
||
| 357 | /** |
||
| 358 | * Fires when a specific module is activated. |
||
| 359 | * |
||
| 360 | * @since 1.9.0 |
||
| 361 | * |
||
| 362 | * @param string $module Module slug. |
||
| 363 | * @param boolean $success whether the module was activated. @since 4.2 |
||
| 364 | */ |
||
| 365 | do_action( 'jetpack_activate_module', $module, $success ); |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Fires when a module is activated. |
||
| 369 | * The dynamic part of the filter, $module, is the module slug. |
||
| 370 | * |
||
| 371 | * @since 1.9.0 |
||
| 372 | * |
||
| 373 | * @param string $module Module slug. |
||
| 374 | */ |
||
| 375 | do_action( "jetpack_activate_module_$module", $module ); |
||
| 376 | } |
||
| 377 | |||
| 378 | $new_deactive_modules = array_diff( $current_modules, $modules ); |
||
| 379 | foreach( $new_deactive_modules as $module ) { |
||
| 380 | /** |
||
| 381 | * Fired after a module has been deactivated. |
||
| 382 | * |
||
| 383 | * @since 4.2.0 |
||
| 384 | * |
||
| 385 | * @param string $module Module slug. |
||
| 386 | * @param boolean $success whether the module was deactivated. |
||
| 387 | */ |
||
| 388 | do_action( 'jetpack_deactivate_module', $module, $success ); |
||
| 389 | /** |
||
| 390 | * Fires when a module is deactivated. |
||
| 391 | * The dynamic part of the filter, $module, is the module slug. |
||
| 392 | * |
||
| 393 | * @since 1.9.0 |
||
| 394 | * |
||
| 395 | * @param string $module Module slug. |
||
| 396 | */ |
||
| 397 | do_action( "jetpack_deactivate_module_$module", $module ); |
||
| 398 | } |
||
| 399 | } |
||
| 400 | |||
| 401 | return $success; |
||
| 402 | } |
||
| 403 | |||
| 404 | static function delete_active_modules() { |
||
| 405 | self::update_active_modules( array() ); |
||
| 406 | } |
||
| 407 | |||
| 408 | /** |
||
| 409 | * Constructor. Initializes WordPress hooks |
||
| 410 | */ |
||
| 411 | private function __construct() { |
||
| 412 | /* |
||
| 413 | * Check for and alert any deprecated hooks |
||
| 414 | */ |
||
| 415 | add_action( 'init', array( $this, 'deprecated_hooks' ) ); |
||
| 416 | |||
| 417 | |||
| 418 | /* |
||
| 419 | * Load things that should only be in Network Admin. |
||
| 420 | * |
||
| 421 | * For now blow away everything else until a more full |
||
| 422 | * understanding of what is needed at the network level is |
||
| 423 | * available |
||
| 424 | */ |
||
| 425 | if( is_multisite() ) { |
||
| 426 | Jetpack_Network::init(); |
||
| 427 | } |
||
| 428 | |||
| 429 | // Unlink user before deleting the user from .com |
||
| 430 | add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 ); |
||
| 431 | add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 ); |
||
| 432 | |||
| 433 | if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) { |
||
| 434 | @ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed. |
||
| 435 | |||
| 436 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php'; |
||
| 437 | $this->xmlrpc_server = new Jetpack_XMLRPC_Server(); |
||
| 438 | |||
| 439 | $this->require_jetpack_authentication(); |
||
| 440 | |||
| 441 | if ( Jetpack::is_active() ) { |
||
| 442 | // Hack to preserve $HTTP_RAW_POST_DATA |
||
| 443 | add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) ); |
||
| 444 | |||
| 445 | $signed = $this->verify_xml_rpc_signature(); |
||
| 446 | if ( $signed && ! is_wp_error( $signed ) ) { |
||
| 447 | // The actual API methods. |
||
| 448 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) ); |
||
| 449 | } else { |
||
| 450 | // The jetpack.authorize method should be available for unauthenticated users on a site with an |
||
| 451 | // active Jetpack connection, so that additional users can link their account. |
||
| 452 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) ); |
||
| 453 | } |
||
| 454 | } else { |
||
| 455 | // The bootstrap API methods. |
||
| 456 | add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) ); |
||
| 457 | } |
||
| 458 | |||
| 459 | // Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on. |
||
| 460 | add_filter( 'pre_option_enable_xmlrpc', '__return_true' ); |
||
| 461 | } elseif ( is_admin() && isset( $_POST['action'] ) && 'jetpack_upload_file' == $_POST['action'] ) { |
||
| 462 | $this->require_jetpack_authentication(); |
||
| 463 | $this->add_remote_request_handlers(); |
||
| 464 | } else { |
||
| 465 | if ( Jetpack::is_active() ) { |
||
| 466 | add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) ); |
||
| 467 | add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) ); |
||
| 468 | } |
||
| 469 | } |
||
| 470 | |||
| 471 | if ( Jetpack::is_active() ) { |
||
| 472 | Jetpack_Heartbeat::init(); |
||
| 473 | } |
||
| 474 | |||
| 475 | add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) ); |
||
| 476 | if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) { |
||
| 477 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); |
||
| 478 | } |
||
| 479 | |||
| 480 | add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) ); |
||
| 481 | |||
| 482 | add_action( 'admin_init', array( $this, 'admin_init' ) ); |
||
| 483 | add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) ); |
||
| 484 | |||
| 485 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
||
| 486 | |||
| 487 | add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) ); |
||
| 488 | // Filter the dashboard meta box order to swap the new one in in place of the old one. |
||
| 489 | add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) ); |
||
| 490 | |||
| 491 | // returns HTTPS support status |
||
| 492 | add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) ); |
||
| 493 | |||
| 494 | // Jump Start AJAX callback function |
||
| 495 | add_action( 'wp_ajax_jetpack_jumpstart_ajax', array( $this, 'jetpack_jumpstart_ajax_callback' ) ); |
||
| 496 | |||
| 497 | // If any module option is updated before Jump Start is dismissed, hide Jump Start. |
||
| 498 | add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) ); |
||
| 499 | |||
| 500 | // Identity Crisis AJAX callback function |
||
| 501 | add_action( 'wp_ajax_jetpack_resolve_identity_crisis', array( $this, 'resolve_identity_crisis_ajax_callback' ) ); |
||
| 502 | |||
| 503 | // JITM AJAX callback function |
||
| 504 | add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) ); |
||
| 505 | |||
| 506 | add_action( 'wp_ajax_jetpack_admin_ajax', array( $this, 'jetpack_admin_ajax_callback' ) ); |
||
| 507 | add_action( 'wp_ajax_jetpack_admin_ajax_refresh', array( $this, 'jetpack_admin_ajax_refresh_data' ) ); |
||
| 508 | |||
| 509 | // Universal ajax callback for all tracking events triggered via js |
||
| 510 | add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) ); |
||
| 511 | |||
| 512 | add_action( 'wp_loaded', array( $this, 'register_assets' ) ); |
||
| 513 | add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 514 | add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 515 | add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) ); |
||
| 516 | |||
| 517 | add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 ); |
||
| 518 | |||
| 519 | add_action( 'jetpack_notices', array( $this, 'show_development_mode_notice' ) ); |
||
| 520 | |||
| 521 | add_action( 'jetpack_notices', array( $this, 'show_sync_lag_notice' ) ); |
||
| 522 | |||
| 523 | /** |
||
| 524 | * These actions run checks to load additional files. |
||
| 525 | * They check for external files or plugins, so they need to run as late as possible. |
||
| 526 | */ |
||
| 527 | add_action( 'wp_head', array( $this, 'check_open_graph' ), 1 ); |
||
| 528 | add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ), 999 ); |
||
| 529 | add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 ); |
||
| 530 | |||
| 531 | add_filter( 'plugins_url', array( 'Jetpack', 'maybe_min_asset' ), 1, 3 ); |
||
| 532 | add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 ); |
||
| 533 | |||
| 534 | add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 ); |
||
| 535 | |||
| 536 | add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) ); |
||
| 537 | add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 ); |
||
| 538 | |||
| 539 | // A filter to control all just in time messages |
||
| 540 | add_filter( 'jetpack_just_in_time_msgs', '__return_false' ); |
||
| 541 | |||
| 542 | /** |
||
| 543 | * This is the hack to concatinate all css files into one. |
||
| 544 | * For description and reasoning see the implode_frontend_css method |
||
| 545 | * |
||
| 546 | * Super late priority so we catch all the registered styles |
||
| 547 | */ |
||
| 548 | if( !is_admin() ) { |
||
| 549 | add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first |
||
| 550 | add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles` |
||
| 551 | } |
||
| 552 | |||
| 553 | } |
||
| 554 | |||
| 555 | function jetpack_admin_ajax_tracks_callback() { |
||
| 556 | // Check for nonce |
||
| 557 | if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) { |
||
| 558 | wp_die( 'Permissions check failed.' ); |
||
| 559 | } |
||
| 560 | |||
| 561 | if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] ) ) { |
||
| 562 | wp_die( 'No valid event name or type.' ); |
||
| 563 | } |
||
| 564 | |||
| 565 | $tracks_data = array(); |
||
| 566 | if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) { |
||
| 567 | $tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] ); |
||
| 568 | } |
||
| 569 | |||
| 570 | JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data ); |
||
| 571 | wp_send_json_success(); |
||
| 572 | wp_die(); |
||
| 573 | } |
||
| 574 | |||
| 575 | function jetpack_admin_ajax_callback() { |
||
| 576 | // Check for nonce |
||
| 577 | View Code Duplication | if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) || ! current_user_can( 'jetpack_manage_modules' ) ) { |
|
| 578 | wp_die( 'permissions check failed' ); |
||
| 579 | } |
||
| 580 | |||
| 581 | if ( isset( $_REQUEST['toggleModule'] ) && 'nux-toggle-module' == $_REQUEST['toggleModule'] ) { |
||
| 582 | $slug = $_REQUEST['thisModuleSlug']; |
||
| 583 | |||
| 584 | if ( ! in_array( $slug, Jetpack::get_available_modules() ) ) { |
||
| 585 | wp_die( 'That is not a Jetpack module slug' ); |
||
| 586 | } |
||
| 587 | |||
| 588 | if ( Jetpack::is_module_active( $slug ) ) { |
||
| 589 | Jetpack::deactivate_module( $slug ); |
||
| 590 | } else { |
||
| 591 | Jetpack::activate_module( $slug, false, false ); |
||
| 592 | } |
||
| 593 | |||
| 594 | $modules = Jetpack_Admin::init()->get_modules(); |
||
| 595 | echo json_encode( $modules[ $slug ] ); |
||
| 596 | |||
| 597 | exit; |
||
| 598 | } |
||
| 599 | |||
| 600 | wp_die(); |
||
| 601 | } |
||
| 602 | |||
| 603 | /* |
||
| 604 | * Sometimes we need to refresh the data, |
||
| 605 | * especially if the page is visited via a 'history' |
||
| 606 | * event like back/forward |
||
| 607 | */ |
||
| 608 | function jetpack_admin_ajax_refresh_data() { |
||
| 609 | // Check for nonce |
||
| 610 | View Code Duplication | if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) ) { |
|
| 611 | wp_die( 'permissions check failed' ); |
||
| 612 | } |
||
| 613 | |||
| 614 | if ( isset( $_REQUEST['refreshData'] ) && 'refresh' == $_REQUEST['refreshData'] ) { |
||
| 615 | $modules = Jetpack_Admin::init()->get_modules(); |
||
| 616 | echo json_encode( $modules ); |
||
| 617 | exit; |
||
| 618 | } |
||
| 619 | |||
| 620 | wp_die(); |
||
| 621 | } |
||
| 622 | |||
| 623 | /** |
||
| 624 | * The callback for the Jump Start ajax requests. |
||
| 625 | */ |
||
| 626 | function jetpack_jumpstart_ajax_callback() { |
||
| 627 | // Check for nonce |
||
| 628 | if ( ! isset( $_REQUEST['jumpstartNonce'] ) || ! wp_verify_nonce( $_REQUEST['jumpstartNonce'], 'jetpack-jumpstart-nonce' ) ) |
||
| 629 | wp_die( 'permissions check failed' ); |
||
| 630 | |||
| 631 | if ( isset( $_REQUEST['jumpStartActivate'] ) && 'jump-start-activate' == $_REQUEST['jumpStartActivate'] ) { |
||
| 632 | // Update the jumpstart option |
||
| 633 | if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) { |
||
| 634 | Jetpack_Options::update_option( 'jumpstart', 'jumpstart_activated' ); |
||
| 635 | } |
||
| 636 | |||
| 637 | // Loops through the requested "Jump Start" modules, and activates them. |
||
| 638 | // Custom 'no_message' state, so that no message will be shown on reload. |
||
| 639 | $modules = $_REQUEST['jumpstartModSlug']; |
||
| 640 | $module_slugs = array(); |
||
| 641 | foreach( $modules as $module => $value ) { |
||
| 642 | $module_slugs[] = $value['module_slug']; |
||
| 643 | } |
||
| 644 | |||
| 645 | // Check for possible conflicting plugins |
||
| 646 | $module_slugs_filtered = $this->filter_default_modules( $module_slugs ); |
||
| 647 | |||
| 648 | foreach ( $module_slugs_filtered as $module_slug ) { |
||
| 649 | Jetpack::log( 'activate', $module_slug ); |
||
| 650 | Jetpack::activate_module( $module_slug, false, false ); |
||
| 651 | Jetpack::state( 'message', 'no_message' ); |
||
| 652 | } |
||
| 653 | |||
| 654 | // Set the default sharing buttons and set to display on posts if none have been set. |
||
| 655 | $sharing_services = get_option( 'sharing-services' ); |
||
| 656 | $sharing_options = get_option( 'sharing-options' ); |
||
| 657 | if ( empty( $sharing_services['visible'] ) ) { |
||
| 658 | // Default buttons to set |
||
| 659 | $visible = array( |
||
| 660 | 'twitter', |
||
| 661 | 'facebook', |
||
| 662 | 'google-plus-1', |
||
| 663 | ); |
||
| 664 | $hidden = array(); |
||
| 665 | |||
| 666 | // Set some sharing settings |
||
| 667 | $sharing = new Sharing_Service(); |
||
| 668 | $sharing_options['global'] = array( |
||
| 669 | 'button_style' => 'icon', |
||
| 670 | 'sharing_label' => $sharing->default_sharing_label, |
||
| 671 | 'open_links' => 'same', |
||
| 672 | 'show' => array( 'post' ), |
||
| 673 | 'custom' => isset( $sharing_options['global']['custom'] ) ? $sharing_options['global']['custom'] : array() |
||
| 674 | ); |
||
| 675 | |||
| 676 | update_option( 'sharing-options', $sharing_options ); |
||
| 677 | |||
| 678 | // Send a success response so that we can display an error message. |
||
| 679 | $success = update_option( 'sharing-services', array( 'visible' => $visible, 'hidden' => $hidden ) ); |
||
| 680 | echo json_encode( $success ); |
||
| 681 | exit; |
||
| 682 | } |
||
| 683 | |||
| 684 | } elseif ( isset( $_REQUEST['disableJumpStart'] ) && true == $_REQUEST['disableJumpStart'] ) { |
||
| 685 | // If dismissed, flag the jumpstart option as such. |
||
| 686 | // Send a success response so that we can display an error message. |
||
| 687 | if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) { |
||
| 688 | $success = Jetpack_Options::update_option( 'jumpstart', 'jumpstart_dismissed' ); |
||
| 689 | echo json_encode( $success ); |
||
| 690 | exit; |
||
| 691 | } |
||
| 692 | |||
| 693 | } elseif ( isset( $_REQUEST['jumpStartDeactivate'] ) && 'jump-start-deactivate' == $_REQUEST['jumpStartDeactivate'] ) { |
||
| 694 | |||
| 695 | // FOR TESTING ONLY |
||
| 696 | // @todo remove |
||
| 697 | $modules = (array) $_REQUEST['jumpstartModSlug']; |
||
| 698 | foreach( $modules as $module => $value ) { |
||
| 699 | if ( !in_array( $value['module_slug'], Jetpack::get_default_modules() ) ) { |
||
| 700 | Jetpack::log( 'deactivate', $value['module_slug'] ); |
||
| 701 | Jetpack::deactivate_module( $value['module_slug'] ); |
||
| 702 | Jetpack::state( 'message', 'no_message' ); |
||
| 703 | } else { |
||
| 704 | Jetpack::log( 'activate', $value['module_slug'] ); |
||
| 705 | Jetpack::activate_module( $value['module_slug'], false, false ); |
||
| 706 | Jetpack::state( 'message', 'no_message' ); |
||
| 707 | } |
||
| 708 | } |
||
| 709 | |||
| 710 | Jetpack_Options::update_option( 'jumpstart', 'new_connection' ); |
||
| 711 | echo "reload the page"; |
||
| 712 | } |
||
| 713 | |||
| 714 | wp_die(); |
||
| 715 | } |
||
| 716 | |||
| 717 | /** |
||
| 718 | * The callback for the JITM ajax requests. |
||
| 719 | */ |
||
| 720 | function jetpack_jitm_ajax_callback() { |
||
| 721 | // Check for nonce |
||
| 722 | if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) { |
||
| 723 | wp_die( 'Module activation failed due to lack of appropriate permissions' ); |
||
| 724 | } |
||
| 725 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) { |
||
| 726 | $module_slug = $_REQUEST['jitmModule']; |
||
| 727 | Jetpack::log( 'activate', $module_slug ); |
||
| 728 | Jetpack::activate_module( $module_slug, false, false ); |
||
| 729 | Jetpack::state( 'message', 'no_message' ); |
||
| 730 | |||
| 731 | //A Jetpack module is being activated through a JITM, track it |
||
| 732 | $this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION ); |
||
| 733 | $this->do_stats( 'server_side' ); |
||
| 734 | |||
| 735 | wp_send_json_success(); |
||
| 736 | } |
||
| 737 | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) { |
||
| 738 | // get the hide_jitm options array |
||
| 739 | $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' ); |
||
| 740 | $module_slug = $_REQUEST['jitmModule']; |
||
| 741 | |||
| 742 | if( ! $jetpack_hide_jitm ) { |
||
| 743 | $jetpack_hide_jitm = array( |
||
| 744 | $module_slug => 'hide' |
||
| 745 | ); |
||
| 746 | } else { |
||
| 747 | $jetpack_hide_jitm[$module_slug] = 'hide'; |
||
| 748 | } |
||
| 749 | |||
| 750 | Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm ); |
||
| 751 | |||
| 752 | //jitm is being dismissed forever, track it |
||
| 753 | $this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION ); |
||
| 754 | $this->do_stats( 'server_side' ); |
||
| 755 | |||
| 756 | wp_send_json_success(); |
||
| 757 | } |
||
| 758 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) { |
|
| 759 | $module_slug = $_REQUEST['jitmModule']; |
||
| 760 | |||
| 761 | // User went to WordPress.com, track this |
||
| 762 | $this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION ); |
||
| 763 | $this->do_stats( 'server_side' ); |
||
| 764 | |||
| 765 | wp_send_json_success(); |
||
| 766 | } |
||
| 767 | View Code Duplication | if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) { |
|
| 768 | $track = $_REQUEST['jitmModule']; |
||
| 769 | |||
| 770 | // User is viewing JITM, track it. |
||
| 771 | $this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION ); |
||
| 772 | $this->do_stats( 'server_side' ); |
||
| 773 | |||
| 774 | wp_send_json_success(); |
||
| 775 | } |
||
| 776 | } |
||
| 777 | |||
| 778 | /** |
||
| 779 | * If there are any stats that need to be pushed, but haven't been, push them now. |
||
| 780 | */ |
||
| 781 | function __destruct() { |
||
| 782 | if ( ! empty( $this->stats ) ) { |
||
| 783 | $this->do_stats( 'server_side' ); |
||
| 784 | } |
||
| 785 | } |
||
| 786 | |||
| 787 | function jetpack_custom_caps( $caps, $cap, $user_id, $args ) { |
||
| 788 | switch( $cap ) { |
||
| 789 | case 'jetpack_connect' : |
||
| 790 | case 'jetpack_reconnect' : |
||
| 791 | if ( Jetpack::is_development_mode() ) { |
||
| 792 | $caps = array( 'do_not_allow' ); |
||
| 793 | break; |
||
| 794 | } |
||
| 795 | /** |
||
| 796 | * Pass through. If it's not development mode, these should match disconnect. |
||
| 797 | * Let users disconnect if it's development mode, just in case things glitch. |
||
| 798 | */ |
||
| 799 | case 'jetpack_disconnect' : |
||
| 800 | /** |
||
| 801 | * In multisite, can individual site admins manage their own connection? |
||
| 802 | * |
||
| 803 | * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class. |
||
| 804 | */ |
||
| 805 | if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) { |
||
| 806 | if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) { |
||
| 807 | /** |
||
| 808 | * We need to update the option name -- it's terribly unclear which |
||
| 809 | * direction the override goes. |
||
| 810 | * |
||
| 811 | * @todo: Update the option name to `sub-sites-can-manage-own-connections` |
||
| 812 | */ |
||
| 813 | $caps = array( 'do_not_allow' ); |
||
| 814 | break; |
||
| 815 | } |
||
| 816 | } |
||
| 817 | |||
| 818 | $caps = array( 'manage_options' ); |
||
| 819 | break; |
||
| 820 | case 'jetpack_manage_modules' : |
||
| 821 | case 'jetpack_activate_modules' : |
||
| 822 | case 'jetpack_deactivate_modules' : |
||
| 823 | $caps = array( 'manage_options' ); |
||
| 824 | break; |
||
| 825 | case 'jetpack_configure_modules' : |
||
| 826 | $caps = array( 'manage_options' ); |
||
| 827 | break; |
||
| 828 | case 'jetpack_network_admin_page': |
||
| 829 | case 'jetpack_network_settings_page': |
||
| 830 | $caps = array( 'manage_network_plugins' ); |
||
| 831 | break; |
||
| 832 | case 'jetpack_network_sites_page': |
||
| 833 | $caps = array( 'manage_sites' ); |
||
| 834 | break; |
||
| 835 | case 'jetpack_admin_page' : |
||
| 836 | if ( Jetpack::is_development_mode() ) { |
||
| 837 | $caps = array( 'manage_options' ); |
||
| 838 | break; |
||
| 839 | } else { |
||
| 840 | $caps = array( 'read' ); |
||
| 841 | } |
||
| 842 | break; |
||
| 843 | case 'jetpack_connect_user' : |
||
| 844 | if ( Jetpack::is_development_mode() ) { |
||
| 845 | $caps = array( 'do_not_allow' ); |
||
| 846 | break; |
||
| 847 | } |
||
| 848 | $caps = array( 'read' ); |
||
| 849 | break; |
||
| 850 | } |
||
| 851 | return $caps; |
||
| 852 | } |
||
| 853 | |||
| 854 | function require_jetpack_authentication() { |
||
| 855 | // Don't let anyone authenticate |
||
| 856 | $_COOKIE = array(); |
||
| 857 | remove_all_filters( 'authenticate' ); |
||
| 858 | remove_all_actions( 'wp_login_failed' ); |
||
| 859 | |||
| 860 | if ( Jetpack::is_active() ) { |
||
| 861 | // Allow Jetpack authentication |
||
| 862 | add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 ); |
||
| 863 | } |
||
| 864 | } |
||
| 865 | |||
| 866 | /** |
||
| 867 | * Load language files |
||
| 868 | */ |
||
| 869 | public static function plugin_textdomain() { |
||
| 870 | // Note to self, the third argument must not be hardcoded, to account for relocated folders. |
||
| 871 | load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' ); |
||
| 872 | } |
||
| 873 | |||
| 874 | /** |
||
| 875 | * Register assets for use in various modules and the Jetpack admin page. |
||
| 876 | * |
||
| 877 | * @uses wp_script_is, wp_register_script, plugins_url |
||
| 878 | * @action wp_loaded |
||
| 879 | * @return null |
||
| 880 | */ |
||
| 881 | public function register_assets() { |
||
| 882 | if ( ! wp_script_is( 'spin', 'registered' ) ) { |
||
| 883 | wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' ); |
||
| 884 | } |
||
| 885 | |||
| 886 | View Code Duplication | if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) { |
|
| 887 | wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' ); |
||
| 888 | } |
||
| 889 | |||
| 890 | View Code Duplication | if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { |
|
| 891 | wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' ); |
||
| 892 | } |
||
| 893 | |||
| 894 | View Code Duplication | if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) { |
|
| 895 | wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true ); |
||
| 896 | } |
||
| 897 | |||
| 898 | if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) { |
||
| 899 | wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true ); |
||
| 900 | |||
| 901 | /** This filter is documented in modules/sharedaddy/sharing-sources.php */ |
||
| 902 | $fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ); |
||
| 903 | if ( ! is_numeric( $fb_app_id ) ) { |
||
| 904 | $fb_app_id = ''; |
||
| 905 | } |
||
| 906 | wp_localize_script( |
||
| 907 | 'jetpack-facebook-embed', |
||
| 908 | 'jpfbembed', |
||
| 909 | array( |
||
| 910 | 'appid' => $fb_app_id, |
||
| 911 | 'locale' => $this->get_locale(), |
||
| 912 | ) |
||
| 913 | ); |
||
| 914 | } |
||
| 915 | |||
| 916 | /** |
||
| 917 | * As jetpack_register_genericons is by default fired off a hook, |
||
| 918 | * the hook may have already fired by this point. |
||
| 919 | * So, let's just trigger it manually. |
||
| 920 | */ |
||
| 921 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); |
||
| 922 | jetpack_register_genericons(); |
||
| 923 | |||
| 924 | /** |
||
| 925 | * Register the social logos |
||
| 926 | */ |
||
| 927 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); |
||
| 928 | jetpack_register_social_logos(); |
||
| 929 | |||
| 930 | View Code Duplication | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) |
|
| 931 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
||
| 932 | } |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Guess locale from language code. |
||
| 936 | * |
||
| 937 | * @param string $lang Language code. |
||
| 938 | * @return string|bool |
||
| 939 | */ |
||
| 940 | View Code Duplication | function guess_locale_from_lang( $lang ) { |
|
| 941 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
||
| 942 | return 'en_US'; |
||
| 943 | } |
||
| 944 | |||
| 945 | if ( ! class_exists( 'GP_Locales' ) ) { |
||
| 946 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
||
| 947 | return false; |
||
| 948 | } |
||
| 949 | |||
| 950 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
||
| 951 | } |
||
| 952 | |||
| 953 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
||
| 954 | // WP.com: get_locale() returns 'it' |
||
| 955 | $locale = GP_Locales::by_slug( $lang ); |
||
| 956 | } else { |
||
| 957 | // Jetpack: get_locale() returns 'it_IT'; |
||
| 958 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
||
| 959 | } |
||
| 960 | |||
| 961 | if ( ! $locale ) { |
||
| 962 | return false; |
||
| 963 | } |
||
| 964 | |||
| 965 | if ( empty( $locale->facebook_locale ) ) { |
||
| 966 | if ( empty( $locale->wp_locale ) ) { |
||
| 967 | return false; |
||
| 968 | } else { |
||
| 969 | // Facebook SDK is smart enough to fall back to en_US if a |
||
| 970 | // locale isn't supported. Since supported Facebook locales |
||
| 971 | // can fall out of sync, we'll attempt to use the known |
||
| 972 | // wp_locale value and rely on said fallback. |
||
| 973 | return $locale->wp_locale; |
||
| 974 | } |
||
| 975 | } |
||
| 976 | |||
| 977 | return $locale->facebook_locale; |
||
| 978 | } |
||
| 979 | |||
| 980 | /** |
||
| 981 | * Get the locale. |
||
| 982 | * |
||
| 983 | * @return string|bool |
||
| 984 | */ |
||
| 985 | function get_locale() { |
||
| 986 | $locale = $this->guess_locale_from_lang( get_locale() ); |
||
| 987 | |||
| 988 | if ( ! $locale ) { |
||
| 989 | $locale = 'en_US'; |
||
| 990 | } |
||
| 991 | |||
| 992 | return $locale; |
||
| 993 | } |
||
| 994 | |||
| 995 | /** |
||
| 996 | * Device Pixels support |
||
| 997 | * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers. |
||
| 998 | */ |
||
| 999 | function devicepx() { |
||
| 1000 | if ( Jetpack::is_active() ) { |
||
| 1001 | wp_enqueue_script( 'devicepx', set_url_scheme( 'http://s0.wp.com/wp-content/js/devicepx-jetpack.js' ), array(), gmdate( 'oW' ), true ); |
||
| 1002 | } |
||
| 1003 | } |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * Return the network_site_url so that .com knows what network this site is a part of. |
||
| 1007 | * @param bool $option |
||
| 1008 | * @return string |
||
| 1009 | */ |
||
| 1010 | public function jetpack_main_network_site_option( $option ) { |
||
| 1011 | return network_site_url(); |
||
| 1012 | } |
||
| 1013 | /** |
||
| 1014 | * Network Name. |
||
| 1015 | */ |
||
| 1016 | static function network_name( $option = null ) { |
||
| 1017 | global $current_site; |
||
| 1018 | return $current_site->site_name; |
||
| 1019 | } |
||
| 1020 | /** |
||
| 1021 | * Does the network allow new user and site registrations. |
||
| 1022 | * @return string |
||
| 1023 | */ |
||
| 1024 | static function network_allow_new_registrations( $option = null ) { |
||
| 1025 | return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' ); |
||
| 1026 | } |
||
| 1027 | /** |
||
| 1028 | * Does the network allow admins to add new users. |
||
| 1029 | * @return boolian |
||
| 1030 | */ |
||
| 1031 | static function network_add_new_users( $option = null ) { |
||
| 1032 | return (bool) get_site_option( 'add_new_users' ); |
||
| 1033 | } |
||
| 1034 | /** |
||
| 1035 | * File upload psace left per site in MB. |
||
| 1036 | * -1 means NO LIMIT. |
||
| 1037 | * @return number |
||
| 1038 | */ |
||
| 1039 | static function network_site_upload_space( $option = null ) { |
||
| 1040 | // value in MB |
||
| 1041 | return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() ); |
||
| 1042 | } |
||
| 1043 | |||
| 1044 | /** |
||
| 1045 | * Network allowed file types. |
||
| 1046 | * @return string |
||
| 1047 | */ |
||
| 1048 | static function network_upload_file_types( $option = null ) { |
||
| 1049 | return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' ); |
||
| 1050 | } |
||
| 1051 | |||
| 1052 | /** |
||
| 1053 | * Maximum file upload size set by the network. |
||
| 1054 | * @return number |
||
| 1055 | */ |
||
| 1056 | static function network_max_upload_file_size( $option = null ) { |
||
| 1057 | // value in KB |
||
| 1058 | return get_site_option( 'fileupload_maxk', 300 ); |
||
| 1059 | } |
||
| 1060 | |||
| 1061 | /** |
||
| 1062 | * Lets us know if a site allows admins to manage the network. |
||
| 1063 | * @return array |
||
| 1064 | */ |
||
| 1065 | static function network_enable_administration_menus( $option = null ) { |
||
| 1066 | return get_site_option( 'menu_items' ); |
||
| 1067 | } |
||
| 1068 | |||
| 1069 | /** |
||
| 1070 | * Return whether we are dealing with a multi network setup or not. |
||
| 1071 | * The reason we are type casting this is because we want to avoid the situation where |
||
| 1072 | * the result is false since when is_main_network_option return false it cases |
||
| 1073 | * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the |
||
| 1074 | * database which could be set to anything as opposed to what this function returns. |
||
| 1075 | * @param bool $option |
||
| 1076 | * |
||
| 1077 | * @return boolean |
||
| 1078 | */ |
||
| 1079 | public function is_main_network_option( $option ) { |
||
| 1080 | // return '1' or '' |
||
| 1081 | return (string) (bool) Jetpack::is_multi_network(); |
||
| 1082 | } |
||
| 1083 | |||
| 1084 | /** |
||
| 1085 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
||
| 1086 | * |
||
| 1087 | * @param string $option |
||
| 1088 | * @return boolean |
||
| 1089 | */ |
||
| 1090 | public function is_multisite( $option ) { |
||
| 1091 | return (string) (bool) is_multisite(); |
||
| 1092 | } |
||
| 1093 | |||
| 1094 | /** |
||
| 1095 | * Implemented since there is no core is multi network function |
||
| 1096 | * Right now there is no way to tell if we which network is the dominant network on the system |
||
| 1097 | * |
||
| 1098 | * @since 3.3 |
||
| 1099 | * @return boolean |
||
| 1100 | */ |
||
| 1101 | public static function is_multi_network() { |
||
| 1102 | global $wpdb; |
||
| 1103 | |||
| 1104 | // if we don't have a multi site setup no need to do any more |
||
| 1105 | if ( ! is_multisite() ) { |
||
| 1106 | return false; |
||
| 1107 | } |
||
| 1108 | |||
| 1109 | $num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); |
||
| 1110 | if ( $num_sites > 1 ) { |
||
| 1111 | return true; |
||
| 1112 | } else { |
||
| 1113 | return false; |
||
| 1114 | } |
||
| 1115 | } |
||
| 1116 | |||
| 1117 | /** |
||
| 1118 | * Trigger an update to the main_network_site when we update the siteurl of a site. |
||
| 1119 | * @return null |
||
| 1120 | */ |
||
| 1121 | function update_jetpack_main_network_site_option() { |
||
| 1122 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1123 | } |
||
| 1124 | /** |
||
| 1125 | * Triggered after a user updates the network settings via Network Settings Admin Page |
||
| 1126 | * |
||
| 1127 | */ |
||
| 1128 | function update_jetpack_network_settings() { |
||
| 1129 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1130 | // Only sync this info for the main network site. |
||
| 1131 | } |
||
| 1132 | |||
| 1133 | /** |
||
| 1134 | * Get back if the current site is single user site. |
||
| 1135 | * |
||
| 1136 | * @return bool |
||
| 1137 | */ |
||
| 1138 | public static function is_single_user_site() { |
||
| 1139 | global $wpdb; |
||
| 1140 | $some_users = $wpdb->get_var( "select count(*) from (select user_id from $wpdb->usermeta where meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) as someusers" ); |
||
| 1141 | return 1 === (int) $some_users; |
||
| 1142 | } |
||
| 1143 | |||
| 1144 | /** |
||
| 1145 | * Returns true if the site has file write access false otherwise. |
||
| 1146 | * @return string ( '1' | '0' ) |
||
| 1147 | **/ |
||
| 1148 | public static function file_system_write_access() { |
||
| 1149 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
||
| 1150 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
||
| 1151 | } |
||
| 1152 | |||
| 1153 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
||
| 1154 | |||
| 1155 | $filesystem_method = get_filesystem_method(); |
||
| 1156 | if ( $filesystem_method === 'direct' ) { |
||
| 1157 | return 1; |
||
| 1158 | } |
||
| 1159 | |||
| 1160 | ob_start(); |
||
| 1161 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); |
||
| 1162 | ob_end_clean(); |
||
| 1163 | if ( $filesystem_credentials_are_stored ) { |
||
| 1164 | return 1; |
||
| 1165 | } |
||
| 1166 | return 0; |
||
| 1167 | } |
||
| 1168 | |||
| 1169 | /** |
||
| 1170 | * Finds out if a site is using a version control system. |
||
| 1171 | * @return string ( '1' | '0' ) |
||
| 1172 | **/ |
||
| 1173 | public static function is_version_controlled() { |
||
| 1174 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' ); |
||
| 1175 | return (string) (int) Jetpack_Sync_Functions::is_version_controlled(); |
||
| 1176 | } |
||
| 1177 | |||
| 1178 | /** |
||
| 1179 | * Determines whether the current theme supports featured images or not. |
||
| 1180 | * @return string ( '1' | '0' ) |
||
| 1181 | */ |
||
| 1182 | public static function featured_images_enabled() { |
||
| 1183 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1184 | return current_theme_supports( 'post-thumbnails' ) ? '1' : '0'; |
||
| 1185 | } |
||
| 1186 | |||
| 1187 | /** |
||
| 1188 | * jetpack_updates is saved in the following schema: |
||
| 1189 | * |
||
| 1190 | * array ( |
||
| 1191 | * 'plugins' => (int) Number of plugin updates available. |
||
| 1192 | * 'themes' => (int) Number of theme updates available. |
||
| 1193 | * 'wordpress' => (int) Number of WordPress core updates available. |
||
| 1194 | * 'translations' => (int) Number of translation updates available. |
||
| 1195 | * 'total' => (int) Total of all available updates. |
||
| 1196 | * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed. |
||
| 1197 | * ) |
||
| 1198 | * @return array |
||
| 1199 | */ |
||
| 1200 | public static function get_updates() { |
||
| 1201 | $update_data = wp_get_update_data(); |
||
| 1202 | |||
| 1203 | // Stores the individual update counts as well as the total count. |
||
| 1204 | if ( isset( $update_data['counts'] ) ) { |
||
| 1205 | $updates = $update_data['counts']; |
||
| 1206 | } |
||
| 1207 | |||
| 1208 | // If we need to update WordPress core, let's find the latest version number. |
||
| 1209 | View Code Duplication | if ( ! empty( $updates['wordpress'] ) ) { |
|
| 1210 | $cur = get_preferred_from_update_core(); |
||
| 1211 | if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { |
||
| 1212 | $updates['wp_update_version'] = $cur->current; |
||
| 1213 | } |
||
| 1214 | } |
||
| 1215 | return isset( $updates ) ? $updates : array(); |
||
| 1216 | } |
||
| 1217 | |||
| 1218 | public static function get_update_details() { |
||
| 1219 | $update_details = array( |
||
| 1220 | 'update_core' => get_site_transient( 'update_core' ), |
||
| 1221 | 'update_plugins' => get_site_transient( 'update_plugins' ), |
||
| 1222 | 'update_themes' => get_site_transient( 'update_themes' ), |
||
| 1223 | ); |
||
| 1224 | return $update_details; |
||
| 1225 | } |
||
| 1226 | |||
| 1227 | public static function refresh_update_data() { |
||
| 1228 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1229 | |||
| 1230 | } |
||
| 1231 | |||
| 1232 | public static function refresh_theme_data() { |
||
| 1233 | _deprecated_function( __METHOD__, 'jetpack-4.2' ); |
||
| 1234 | } |
||
| 1235 | |||
| 1236 | /** |
||
| 1237 | * Is Jetpack active? |
||
| 1238 | */ |
||
| 1239 | public static function is_active() { |
||
| 1240 | return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
| 1241 | } |
||
| 1242 | |||
| 1243 | /** |
||
| 1244 | * Is Jetpack in development (offline) mode? |
||
| 1245 | */ |
||
| 1246 | public static function is_development_mode() { |
||
| 1247 | $development_mode = false; |
||
| 1248 | |||
| 1249 | if ( defined( 'JETPACK_DEV_DEBUG' ) ) { |
||
| 1250 | $development_mode = JETPACK_DEV_DEBUG; |
||
| 1251 | } |
||
| 1252 | |||
| 1253 | elseif ( site_url() && false === strpos( site_url(), '.' ) ) { |
||
| 1254 | $development_mode = true; |
||
| 1255 | } |
||
| 1256 | /** |
||
| 1257 | * Filters Jetpack's development mode. |
||
| 1258 | * |
||
| 1259 | * @see https://jetpack.com/support/development-mode/ |
||
| 1260 | * |
||
| 1261 | * @since 2.2.1 |
||
| 1262 | * |
||
| 1263 | * @param bool $development_mode Is Jetpack's development mode active. |
||
| 1264 | */ |
||
| 1265 | return apply_filters( 'jetpack_development_mode', $development_mode ); |
||
| 1266 | } |
||
| 1267 | |||
| 1268 | /** |
||
| 1269 | * Get Jetpack development mode notice text and notice class. |
||
| 1270 | * |
||
| 1271 | * Mirrors the checks made in Jetpack::is_development_mode |
||
| 1272 | * |
||
| 1273 | */ |
||
| 1274 | public static function show_development_mode_notice() { |
||
| 1275 | if ( Jetpack::is_development_mode() ) { |
||
| 1276 | if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) { |
||
| 1277 | $notice = sprintf( |
||
| 1278 | /* translators: %s is a URL */ |
||
| 1279 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ), |
||
| 1280 | 'https://jetpack.com/support/development-mode/' |
||
| 1281 | ); |
||
| 1282 | } elseif ( site_url() && false === strpos( site_url(), '.' ) ) { |
||
| 1283 | $notice = sprintf( |
||
| 1284 | /* translators: %s is a URL */ |
||
| 1285 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ), |
||
| 1286 | 'https://jetpack.com/support/development-mode/' |
||
| 1287 | ); |
||
| 1288 | } else { |
||
| 1289 | $notice = sprintf( |
||
| 1290 | /* translators: %s is a URL */ |
||
| 1291 | __( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ), |
||
| 1292 | 'https://jetpack.com/support/development-mode/' |
||
| 1293 | ); |
||
| 1294 | } |
||
| 1295 | |||
| 1296 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1297 | } |
||
| 1298 | |||
| 1299 | // Throw up a notice if using a development version and as for feedback. |
||
| 1300 | if ( Jetpack::is_development_version() ) { |
||
| 1301 | /* translators: %s is a URL */ |
||
| 1302 | $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/' ); |
||
| 1303 | |||
| 1304 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1305 | } |
||
| 1306 | // Throw up a notice if using staging mode |
||
| 1307 | if ( Jetpack::is_staging_site() ) { |
||
| 1308 | /* translators: %s is a URL */ |
||
| 1309 | $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' ); |
||
| 1310 | |||
| 1311 | echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; |
||
| 1312 | } |
||
| 1313 | } |
||
| 1314 | |||
| 1315 | public static function show_sync_lag_notice() { |
||
| 1316 | if ( ! Jetpack::is_active() && Jetpack::is_staging_site() && Jetpack::is_development_mode() ) { |
||
| 1317 | return; |
||
| 1318 | } |
||
| 1319 | |||
| 1320 | require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-listener.php'; |
||
| 1321 | $listener = Jetpack_Sync_Listener::get_instance(); |
||
| 1322 | $queue = $listener->get_sync_queue(); |
||
| 1323 | |||
| 1324 | if ( ! $listener->can_add_to_queue( $queue ) ) { // Display notice if the lag is large then 24 hours. |
||
| 1325 | $contact_url = admin_url( "admin.php?page=jetpack-debugger&contact=1¬e=Jetpack is not able to talk to WordPress.com." ); |
||
| 1326 | $notice = sprintf( |
||
| 1327 | __( 'Oh no! Jetpack is unable to communicate with WordPress.com. This affects a number of features you may be using. Please check your server logs for errors and <a href="%s">contact Jetpack support</a>.', 'jetpack' ), |
||
| 1328 | esc_url( $contact_url ) |
||
| 1329 | ); |
||
| 1330 | echo '<div class="error" style="border-color: #dc3232;"><p>' . $notice . '</p></div>'; |
||
| 1331 | } |
||
| 1332 | } |
||
| 1333 | |||
| 1334 | /** |
||
| 1335 | * Whether Jetpack's version maps to a public release, or a development version. |
||
| 1336 | */ |
||
| 1337 | public static function is_development_version() { |
||
| 1338 | return ! preg_match( '/^\d+(\.\d+)+$/', JETPACK__VERSION ); |
||
| 1339 | } |
||
| 1340 | |||
| 1341 | /** |
||
| 1342 | * Is a given user (or the current user if none is specified) linked to a WordPress.com user? |
||
| 1343 | */ |
||
| 1344 | public static function is_user_connected( $user_id = false ) { |
||
| 1345 | $user_id = false === $user_id ? get_current_user_id() : absint( $user_id ); |
||
| 1346 | if ( ! $user_id ) { |
||
| 1347 | return false; |
||
| 1348 | } |
||
| 1349 | |||
| 1350 | return (bool) Jetpack_Data::get_access_token( $user_id ); |
||
| 1351 | } |
||
| 1352 | |||
| 1353 | /** |
||
| 1354 | * Get the wpcom user data of the current|specified connected user. |
||
| 1355 | */ |
||
| 1356 | View Code Duplication | public static function get_connected_user_data( $user_id = null ) { |
|
| 1357 | if ( ! $user_id ) { |
||
| 1358 | $user_id = get_current_user_id(); |
||
| 1359 | } |
||
| 1360 | Jetpack::load_xml_rpc_client(); |
||
| 1361 | $xml = new Jetpack_IXR_Client( array( |
||
| 1362 | 'user_id' => $user_id, |
||
| 1363 | ) ); |
||
| 1364 | $xml->query( 'wpcom.getUser' ); |
||
| 1365 | if ( ! $xml->isError() ) { |
||
| 1366 | return $xml->getResponse(); |
||
| 1367 | } |
||
| 1368 | return false; |
||
| 1369 | } |
||
| 1370 | |||
| 1371 | /** |
||
| 1372 | * Get the wpcom email of the current|specified connected user. |
||
| 1373 | */ |
||
| 1374 | View Code Duplication | public static function get_connected_user_email( $user_id = null ) { |
|
| 1375 | if ( ! $user_id ) { |
||
| 1376 | $user_id = get_current_user_id(); |
||
| 1377 | } |
||
| 1378 | Jetpack::load_xml_rpc_client(); |
||
| 1379 | $xml = new Jetpack_IXR_Client( array( |
||
| 1380 | 'user_id' => $user_id, |
||
| 1381 | ) ); |
||
| 1382 | $xml->query( 'wpcom.getUserEmail' ); |
||
| 1383 | if ( ! $xml->isError() ) { |
||
| 1384 | return $xml->getResponse(); |
||
| 1385 | } |
||
| 1386 | return false; |
||
| 1387 | } |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * Get the wpcom email of the master user. |
||
| 1391 | */ |
||
| 1392 | public static function get_master_user_email() { |
||
| 1393 | $master_user_id = Jetpack_Options::get_option( 'master_user' ); |
||
| 1394 | if ( $master_user_id ) { |
||
| 1395 | return self::get_connected_user_email( $master_user_id ); |
||
| 1396 | } |
||
| 1397 | return ''; |
||
| 1398 | } |
||
| 1399 | |||
| 1400 | function current_user_is_connection_owner() { |
||
| 1401 | $user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); |
||
| 1402 | return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id; |
||
| 1403 | } |
||
| 1404 | |||
| 1405 | /** |
||
| 1406 | * Add any extra oEmbed providers that we know about and use on wpcom for feature parity. |
||
| 1407 | */ |
||
| 1408 | function extra_oembed_providers() { |
||
| 1409 | // Cloudup: https://dev.cloudup.com/#oembed |
||
| 1410 | wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' ); |
||
| 1411 | wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' ); |
||
| 1412 | wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true ); |
||
| 1413 | wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true ); |
||
| 1414 | wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true ); |
||
| 1415 | } |
||
| 1416 | |||
| 1417 | /** |
||
| 1418 | * Synchronize connected user role changes |
||
| 1419 | */ |
||
| 1420 | function user_role_change( $user_id ) { |
||
| 1421 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' ); |
||
| 1422 | Jetpack_Sync_Users::user_role_change( $user_id ); |
||
| 1423 | } |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Loads the currently active modules. |
||
| 1427 | */ |
||
| 1428 | public static function load_modules() { |
||
| 1429 | if ( ! self::is_active() && !self::is_development_mode() ) { |
||
| 1430 | if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) { |
||
| 1431 | return; |
||
| 1432 | } |
||
| 1433 | } |
||
| 1434 | |||
| 1435 | $version = Jetpack_Options::get_option( 'version' ); |
||
| 1436 | View Code Duplication | if ( ! $version ) { |
|
| 1437 | $version = $old_version = JETPACK__VERSION . ':' . time(); |
||
| 1438 | /** This action is documented in class.jetpack.php */ |
||
| 1439 | do_action( 'updating_jetpack_version', $version, false ); |
||
| 1440 | Jetpack_Options::update_options( compact( 'version', 'old_version' ) ); |
||
| 1441 | } |
||
| 1442 | list( $version ) = explode( ':', $version ); |
||
| 1443 | |||
| 1444 | $modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) ); |
||
| 1445 | |||
| 1446 | $modules_data = array(); |
||
| 1447 | |||
| 1448 | // Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check. |
||
| 1449 | if ( version_compare( $version, JETPACK__VERSION, '<' ) ) { |
||
| 1450 | $updated_modules = array(); |
||
| 1451 | foreach ( $modules as $module ) { |
||
| 1452 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
| 1453 | if ( ! isset( $modules_data[ $module ]['changed'] ) ) { |
||
| 1454 | continue; |
||
| 1455 | } |
||
| 1456 | |||
| 1457 | if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) { |
||
| 1458 | continue; |
||
| 1459 | } |
||
| 1460 | |||
| 1461 | $updated_modules[] = $module; |
||
| 1462 | } |
||
| 1463 | |||
| 1464 | $modules = array_diff( $modules, $updated_modules ); |
||
| 1465 | } |
||
| 1466 | |||
| 1467 | $is_development_mode = Jetpack::is_development_mode(); |
||
| 1468 | |||
| 1469 | foreach ( $modules as $index => $module ) { |
||
| 1470 | // If we're in dev mode, disable modules requiring a connection |
||
| 1471 | if ( $is_development_mode ) { |
||
| 1472 | // Prime the pump if we need to |
||
| 1473 | if ( empty( $modules_data[ $module ] ) ) { |
||
| 1474 | $modules_data[ $module ] = Jetpack::get_module( $module ); |
||
| 1475 | } |
||
| 1476 | // If the module requires a connection, but we're in local mode, don't include it. |
||
| 1477 | if ( $modules_data[ $module ]['requires_connection'] ) { |
||
| 1478 | continue; |
||
| 1479 | } |
||
| 1480 | } |
||
| 1481 | |||
| 1482 | if ( did_action( 'jetpack_module_loaded_' . $module ) ) { |
||
| 1483 | continue; |
||
| 1484 | } |
||
| 1485 | |||
| 1486 | if ( ! @include( Jetpack::get_module_path( $module ) ) ) { |
||
| 1487 | unset( $modules[ $index ] ); |
||
| 1488 | self::update_active_modules( array_values( $modules ) ); |
||
| 1489 | continue; |
||
| 1490 | } |
||
| 1491 | |||
| 1492 | /** |
||
| 1493 | * Fires when a specific module is loaded. |
||
| 1494 | * The dynamic part of the hook, $module, is the module slug. |
||
| 1495 | * |
||
| 1496 | * @since 1.1.0 |
||
| 1497 | */ |
||
| 1498 | do_action( 'jetpack_module_loaded_' . $module ); |
||
| 1499 | } |
||
| 1500 | |||
| 1501 | /** |
||
| 1502 | * Fires when all the modules are loaded. |
||
| 1503 | * |
||
| 1504 | * @since 1.1.0 |
||
| 1505 | */ |
||
| 1506 | do_action( 'jetpack_modules_loaded' ); |
||
| 1507 | |||
| 1508 | // Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme. |
||
| 1509 | if ( Jetpack::is_active() || Jetpack::is_development_mode() ) |
||
| 1510 | require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' ); |
||
| 1511 | } |
||
| 1512 | |||
| 1513 | /** |
||
| 1514 | * Check if Jetpack's REST API compat file should be included |
||
| 1515 | * @action plugins_loaded |
||
| 1516 | * @return null |
||
| 1517 | */ |
||
| 1518 | public function check_rest_api_compat() { |
||
| 1519 | /** |
||
| 1520 | * Filters the list of REST API compat files to be included. |
||
| 1521 | * |
||
| 1522 | * @since 2.2.5 |
||
| 1523 | * |
||
| 1524 | * @param array $args Array of REST API compat files to include. |
||
| 1525 | */ |
||
| 1526 | $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() ); |
||
| 1527 | |||
| 1528 | if ( function_exists( 'bbpress' ) ) |
||
| 1529 | $_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php'; |
||
| 1530 | |||
| 1531 | foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include ) |
||
| 1532 | require_once $_jetpack_rest_api_compat_include; |
||
| 1533 | } |
||
| 1534 | |||
| 1535 | /** |
||
| 1536 | * Gets all plugins currently active in values, regardless of whether they're |
||
| 1537 | * traditionally activated or network activated. |
||
| 1538 | * |
||
| 1539 | * @todo Store the result in core's object cache maybe? |
||
| 1540 | */ |
||
| 1541 | public static function get_active_plugins() { |
||
| 1542 | $active_plugins = (array) get_option( 'active_plugins', array() ); |
||
| 1543 | |||
| 1544 | if ( is_multisite() ) { |
||
| 1545 | // Due to legacy code, active_sitewide_plugins stores them in the keys, |
||
| 1546 | // whereas active_plugins stores them in the values. |
||
| 1547 | $network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) ); |
||
| 1548 | if ( $network_plugins ) { |
||
| 1549 | $active_plugins = array_merge( $active_plugins, $network_plugins ); |
||
| 1550 | } |
||
| 1551 | } |
||
| 1552 | |||
| 1553 | sort( $active_plugins ); |
||
| 1554 | |||
| 1555 | return array_unique( $active_plugins ); |
||
| 1556 | } |
||
| 1557 | |||
| 1558 | /** |
||
| 1559 | * Gets and parses additional plugin data to send with the heartbeat data |
||
| 1560 | * |
||
| 1561 | * @since 3.8.1 |
||
| 1562 | * |
||
| 1563 | * @return array Array of plugin data |
||
| 1564 | */ |
||
| 1565 | public static function get_parsed_plugin_data() { |
||
| 1566 | if ( ! function_exists( 'get_plugins' ) ) { |
||
| 1567 | require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
||
| 1568 | } |
||
| 1569 | /** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */ |
||
| 1570 | $all_plugins = apply_filters( 'all_plugins', get_plugins() ); |
||
| 1571 | $active_plugins = Jetpack::get_active_plugins(); |
||
| 1572 | |||
| 1573 | $plugins = array(); |
||
| 1574 | foreach ( $all_plugins as $path => $plugin_data ) { |
||
| 1575 | $plugins[ $path ] = array( |
||
| 1576 | 'is_active' => in_array( $path, $active_plugins ), |
||
| 1577 | 'file' => $path, |
||
| 1578 | 'name' => $plugin_data['Name'], |
||
| 1579 | 'version' => $plugin_data['Version'], |
||
| 1580 | 'author' => $plugin_data['Author'], |
||
| 1581 | ); |
||
| 1582 | } |
||
| 1583 | |||
| 1584 | return $plugins; |
||
| 1585 | } |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * Gets and parses theme data to send with the heartbeat data |
||
| 1589 | * |
||
| 1590 | * @since 3.8.1 |
||
| 1591 | * |
||
| 1592 | * @return array Array of theme data |
||
| 1593 | */ |
||
| 1594 | public static function get_parsed_theme_data() { |
||
| 1616 | |||
| 1617 | /** |
||
| 1618 | * Checks whether a specific plugin is active. |
||
| 1619 | * |
||
| 1620 | * We don't want to store these in a static variable, in case |
||
| 1621 | * there are switch_to_blog() calls involved. |
||
| 1622 | */ |
||
| 1623 | public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) { |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * Check if Jetpack's Open Graph tags should be used. |
||
| 1629 | * If certain plugins are active, Jetpack's og tags are suppressed. |
||
| 1630 | * |
||
| 1631 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
| 1632 | * @action plugins_loaded |
||
| 1633 | * @return null |
||
| 1634 | */ |
||
| 1635 | public function check_open_graph() { |
||
| 1662 | |||
| 1663 | /** |
||
| 1664 | * Check if Jetpack's Twitter tags should be used. |
||
| 1665 | * If certain plugins are active, Jetpack's twitter tags are suppressed. |
||
| 1666 | * |
||
| 1667 | * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters |
||
| 1668 | * @action plugins_loaded |
||
| 1669 | * @return null |
||
| 1670 | */ |
||
| 1671 | public function check_twitter_tags() { |
||
| 1695 | |||
| 1696 | /** |
||
| 1697 | * Allows plugins to submit security reports. |
||
| 1698 | * |
||
| 1699 | * @param string $type Report type (login_form, backup, file_scanning, spam) |
||
| 1700 | * @param string $plugin_file Plugin __FILE__, so that we can pull plugin data |
||
| 1701 | * @param array $args See definitions above |
||
| 1702 | */ |
||
| 1703 | public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) { |
||
| 1704 | _deprecated_function( __FUNCTION__, 'jetpack-4.2', null ); |
||
| 1705 | } |
||
| 1706 | |||
| 1707 | /* Jetpack Options API */ |
||
| 1708 | |||
| 1709 | public static function get_option_names( $type = 'compact' ) { |
||
| 1710 | return Jetpack_Options::get_option_names( $type ); |
||
| 1711 | } |
||
| 1712 | |||
| 1713 | /** |
||
| 1714 | * Returns the requested option. Looks in jetpack_options or jetpack_$name as appropriate. |
||
| 1715 | * |
||
| 1716 | * @param string $name Option name |
||
| 1717 | * @param mixed $default (optional) |
||
| 1718 | */ |
||
| 1719 | public static function get_option( $name, $default = false ) { |
||
| 1720 | return Jetpack_Options::get_option( $name, $default ); |
||
| 1721 | } |
||
| 1722 | |||
| 1723 | /** |
||
| 1724 | * Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action |
||
| 1725 | * Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted |
||
| 1726 | * $name must be a registered option name. |
||
| 1727 | */ |
||
| 1728 | public static function create_nonce( $name ) { |
||
| 1729 | $secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 ); |
||
| 1730 | |||
| 1731 | Jetpack_Options::update_option( $name, $secret ); |
||
| 1732 | @list( $secret_1, $secret_2, $eol ) = explode( ':', Jetpack_Options::get_option( $name ) ); |
||
| 1733 | if ( empty( $secret_1 ) || empty( $secret_2 ) || $eol < time() ) |
||
| 1734 | return new Jetpack_Error( 'missing_secrets' ); |
||
| 1735 | |||
| 1736 | return array( |
||
| 1737 | 'secret_1' => $secret_1, |
||
| 1738 | 'secret_2' => $secret_2, |
||
| 1739 | 'eol' => $eol, |
||
| 1740 | ); |
||
| 1741 | } |
||
| 1742 | |||
| 1743 | /** |
||
| 1744 | * Updates the single given option. Updates jetpack_options or jetpack_$name as appropriate. |
||
| 1745 | * |
||
| 1746 | * @deprecated 3.4 use Jetpack_Options::update_option() instead. |
||
| 1747 | * @param string $name Option name |
||
| 1748 | * @param mixed $value Option value |
||
| 1749 | */ |
||
| 1750 | public static function update_option( $name, $value ) { |
||
| 1751 | _deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' ); |
||
| 1752 | return Jetpack_Options::update_option( $name, $value ); |
||
| 1753 | } |
||
| 1754 | |||
| 1755 | /** |
||
| 1756 | * Updates the multiple given options. Updates jetpack_options and/or jetpack_$name as appropriate. |
||
| 1757 | * |
||
| 1758 | * @deprecated 3.4 use Jetpack_Options::update_options() instead. |
||
| 1759 | * @param array $array array( option name => option value, ... ) |
||
| 1760 | */ |
||
| 1761 | public static function update_options( $array ) { |
||
| 1765 | |||
| 1766 | /** |
||
| 1767 | * Deletes the given option. May be passed multiple option names as an array. |
||
| 1768 | * Updates jetpack_options and/or deletes jetpack_$name as appropriate. |
||
| 1769 | * |
||
| 1770 | * @deprecated 3.4 use Jetpack_Options::delete_option() instead. |
||
| 1771 | * @param string|array $names |
||
| 1772 | */ |
||
| 1773 | public static function delete_option( $names ) { |
||
| 1777 | |||
| 1778 | /** |
||
| 1779 | * Enters a user token into the user_tokens option |
||
| 1780 | * |
||
| 1781 | * @param int $user_id |
||
| 1782 | * @param string $token |
||
| 1783 | * return bool |
||
| 1784 | */ |
||
| 1785 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
||
| 1799 | |||
| 1800 | /** |
||
| 1801 | * Returns an array of all PHP files in the specified absolute path. |
||
| 1802 | * Equivalent to glob( "$absolute_path/*.php" ). |
||
| 1803 | * |
||
| 1804 | * @param string $absolute_path The absolute path of the directory to search. |
||
| 1805 | * @return array Array of absolute paths to the PHP files. |
||
| 1806 | */ |
||
| 1807 | public static function glob_php( $absolute_path ) { |
||
| 1836 | |||
| 1837 | public static function activate_new_modules( $redirect = false ) { |
||
| 1895 | |||
| 1896 | /** |
||
| 1897 | * List available Jetpack modules. Simply lists .php files in /modules/. |
||
| 1898 | * Make sure to tuck away module "library" files in a sub-directory. |
||
| 1899 | */ |
||
| 1900 | public static function get_available_modules( $min_version = false, $max_version = false ) { |
||
| 1957 | |||
| 1958 | /** |
||
| 1959 | * Default modules loaded on activation. |
||
| 1960 | */ |
||
| 1961 | public static function get_default_modules( $min_version = false, $max_version = false ) { |
||
| 1992 | |||
| 1993 | /** |
||
| 1994 | * Checks activated modules during auto-activation to determine |
||
| 1995 | * if any of those modules are being deprecated. If so, close |
||
| 1996 | * them out, and add any replacement modules. |
||
| 1997 | * |
||
| 1998 | * Runs at priority 99 by default. |
||
| 1999 | * |
||
| 2000 | * This is run late, so that it can still activate a module if |
||
| 2001 | * the new module is a replacement for another that the user |
||
| 2002 | * currently has active, even if something at the normal priority |
||
| 2003 | * would kibosh everything. |
||
| 2004 | * |
||
| 2005 | * @since 2.6 |
||
| 2006 | * @uses jetpack_get_default_modules filter |
||
| 2007 | * @param array $modules |
||
| 2008 | * @return array |
||
| 2009 | */ |
||
| 2010 | function handle_deprecated_modules( $modules ) { |
||
| 2036 | |||
| 2037 | /** |
||
| 2038 | * Checks activated plugins during auto-activation to determine |
||
| 2039 | * if any of those plugins are in the list with a corresponding module |
||
| 2040 | * that is not compatible with the plugin. The module will not be allowed |
||
| 2041 | * to auto-activate. |
||
| 2042 | * |
||
| 2043 | * @since 2.6 |
||
| 2044 | * @uses jetpack_get_default_modules filter |
||
| 2045 | * @param array $modules |
||
| 2046 | * @return array |
||
| 2047 | */ |
||
| 2048 | function filter_default_modules( $modules ) { |
||
| 2072 | |||
| 2073 | /** |
||
| 2074 | * Extract a module's slug from its full path. |
||
| 2075 | */ |
||
| 2076 | public static function get_module_slug( $file ) { |
||
| 2079 | |||
| 2080 | /** |
||
| 2081 | * Generate a module's path from its slug. |
||
| 2082 | */ |
||
| 2083 | public static function get_module_path( $slug ) { |
||
| 2086 | |||
| 2087 | /** |
||
| 2088 | * Load module data from module file. Headers differ from WordPress |
||
| 2089 | * plugin headers to avoid them being identified as standalone |
||
| 2090 | * plugins on the WordPress plugins page. |
||
| 2091 | */ |
||
| 2092 | public static function get_module( $module ) { |
||
| 2175 | |||
| 2176 | /** |
||
| 2177 | * Like core's get_file_data implementation, but caches the result. |
||
| 2178 | */ |
||
| 2179 | public static function get_file_data( $file, $headers ) { |
||
| 2191 | |||
| 2192 | /** |
||
| 2193 | * Return translated module tag. |
||
| 2194 | * |
||
| 2195 | * @param string $tag Tag as it appears in each module heading. |
||
| 2196 | * |
||
| 2197 | * @return mixed |
||
| 2198 | */ |
||
| 2199 | public static function translate_module_tag( $tag ) { |
||
| 2202 | |||
| 2203 | /** |
||
| 2204 | * Return module name translation. Uses matching string created in modules/module-headings.php. |
||
| 2205 | * |
||
| 2206 | * @since 3.9.2 |
||
| 2207 | * |
||
| 2208 | * @param array $modules |
||
| 2209 | * |
||
| 2210 | * @return string|void |
||
| 2211 | */ |
||
| 2212 | public static function get_translated_modules( $modules ) { |
||
| 2228 | |||
| 2229 | /** |
||
| 2230 | * Get a list of activated modules as an array of module slugs. |
||
| 2231 | */ |
||
| 2232 | public static function get_active_modules() { |
||
| 2249 | |||
| 2250 | /** |
||
| 2251 | * Check whether or not a Jetpack module is active. |
||
| 2252 | * |
||
| 2253 | * @param string $module The slug of a Jetpack module. |
||
| 2254 | * @return bool |
||
| 2255 | * |
||
| 2256 | * @static |
||
| 2257 | */ |
||
| 2258 | public static function is_module_active( $module ) { |
||
| 2261 | |||
| 2262 | public static function is_module( $module ) { |
||
| 2265 | |||
| 2266 | /** |
||
| 2267 | * Catches PHP errors. Must be used in conjunction with output buffering. |
||
| 2268 | * |
||
| 2269 | * @param bool $catch True to start catching, False to stop. |
||
| 2270 | * |
||
| 2271 | * @static |
||
| 2272 | */ |
||
| 2273 | public static function catch_errors( $catch ) { |
||
| 2286 | |||
| 2287 | /** |
||
| 2288 | * Saves any generated PHP errors in ::state( 'php_errors', {errors} ) |
||
| 2289 | */ |
||
| 2290 | public static function catch_errors_on_shutdown() { |
||
| 2293 | |||
| 2294 | public static function activate_default_modules( $min_version = false, $max_version = false, $other_modules = array(), $redirect = true ) { |
||
| 2411 | |||
| 2412 | public static function activate_module( $module, $exit = true, $redirect = true ) { |
||
| 2497 | |||
| 2498 | function activate_module_actions( $module ) { |
||
| 2501 | |||
| 2502 | public static function deactivate_module( $module ) { |
||
| 2529 | |||
| 2530 | public static function enable_module_configurable( $module ) { |
||
| 2534 | |||
| 2535 | public static function module_configuration_url( $module ) { |
||
| 2539 | |||
| 2540 | public static function module_configuration_load( $module, $method ) { |
||
| 2544 | |||
| 2545 | public static function module_configuration_head( $module, $method ) { |
||
| 2549 | |||
| 2550 | public static function module_configuration_screen( $module, $method ) { |
||
| 2554 | |||
| 2555 | public static function module_configuration_activation_screen( $module, $method ) { |
||
| 2559 | |||
| 2560 | /* Installation */ |
||
| 2561 | |||
| 2562 | public static function bail_on_activation( $message, $deactivate = true ) { |
||
| 2602 | |||
| 2603 | /** |
||
| 2604 | * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook() |
||
| 2605 | * @static |
||
| 2606 | */ |
||
| 2607 | public static function plugin_activation( $network_wide ) { |
||
| 2619 | /** |
||
| 2620 | * Runs before bumping version numbers up to a new version |
||
| 2621 | * @param (string) $version Version:timestamp |
||
| 2622 | * @param (string) $old_version Old Version:timestamp or false if not set yet. |
||
| 2623 | * @return null [description] |
||
| 2624 | */ |
||
| 2625 | public static function do_version_bump( $version, $old_version ) { |
||
| 2632 | |||
| 2633 | /** |
||
| 2634 | * Sets the internal version number and activation state. |
||
| 2635 | * @static |
||
| 2636 | */ |
||
| 2637 | public static function plugin_initialize() { |
||
| 2653 | |||
| 2654 | /** |
||
| 2655 | * Removes all connection options |
||
| 2656 | * @static |
||
| 2657 | */ |
||
| 2658 | public static function plugin_deactivation( ) { |
||
| 2667 | |||
| 2668 | /** |
||
| 2669 | * Disconnects from the Jetpack servers. |
||
| 2670 | * Forgets all connection details and tells the Jetpack servers to do the same. |
||
| 2671 | * @static |
||
| 2672 | */ |
||
| 2673 | public static function disconnect( $update_activated_state = true ) { |
||
| 2723 | |||
| 2724 | /** |
||
| 2725 | * Unlinks the current user from the linked WordPress.com user |
||
| 2726 | */ |
||
| 2727 | public static function unlink_user( $user_id = null ) { |
||
| 2758 | |||
| 2759 | /** |
||
| 2760 | * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load() |
||
| 2761 | */ |
||
| 2762 | public static function try_registration() { |
||
| 2787 | |||
| 2788 | /** |
||
| 2789 | * Tracking an internal event log. Try not to put too much chaff in here. |
||
| 2790 | * |
||
| 2791 | * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA) |
||
| 2792 | */ |
||
| 2793 | public static function log( $code, $data = null ) { |
||
| 2833 | |||
| 2834 | /** |
||
| 2835 | * Get the internal event log. |
||
| 2836 | * |
||
| 2837 | * @param $event (string) - only return the specific log events |
||
| 2838 | * @param $num (int) - get specific number of latest results, limited to 200 |
||
| 2839 | * |
||
| 2840 | * @return array of log events || WP_Error for invalid params |
||
| 2841 | */ |
||
| 2842 | public static function get_log( $event = false, $num = false ) { |
||
| 2878 | |||
| 2879 | /** |
||
| 2880 | * Log modification of important settings. |
||
| 2881 | */ |
||
| 2882 | public static function log_settings_change( $option, $old_value, $value ) { |
||
| 2889 | |||
| 2890 | /** |
||
| 2891 | * Return stat data for WPCOM sync |
||
| 2892 | */ |
||
| 2893 | public static function get_stat_data( $encode = true ) { |
||
| 2905 | |||
| 2906 | /** |
||
| 2907 | * Get additional stat data to sync to WPCOM |
||
| 2908 | */ |
||
| 2909 | public static function get_additional_stat_data( $prefix = '' ) { |
||
| 2919 | |||
| 2920 | /* Admin Pages */ |
||
| 2921 | |||
| 2922 | function admin_init() { |
||
| 2981 | |||
| 2982 | function admin_body_class( $admin_body_class = '' ) { |
||
| 2990 | |||
| 2991 | static function add_jetpack_pagestyles( $admin_body_class = '' ) { |
||
| 2994 | |||
| 2995 | function prepare_connect_notice() { |
||
| 3003 | /** |
||
| 3004 | * Call this function if you want the Big Jetpack Manage Notice to show up. |
||
| 3005 | * |
||
| 3006 | * @return null |
||
| 3007 | */ |
||
| 3008 | function prepare_manage_jetpack_notice() { |
||
| 3013 | |||
| 3014 | function manage_activate_screen() { |
||
| 3017 | /** |
||
| 3018 | * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load. |
||
| 3019 | * This function artificially throws errors for such cases (whitelisted). |
||
| 3020 | * |
||
| 3021 | * @param string $plugin The activated plugin. |
||
| 3022 | */ |
||
| 3023 | function throw_error_on_activate_plugin( $plugin ) { |
||
| 3047 | |||
| 3048 | function intercept_plugin_error_scrape_init() { |
||
| 3051 | |||
| 3052 | function intercept_plugin_error_scrape( $action, $result ) { |
||
| 3063 | |||
| 3064 | function add_remote_request_handlers() { |
||
| 3067 | |||
| 3068 | function remote_request_handlers() { |
||
| 3102 | |||
| 3103 | function upload_handler() { |
||
| 3188 | |||
| 3189 | /** |
||
| 3190 | * Add help to the Jetpack page |
||
| 3191 | * |
||
| 3192 | * @since Jetpack (1.2.3) |
||
| 3193 | * @return false if not the Jetpack page |
||
| 3194 | */ |
||
| 3195 | function admin_help() { |
||
| 3236 | |||
| 3237 | function admin_menu_css() { |
||
| 3240 | |||
| 3241 | function admin_menu_order() { |
||
| 3244 | |||
| 3245 | View Code Duplication | function jetpack_menu_order( $menu_order ) { |
|
| 3260 | |||
| 3261 | function admin_head() { |
||
| 3266 | |||
| 3267 | function admin_banner_styles() { |
||
| 3274 | |||
| 3275 | function admin_scripts() { |
||
| 3288 | |||
| 3289 | function plugin_action_links( $actions ) { |
||
| 3304 | |||
| 3305 | function admin_connect_notice() { |
||
| 3340 | |||
| 3341 | /** |
||
| 3342 | * This is the first banner |
||
| 3343 | * It should be visible only to user that can update the option |
||
| 3344 | * Are not connected |
||
| 3345 | * |
||
| 3346 | * @return null |
||
| 3347 | */ |
||
| 3348 | function admin_jetpack_manage_notice() { |
||
| 3383 | |||
| 3384 | /** |
||
| 3385 | * Returns the url that the user clicks to remove the notice for the big banner |
||
| 3386 | * @return (string) |
||
| 3387 | */ |
||
| 3388 | function opt_out_jetpack_manage_url() { |
||
| 3392 | /** |
||
| 3393 | * Returns the url that the user clicks to opt in to Jetpack Manage |
||
| 3394 | * @return (string) |
||
| 3395 | */ |
||
| 3396 | function opt_in_jetpack_manage_url() { |
||
| 3399 | |||
| 3400 | function opt_in_jetpack_manage_notice() { |
||
| 3410 | /** |
||
| 3411 | * Determines whether to show the notice of not true = display notice |
||
| 3412 | * @return (bool) |
||
| 3413 | */ |
||
| 3414 | function can_display_jetpack_manage_notice() { |
||
| 3436 | |||
| 3437 | function network_connect_notice() { |
||
| 3446 | |||
| 3447 | public static function jetpack_comment_notice() { |
||
| 3482 | |||
| 3483 | /** |
||
| 3484 | * Show the survey link when the user has just disconnected Jetpack. |
||
| 3485 | */ |
||
| 3486 | function disconnect_survey_notice() { |
||
| 3505 | |||
| 3506 | /* |
||
| 3507 | * Registration flow: |
||
| 3508 | * 1 - ::admin_page_load() action=register |
||
| 3509 | * 2 - ::try_registration() |
||
| 3510 | * 3 - ::register() |
||
| 3511 | * - Creates jetpack_register option containing two secrets and a timestamp |
||
| 3512 | * - Calls https://jetpack.wordpress.com/jetpack.register/1/ with |
||
| 3513 | * siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id |
||
| 3514 | * - That request to jetpack.wordpress.com does not immediately respond. It first makes a request BACK to this site's |
||
| 3515 | * xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1 |
||
| 3516 | * - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2 |
||
| 3517 | * - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with |
||
| 3518 | * jetpack_id, jetpack_secret, jetpack_public |
||
| 3519 | * - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret |
||
| 3520 | * 4 - redirect to https://wordpress.com/start/jetpack-connect |
||
| 3521 | * 5 - user logs in with WP.com account |
||
| 3522 | * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize |
||
| 3523 | * - Jetpack_Client_Server::authorize() |
||
| 3524 | * - Jetpack_Client_Server::get_token() |
||
| 3525 | * - GET https://jetpack.wordpress.com/jetpack.token/1/ with |
||
| 3526 | * client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login |
||
| 3527 | * - which responds with access_token, token_type, scope |
||
| 3528 | * - Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id |
||
| 3529 | * - Jetpack::activate_default_modules() |
||
| 3530 | * - Deactivates deprecated plugins |
||
| 3531 | * - Activates all default modules |
||
| 3532 | * - Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users |
||
| 3533 | * 7 - For a new connection, user selects a Jetpack plan on wordpress.com |
||
| 3534 | * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized |
||
| 3535 | * Done! |
||
| 3536 | */ |
||
| 3537 | |||
| 3538 | /** |
||
| 3539 | * Handles the page load events for the Jetpack admin page |
||
| 3540 | */ |
||
| 3541 | function admin_page_load() { |
||
| 3999 | |||
| 4000 | function admin_notices() { |
||
| 4097 | |||
| 4098 | /** |
||
| 4099 | * Record a stat for later output. This will only currently output in the admin_footer. |
||
| 4100 | */ |
||
| 4101 | function stat( $group, $detail ) { |
||
| 4106 | |||
| 4107 | /** |
||
| 4108 | * Load stats pixels. $group is auto-prefixed with "x_jetpack-" |
||
| 4109 | */ |
||
| 4110 | function do_stats( $method = '' ) { |
||
| 4125 | |||
| 4126 | /** |
||
| 4127 | * Runs stats code for a one-off, server-side. |
||
| 4128 | * |
||
| 4129 | * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store. |
||
| 4130 | * |
||
| 4131 | * @return bool If it worked. |
||
| 4132 | */ |
||
| 4133 | static function do_server_side_stat( $args ) { |
||
| 4143 | |||
| 4144 | /** |
||
| 4145 | * Builds the stats url. |
||
| 4146 | * |
||
| 4147 | * @param $args array|string The arguments to append to the URL. |
||
| 4148 | * |
||
| 4149 | * @return string The URL to be pinged. |
||
| 4150 | */ |
||
| 4151 | static function build_stats_url( $args ) { |
||
| 4171 | |||
| 4172 | static function translate_current_user_to_role() { |
||
| 4181 | |||
| 4182 | static function translate_role_to_cap( $role ) { |
||
| 4189 | |||
| 4190 | static function sign_role( $role ) { |
||
| 4202 | |||
| 4203 | |||
| 4204 | /** |
||
| 4205 | * Builds a URL to the Jetpack connection auth page |
||
| 4206 | * |
||
| 4207 | * @since 3.9.5 |
||
| 4208 | * |
||
| 4209 | * @param bool $raw If true, URL will not be escaped. |
||
| 4210 | * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection. |
||
| 4211 | * If string, will be a custom redirect. |
||
| 4212 | * @param bool|string $from If not false, adds 'from=$from' param to the connect URL. |
||
| 4213 | * |
||
| 4214 | * @return string Connect URL |
||
| 4215 | */ |
||
| 4216 | function build_connect_url( $raw = false, $redirect = false, $from = false ) { |
||
| 4287 | |||
| 4288 | function build_reconnect_url( $raw = false ) { |
||
| 4292 | |||
| 4293 | public static function admin_url( $args = null ) { |
||
| 4298 | |||
| 4299 | public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) { |
||
| 4303 | |||
| 4304 | function dismiss_jetpack_notice() { |
||
| 4378 | |||
| 4379 | function debugger_page() { |
||
| 4387 | |||
| 4388 | public static function admin_screen_configure_module( $module_id ) { |
||
| 4440 | |||
| 4441 | /** |
||
| 4442 | * Display link to activate the module to see the settings screen. |
||
| 4443 | * @param string $module_id |
||
| 4444 | * @return null |
||
| 4445 | */ |
||
| 4446 | public static function display_activate_module_link( $module_id ) { |
||
| 4498 | |||
| 4499 | public static function sort_modules( $a, $b ) { |
||
| 4505 | |||
| 4506 | function ajax_recheck_ssl() { |
||
| 4514 | |||
| 4515 | /* Client API */ |
||
| 4516 | |||
| 4517 | /** |
||
| 4518 | * Returns the requested Jetpack API URL |
||
| 4519 | * |
||
| 4520 | * @return string |
||
| 4521 | */ |
||
| 4522 | public static function api_url( $relative_url ) { |
||
| 4525 | |||
| 4526 | /** |
||
| 4527 | * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets |
||
| 4528 | */ |
||
| 4529 | public static function fix_url_for_bad_hosts( $url ) { |
||
| 4545 | |||
| 4546 | /** |
||
| 4547 | * Checks to see if the URL is using SSL to connect with Jetpack |
||
| 4548 | * |
||
| 4549 | * @since 2.3.3 |
||
| 4550 | * @return boolean |
||
| 4551 | */ |
||
| 4552 | public static function permit_ssl( $force_recheck = false ) { |
||
| 4594 | |||
| 4595 | /* |
||
| 4596 | * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working. |
||
| 4597 | */ |
||
| 4598 | public function alert_auto_ssl_fail() { |
||
| 4647 | |||
| 4648 | /** |
||
| 4649 | * Returns the Jetpack XML-RPC API |
||
| 4650 | * |
||
| 4651 | * @return string |
||
| 4652 | */ |
||
| 4653 | public static function xmlrpc_api_url() { |
||
| 4657 | |||
| 4658 | /** |
||
| 4659 | * Creates two secret tokens and the end of life timestamp for them. |
||
| 4660 | * |
||
| 4661 | * Note these tokens are unique per call, NOT static per site for connecting. |
||
| 4662 | * |
||
| 4663 | * @since 2.6 |
||
| 4664 | * @return array |
||
| 4665 | */ |
||
| 4666 | public function generate_secrets( $action, $exp = 600 ) { |
||
| 4674 | |||
| 4675 | /** |
||
| 4676 | * Builds the timeout limit for queries talking with the wpcom servers. |
||
| 4677 | * |
||
| 4678 | * Based on local php max_execution_time in php.ini |
||
| 4679 | * |
||
| 4680 | * @since 2.6 |
||
| 4681 | * @return int |
||
| 4682 | **/ |
||
| 4683 | public function get_remote_query_timeout_limit() { |
||
| 4689 | |||
| 4690 | |||
| 4691 | /** |
||
| 4692 | * Takes the response from the Jetpack register new site endpoint and |
||
| 4693 | * verifies it worked properly. |
||
| 4694 | * |
||
| 4695 | * @since 2.6 |
||
| 4696 | * @return true or Jetpack_Error |
||
| 4697 | **/ |
||
| 4698 | public function validate_remote_register_response( $response ) { |
||
| 4733 | /** |
||
| 4734 | * @return bool|WP_Error |
||
| 4735 | */ |
||
| 4736 | public static function register() { |
||
| 4833 | |||
| 4834 | /** |
||
| 4835 | * If the db version is showing something other that what we've got now, bump it to current. |
||
| 4836 | * |
||
| 4837 | * @return bool: True if the option was incorrect and updated, false if nothing happened. |
||
| 4838 | */ |
||
| 4839 | public static function maybe_set_version_option() { |
||
| 4853 | |||
| 4854 | /* Client Server API */ |
||
| 4855 | |||
| 4856 | /** |
||
| 4857 | * Loads the Jetpack XML-RPC client |
||
| 4858 | */ |
||
| 4859 | public static function load_xml_rpc_client() { |
||
| 4863 | |||
| 4864 | function verify_xml_rpc_signature() { |
||
| 4962 | |||
| 4963 | /** |
||
| 4964 | * Authenticates XML-RPC and other requests from the Jetpack Server |
||
| 4965 | */ |
||
| 4966 | function authenticate_jetpack( $user, $username, $password ) { |
||
| 4989 | |||
| 4990 | function add_nonce( $timestamp, $nonce ) { |
||
| 5028 | |||
| 5029 | /** |
||
| 5030 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
||
| 5031 | * Capture it here so we can verify the signature later. |
||
| 5032 | */ |
||
| 5033 | function xmlrpc_methods( $methods ) { |
||
| 5037 | |||
| 5038 | function public_xmlrpc_methods( $methods ) { |
||
| 5044 | |||
| 5045 | function jetpack_getOptions( $args ) { |
||
| 5085 | |||
| 5086 | function xmlrpc_options( $options ) { |
||
| 5104 | |||
| 5105 | public static function clean_nonces( $all = false ) { |
||
| 5130 | |||
| 5131 | /** |
||
| 5132 | * State is passed via cookies from one request to the next, but never to subsequent requests. |
||
| 5133 | * SET: state( $key, $value ); |
||
| 5134 | * GET: $value = state( $key ); |
||
| 5135 | * |
||
| 5136 | * @param string $key |
||
| 5137 | * @param string $value |
||
| 5138 | * @param bool $restate private |
||
| 5139 | */ |
||
| 5140 | public static function state( $key = null, $value = null, $restate = false ) { |
||
| 5190 | |||
| 5191 | public static function restate() { |
||
| 5194 | |||
| 5195 | public static function check_privacy( $file ) { |
||
| 5230 | |||
| 5231 | /** |
||
| 5232 | * Helper method for multicall XMLRPC. |
||
| 5233 | */ |
||
| 5234 | public static function xmlrpc_async_call() { |
||
| 5276 | |||
| 5277 | public static function staticize_subdomain( $url ) { |
||
| 5312 | |||
| 5313 | /* JSON API Authorization */ |
||
| 5314 | |||
| 5315 | /** |
||
| 5316 | * Handles the login action for Authorizing the JSON API |
||
| 5317 | */ |
||
| 5318 | function login_form_json_api_authorization() { |
||
| 5327 | |||
| 5328 | // Make sure the login form is POSTed to the signed URL so we can reverify the request |
||
| 5329 | function post_login_form_to_signed_url( $url, $path, $scheme ) { |
||
| 5342 | |||
| 5343 | // Make sure the POSTed request is handled by the same action |
||
| 5344 | function preserve_action_in_login_form_for_json_api_authorization() { |
||
| 5348 | |||
| 5349 | // If someone logs in to approve API access, store the Access Code in usermeta |
||
| 5350 | function store_json_api_authorization_token( $user_login, $user ) { |
||
| 5356 | |||
| 5357 | // Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access |
||
| 5358 | function allow_wpcom_public_api_domain( $domains ) { |
||
| 5362 | |||
| 5363 | // Add the Access Code details to the public-api.wordpress.com redirect |
||
| 5364 | function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) { |
||
| 5376 | |||
| 5377 | // Verifies the request by checking the signature |
||
| 5378 | function verify_json_api_authorization_request() { |
||
| 5457 | |||
| 5458 | function login_message_json_api_authorization( $message ) { |
||
| 5464 | |||
| 5465 | /** |
||
| 5466 | * Get $content_width, but with a <s>twist</s> filter. |
||
| 5467 | */ |
||
| 5468 | public static function get_content_width() { |
||
| 5479 | |||
| 5480 | /** |
||
| 5481 | * Centralize the function here until it gets added to core. |
||
| 5482 | * |
||
| 5483 | * @param int|string|object $id_or_email A user ID, email address, or comment object |
||
| 5484 | * @param int $size Size of the avatar image |
||
| 5485 | * @param string $default URL to a default image to use if no avatar is available |
||
| 5486 | * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled |
||
| 5487 | * |
||
| 5488 | * @return array First element is the URL, second is the class. |
||
| 5489 | */ |
||
| 5490 | public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) { |
||
| 5518 | |||
| 5519 | /** |
||
| 5520 | * Pings the WordPress.com Mirror Site for the specified options. |
||
| 5521 | * |
||
| 5522 | * @param string|array $option_names The option names to request from the WordPress.com Mirror Site |
||
| 5523 | * |
||
| 5524 | * @return array An associative array of the option values as stored in the WordPress.com Mirror Site |
||
| 5525 | */ |
||
| 5526 | public function get_cloud_site_options( $option_names ) { |
||
| 5542 | |||
| 5543 | /** |
||
| 5544 | * Fetch the filtered array of options that we should compare to determine an identity crisis. |
||
| 5545 | * |
||
| 5546 | * @return array An array of options to check. |
||
| 5547 | */ |
||
| 5548 | public static function identity_crisis_options_to_check() { |
||
| 5554 | |||
| 5555 | /** |
||
| 5556 | * Checks to make sure that local options have the same values as remote options. Will cache the results for up to 24 hours. |
||
| 5557 | * |
||
| 5558 | * @param bool $force_recheck Whether to ignore any cached transient and manually re-check. |
||
| 5559 | * |
||
| 5560 | * @return array An array of options that do not match. If everything is good, it will evaluate to false. |
||
| 5561 | */ |
||
| 5562 | public static function check_identity_crisis( $force_recheck = false ) { |
||
| 5628 | |||
| 5629 | /* |
||
| 5630 | * Resolve ID crisis |
||
| 5631 | * |
||
| 5632 | * If the URL has changed, but the rest of the options are the same (i.e. blog/user tokens) |
||
| 5633 | * The user has the option to update the shadow site with the new URL before a new |
||
| 5634 | * token is created. |
||
| 5635 | * |
||
| 5636 | * @param $key : Which option to sync. null defautlts to home and siteurl |
||
| 5637 | */ |
||
| 5638 | public static function resolve_identity_crisis( $key = null ) { |
||
| 5658 | |||
| 5659 | /* |
||
| 5660 | * Whitelist URL |
||
| 5661 | * |
||
| 5662 | * Ignore the URL differences between the blog and the shadow site. |
||
| 5663 | */ |
||
| 5664 | public static function whitelist_current_url() { |
||
| 5672 | |||
| 5673 | /* |
||
| 5674 | * Ajax callbacks for ID crisis resolutions |
||
| 5675 | * |
||
| 5676 | * Things that could happen here: |
||
| 5677 | * - site_migrated : Update the URL on the shadow blog to match new domain |
||
| 5678 | * - whitelist : Ignore the URL difference |
||
| 5679 | * - default : Error message |
||
| 5680 | */ |
||
| 5681 | public static function resolve_identity_crisis_ajax_callback() { |
||
| 5721 | |||
| 5722 | /** |
||
| 5723 | * Adds a value to the whitelist for the specified key. |
||
| 5724 | * |
||
| 5725 | * @param string $key The option name that we're whitelisting the value for. |
||
| 5726 | * @param string $value The value that we're intending to add to the whitelist. |
||
| 5727 | * |
||
| 5728 | * @return bool Whether the value was added to the whitelist, or false if it was already there. |
||
| 5729 | */ |
||
| 5730 | public static function whitelist_identity_crisis_value( $key, $value ) { |
||
| 5744 | |||
| 5745 | /** |
||
| 5746 | * Checks whether a value is already whitelisted. |
||
| 5747 | * |
||
| 5748 | * @param string $key The option name that we're checking the value for. |
||
| 5749 | * @param string $value The value that we're curious to see if it's on the whitelist. |
||
| 5750 | * |
||
| 5751 | * @return bool Whether the value is whitelisted. |
||
| 5752 | */ |
||
| 5753 | public static function is_identity_crisis_value_whitelisted( $key, $value ) { |
||
| 5760 | |||
| 5761 | /** |
||
| 5762 | * Checks whether the home and siteurl specifically are whitelisted |
||
| 5763 | * Written so that we don't have re-check $key and $value params every time |
||
| 5764 | * we want to check if this site is whitelisted, for example in footer.php |
||
| 5765 | * |
||
| 5766 | * @return bool True = already whitelisted False = not whitelisted |
||
| 5767 | */ |
||
| 5768 | public static function is_staging_site() { |
||
| 5835 | |||
| 5836 | public function identity_crisis_js( $nonce ) { |
||
| 5906 | |||
| 5907 | /** |
||
| 5908 | * Maybe Use a .min.css stylesheet, maybe not. |
||
| 5909 | * |
||
| 5910 | * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args. |
||
| 5911 | */ |
||
| 5912 | public static function maybe_min_asset( $url, $path, $plugin ) { |
||
| 5947 | |||
| 5948 | /** |
||
| 5949 | * Maybe inlines a stylesheet. |
||
| 5950 | * |
||
| 5951 | * If you'd like to inline a stylesheet instead of printing a link to it, |
||
| 5952 | * wp_style_add_data( 'handle', 'jetpack-inline', true ); |
||
| 5953 | * |
||
| 5954 | * Attached to `style_loader_tag` filter. |
||
| 5955 | * |
||
| 5956 | * @param string $tag The tag that would link to the external asset. |
||
| 5957 | * @param string $handle The registered handle of the script in question. |
||
| 5958 | * |
||
| 5959 | * @return string |
||
| 5960 | */ |
||
| 5961 | public static function maybe_inline_style( $tag, $handle ) { |
||
| 6011 | |||
| 6012 | /** |
||
| 6013 | * Loads a view file from the views |
||
| 6014 | * |
||
| 6015 | * Data passed in with the $data parameter will be available in the |
||
| 6016 | * template file as $data['value'] |
||
| 6017 | * |
||
| 6018 | * @param string $template - Template file to load |
||
| 6019 | * @param array $data - Any data to pass along to the template |
||
| 6020 | * @return boolean - If template file was found |
||
| 6021 | **/ |
||
| 6022 | public function load_view( $template, $data = array() ) { |
||
| 6033 | |||
| 6034 | /** |
||
| 6035 | * Throws warnings for deprecated hooks to be removed from Jetpack |
||
| 6036 | */ |
||
| 6037 | public function deprecated_hooks() { |
||
| 6079 | |||
| 6080 | /** |
||
| 6081 | * Converts any url in a stylesheet, to the correct absolute url. |
||
| 6082 | * |
||
| 6083 | * Considerations: |
||
| 6084 | * - Normal, relative URLs `feh.png` |
||
| 6085 | * - Data URLs `data:image/gif;base64,eh129ehiuehjdhsa==` |
||
| 6086 | * - Schema-agnostic URLs `//domain.com/feh.png` |
||
| 6087 | * - Absolute URLs `http://domain.com/feh.png` |
||
| 6088 | * - Domain root relative URLs `/feh.png` |
||
| 6089 | * |
||
| 6090 | * @param $css string: The raw CSS -- should be read in directly from the file. |
||
| 6091 | * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
||
| 6092 | * |
||
| 6093 | * @return mixed|string |
||
| 6094 | */ |
||
| 6095 | public static function absolutize_css_urls( $css, $css_file_url ) { |
||
| 6139 | |||
| 6140 | /** |
||
| 6141 | * This method checks to see if SSL is required by the site in |
||
| 6142 | * order to visit it in some way other than only setting the |
||
| 6143 | * https value in the home or siteurl values. |
||
| 6144 | * |
||
| 6145 | * @since 3.2 |
||
| 6146 | * @return boolean |
||
| 6147 | **/ |
||
| 6148 | private function is_ssl_required_to_visit_site() { |
||
| 6157 | |||
| 6158 | /** |
||
| 6159 | * This methods removes all of the registered css files on the front end |
||
| 6160 | * from Jetpack in favor of using a single file. In effect "imploding" |
||
| 6161 | * all the files into one file. |
||
| 6162 | * |
||
| 6163 | * Pros: |
||
| 6164 | * - Uses only ONE css asset connection instead of 15 |
||
| 6165 | * - Saves a minimum of 56k |
||
| 6166 | * - Reduces server load |
||
| 6167 | * - Reduces time to first painted byte |
||
| 6168 | * |
||
| 6169 | * Cons: |
||
| 6170 | * - Loads css for ALL modules. However all selectors are prefixed so it |
||
| 6171 | * should not cause any issues with themes. |
||
| 6172 | * - Plugins/themes dequeuing styles no longer do anything. See |
||
| 6173 | * jetpack_implode_frontend_css filter for a workaround |
||
| 6174 | * |
||
| 6175 | * For some situations developers may wish to disable css imploding and |
||
| 6176 | * instead operate in legacy mode where each file loads seperately and |
||
| 6177 | * can be edited individually or dequeued. This can be accomplished with |
||
| 6178 | * the following line: |
||
| 6179 | * |
||
| 6180 | * add_filter( 'jetpack_implode_frontend_css', '__return_false' ); |
||
| 6181 | * |
||
| 6182 | * @since 3.2 |
||
| 6183 | **/ |
||
| 6184 | public function implode_frontend_css( $travis_test = false ) { |
||
| 6236 | |||
| 6237 | function concat_remove_style_loader_tag( $tag, $handle ) { |
||
| 6247 | |||
| 6248 | /* |
||
| 6249 | * Check the heartbeat data |
||
| 6250 | * |
||
| 6251 | * Organizes the heartbeat data by severity. For example, if the site |
||
| 6252 | * is in an ID crisis, it will be in the $filtered_data['bad'] array. |
||
| 6253 | * |
||
| 6254 | * Data will be added to "caution" array, if it either: |
||
| 6255 | * - Out of date Jetpack version |
||
| 6256 | * - Out of date WP version |
||
| 6257 | * - Out of date PHP version |
||
| 6258 | * |
||
| 6259 | * $return array $filtered_data |
||
| 6260 | */ |
||
| 6261 | public static function jetpack_check_heartbeat_data() { |
||
| 6314 | |||
| 6315 | |||
| 6316 | /* |
||
| 6317 | * This method is used to organize all options that can be reset |
||
| 6318 | * without disconnecting Jetpack. |
||
| 6319 | * |
||
| 6320 | * It is used in class.jetpack-cli.php to reset options |
||
| 6321 | * |
||
| 6322 | * @return array of options to delete. |
||
| 6323 | */ |
||
| 6324 | public static function get_jetpack_options_for_reset() { |
||
| 6390 | |||
| 6391 | /* |
||
| 6392 | * Check if an option of a Jetpack module has been updated. |
||
| 6393 | * |
||
| 6394 | * If any module option has been updated before Jump Start has been dismissed, |
||
| 6395 | * update the 'jumpstart' option so we can hide Jump Start. |
||
| 6396 | */ |
||
| 6397 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
||
| 6419 | |||
| 6420 | /* |
||
| 6421 | * Strip http:// or https:// from a url, replaces forward slash with ::, |
||
| 6422 | * so we can bring them directly to their site in calypso. |
||
| 6423 | * |
||
| 6424 | * @param string | url |
||
| 6425 | * @return string | url without the guff |
||
| 6426 | */ |
||
| 6427 | public static function build_raw_urls( $url ) { |
||
| 6433 | |||
| 6434 | /** |
||
| 6435 | * Stores and prints out domains to prefetch for page speed optimization. |
||
| 6436 | * |
||
| 6437 | * @param mixed $new_urls |
||
| 6438 | */ |
||
| 6439 | public static function dns_prefetch( $new_urls = null ) { |
||
| 6456 | |||
| 6457 | public function wp_dashboard_setup() { |
||
| 6485 | |||
| 6486 | /** |
||
| 6487 | * @param mixed $result Value for the user's option |
||
| 6488 | * @return mixed |
||
| 6489 | */ |
||
| 6490 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
||
| 6515 | |||
| 6516 | public static function dashboard_widget() { |
||
| 6524 | |||
| 6525 | public static function dashboard_widget_footer() { |
||
| 6558 | |||
| 6559 | public function dashboard_widget_connect_to_wpcom() { |
||
| 6581 | |||
| 6582 | /* |
||
| 6583 | * A graceful transition to using Core's site icon. |
||
| 6584 | * |
||
| 6585 | * All of the hard work has already been done with the image |
||
| 6586 | * in all_done_page(). All that needs to be done now is update |
||
| 6587 | * the option and display proper messaging. |
||
| 6588 | * |
||
| 6589 | * @todo remove when WP 4.3 is minimum |
||
| 6590 | * |
||
| 6591 | * @since 3.6.1 |
||
| 6592 | * |
||
| 6593 | * @return bool false = Core's icon not available || true = Core's icon is available |
||
| 6594 | */ |
||
| 6595 | public static function jetpack_site_icon_available_in_core() { |
||
| 6630 | |||
| 6631 | /** |
||
| 6632 | * Return string containing the Jetpack logo. |
||
| 6633 | * |
||
| 6634 | * @since 3.9.0 |
||
| 6635 | * |
||
| 6636 | * @return string |
||
| 6637 | */ |
||
| 6638 | public static function get_jp_emblem() { |
||
| 6641 | |||
| 6642 | /* |
||
| 6643 | * Adds a "blank" column in the user admin table to display indication of user connection. |
||
| 6644 | */ |
||
| 6645 | function jetpack_icon_user_connected( $columns ) { |
||
| 6649 | |||
| 6650 | /* |
||
| 6651 | * Show Jetpack icon if the user is linked. |
||
| 6652 | */ |
||
| 6653 | function jetpack_show_user_connected_icon( $val, $col, $user_id ) { |
||
| 6665 | |||
| 6666 | /* |
||
| 6667 | * Style the Jetpack user column |
||
| 6668 | */ |
||
| 6669 | function jetpack_user_col_style() { |
||
| 6682 | |||
| 6683 | } |
||
| 6684 |
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.