PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 9.1.3
Jetpack – WP Security, Backup, Speed, & Growth v9.1.3
16.2-beta 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 All 501 releases
jetpack / jetpack.php

jetpack.php in Jetpack – WP Security, Backup, Speed, & Growth 9.1.3, at jetpack.php

176 lines 6.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Jetpack by WordPress.com
4 * Plugin URI: https://jetpack.com
5 * 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 * Author: Automattic
7 * Version: 9.1.3
8 * Author URI: https://jetpack.com
9 * License: GPL2+
10 * Text Domain: jetpack
11 * Requires at least: 5.4
12 * Requires PHP: 5.6
13 *
14 * @package Jetpack
15 */
16
17 define( 'JETPACK__MINIMUM_WP_VERSION', '5.4' );
18 define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
19 define( 'JETPACK__VERSION', '9.1.3' );
20
21 /**
22 * Constant used to fetch the connection owner token
23 *
24 * @deprecated 9.0.0
25 * @var boolean
26 */
27 define( 'JETPACK_MASTER_USER', true );
28
29 define( 'JETPACK__API_VERSION', 1 );
30 define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
31 define( 'JETPACK__PLUGIN_FILE', __FILE__ );
32
33 defined( 'JETPACK__RELEASE_POST_BLOG_SLUG' ) || define( 'JETPACK__RELEASE_POST_BLOG_SLUG', 'jetpackreleaseblog.wordpress.com' );
34 defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
35
36 /**
37 * WP.com API no longer supports `http://` protocol.
38 * This means Jetpack can't function properly on servers that can't send outbound HTTPS requests.
39 * The constant is no longer used.
40 *
41 * @deprecated 9.1.0
42 */
43 defined( 'JETPACK_CLIENT__HTTPS' ) || define( 'JETPACK_CLIENT__HTTPS', 'AUTO' );
44
45 defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' );
46 defined( 'JETPACK__API_BASE' ) || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' );
47 defined( 'JETPACK_PROTECT__API_HOST' ) || define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' );
48 defined( 'JETPACK__WPCOM_JSON_API_BASE' ) || define( 'JETPACK__WPCOM_JSON_API_BASE', 'https://public-api.wordpress.com' );
49
50 /**
51 * WP.com API no longer supports `http://` protocol.
52 * Use `JETPACK__WPCOM_JSON_API_BASE` instead, which has the protocol hardcoded.
53 *
54 * @deprecated 9.1.0
55 */
56 defined( 'JETPACK__WPCOM_JSON_API_HOST' ) || define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' );
57
58
59 defined( 'JETPACK__SANDBOX_DOMAIN' ) || define( 'JETPACK__SANDBOX_DOMAIN', '' );
60 defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' ) || define(
61 'JETPACK__DEBUGGER_PUBLIC_KEY',
62 "\r\n" . '-----BEGIN PUBLIC KEY-----' . "\r\n"
63 . 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm+uLLVoxGCY71LS6KFc6' . "\r\n"
64 . '1UnF6QGBAsi5XF8ty9kR3/voqfOkpW+gRerM2Kyjy6DPCOmzhZj7BFGtxSV2ZoMX' . "\r\n"
65 . '9ZwWxzXhl/Q/6k8jg8BoY1QL6L2K76icXJu80b+RDIqvOfJruaAeBg1Q9NyeYqLY' . "\r\n"
66 . 'lEVzN2vIwcFYl+MrP/g6Bc2co7Jcbli+tpNIxg4Z+Hnhbs7OJ3STQLmEryLpAxQO' . "\r\n"
67 . 'q8cbhQkMx+FyQhxzSwtXYI/ClCUmTnzcKk7SgGvEjoKGAmngILiVuEJ4bm7Q1yok' . "\r\n"
68 . 'xl9+wcfW6JAituNhml9dlHCWnn9D3+j8pxStHihKy2gVMwiFRjLEeD8K/7JVGkb/' . "\r\n"
69 . 'EwIDAQAB' . "\r\n"
70 . '-----END PUBLIC KEY-----' . "\r\n"
71 );
72
73 /*
74 * These constants can be set in wp-config.php to ensure sites behind proxies will still work.
75 * Setting these constants, though, is *not* the preferred method. It's better to configure
76 * the proxy to send the X-Forwarded-Port header.
77 */
78 defined( 'JETPACK_SIGNATURE__HTTP_PORT' ) || define( 'JETPACK_SIGNATURE__HTTP_PORT', 80 );
79 defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) || define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 );
80
81 /**
82 * Check if the version of WordPress in use on the site is supported by Jetpack.
83 */
84 if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
85 if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
86 error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
87 sprintf(
88 /* translators: Placeholders are numbers, versions of WordPress in use on the site, and required by WordPress. */
89 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' ),
90 $GLOBALS['wp_version'],
91 JETPACK__MINIMUM_WP_VERSION
92 )
93 );
94 }
95
96 /**
97 * Outputs for an admin notice about running Jetpack on outdated WordPress.
98 *
99 * @since 7.2.0
100 */
101 function jetpack_admin_unsupported_wp_notice() { ?>
102 <div class="notice notice-error is-dismissible">
103 <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>
104 </div>
105 <?php
106 }
107
108 add_action( 'admin_notices', 'jetpack_admin_unsupported_wp_notice' );
109 return;
110 }
111
112 /**
113 * This is where the loading of Jetpack begins.
114 *
115 * First, we try to load our composer autoloader.
116 *
117 * - If it fails, we "pause" Jetpack by ending the loading process
118 * and displaying an admin_notice to inform the site owner.
119 * (We want to fail gracefully if `composer install` has not been executed yet, so we are checking for the autoloader.)
120 * - If it succeeds, we require load-jetpack.php, where all legacy files are required,
121 * and where we add on to various hooks that we expect to always run.
122 */
123 $jetpack_autoloader = JETPACK__PLUGIN_DIR . 'vendor/autoload_packages.php';
124 if ( is_readable( $jetpack_autoloader ) ) {
125 require $jetpack_autoloader;
126 } else {
127 if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
128 error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
129 sprintf(
130 /* translators: Placeholder is a link to a support document. */
131 __( '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' ),
132 'https://github.com/Automattic/jetpack/blob/master/docs/development-environment.md'
133 )
134 );
135 }
136
137 /**
138 * Outputs an admin notice for folks running Jetpack without having run composer install.
139 *
140 * @since 7.4.0
141 */
142 function jetpack_admin_missing_autoloader() {
143 ?>
144 <div class="notice notice-error is-dismissible">
145 <p>
146 <?php
147 printf(
148 wp_kses(
149 /* translators: Placeholder is a link to a support document. */
150 __( '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' ),
151 array(
152 'a' => array(
153 'href' => array(),
154 'target' => array(),
155 'rel' => array(),
156 ),
157 )
158 ),
159 'https://github.com/Automattic/jetpack/blob/master/docs/development-environment.md'
160 );
161 ?>
162 </p>
163 </div>
164 <?php
165 }
166
167 add_action( 'admin_notices', 'jetpack_admin_missing_autoloader' );
168 return;
169 }
170
171 register_activation_hook( __FILE__, array( 'Jetpack', 'plugin_activation' ) );
172 register_deactivation_hook( __FILE__, array( 'Jetpack', 'plugin_deactivation' ) );
173
174 // Require everything else, that is not loaded via the autoloader.
175 require_once JETPACK__PLUGIN_DIR . 'load-jetpack.php';
176