Completed
Push — add/80-changelog ( e8df2c...cdbe9d )
by Jeremy
08:23
created

ce()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 18
rs 9.6666
c 0
b 0
f 0
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: 8.0-alpha
8
 * Author URI: https://jetpack.com
9
 * License: GPL2+
10
 * Text Domain: jetpack
11
 * Domain Path: /languages/
12
 *
13
 * @package Jetpack
14
 */
15
16
define( 'JETPACK__MINIMUM_WP_VERSION',  '5.2' );
17
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
18
define( 'JETPACK__VERSION',             '8.0-alpha' );
19
define( 'JETPACK_MASTER_USER',           true );
20
define( 'JETPACK__API_VERSION',          1 );
21
define( 'JETPACK__PLUGIN_DIR',           plugin_dir_path( __FILE__ ) );
22
define( 'JETPACK__PLUGIN_FILE',          __FILE__ );
23
24
defined( 'JETPACK_CLIENT__AUTH_LOCATION' )   || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
25
defined( 'JETPACK_CLIENT__HTTPS' )           || define( 'JETPACK_CLIENT__HTTPS', 'AUTO' );
26
defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' );
27
defined( 'JETPACK__API_BASE' )               || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' );
28
defined( 'JETPACK_PROTECT__API_HOST' )       || define( 'JETPACK_PROTECT__API_HOST', 'https://api.bruteprotect.com/' );
29
defined( 'JETPACK__WPCOM_JSON_API_HOST' )    || define( 'JETPACK__WPCOM_JSON_API_HOST', 'public-api.wordpress.com' );
30
defined( 'JETPACK__SANDBOX_DOMAIN' )         || define( 'JETPACK__SANDBOX_DOMAIN', '' );
31
defined( 'JETPACK__DEBUGGER_PUBLIC_KEY' )    || define(
32
	'JETPACK__DEBUGGER_PUBLIC_KEY',
33
	"\r\n" . '-----BEGIN PUBLIC KEY-----' . "\r\n"
34
	. 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm+uLLVoxGCY71LS6KFc6' . "\r\n"
35
	. '1UnF6QGBAsi5XF8ty9kR3/voqfOkpW+gRerM2Kyjy6DPCOmzhZj7BFGtxSV2ZoMX' . "\r\n"
36
	. '9ZwWxzXhl/Q/6k8jg8BoY1QL6L2K76icXJu80b+RDIqvOfJruaAeBg1Q9NyeYqLY' . "\r\n"
37
	. 'lEVzN2vIwcFYl+MrP/g6Bc2co7Jcbli+tpNIxg4Z+Hnhbs7OJ3STQLmEryLpAxQO' . "\r\n"
38
	. 'q8cbhQkMx+FyQhxzSwtXYI/ClCUmTnzcKk7SgGvEjoKGAmngILiVuEJ4bm7Q1yok' . "\r\n"
39
	. 'xl9+wcfW6JAituNhml9dlHCWnn9D3+j8pxStHihKy2gVMwiFRjLEeD8K/7JVGkb/' . "\r\n"
40
	. 'EwIDAQAB' . "\r\n"
41
	. '-----END PUBLIC KEY-----' . "\r\n"
42
);
43
44
/*
45
 * These constants can be set in wp-config.php to ensure sites behind proxies will still work.
46
 * Setting these constants, though, is *not* the preferred method. It's better to configure
47
 * the proxy to send the X-Forwarded-Port header.
48
 */
49
defined( 'JETPACK_SIGNATURE__HTTP_PORT' )  || define( 'JETPACK_SIGNATURE__HTTP_PORT', 80 );
50
defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) || define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 );
51
52
/**
53
 * Check if the version of WordPress in use on the site is supported by Jetpack.
54
 */
55
if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
56
	if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
57
		error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
58
			sprintf(
59
				/* translators: Placeholders are numbers, versions of WordPress in use on the site, and required by WordPress. */
60
				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' ),
61
				$GLOBALS['wp_version'],
62
				JETPACK__MINIMUM_WP_VERSION
63
			)
64
		);
65
	}
66
67
	/**
68
	 * Outputs for an admin notice about running Jetpack on outdated WordPress.
69
	 *
70
	 * @since 7.2.0
71
	 */
72
	function jetpack_admin_unsupported_wp_notice() { ?>
73
		<div class="notice notice-error is-dismissible">
74
			<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>
75
		</div>
76
		<?php
77
	}
78
79
	add_action( 'admin_notices', 'jetpack_admin_unsupported_wp_notice' );
80
	return;
81
}
82
83
/**
84
 * This is where the loading of Jetpack begins.
85
 *
86
 * First, we try to load our composer autoloader.
87
 *
88
 * - If it fails, we "pause" Jetpack by ending the loading process
89
 *   and displaying an admin_notice to inform the site owner.
90
 *   (We want to fail gracefully if `composer install` has not been executed yet, so we are checking for the autoloader.)
91
 * - If it succeeds, we require load-jetpack.php, where all legacy files are required,
92
 *   and where we add on to various hooks that we expect to always run.
93
 */
94
$jetpack_autoloader = JETPACK__PLUGIN_DIR . 'vendor/autoload_packages.php';
95
if ( is_readable( $jetpack_autoloader ) ) {
96
	require $jetpack_autoloader;
97
} else {
98
	if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
99
		error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
100
			sprintf(
101
				/* translators: Placeholder is a link to a support document. */
102
				__( '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' ),
103
				'https://github.com/Automattic/jetpack/blob/master/docs/development-environment.md'
104
			)
105
		);
106
	}
107
108
	/**
109
	 * Outputs an admin notice for folks running Jetpack without having run composer install.
110
	 *
111
	 * @since 7.4.0
112
	 */
113
	function jetpack_admin_missing_autoloader() {
114
		?>
115
		<div class="notice notice-error is-dismissible">
116
			<p>
117
				<?php
118
				printf(
119
					wp_kses(
120
						/* translators: Placeholder is a link to a support document. */
121
						__( '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' ),
122
						array(
123
							'a' => array(
124
								'href'   => array(),
125
								'target' => array(),
126
								'rel'    => array(),
127
							),
128
						)
129
					),
130
					'https://github.com/Automattic/jetpack/blob/master/docs/development-environment.md'
131
				);
132
				?>
133
			</p>
134
		</div>
135
		<?php
136
	}
137
138
	add_action( 'admin_notices', 'jetpack_admin_missing_autoloader' );
139
	return;
140
}
141
142
register_activation_hook( __FILE__, array( 'Jetpack', 'plugin_activation' ) );
143
register_deactivation_hook( __FILE__, array( 'Jetpack', 'plugin_deactivation' ) );
144
145
// Require everything else, that is not loaded via the autoloader.
146
require_once JETPACK__PLUGIN_DIR . 'load-jetpack.php';
147