Completed
Push — add/sync-action ( cda3e4...59c977 )
by
unknown
24:57 queued 24:46
created

class.jetpack-admin.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
4
// Build the Jetpack admin menu as a whole
5
class Jetpack_Admin {
6
7
	/**
8
	 * @var Jetpack_Admin
9
	 **/
10
	private static $instance = null;
11
12
	/**
13
	 * @var Jetpack
14
	 **/
15
	private $jetpack;
16
17
	static function init() {
18
		if ( is_null( self::$instance ) ) {
19
			self::$instance = new Jetpack_Admin;
20
		}
21
		return self::$instance;
22
	}
23
24
	private function __construct() {
25
		$this->jetpack = Jetpack::init();
26
27
		jetpack_require_lib( 'admin-pages/class.jetpack-react-page' );
28
		$this->jetpack_react = new Jetpack_React_Page;
29
30
		// TODO: reactify
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
31
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-dashboard.php';
32
		$this->sync_dashboard = new Jetpack_Sync_Dashboard;
0 ignored issues
show
The property sync_dashboard does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
33
		$this->sync_dashboard->init();
34
35
//		jetpack_require_lib( 'admin-pages/class.jetpack-landing-page' );
36
//		$this->landing_page = new Jetpack_Landing_Page;
37
//
38
//		jetpack_require_lib( 'admin-pages/class.jetpack-settings-page' );
39
//		$this->settings_page = new Jetpack_Settings_Page;
40
//
41
//		jetpack_require_lib( 'admin-pages/class.jetpack-my-jetpack-page' );
42
//		$this->my_jetpack_page = new Jetpack_My_Jetpack_Page;
43
44
//		if ( isset( $_POST['jetpack-set-master-user'] ) ) {
45
//			add_action( 'init', array( $this->my_jetpack_page, 'jetpack_my_jetpack_change_user' ) );
46
//		}
47
		// Add hooks for admin menus
48
//		add_action( 'jetpack_admin_menu',            array( $this->jetpack_react, 'add_actions' ) );
49
50
		add_action( 'admin_menu',                    array( $this->jetpack_react, 'add_actions' ), 998 );
51
		add_action( 'jetpack_admin_menu',            array( $this, 'admin_menu_debugger' ) );
52
		add_action( 'jetpack_admin_menu',            array( $this->sync_dashboard, 'add_actions' ) );
53
54
		// Add redirect to current page for activation/deactivation of modules
55
		add_action( 'jetpack_pre_activate_module',   array( $this, 'fix_redirect' ), 10, 2 );
56
		add_action( 'jetpack_pre_deactivate_module', array( $this, 'fix_redirect' ) );
57
58
		// Add module bulk actions handler
59
		add_action( 'jetpack_unrecognized_action',   array( $this, 'handle_unrecognized_action' ) );
60
	}
61
62 View Code Duplication
	static function sort_requires_connection_last( $module1, $module2 ) {
63
		if ( $module1['requires_connection'] == $module2['requires_connection'] ) {
64
			return 0;
65
		} elseif ( $module1['requires_connection'] ) {
66
			return 1;
67
		} elseif ( $module2['requires_connection'] ) {
68
			return -1;
69
		}
70
71
		return 0;
72
	}
73
74
	// Produce JS understandable objects of modules containing information for
75
	// presentation like description, name, configuration url, etc.
76
	function get_modules() {
77
		include_once( JETPACK__PLUGIN_DIR . 'modules/module-info.php' );
78
		$available_modules = $this->jetpack->get_available_modules();
79
		$active_modules    = $this->jetpack->get_active_modules();
80
		$modules           = array();
81
		$jetpack_active = Jetpack::is_active() || Jetpack::is_development_mode();
82
		foreach ( $available_modules as $module ) {
83
			if ( $module_array = $this->jetpack->get_module( $module ) ) {
84
				/**
85
				 * Filters each module's short description.
86
				 *
87
				 * @since 3.0.0
88
				 *
89
				 * @param string $module_array['description'] Module description.
90
				 * @param string $module Module slug.
91
				 */
92
				$short_desc = apply_filters( 'jetpack_short_module_description', $module_array['description'], $module );
93
				// Fix: correct multibyte strings truncate with checking for mbstring extension
94
				$short_desc_trunc = ( function_exists( 'mb_strlen' ) )
95
							? ( ( mb_strlen( $short_desc ) > 143 )
96
								? mb_substr( $short_desc, 0, 140 ) . '...'
97
								: $short_desc )
98
							: ( ( strlen( $short_desc ) > 143 )
99
								? substr( $short_desc, 0, 140 ) . '...'
100
								: $short_desc );
101
102
				$module_array['module']            = $module;
103
				$module_array['activated']         = ( $jetpack_active ? in_array( $module, $active_modules ) : false );
104
				$module_array['deactivate_nonce']  = wp_create_nonce( 'jetpack_deactivate-' . $module );
105
				$module_array['activate_nonce']    = wp_create_nonce( 'jetpack_activate-' . $module );
106
				$module_array['available']         = self::is_module_available( $module_array );
107
				$module_array['short_description'] = $short_desc_trunc;
108
				$module_array['configure_url']     = Jetpack::module_configuration_url( $module );
109
110
				ob_start();
111
				/**
112
				 * Allow the display of a "Learn More" button.
113
				 * The dynamic part of the action, $module, is the module slug.
114
				 *
115
				 * @since 3.0.0
116
				 */
117
				do_action( 'jetpack_learn_more_button_' . $module );
118
				$module_array['learn_more_button'] = ob_get_clean();
119
120
				ob_start();
121
				/**
122
				 * Allow the display of information text when Jetpack is connected to WordPress.com.
123
				 * The dynamic part of the action, $module, is the module slug.
124
				 *
125
				 * @since 3.0.0
126
				 */
127
				do_action( 'jetpack_module_more_info_' . $module );
128
129
				/**
130
				* Filter the long description of a module.
131
	 			*
132
	 			* @since 3.5.0
133
	 			*
134
	 			* @param string ob_get_clean() The module long description.
135
				* @param string $module The module name.
136
	 			*/
137
				$module_array['long_description'] = apply_filters( 'jetpack_long_module_description', ob_get_clean(), $module );
138
139
				ob_start();
140
				/**
141
				 * Filter the search terms for a module
142
				 *
143
				 * Search terms are typically added to the module headers, under "Additional Search Queries".
144
				 *
145
				 * Use syntax:
146
				 * function jetpack_$module_search_terms( $terms ) {
147
				 *  $terms = _x( 'term 1, term 2', 'search terms', 'jetpack' );
148
				 *  return $terms;
149
				 * }
150
				 * add_filter( 'jetpack_search_terms_$module', 'jetpack_$module_search_terms' );
151
				 *
152
				 * @since 3.5.0
153
				 *
154
				 * @param string The search terms (comma separated).
155
				 */
156
				echo apply_filters( 'jetpack_search_terms_' . $module, $module_array['additional_search_queries'] );
157
				$module_array['search_terms'] = ob_get_clean();
158
159
				$module_array['configurable'] = false;
160
				if (
161
					current_user_can( 'manage_options' ) &&
162
					/**
163
					 * Allow the display of a configuration link in the Jetpack Settings screen.
164
					 *
165
					 * @since 3.0.0
166
					 *
167
					 * @param string $module Module name.
168
					 * @param bool false Should the Configure module link be displayed? Default to false.
169
					 */
170
					apply_filters( 'jetpack_module_configurable_' . $module, false )
171
				) {
172
					$module_array['configurable'] = sprintf( '<a href="%1$s">%2$s</a>', esc_url( Jetpack::module_configuration_url( $module ) ), __( 'Configure', 'jetpack' ) );
173
				}
174
175
				$modules[ $module ] = $module_array;
176
			}
177
		}
178
179
		uasort( $modules, array( $this->jetpack, 'sort_modules' ) );
180
181
		if ( ! Jetpack::is_active() ) {
182
			uasort( $modules, array( __CLASS__, 'sort_requires_connection_last' ) );
183
		}
184
185
		return $modules;
186
	}
187
188
	static function is_module_available( $module ) {
189
		if ( ! is_array( $module ) || empty( $module ) )
190
			return false;
191
192
		/**
193
		 * We never want to show VaultPress as activatable through Jetpack.
194
		 */
195
		if ( 'vaultpress' === $module['module'] ) {
196
			return false;
197
		}
198
199
		if ( Jetpack::is_development_mode() ) {
200
			return ! ( $module['requires_connection'] );
201
		} else {
202
			return Jetpack::is_active();
203
		}
204
	}
205
206
	function handle_unrecognized_action( $action ) {
207
		switch( $action ) {
208
			case 'bulk-activate' :
209
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
210
					break;
211
				}
212
213
				$modules = (array) $_GET['modules'];
214
				$modules = array_map( 'sanitize_key', $modules );
215
				check_admin_referer( 'bulk-jetpack_page_jetpack_modules' );
216
				foreach( $modules as $module ) {
217
					Jetpack::log( 'activate', $module );
218
					Jetpack::activate_module( $module, false );
219
				}
220
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
221
				wp_safe_redirect( wp_get_referer() );
222
				exit;
223 View Code Duplication
			case 'bulk-deactivate' :
224
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
225
					break;
226
				}
227
228
				$modules = (array) $_GET['modules'];
229
				$modules = array_map( 'sanitize_key', $modules );
230
				check_admin_referer( 'bulk-jetpack_page_jetpack_modules' );
231
				foreach ( $modules as $module ) {
232
					Jetpack::log( 'deactivate', $module );
233
					Jetpack::deactivate_module( $module );
234
					Jetpack::state( 'message', 'module_deactivated' );
235
				}
236
				Jetpack::state( 'module', $modules );
237
				wp_safe_redirect( wp_get_referer() );
238
				exit;
239
			default:
240
				return;
241
		}
242
	}
243
244
	function fix_redirect( $module, $redirect = true ) {
245
		if ( ! $redirect ) {
246
			return;
247
		}
248
		if ( wp_get_referer() ) {
249
			add_filter( 'wp_redirect', 'wp_get_referer' );
250
		}
251
	}
252
253
	function admin_menu_debugger() {
254
		$debugger_hook = add_submenu_page( null, __( 'Jetpack Debugging Center', 'jetpack' ), '', 'manage_options', 'jetpack-debugger', array( $this, 'debugger_page' ) );
255
		add_action( "admin_head-$debugger_hook", array( 'Jetpack_Debugger', 'jetpack_debug_admin_head' ) );
256
	}
257
258
	function debugger_page() {
259
		nocache_headers();
260
		if ( ! current_user_can( 'manage_options' ) ) {
261
			die( '-1' );
262
		}
263
		Jetpack_Debugger::jetpack_debug_display_handler();
264
	}
265
}
266
Jetpack_Admin::init();
267