forked from dsawardekar/wp-requirements
-
Notifications
You must be signed in to change notification settings - Fork 2
/
requirements.php
463 lines (399 loc) · 12.4 KB
/
requirements.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php
/**
* Little but powerful library to easily handle detection of minimum system requirements in WordPress plugins.
* Based on https://github.com/dsawardekar/wp-requirements 0.3 version
*
* ChangeLog
*
* 0.0.1
* multilanguage added to 'requirements' slug
* changed the name of classes
* documentation missing the official version
* Plugin_Requirements: only required the declaration, check the minimum value inserted, call directly the warning
* Plugin_requirements: support multiple plugin
* Requirement_Error: compacted code, better css, added deactivation of the plugin
*
* @package Plugin_Name
* @author Mte90 and dsawardekar
*
*/
if ( class_exists( 'Plugin_Requirements' ) === false ) {
/**
* This class is the Boss of this library
* public-facing side of the WordPress site.
*
* Complete example of use with all the sub-classes
*
* new Plugin_Requirements( self::$plugin_name, self::$plugin_slug, array(
* 'PHP' => new PHP_Requirement( '5.9.0' ),
* 'WP' => new WordPress_Requirement( '3.9.0' ),
* 'Extension' => new PHP_Extension_Requirement( array('mysql', 'mysqli', 'session', 'pcre','json', 'gd', 'mbstring', 'zlib' ),
* 'Plugin' => new Plugin_Requirement( array(
* array( 'Plugin not installed', 'slug/slug.php' ) ,
* array( 'Plugin not installed 2', 'slug/slug2.php' )
* ) )
* ) );
*
*/
class Plugin_Requirements {
/**
*
* Array that contain the Sub Classes
*
* @var array
*/
public $requirements = array();
/**
*
* String that contain the plugin name
*
* @var string
*/
public $pluginName = '';
/**
*
* String that contain the plugin slug
*
* @var string
*/
public $pluginSlug = '';
/**
* Initialize the library
*
* @param string $pluginname The Plugin Name used for the warning.
* @param string $pluginslug The Plugin slug used for the deactivation.
* @param array $args The subclasses.
*/
function __construct( $pluginname, $pluginslug, $args ) {
$this->requirements = $args;
$this->pluginName = $pluginname;
$this->pluginSlug = $pluginslug;
$this->satisfied();
}
/**
* Load and check the missing default requirements
*
* @return array Array of Sub-Classes.
*/
function getRequirements() {
$requirements = $this->requirements;
if ( !isset( $requirements[ 'PHP' ] ) ) {
$requirements[ 'PHP' ] = new PHP_Requirement( '5.2.0' );
}
if ( !isset( $requirements[ 'WP' ] ) ) {
$requirements[ 'WP' ] = new WordPress_Requirement( '4.0.0' );
}
if ( !isset( $requirements[ 'Extension' ] ) ) {
$requirements[ 'Extension' ] = new PHP_Extension_Requirement( array(
'session', 'pcre', 'json', 'gd', 'mbstring', 'zlib'
) );
}
return $requirements;
}
/**
* Check the all requirements
*
* @return true|false Successful
*/
public function satisfied() {
$requirements = $this->getRequirements();
$results = array();
$success = true;
foreach ( $requirements as $requirement ) {
$result = array(
'satisfied' => $requirement->check(),
'requirement' => $requirement
);
array_push( $results, $result );
if ( !$result[ 'satisfied' ] ) {
$success = false;
}
}
if ( !$success ) {
new Requirement_Error( $this->pluginName, $this->pluginSlug, $results );
}
return $success;
}
}
/**
* Check the PHP environment, for example go to Plugin_Requirements documentation
*/
class PHP_Requirement {
/**
*
* The minimum version of PHP
*
* @var string
*/
public $minimumVersion = '5.2.0';
/**
* Initialize the library
*
* @param string $minversion The minimum version of PHP.
*/
function __construct( $minversion ) {
$this->minimumVersion = $minversion;
}
/**
* Check the requirement
*
* @return true|false Successful.
*/
function check() {
return version_compare(
phpversion(), $this->minimumVersion, '>='
);
}
/**
* Return the message warning
*
* @return string The warning message.
*/
function message() {
return 'PHP <b>' . $this->minimumVersion . '+</b>' . __( " Required, Detected ", 'requirements' ) . '<b>' . phpversion() . '</b>';
}
}
/**
* Check the Wordpress environment, for example go to Plugin_Requirements documentation
*/
class WordPress_Requirement {
/**
*
* The minimum version of Wordpress
*
* @var string
*/
public $minimumVersion = '3.8.0';
/**
* Initialize the library
*
* @param string $minversion The minimum version of WP.
*/
function __construct( $minversion ) {
$this->minimumVersion = $minversion;
}
/**
* Check the requirement
*
* @return true|false Successful
*/
function check() {
global $wp_version;
return version_compare(
$wp_version, $this->minimumVersion, '>='
);
}
/**
* Return the message warning
*
* @return string The warning message.
*/
function message() {
global $wp_version;
return 'WordPress <b>' . $this->minimumVersion . '+</b>' . __( ' Required, Detected ', 'requirements' ) . '<b>' . $wp_version . '</b>';
}
}
/**
* Check the PHP extension, for example go to Plugin_Requirements documentation
*/
class PHP_Extension_Requirement {
/**
*
* Array that contain the list of extension to check
*
* @var array
*/
public $extensions = array();
/**
*
* Array that contain the missing extension
*
* @var array
*/
public $notFound = array();
/**
* Initialize the library
*
* @param array $extensions The extension list.
*/
function __construct( $extensions ) {
$this->extensions = $extensions;
}
/**
* Check the PHP extension if available
*
* @return bool Return the available of the extension.
*/
function check() {
$result = true;
$this->notFound = array();
foreach ( $this->extensions as $extension ) {
if ( !extension_loaded( $extension ) ) {
$result = false;
array_push( $this->notFound, $extension );
}
}
return $result;
}
/**
* Return the message warning
*
* @return string The warning message
*/
function message() {
$extensions = implode( ', ', $this->notFound );
return __( "PHP Extensions Not Found: ", 'requirements' ) . '<b>' . $extensions . '</b>';
}
}
/**
* Check the plugin required, for example go to Plugin_Requirements documentation
*/
class Plugin_Requirement {
/**
*
* Array that contain the plugins name and slug
*
* @var array
*/
public $plugins = array();
/**
*
* Array that contain the missing plugins
*
* @var array
*/
public $notFound = array();
/**
* Initialize the library
*
* @param array $plugins The plugins to check.
*/
function __construct( $plugins ) {
$this->plugins = $plugins;
}
/**
* Check the requirement
*
* @return true|false Successful.
*/
function check() {
$result = true;
$this->notFound = array();
foreach ( $this->plugins as $plugin ) {
if ( !is_plugin_active( $plugin[ 1 ] ) ) {
$result = false;
array_push( $this->notFound, $plugin[ 0 ] );
}
}
return $result;
}
/**
* Return the message warning
*
* @return string The warning message.
*/
function message() {
$plugins = implode( ', ', $this->notFound );
return '<b>"' . $plugins . '"</b>' . __( ' Required', 'requirements' );
}
}
/**
* Generate the exception that stop the activation of the plugin
*/
class Plugin_Requirements_Exception extends \Exception {
}
/**
* Generate the warning error and deactivate the plugin
*/
class Requirement_Error {
/**
*
* String that contain the plugin name
*
* @var string
*/
public $pluginName = '';
/**
*
* String that contain the plugin slug
*
* @var string
*/
public $pluginSlug = '';
/**
*
* Array that contain the list of errors
*
* @var array
*/
public $results;
/**
* Initialize the library
*
* @param string $pluginName The mplugin name.
* @param string $pluginSlug The plugin slug.
* @param array $results Array of requirements missing.
*/
function __construct( $pluginName, $pluginSlug, $results ) {
$this->pluginName = $pluginName;
$this->pluginSlug = $pluginSlug;
$this->results = $results;
$this->showError( $this->resultsToNotice() );
}
/**
* Show the error
*
* @param string $message The HTML with the warnings.
* @throws Plugin_Requirements_Exception The exception.
* @return void
*/
function showError( $message ) {
if ( $this->isErrorScraper() ) {
echo $message;
$this->quit();
} else {
throw new Plugin_Requirements_Exception();
}
}
/**
* Check is PHPunit and deactivate the plugin
*
* @return void
*/
function quit() {
if ( !defined( 'PHPUNIT_RUNNER' ) ) {
if ( is_file( $dir = WPMU_PLUGIN_DIR . $this->pluginSlug . '.php' ) ) {
deactivate_plugins( $dir );
} elseif ( is_file( $dir = WP_PLUGIN_DIR . $this->pluginSlug . '.php' ) ) {
deactivate_plugins( $dir );
}
exit();
}
}
/**
* Check error scrape
*
* @return true|false
*/
function isErrorScraper() {
return isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] === 'error_scrape';
}
/**
* Generate the HTML of the warnings
*
* @return string
*/
function resultsToNotice() {
$html = "<style type='text/css'>body { font: 12px sans-serif; color: #a00; } body, p, ul { margin:0; }</style>";
$html .= "<div class='error'>" . '<p>' . __( "Minimum System Requirements not satisfied for: ", 'requirements' ) . '<strong>' . $this->pluginName . '</strong></p>';
$html .= '<ul>';
foreach ( $this->results as $result ) {
if ( !$result[ 'satisfied' ] ) {
$html .= '<li>' . $result[ 'requirement' ]->message() . '</li>';
}
}
$html .= '</ul></div>';
return $html;
}
}
}