Helper.php
18.5 KB
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
<?php if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Class WPN_Helper
*
* The WP Ninjas Static Helper Class
*
* Provides additional helper functionality to WordPress helper functions.
*/
final class WPN_Helper
{
/**
* @param $value
* @return array|string
*/
public static function addslashes( $value )
{
$value = is_array($value) ?
array_map(array( 'self', 'addslashes' ), $value) :
addslashes($value);
return $value;
}
/**
* @param $input
* @return array|string
*/
public static function utf8_encode( $input ){
if ( is_array( $input ) ) {
return array_map( array( 'self', 'utf8_encode' ), $input );
} elseif ( function_exists( 'utf8_encode' ) ) {
return utf8_encode( $input );
} else {
return $input;
}
}
/**
* @param $input
* @return array|string
*/
public static function utf8_decode( $input ){
if ( is_array( $input ) ) {
return array_map( array( 'self', 'utf8_decode' ), $input );
} elseif ( function_exists( 'utf8_decode' ) ) {
return utf8_decode( $input );
} else {
return $input;
}
}
/**
* Function to clean json data before json_decode.
* @since 3.2
* @param $input String
* @return String
*/
public static function json_cleanup( $input ) {
/*
* Remove any unwated (corrupted?) characters from either side of our object.
*/
$l_trim = strpos( $input, '{' );
$r_trim = strrpos( $input, '}' ) - $l_trim + 1;
return substr( $input, $l_trim, $r_trim );
}
/**
* @param $search
* @param $replace
* @param $subject
* @return mixed
*/
public static function str_replace( $search, $replace, $subject ){
if( is_array( $subject ) ){
foreach( $subject as &$oneSubject )
$oneSubject = WPN_Helper::str_replace($search, $replace, $oneSubject);
unset($oneSubject);
return $subject;
} else {
return str_replace($search, $replace, $subject);
}
}
/**
* @param $value
* @param int $flag
* @return array|string
*/
public static function html_entity_decode( $value, $flag = ENT_COMPAT ){
$value = is_array($value) ?
array_map( array( 'self', 'html_entity_decode' ), $value) :
html_entity_decode( $value, $flag );
return $value;
}
/**
* @param $value
* @return array|string
*/
public static function htmlspecialchars( $value ){
$value = is_array($value) ?
array_map( array( 'self', 'htmlspecialchars' ), $value) :
htmlspecialchars( $value );
return $value;
}
/**
* @param $value
* @return array|string
*/
public static function stripslashes( $value ){
$value = is_array($value) ?
array_map( array( 'self', 'stripslashes' ), $value) :
stripslashes($value);
return $value;
}
/**
* @param $value
* @return array|string
*/
public static function esc_html( $value )
{
$value = is_array($value) ?
array_map( array( 'self', 'esc_html' ), $value) :
esc_html($value);
return $value;
}
/**
* @param $value
* @return array|string
*/
public static function kses_post( $value )
{
$value = is_array( $value ) ?
array_map( array( 'self', 'kses_post' ), $value ) :
wp_kses_post($value);
return $value;
}
/**
* @param $value
* @return array|string
*/
public static function strip_tags( $value )
{
$value = is_array( $value ) ?
array_map( array( 'self', 'strip_tags' ), $value ) :
strip_tags( $value );
return $value;
}
/**
* String to Bytes
*
* Converts PHP settings from a string to bytes.
*
* @param $size
* @return float
*/
public static function string_to_bytes( $size )
{
// Remove the non-unit characters from the size.
$unit = preg_replace('/[^bkmgtpezy]/i', '', $size);
// Remove the non-numeric characters from the size.
$size = preg_replace('/[^0-9\.]/', '', $size);
if ( $unit && is_array( $unit ) ) {
// Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
$size *= pow( 1024, stripos( 'bkmgtpezy', $unit[0] ) );
}
return round($size);
}
public static function str_putcsv( $array, $delimiter = ',', $enclosure = '"', $terminator = "\n" ) {
// First convert associative array to numeric indexed array
$workArray = array();
foreach ($array as $key => $value) {
$workArray[] = $value;
}
$returnString = ''; # Initialize return string
$arraySize = count( $workArray ); # Get size of array
for ( $i=0; $i<$arraySize; $i++ ) {
// Nested array, process nest item
if ( is_array( $workArray[$i] ) ) {
$returnString .= self::str_putcsv( $workArray[$i], $delimiter, $enclosure, $terminator );
} else {
switch ( gettype( $workArray[$i] ) ) {
// Manually set some strings
case "NULL": $_spFormat = ''; break;
case "boolean": $_spFormat = ($workArray[$i] == true) ? 'true': 'false'; break;
// Make sure sprintf has a good datatype to work with
case "integer": $_spFormat = '%i'; break;
case "double": $_spFormat = '%0.2f'; break;
case "string": $_spFormat = '%s'; $workArray[$i] = str_replace("$enclosure", "$enclosure$enclosure", $workArray[$i]); break;
// Unknown or invalid items for a csv - note: the datatype of array is already handled above, assuming the data is nested
case "object":
case "resource":
default: $_spFormat = ''; break;
}
$returnString .= sprintf('%2$s'.$_spFormat.'%2$s', $workArray[$i], $enclosure);
$returnString .= ($i < ($arraySize-1)) ? $delimiter : $terminator;
}
}
// Done the workload, return the output information
return $returnString;
}
public static function get_query_string( $key, $default = FALSE )
{
if( ! isset( $_GET[ $key ] ) ) return $default;
$value = self::htmlspecialchars( $_GET[ $key ] );
if( is_array( $value ) ) $value = reset( $value );
return $value;
}
public static function sanitize_text_field( $data )
{
if( is_array( $data ) ){
return array_map( array( 'self', 'sanitize_text_field' ), $data );
}
return sanitize_text_field( $data );
}
public static function get_plugin_version( $plugin )
{
$plugins = get_plugins();
if( ! isset( $plugins[ $plugin ] ) ) return false;
return $plugins[ $plugin ][ 'Version' ];
}
public static function is_func_disabled( $function )
{
if( ! function_exists( $function ) ) return true;
$disabled = explode( ',', ini_get( 'disable_functions' ) );
return in_array( $function, $disabled );
}
public static function maybe_unserialize( $original )
{
// Repalcement for https://codex.wordpress.org/Function_Reference/maybe_unserialize
if ( is_serialized( $original ) ){
// Ported with php5.2 support from https://magp.ie/2014/08/13/php-unserialize-string-after-non-utf8-characters-stripped-out/
$parsed = preg_replace_callback( '!s:(\d+):"(.*?)";!s', array( 'self', 'parse_utf8_serialized' ), $original );
$parsed = @unserialize( $parsed );
return ( $parsed ) ? $parsed : unserialize( $original ); // Fallback if parse error.
}
return $original;
}
/**
* Function to fetch our cache from the upgrades table (if it exists there).
*
* @param $id (int) The form ID.
*
* @since 3.3.7
*/
public static function get_nf_cache( $id ) {
// See if we have the data in our table already.
global $wpdb;
$sql = "SELECT cache FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id );
$result = $wpdb->get_results( $sql, 'ARRAY_A' );
// If so...
if ( ! empty( $result ) ) {
// Unserialize the result.
$value = WPN_Helper::maybe_unserialize( $result[ 0 ][ 'cache' ] );
// Return it.
return $value;
} // Otherwise... (We don't have the data.)
else {
// Get it from the options table.
return get_option( 'nf_form_' . $id );
}
}
/**
* Function to insert or update our cache in the upgrades table (if it exists).
*
* @param $id (int) The form ID.
* @param $data (string) The form cache.
* @param $stage (int) The target stage of this update. Default to the current max stage.
*
* @since 3.3.7
* @updated 3.4.0
*/
public static function update_nf_cache( $id, $data, $stage = 0 ) {
$stage = ( $stage ) ? $stage : WPN_Helper::get_stage();
// Serialize our data.
$cache = serialize( $data );
global $wpdb;
// See if we've already got a record.
$sql = "SELECT id FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id );
$result = $wpdb->get_results( $sql, 'ARRAY_A' );
// If we don't already have the data...
if ( empty( $result ) ) {
// Insert it.
$sql = $wpdb->prepare( "INSERT INTO `{$wpdb->prefix}nf3_upgrades` (id, cache, stage) VALUES (%d, %s, %s)", intval( $id ), $cache, intval( $stage ) );
} // Otherwise... (We do have the data.)
else {
// Update the existing record.
$sql = $wpdb->prepare( "UPDATE `{$wpdb->prefix}nf3_upgrades` SET cache = %s, stage = %d WHERE id = %d", $cache, intval( $stage ), intval( $id ) );
}
$wpdb->query( $sql );
}
/**
* Function to retrieve our upgrade stage.
* Remove this after the cache has been resolved.
*
* @return int
*
* @since 3.4.0
*/
public static function get_stage() {
$ver = Ninja_Forms::$db_version;
$stack = explode( '.', $ver );
return intval( array_pop( $stack ) );
}
/**
* Function to build our form cache from the table.
*
* @param $id (int) The form ID.
* @since 3.3.18
* @return $form_cache Array of form data.
* @updated 3.4.0
*/
public static function build_nf_cache( $id ) {
$form = Ninja_Forms()->form( $id )->get();
$form_cache = array(
'id' => $id,
'fields' => array(),
'actions' => array(),
'settings' => $form->get_settings(),
);
$fields = Ninja_Forms()->form( $id )->get_fields();
foreach( $fields as $field ){
// If the field is set.
if ( ! is_null( $field ) && ! empty( $field ) ) {
array_push( $form_cache[ 'fields' ], array( 'settings' => $field->get_settings(), 'id' => $field->get_id() ) );
}
}
$actions = Ninja_Forms()->form( $id )->get_actions();
foreach( $actions as $action ){
// If the action is set.
if ( ! is_null( $action ) && ! empty( $action ) ) {
array_push( $form_cache[ 'actions' ], array( 'settings' => $action->get_settings(), 'id' => $action->get_id() ) );
}
}
WPN_Helper::update_nf_cache( $id, $form_cache );
return $form_cache;
}
/**
* Function to delete our cache.
*
* @param $id (int) The form ID.
*
* @since 3.3.7
*/
public static function delete_nf_cache( $id ) {
global $wpdb;
$sql = "DELETE FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id );
$wpdb->query( $sql );
delete_option( 'nf_form_' . intval( $id ) );
}
private static function parse_utf8_serialized( $matches )
{
if ( isset( $matches[2] ) ){
return 's:'.strlen($matches[2]).':"'.$matches[2].'";';
}
}
/**
* This funtion gets/creates the Ninja Forms gate keeper( a random integer
* between 1 and 100 ). We will use this number when deciding whether a
* particular install is eligible for an upgrade or whatever else we decide
* to use it for
*
* @return int $zuul
*
* @since 3.4.0
*/
public static function get_zuul() {
$zuul = get_option( 'ninja_forms_zuul', -1 );
if( -1 === $zuul ) {
$zuul = rand( 1, 100 );
update_option( 'ninja_forms_zuul', $zuul, false );
}
return $zuul;
}
/**
* This function will return true/false based on an option( ninja_forms_zuul )
* and a threshold that we set. We can use this to limit updates
*
* @param $threshold
*
* @return bool
*
* @since 3.4.0
*/
public static function gated_release( $threshold = 0 ) {
$gatekeeper = $threshold >= self::get_zuul();
$gatekeeper = apply_filters( 'ninja_forms_gatekeeper', $gatekeeper );
return $gatekeeper;
}
/**
* Is Maintenance
*
* Checks the upgrades table to see if the form the user is viewing
* is under maintenance mode.
*
* @since 3.4.0
*
* @param $form_id - The ID of the form we are checking.
*
* @return boolean
*/
public static function form_in_maintenance( $form_id ) {
global $wpdb;
$db_version = get_option( 'ninja_forms_db_version' );
if( ! $db_version ) return false;
// Exit early if the column doesn't exist.
if( version_compare( '1.3', $db_version, '>' ) ) return false;
// Get our maintenance value from the DB and return it at the zero position.
$maintenance = $wpdb->get_row(
"SELECT `maintenance` FROM `{$wpdb->prefix}nf3_upgrades` WHERE `id` = {$form_id}", 'ARRAY_A'
);
/*
* If maintenance isn't empty and basic on maintenance's value
* return a boolean value.
*/
if( ! empty( $maintenance ) && 1 == $maintenance[ 'maintenance' ] ) {
return true;
} else {
return false;
}
}
/**
* This function either put all forms in maintenance mode or remove maintenance
* mode for all forms. Depending on the input parameters
*
* @since 3.4.0
*
* @param $mode - Default 0 ( Take all forms out of maintenance mode )
*/
public static function set_forms_maintenance_mode( $mode = 0 ) {
global $wpdb;
// default is 0, so if we get passed bad data, just use 0
if( ! in_array( $mode, array( 0, 1 ) ) ) {
$mode = 0;
}
// set maintenance flag to $mode (0 or 1)
$sql = $wpdb->prepare( "UPDATE `{$wpdb->prefix}nf3_upgrades` SET "
. "maintenance = %d", intval( $mode ) );
$wpdb->query( $sql );
}
/**
* We'll use to determine if we need to use the form cache or not. This will
* be used for all users not on the newest version of the database
*
* @return boolean
*/
public static function use_cache() {
return true;
$cache_mode = intval( get_option('ninja_forms_cache_mode') );
// if we've already decided to use the cache return true and exit.
if( 0 < $cache_mode ) return true;
$db_version = get_option('ninja_forms_db_version');
// If not in cache mode, get the db version and return true if we aren't at a certain threshold version-wise
if( ! $db_version || version_compare($db_version, '1.4', '<' )) {
return true;
}
$finished_updates = get_option( 'ninja_forms_required_updates', false );
// make sure we've run the lastest update to reconcile db with cache field values
if( $finished_updates && !isset( $finished_updates[ 'CacheFieldReconcilliation' ] ) ) {
return true;
}
return false;
}
/**
* Sanitizes single/multiple CSS classNames
*
* Explodes on space, sanitize each className, implode with space to recombine
* @param string $value
* @return string
*/
public static function sanitize_classes($value):string {
$outgoing = $value;
$sanitized = [];
$exploded = explode(' ',$value);
foreach($exploded as $singleClass){
$sanitized[] = sanitize_html_class($singleClass);
}
$outgoing = implode(' ',$sanitized);
return $outgoing;
}
/**
* Sanitizes string values for field settings
*
* WIP methods can still be implemented for this.
*
* @param string $key Setting name
* @param string $value of setting
* @return string sanitized value for setting
*/
public static function sanitize_string_setting_value($key, $value):string {
if( in_array( $key, ["element_class", "container_class"] ) ) {
$value = self::sanitize_classes($value);
} else if( in_array( $key, ["label"] )){
$value = self::sanitize_text_field($value);
}
return $value;
}
/**
* Check the DISALLOW_UNFILTERED_HTML constant value and return early if true.
* If false, return opposite for 'unfiltered_html' current user capability
*
* @return bool
*/
public static function maybe_disallow_unfiltered_html_for_sanitization():bool {
/**
* Exit early if the config setting is TRUE to mimic WordPress capability check.
*/
if( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) return true;
$disallow_unfiltered_html = ! current_user_can( 'unfiltered_html' );
return $disallow_unfiltered_html;
}
/**
* Check the DISALLOW_UNFILTERED_HTML constant value only on the escaping side
*
* @return bool
*/
public static function maybe_disallow_unfiltered_html_for_escaping():bool {
$disallow_unfiltered_html = defined( 'DISALLOW_UNFILTERED_HTML' ) ? DISALLOW_UNFILTERED_HTML : false;
return $disallow_unfiltered_html;
}
} // End Class WPN_Helper