PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 7.3.4
Jetpack – WP Security, Backup, Speed, & Growth v7.3.4
12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 14.4.2 All 500 releases
← All changes | jetpack.php +121 -158 12.8.37.3.4 View file →
@@ -1,81 +1,36 @@
1 1 <?php
2 -/**
3 - * Plugin Name: Jetpack
2 +
3 +/*
4 + * Plugin Name: Jetpack by WordPress.com
4 5 * Plugin URI: https://jetpack.com
5 - * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
6 + * Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.
6 7 * Author: Automattic
7 - * Version: 12.8.3
8 + * Version: 7.3.4
8 9 * Author URI: https://jetpack.com
9 10 * License: GPL2+
10 11 * Text Domain: jetpack
11 - * Requires at least: 6.2
12 - * Requires PHP: 5.6
13 - *
14 - * @package automattic/jetpack
12 + * Domain Path: /languages/
15 13 */
16 14
17 -use Automattic\Jetpack\Image_CDN\Image_CDN_Core;
15 +define( 'JETPACK__MINIMUM_WP_VERSION', '5.0' );
18 16
19 -/*
20 -This program is free software; you can redistribute it and/or
21 -modify it under the terms of the GNU General Public License
22 -as published by the Free Software Foundation; either version 2
23 -of the License, or (at your option) any later version.
17 +define( 'JETPACK__VERSION', '7.3.4' );
18 +define( 'JETPACK_MASTER_USER', true );
19 +define( 'JETPACK__API_VERSION', 1 );
20 +define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
21 +define( 'JETPACK__PLUGIN_FILE', __FILE__ );
24 22
25 -This program is distributed in the hope that it will be useful,
26 -but WITHOUT ANY WARRANTY; without even the implied warranty of
27 -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 -GNU General Public License for more details.
23 +defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) or define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
24 +defined( 'JETPACK_CLIENT__HTTPS' ) or define( 'JETPACK_CLIENT__HTTPS', 'AUTO' );
25 +defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) or define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' );
26 +defined( 'JETPACK__API_BASE' ) or define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' );
27 +defined( 'JETPACK_PROTECT__API_HOST' ) or define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' );
28 +defined( 'JETPACK__WPCOM_JSON_API_HOST' ) or define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' );
29 29
30 -You should have received a copy of the GNU General Public License
31 -along with this program; if not, write to the Free Software
32 -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
33 -*/
30 +defined( 'JETPACK__SANDBOX_DOMAIN' ) or define( 'JETPACK__SANDBOX_DOMAIN', '' );
34 31
35 -define( 'JETPACK__MINIMUM_WP_VERSION', '6.2' );
36 -define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
37 -define( 'JETPACK__VERSION', '12.8.3' );
38 -
39 -/**
40 - * Constant used to fetch the connection owner token
41 - *
42 - * @deprecated 9.0.0
43 - * @var boolean
44 - */
45 -define( 'JETPACK_MASTER_USER', true );
46 -
47 -define( 'JETPACK__API_VERSION', 1 );
48 -define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
49 -define( 'JETPACK__PLUGIN_FILE', __FILE__ );
50 -
51 -defined( 'JETPACK__RELEASE_POST_BLOG_SLUG' ) || define( 'JETPACK__RELEASE_POST_BLOG_SLUG', 'jetpackreleaseblog.wordpress.com' );
52 -defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
53 -
54 -/**
55 - * WP.com API no longer supports `http://` protocol.
56 - * This means Jetpack can't function properly on servers that can't send outbound HTTPS requests.
57 - * The constant is no longer used.
58 - *
59 - * @deprecated 9.1.0
60 - */
61 -defined( 'JETPACK_CLIENT__HTTPS' ) || define( 'JETPACK_CLIENT__HTTPS', 'AUTO' );
62 -
63 -defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'jetpack_vendor/automattic/jetpack-compat/lib/locales.php' );
64 -defined( 'JETPACK__API_BASE' ) || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' );
65 -defined( 'JETPACK_PROTECT__API_HOST' ) || define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' );
66 -defined( 'JETPACK__WPCOM_JSON_API_BASE' ) || define( 'JETPACK__WPCOM_JSON_API_BASE', 'https://public-api.wordpress.com' );
67 -
68 -/**
69 - * WP.com API no longer supports `http://` protocol.
70 - * Use `JETPACK__WPCOM_JSON_API_BASE` instead, which has the protocol hardcoded.
71 - *
72 - * @deprecated 9.1.0
73 - */
74 -defined( 'JETPACK__WPCOM_JSON_API_HOST' ) || define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' );
75 -
76 -defined( 'JETPACK__SANDBOX_DOMAIN' ) || define( 'JETPACK__SANDBOX_DOMAIN', '' );
77 -defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) || define(
32 +defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) or define(
78 33 'JETPACK__DEBUGGER_PUBLIC_KEY',
79 34 "\r\n" . '-----BEGIN PUBLIC KEY-----' . "\r\n"
80 35 . 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm+uLLVoxGCY71LS6KFc6' . "\r\n"
81 36 . '1UnF6QGBAsi5XF8ty9kR3/voqfOkpW+gRerM2Kyjy6DPCOmzhZj7BFGtxSV2ZoMX' . "\r\n"
@@ -86,116 +41,124 @@
86 41 . 'EwIDAQAB' . "\r\n"
87 42 . '-----END PUBLIC KEY-----' . "\r\n"
88 43 );
89 44
90 -/*
91 - * These constants can be set in wp-config.php to ensure sites behind proxies will still work.
92 - * Setting these constants, though, is *not* the preferred method. It's better to configure
93 - * the proxy to send the X-Forwarded-Port header.
45 +/**
46 + * Returns the location of Jetpack's lib directory. This filter is applied
47 + * in require_lib().
48 + *
49 + * @since 4.0.2
50 + *
51 + * @return string Location of Jetpack library directory.
52 + *
53 + * @filter require_lib_dir
94 54 */
95 -defined( 'JETPACK_SIGNATURE__HTTP_PORT' ) || define( 'JETPACK_SIGNATURE__HTTP_PORT', 80 );
96 -defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) || define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 );
55 +function jetpack_require_lib_dir() {
56 + return JETPACK__PLUGIN_DIR . '_inc/lib';
57 +}
97 58
59 +
98 60 /**
99 - * Check if the version of WordPress in use on the site is supported by Jetpack.
61 + * Checks if the code debug mode turned on, and returns false if it is. When Jetpack is in
62 + * code debug mode, it shouldn't use minified assets. Note that this filter is not being used
63 + * in every place where assets are enqueued. The filter is added at priority 9 to be overridden
64 + * by any default priority filter that runs after it.
65 + *
66 + * @since 6.2.0
67 + *
68 + * @return boolean
69 + *
70 + * @filter jetpack_should_use_minified_assets
100 71 */
101 -if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
102 - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
103 - error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
104 - sprintf(
105 - /* translators: Placeholders are numbers, versions of WordPress in use on the site, and required by WordPress. */
106 - esc_html__( 'Your version of WordPress (%1$s) is lower than the version required by Jetpack (%2$s). Please update WordPress to continue enjoying Jetpack.', 'jetpack' ),
107 - $GLOBALS['wp_version'],
108 - JETPACK__MINIMUM_WP_VERSION
109 - )
110 - );
72 +function jetpack_should_use_minified_assets() {
73 + if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
74 + return false;
111 75 }
76 + return true;
77 +}
112 78
113 - /**
114 - * Outputs for an admin notice about running Jetpack on outdated WordPress.
115 - *
116 - * @since 7.2.0
117 - */
118 - function jetpack_admin_unsupported_wp_notice() {
119 - ?>
120 - <div class="notice notice-error is-dismissible">
121 - <p><?php esc_html_e( 'Jetpack requires a more recent version of WordPress and has been paused. Please update WordPress to continue enjoying Jetpack.', 'jetpack' ); ?></p>
122 - </div>
123 - <?php
124 - }
79 +/**
80 + * Outputs for an admin notice about running Jetpack on outdated WordPress.
81 + *
82 + * @since 7.2.0
83 + */
84 +function jetpack_admin_unsupported_wp_notice() { ?>
85 + <div class="notice notice-error is-dismissible">
86 + <p><?php esc_html_e( 'Jetpack requires a more recent version of WordPress and has been paused. Please update WordPress to continue enjoying Jetpack.', 'jetpack' ); ?></p>
87 + </div>
88 + <?php
89 +}
125 90
91 +if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
126 92 add_action( 'admin_notices', 'jetpack_admin_unsupported_wp_notice' );
127 93 return;
128 94 }
129 95
130 -/**
131 - * This is where the loading of Jetpack begins.
132 - *
133 - * First, we try to load our composer autoloader.
134 - *
135 - * - If it fails, we "pause" Jetpack by ending the loading process
136 - * and displaying an admin_notice to inform the site owner.
137 - * (We want to fail gracefully if `composer install` has not been executed yet, so we are checking for the autoloader.)
138 - * - If it succeeds, we require load-jetpack.php, where all legacy files are required,
139 - * and where we add on to various hooks that we expect to always run.
140 - */
141 -$jetpack_autoloader = JETPACK__PLUGIN_DIR . 'vendor/autoload_packages.php';
142 -$jetpack_module_headings_file = JETPACK__PLUGIN_DIR . 'modules/module-headings.php'; // This file is loaded later in load-jetpack.php, but let's check here to pause before half-loading Jetpack.
143 -if ( is_readable( $jetpack_autoloader ) && is_readable( $jetpack_module_headings_file ) ) {
144 - require_once $jetpack_autoloader;
145 - if ( method_exists( '\Automattic\Jetpack\Assets', 'alias_textdomains_from_file' ) ) {
146 - \Automattic\Jetpack\Assets::alias_textdomains_from_file( JETPACK__PLUGIN_DIR . 'jetpack_vendor/i18n-map.php' );
147 - }
148 -} else {
149 - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
150 - error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
151 - sprintf(
152 - /* translators: Placeholder is a link to a support document. */
153 - __( 'Your installation of Jetpack is incomplete. If you installed Jetpack from GitHub, please refer to this document to set up your development environment: %1$s', 'jetpack' ),
154 - 'https://github.com/Automattic/jetpack/blob/trunk/docs/development-environment.md'
155 - )
156 - );
157 - }
96 +add_filter( 'jetpack_require_lib_dir', 'jetpack_require_lib_dir' );
97 +add_filter( 'jetpack_should_use_minified_assets', 'jetpack_should_use_minified_assets', 9 );
158 98
159 - /**
160 - * Outputs an admin notice for folks running Jetpack without having run composer install.
161 - *
162 - * @since 7.4.0
163 - */
164 - function jetpack_admin_missing_files() {
165 - ?>
166 - <div class="notice notice-error is-dismissible">
167 - <p>
168 - <?php
169 - printf(
170 - wp_kses(
171 - /* translators: Placeholder is a link to a support document. */
172 - __( 'Your installation of Jetpack is incomplete. If you installed Jetpack from GitHub, please refer to <a href="%1$s" target="_blank" rel="noopener noreferrer">this document</a> to set up your development environment. Jetpack must have Composer dependencies installed and built via the build command: <code>jetpack build plugins/jetpack --with-deps</code>', 'jetpack' ),
173 - array(
174 - 'a' => array(
175 - 'href' => array(),
176 - 'rel' => array(),
177 - 'target' => array(),
178 - ),
179 - 'code' => array(),
180 - )
181 - ),
182 - 'https://github.com/Automattic/jetpack/blob/trunk/docs/development-environment.md#building-your-project'
183 - );
184 - ?>
185 - </p>
186 - </div>
187 - <?php
188 - }
99 +// @todo: Abstract out the admin functions, and only include them if is_admin()
100 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack.php' );
101 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-network.php' );
102 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-client.php' );
103 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-data.php' );
104 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-client-server.php' );
105 +require_once( JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-actions.php' );
106 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-options.php' );
107 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-user-agent.php' );
108 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-post-images.php' );
109 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-error.php' );
110 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-heartbeat.php' );
111 +require_once( JETPACK__PLUGIN_DIR . 'class.photon.php' );
112 +require_once( JETPACK__PLUGIN_DIR . 'functions.photon.php' );
113 +require_once( JETPACK__PLUGIN_DIR . 'functions.global.php' );
114 +require_once( JETPACK__PLUGIN_DIR . 'functions.compat.php' );
115 +require_once( JETPACK__PLUGIN_DIR . 'functions.gallery.php' );
116 +require_once( JETPACK__PLUGIN_DIR . 'require-lib.php' );
117 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-autoupdate.php' );
118 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-tracks.php' );
119 +require_once( JETPACK__PLUGIN_DIR . 'class.frame-nonce-preview.php' );
120 +require_once( JETPACK__PLUGIN_DIR . 'modules/module-headings.php');
121 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-constants.php');
122 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-idc.php' );
123 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-connection-banner.php' );
124 +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-plan.php' );
189 125
190 - add_action( 'admin_notices', 'jetpack_admin_missing_files' );
191 - return;
126 +if ( is_admin() ) {
127 + require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-admin.php' );
128 + require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-jitm.php' );
129 + require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-affiliate.php' );
130 + jetpack_require_lib( 'debugger' );
192 131 }
193 132
133 +// Play nice with http://wp-cli.org/
134 +if ( defined( 'WP_CLI' ) && WP_CLI ) {
135 + require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-cli.php' );
136 +}
137 +
138 +require_once( JETPACK__PLUGIN_DIR . '_inc/lib/class.core-rest-api-endpoints.php' );
139 +
194 140 register_activation_hook( __FILE__, array( 'Jetpack', 'plugin_activation' ) );
195 141 register_deactivation_hook( __FILE__, array( 'Jetpack', 'plugin_deactivation' ) );
142 +add_action( 'updating_jetpack_version', array( 'Jetpack', 'do_version_bump' ), 10, 2 );
143 +add_action( 'init', array( 'Jetpack', 'init' ) );
144 +add_action( 'plugins_loaded', array( 'Jetpack', 'plugin_textdomain' ), 99 );
145 +add_action( 'plugins_loaded', array( 'Jetpack', 'load_modules' ), 100 );
146 +add_filter( 'jetpack_static_url', array( 'Jetpack', 'staticize_subdomain' ) );
147 +add_filter( 'is_jetpack_site', '__return_true' );
196 148
197 -// Load image cdn core. This should load regardless of whether the photon module is active.
198 -Image_CDN_Core::setup();
149 +/**
150 + * Add an easy way to photon-ize a URL that is safe to call even if Jetpack isn't active.
151 + *
152 + * See: http://jetpack.com/2013/07/11/photon-and-themes/
153 + */
154 +if ( Jetpack::is_module_active( 'photon' ) ) {
155 + add_filter( 'jetpack_photon_url', 'jetpack_photon_url', 10, 3 );
156 +}
199 157
200 -// Require everything else, that is not loaded via the autoloader.
201 -require_once JETPACK__PLUGIN_DIR . 'load-jetpack.php';
158 +if ( JETPACK__SANDBOX_DOMAIN ) {
159 + require_once( JETPACK__PLUGIN_DIR . '_inc/jetpack-server-sandbox.php' );
160 +}
161 +
162 +require_once( JETPACK__PLUGIN_DIR . '3rd-party/3rd-party.php' );
163 +
164 +Jetpack::init();