helper.php
7.74 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
<?php
// namespace ##
namespace q\eud\core;
/**
* helper Class
* @package q_eud\core
*/
class helper {
/**
* Write to WP Error Log
*
* @since 1.5.0
* @return void
*/
public static function log( $log ){
if ( true === \WP_DEBUG ) {
$trace = debug_backtrace();
$caller = $trace[0];
$suffix = sprintf(
__( ' - %s%s() %s:%d', 'Q' )
, isset($caller['class']) ? $caller['class'].'::' : ''
, $caller['function']
, isset( $caller['file'] ) ? $caller['file'] : 'n'
, isset( $caller['line'] ) ? $caller['line'] : 'x'
);
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ).$suffix );
} else {
error_log( $log.$suffix );
}
}
}
/**
* Return Byte count of $val
*
* @link http://wordpress.org/support/topic/how-to-exporting-a-lot-of-data-out-of-memory-issue?replies=2
* @since 0.9.6
*/
public static function return_bytes( $val ){
$val = trim( $val );
$last = strtolower($val[strlen($val)-1]);
switch( $last ) {
// The 'G' modifier is available since PHP 5.1.0
case 'g':
$val *= 1024;
case 'm':
$val *= 1024;
case 'k':
$val *= 1024;
}
return $val;
}
/**
* Recursively implodes an array
*
* @since 1.0.1
* @access public
* @param array $array multi-dimensional array to recursively implode
* @param string $glue value that glues elements together
* @param bool $include_keys include keys before their values
* @param bool $trim_all trim ALL whitespace from string
* @return string imploded array
*/
public static function recursive_implode( $array, $return = null, $glue = '|' ){
// unserialize ##
$array = self::unserialize( $array );
// kick it back ##
if ( is_null ( $return ) && ! is_array( $array ) ) {
return $array;
}
// empty return ##
if ( is_null ( $return ) ) {
$return = '';
} else {
if ( "||" == $glue ) {
$glue = '|||';
} else if ( "|" == $glue ) {
$glue = '||';
}
}
// loop ##
foreach( $array as $key => $value ) {
// unserialize ##
$value = self::unserialize( $value );
if( is_array( $value ) ) {
$return .= $glue . $key . $glue . self::recursive_implode( $value, $return, $glue );
// add @2.1.0 from issue #4 - https://github.com/qstudio/export-user-data/issues/4
} elseif(is_object($value)) {
$return .= $glue . $key . $glue . self::recursive_implode( $value, $return, $glue );
} else {
$return .= $glue . $key . $glue . $value;
}
}
// Removes first $glue from string ##
if ( $glue && $return && $return[0] == '|' ) {
$return = ltrim( $return, '|' );
}
// Trim ALL whitespace ##
if ( $return ) {
$return = preg_replace( "/(\s)/ixsm", '', $return );
}
// kick it back ##
return $return;
}
/**
* Save Unserializer
*
* @since 1.1.4
*/
public static function unserialize( $value = null ){
// the $value is serialized ##
if ( \is_serialized( $value ) ) {
// unserliaze to new variable ##
$unserialized = @unserialize( $value );
// test if unserliazing produced errors ##
if (
$unserialized !== false
&& $value !== 'b:0;'
){
// self::log( $unserialized );
$value = $unserialized;
} else {
// failed to unserialize - data potentially corrupted in db ##
$value = $value;
}
}
// kick it back ##
return $value;
}
/**
* Encode special characters
*
* @param type $string
* @return string Encoding string
* @since 1.2.3
*/
public static function format_value( string $value = null )
{
// sanity check ##
if ( is_null( $value ) ) {
return false;
}
if( has_filter( 'q/eud/export/value' ) ){
$value = \apply_filters( 'q/eud/export/value', $value );
} else {
$value = htmlentities( $value, ENT_COMPAT, 'UTF-8' );
}
// kick it back via a filter to allow custom formatting ##
return $value;
}
/**
* Encode array values to JSON string
*
* @since 2.2.1
* @param mixed
* @return mixed string|null
*/
public static function json_encode( array $value ):?string
{
if ( ! is_array( $value ) ){
return $value;
}
// cleanup array ##
$value = array_values( $value );
// encode and escape ##
$value = json_encode( $value, JSON_FORCE_OBJECT );
// kick back JSON encoded string ##
return $value;
}
/**
* Quote array elements and separate with commas
*
* @since 0.9.6
* @return String
*/
public static function quote_array( $array ){
$prefix = ''; // starts empty ##
$string = '';
if ( is_array( $array ) ) {
foreach( $array as $element ) {
$string .= $prefix . "'" . \esc_attr( $element ) . "'";
$prefix = ','; // prefix all remaining items with a comma ##
}
}
// kick back string to function caller ##
return( $string );
}
/**
* Export Date Options
*
* @since 0.9.6
* @global type $wpdb
* @return Array of objects
* @todo Remove max date, as this makes little sense for exports not based on user reg dates.. ??
*/
public static function get_user_registered_dates(){
// invite in global objects ##
global $wpdb;
// query user table for oldest and newest registration ##
$range =
$wpdb->get_results (
"
SELECT
MIN( user_registered ) AS first,
MAX( user_registered ) AS last
FROM
{$wpdb->users}
"
);
return $range;
}
/**
* Sanitize data
*
* @since 1.2.8
* @return string
*/
public static function sanitize_value( $value ){
if( has_filter( 'q/eud/export/value' ) ){
$value = \apply_filters( 'q/eud/export/value', $value );
} else {
$value = htmlentities( $value, ENT_COMPAT|ENT_COMPAT, 'UTF-8' );
// $value = \esc_attr( $value );
}
// return value ##
return $value;
}
public static function sanitize( $value ) {
if ( is_array( $value ) ) {
array_walk_recursive( $value, [ __CLASS__, 'sanitize_value' ] );
} else {
self::sanitize_value( $value );
}
return $value;
}
/**
* Check if a string is JSON
*
* @since 2.0.2
*/
public static function is_json( $string )
{
json_decode( $string );
if ( json_last_error() === JSON_ERROR_NONE ){
return true;
}
return false;
}
/**
* Get allowed tags for wp_kses
*
* @since 1.2.8
* @return Array
*/
public static function get_allowed_tags(){
$allowed_tags = [
'a' => [
'href' => [],
'title' => []
],
'br' => [],
'em' => [],
'strong' => [],
];
// kick back via filter ##
return \apply_filters( 'q/eud/export/allowed_tags', $allowed_tags );
}
}