forked from kartik-v/yii2-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Enum.php
877 lines (827 loc) · 29.8 KB
/
Enum.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
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
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2013 - 2015
* @package yii2-helpers
* @version 1.3.5
*/
namespace kartik\helpers;
use Yii;
use yii\base\InvalidConfigException;
use yii\helpers\Inflector;
/**
* Collection of useful helper functions for Yii Applications
*
* @author Kartik Visweswaran <[email protected]>
* @since 1.0
*
*/
class Enum extends Inflector
{
/**
* @var array time intervals in seconds
*/
public static $intervals = [
'year' => 31556926,
'month' => 2629744,
'week' => 604800,
'day' => 86400,
'hour' => 3600,
'minute' => 60,
'second' => 1
];
/**
* Check if a variable is empty or not set.
*
* @param mixed $var variable to perform the check
*
* @return boolean
*/
public static function isEmpty($var)
{
return !isset($var) ? true : (is_array($var) ? empty($var) : ($var === null || $var === ''));
}
/**
* Check if a value exists in the array. This method is faster in performance than the built in PHP in_array method.
*
* @param string $needle the value to search
* @param array $haystack the array to scan
*
* @return boolean
*/
public static function inArray($needle, $haystack)
{
$flippedHaystack = array_flip($haystack);
return isset($flippedHaystack[$needle]);
}
/**
* Properize a string for possessive punctuation.
*
* @param string $string input string
*
* Example:
* ~~~
* properize("Chris"); //returns Chris'
* properize("David"); //returns David's
* ~~~
*
* @return string
*/
public static function properize($string)
{
$string = preg_replace('/\s+(.*?)\s+/', '*\1*', $string);
return $string . '\'' . ($string[strlen($string) - 1] != 's' ? 's' : '');
}
/**
* Get time elapsed (Facebook Style)
*
* @param string $fromTime start date time
* @param bool $human if true returns an approximate human friendly output. If set to `false`, will attempt an
* exact conversion of time intervals.
* @param string $toTime end date time (defaults to current system time)
* @param string $append the string to append for the converted elapsed time. Defaults to ' ago'.
*
* Example Output(s):
* 10 hours ago
*
* @return string
*/
public static function timeElapsed($fromTime = null, $human = true, $toTime = null, $append = null)
{
static::initI18N();
if ($append === null) {
$append = ' ' . Yii::t('kvenum', 'ago');
}
if ($fromTime != null) {
$fromTime = strtotime($fromTime);
$toTime = ($toTime == null) ? time() : (int)$toTime;
}
return static::timeInterval($toTime - $fromTime, $append, $human);
}
/**
* Get time interval (Facebook Style)
*
* @param int $interval time interval in seconds
* @param string $append the string to append for the converted elapsed time. Defaults to ' ago'.
* @param bool $human if true returns an approximate human friendly output. If set to `false`, will attempt an
* exact conversion of time intervals.
*
* Example Output(s):
* 10 hours ago
*
* @return string
*/
public static function timeInterval($interval, $append = null, $human = true)
{
static::initI18N();
$intervals = static::$intervals;
$elapsed = '';
if ($append === null) {
$append = ' ' . Yii::t('kvenum', 'ago');
}
if ($human) {
if ($interval <= 0) {
$elapsed = Yii::t('kvenum', 'a moment ago');
} elseif ($interval < 60) {
$elapsed = Yii::t('kvenum', '{n, plural, one{one second} other{# seconds}}', [ 'n' => $interval]);
} elseif ($interval >= 60 && $interval < $intervals['hour']) {
$interval = floor($interval / $intervals['minute']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one minute} other{# minutes}}', ['n' => $interval]);
} elseif ($interval >= $intervals['hour'] && $interval < $intervals['day']) {
$interval = floor($interval / $intervals['hour']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one hour} other{# hours}}', ['n' => $interval]);
} elseif ($interval >= $intervals['day'] && $interval < $intervals['week']) {
$interval = floor($interval / $intervals['day']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one day} other{# days}}', ['n' => $interval]);
} elseif ($interval >= $intervals['week'] && $interval < $intervals['month']) {
$interval = floor($interval / $intervals['week']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one week} other{# weeks}}', ['n' => $interval]);
} elseif ($interval >= $intervals['month'] && $interval < $intervals['year']) {
$interval = floor($interval / $intervals['month']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one month} other{# months}}', ['n' => $interval]);
} elseif ($interval >= $intervals['year']) {
$interval = floor($interval / $intervals['year']);
$elapsed = Yii::t('kvenum', '{n, plural, one{one year} other{# years}}', ['n' => $interval]);
}
} else {
$elapsed = static::time2String($interval, $intervals);
}
return $elapsed . $append;
}
/**
* Initialize translations
*/
public static function initI18N()
{
if (!empty(Yii::$app->i18n->translations['kvenum'])) {
return;
}
Yii::setAlias("@kvenum", __DIR__);
Yii::$app->i18n->translations['kvenum*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => "@kvenum/messages",
'forceTranslation' => true
];
}
/**
* Get elapsed time converted to string
*
* Example Output:
* 1 year 5 months 3 days ago
*
* @param int $time elapsed number of seconds
* @param array $intervals configuration of time intervals in seconds
*
* @return string
*/
protected static function time2String($time, $intervals)
{
$output = '';
foreach ($intervals as $name => $seconds) {
$num = floor($time / $seconds);
$time -= ($num * $seconds);
if ($num > 0) {
$output .= $num . ' ' . $name . (($num > 1) ? 's' : '') . ' ';
}
}
return trim($output);
}
/**
* Format and convert "bytes" to its optimal higher metric unit
*
* @param double $bytes number of bytes
* @param integer $precision the number of decimal places to round off
*
* @return string
*/
public static function formatBytes($bytes, $precision = 2)
{
$units = ['B', 'KB', 'MB', 'GB', 'TB'];
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= pow(1024, $pow);
return round($bytes, $precision) . ' ' . $units[$pow];
}
/**
* Number to words conversion. Returns the number converted as an anglicized string.
*
* @param double $num the source number
*
* @return string
*/
public static function numToWords($num)
{
$num = (int)$num; // make sure it's an integer
if ($num < 0) {
return Yii::t('kvenum', 'minus') . ' ' . static::convertTri(-$num, 0);
}
if ($num == 0) {
return Yii::t('kvenum', 'zero');
}
return static::convertTri($num, 0);
}
/**
* Recursive function used in number to words conversion. Converts three digits per pass.
*
* @param double $num the source number
* @param int $tri the three digits converted per pass.
*
* @return string
*/
protected static function convertTri($num, $tri)
{
// chunk the number ...xyz
$x = (int)($num / 1000);
$y = ($num / 100) % 10;
$z = $num % 100;
// init the output string
$str = "";
$ones = static::ones();
$tens = static::tens();
$triplets = static::triplets();
// do hundreds
if ($y > 0) {
$str = $ones[$y] . ' ' . Yii::t('kvenum', 'hundred');
}
// do ones and tens
$str .= $z < 20 ? $ones[$z] : $tens[(int)($z / 10)] . $ones[$z % 10];
// add triplet modifier only if there is some output to be modified...
if ($str != "") {
$str .= $triplets[$tri];
}
// recursively process until valid thousands digit found
return $x > 0 ? static::convertTri($x, $tri + 1) . $str : $str;
}
/**
* Generate list of ones
*
* @return array
*/
public static function ones()
{
static::initI18N();
return [
'',
' ' . Yii::t('kvenum', 'one'),
' ' . Yii::t('kvenum', 'two'),
' ' . Yii::t('kvenum', 'three'),
' ' . Yii::t('kvenum', 'four'),
' ' . Yii::t('kvenum', 'five'),
' ' . Yii::t('kvenum', 'six'),
' ' . Yii::t('kvenum', 'seven'),
' ' . Yii::t('kvenum', 'eight'),
' ' . Yii::t('kvenum', 'nine'),
' ' . Yii::t('kvenum', 'ten'),
' ' . Yii::t('kvenum', 'eleven'),
' ' . Yii::t('kvenum', 'twelve'),
' ' . Yii::t('kvenum', 'thirteen'),
' ' . Yii::t('kvenum', 'fourteen'),
' ' . Yii::t('kvenum', 'fifteen'),
' ' . Yii::t('kvenum', 'sixteen'),
' ' . Yii::t('kvenum', 'seventeen'),
' ' . Yii::t('kvenum', 'eighteen'),
' ' . Yii::t('kvenum', 'nineteen')
];
}
/**
* Generate list of tens
*
* @return array
*/
public static function tens()
{
static::initI18N();
return [
'',
'',
' ' . Yii::t('kvenum', 'twenty'),
' ' . Yii::t('kvenum', 'thirty'),
' ' . Yii::t('kvenum', 'forty'),
' ' . Yii::t('kvenum', 'fifty'),
' ' . Yii::t('kvenum', 'sixty'),
' ' . Yii::t('kvenum', 'seventy'),
' ' . Yii::t('kvenum', 'eighty'),
' ' . Yii::t('kvenum', 'ninety')
];
}
/**
* Generate list of months
*
* @return array
*/
public static function months()
{
static::initI18N();
return [
1 => Yii::t('kvenum', 'January'),
Yii::t('kvenum', 'February'),
Yii::t('kvenum', 'March'),
Yii::t('kvenum', 'April'),
Yii::t('kvenum', 'May'),
Yii::t('kvenum', 'June'),
Yii::t('kvenum', 'July'),
Yii::t('kvenum', 'August'),
Yii::t('kvenum', 'September'),
Yii::t('kvenum', 'October'),
Yii::t('kvenum', 'November'),
Yii::t('kvenum', 'December'),
];
}
/**
* Generate list of days
*
* @return array
*/
public static function days()
{
static::initI18N();
return [
1 => Yii::t('kvenum', 'Sunday'),
Yii::t('kvenum', 'Monday'),
Yii::t('kvenum', 'Tuesday'),
Yii::t('kvenum', 'Wednesday'),
Yii::t('kvenum', 'Thursday'),
Yii::t('kvenum', 'Friday'),
Yii::t('kvenum', 'Saturday')
];
}
/**
* Generate list of triplets
*
* @return array
*/
public static function triplets()
{
static::initI18N();
return [
'',
' ' . Yii::t('kvenum', 'thousand'),
' ' . Yii::t('kvenum', 'million'),
' ' . Yii::t('kvenum', 'billion'),
' ' . Yii::t('kvenum', 'trillion'),
' ' . Yii::t('kvenum', 'quadrillion'),
' ' . Yii::t('kvenum', 'quintillion'),
' ' . Yii::t('kvenum', 'sextillion'),
' ' . Yii::t('kvenum', 'septillion'),
' ' . Yii::t('kvenum', 'octillion'),
' ' . Yii::t('kvenum', 'nonillion'),
];
}
/**
* Generates a list of years
*
* @param integer $from the start year
* @param integer $to the end year
* @param boolean $keys whether to set the array keys same as the values (defaults to false)
* @param boolean $desc whether to sort the years descending (defaults to true)
*
* @return array
* @throws InvalidConfigException if $to < $from
*/
public static function yearList($from, $to = null, $keys = false, $desc = true)
{
if (static::isEmpty($to)) {
$to = intval(date("Y"));
}
if ($to >= $from) {
$years = ($desc) ? range($to, $from) : range($from, $to);
return $keys ? array_combine($years, $years) : $years;
} else {
throw new InvalidConfigException("The 'year to' parameter must exceed 'year from'.");
}
}
/**
* Generate a month or day array list for Gregorian calendar
*
* @param string $unit whether 'day' or 'month'
* @param bool $abbr whether to return abbreviated day or month
* @param int $start the first day or month to set. Defaults to `1`.
* @param string $case whether 'upper', lower', or null. If null, then the initcap case will be used.
*
* @return array list of days or months
* @throws InvalidConfigException
*/
protected static function genCalList($unit = 'day', $abbr = false, $start = 1, $case = null)
{
$source = $unit == 'month' ? static::months() : static::days();
$total = count($source);
if ($start < 1 || $start > $total) {
throw new InvalidConfigException("The start '{$unit}' must be between 1 and {$total}.");
}
$converted = [];
foreach ($source as $key => $value) {
$data = $abbr ? substr($value, 0, 3) : $value;
if ($case == 'upper') {
$data = strtoupper($data);
} elseif ($case == 'lower') {
$data = strtolower($data);
}
if ($start == 1) {
$i = $key;
} else {
$i = $key - $start + 1;
if ($i < 1) {
$i += $total;
}
}
$converted[$i] = $data;
}
return (ksort($converted) ? $converted : $source);
}
/**
* Generate a month array list for Gregorian calendar
*
* @param bool $abbr whether to return abbreviated month
* @param int $start the first month to set. Defaults to `1` for `January`.
* @param string $case whether 'upper', lower', or null. If null, then the initcap case will be used.
*
* @return array list of months
*/
public static function monthList($abbr = false, $start = 1, $case = null)
{
return static::genCalList('month', $abbr, $start, $case);
}
/**
* Generate a day array list for Gregorian calendar
*
* @param bool $abbr whether to return abbreviated day
* @param int $start the first day to set. Defaults to `1` for `Sunday`.
* @param string $case whether 'upper', lower', or null. If null, then the initcap case will be used.
*
* @return array list of days
*/
public static function dayList($abbr = false, $start = 1, $case = null)
{
return static::genCalList('day', $abbr, $start, $case);
}
/**
* Generate a date picker array list for Gregorian Calendar.
*
* @param int $from the start day, defaults to 1
* @param int $to the end day, defaults to 31
* @param int $interval the date interval, defaults to 1.
* @param bool $intervalFromZero whether to start incrementing intervals from zero if $from = 1.
* @param bool $showLast whether to show the last date (set in $to) even if it does not match interval.
*
* @return array
* @throws InvalidConfigException
*/
public static function dateList($from = 1, $to = 31, $interval = 1, $intervalFromZero = true, $showLast = true)
{
if ($to < 1 || $from < 1) {
$val = $from < 1 ? "from day '{$from}'" : "to day '{$to}'";
throw new InvalidConfigException("Invalid value for {$val} passed. Must be greater or equal than 1");
}
if ($from > $to) {
throw new InvalidConfigException("The from day '{$from}' cannot exceed to day '{$to}'.");
}
if ($to > 31) {
throw new InvalidConfigException("Invalid value for to day '{$to}' passed. Must be less than or equal to 31");
}
if ($from > 1 || $interval == 1 || !$intervalFromZero) {
$out = range($from, $to, $interval);
} else {
$out = range(0, $to, $interval);
$out[0] = 1;
}
$len = count($out);
if ($showLast && $out[$len - 1] != $to) {
$out[$len] = $to;
}
return $out;
}
/**
* Generate a time picker array list
*
* @param string $unit the time unit ('hour', 'min', 'sec', 'ms')
* @param integer $interval the time interval.
* @param integer $from the time from (defaults to 23 for hour
* @param integer $to the time to (defaults to 1).
* @param bool $padZero whether to pad zeros to the left of each time unit value.
*
* @return array
* @throws InvalidConfigException if $unit passed is invalid
*/
public static function timeList($unit, $interval = 1, $from = 0, $to = null, $padZero = true)
{
if ($unit == 'hour') {
$maxTo = 23;
} elseif ($unit == 'min' || $unit == 'sec') {
$maxTo = 59;
} elseif ($unit == 'ms') {
$maxTo = 999;
} else {
throw new InvalidConfigException("Invalid time unit passed. Must be 'hour', 'min', 'sec', or 'ms'.");
}
if ($interval < 1) {
throw new InvalidConfigException("Invalid time interval '{$interval}'. Must be greater than 0.");
}
if (empty($to)) {
$to = $maxTo;
}
if ($to > $maxTo) {
throw new InvalidConfigException("The '{$unit} to' cannot exceed {$maxTo}.");
}
if ($from < 0 || $from > $to) {
throw new InvalidConfigException("The '{$unit} from' must lie between {$from} and {$to}.");
}
$data = range($from, $to, $interval);
if (!$padZero) {
return $data;
}
$out = [];
$pad = strlen($maxTo . '');
foreach ($data as $key => $value) {
$out[$key] = str_pad($value, $pad, '0', STR_PAD_LEFT);
}
return $out;
}
/**
* Generates a boolean list
*
* @param string $false the label for the false value
* @param string $true the label for the true value
*
* @return array
*/
public static function boolList($false = null, $true = null)
{
static::initI18N();
return [
false => empty($false) ? Yii::t('kvenum', 'No') : $false, // == 0
true => empty($true) ? Yii::t('kvenum', 'Yes') : $true, // == 1
];
}
/**
* Convert a PHP array to HTML table
*
* @param array $array the associative array to be converted
* @param bool $transpose whether to show keys as rows instead of columns. This parameter should be used only for
* a single dimensional associative array. If used for a multidimensional array, the sub array will be imploded
* as text.
* @param bool $recursive whether to recursively generate tables for multi-dimensional arrays
* @param bool $typeHint whether to show the data type as a hint
* @param string $null the content to display for blank cells
* @param array $tableOptions the HTML attributes for the table
* @param array $keyOptions the HTML attributes for the array key
* @param array $valueOptions the HTML attributes for the array value
*
* @return string|boolean
*/
public static function array2table(
$array,
$transpose = false,
$recursive = false,
$typeHint = true,
$tableOptions = ['class' => 'table table-bordered table-striped'],
$keyOptions = [],
$valueOptions = ['style' => 'cursor: default; border-bottom: 1px #aaa dashed;'],
$null = '<span class="not-set">(not set)</span>'
) {
// Sanity check
if (empty($array) || !is_array($array)) {
return false;
}
// Start the table
$table = Html::beginTag('table', $tableOptions) . "\n";
// The header
$table .= "\t<tr>";
if ($transpose) {
foreach ($array as $key => $value) {
if ($typeHint) {
$valueOptions['title'] = self::getType(strtoupper($value));
}
if (is_array($value)) {
$value = '<pre>' . print_r($value, true) . '</pre>';
} else {
$value = Html::tag('span', $value, $valueOptions);
}
$table .= "\t\t<th>" . Html::tag('span', $key, $keyOptions) . "</th>" .
"<td>" . $value . "</td>\n\t</tr>\n";
}
$table .= "</table>";
return $table;
}
if (!isset($array[0]) || !is_array($array[0])) {
$array = array($array);
}
// Take the keys from the first row as the headings
foreach (array_keys($array[0]) as $heading) {
$table .= '<th>' . Html::tag('span', $heading, $keyOptions) . '</th>';
}
$table .= "</tr>\n";
// The body
foreach ($array as $row) {
$table .= "\t<tr>";
foreach ($row as $cell) {
$table .= '<td>';
// Cast objects
if (is_object($cell)) {
$cell = (array)$cell;
}
if ($recursive === true && is_array($cell) && !empty($cell)) {
// Recursive mode
$table .= "\n" . static::array2table($cell, true, true) . "\n";
} else {
if (!is_null($cell) && is_bool($cell)) {
$val = $cell ? 'true' : 'false';
$type = 'boolean';
} else {
$chk = (strlen($cell) > 0);
$type = $chk ? self::getType($cell) : 'NULL';
$val = $chk ? htmlspecialchars((string)$cell) : $null;
}
if ($typeHint) {
$valueOptions['title'] = $type;
}
$table .= Html::tag('span', $val, $valueOptions);
}
$table .= '</td>';
}
$table .= "</tr>\n";
}
$table .= '</table>';
return $table;
}
/**
* Parses and returns a variable type
*
* @param string $var the variable to be parsed
*
* @return string
*/
public static function getType($var)
{
if (is_array($var)) {
return 'array';
} elseif (is_object($var)) {
return 'object';
} elseif (is_resource($var)) {
return 'resource';
} elseif (is_null($var)) {
return 'NULL';
} elseif (is_bool($var)) {
return 'boolean';
} elseif (is_float($var) || (is_numeric(str_replace(',', '', $var)) && strpos($var, '.') > 0 &&
is_float((float)str_replace(',', '', $var)))
) {
return 'float';
} elseif (is_int($var) || (is_numeric($var) && is_int((int)$var))) {
return 'integer';
} elseif (is_scalar($var) && strtotime($var) !== false) {
return 'datetime';
} elseif (is_scalar($var)) {
return 'string';
}
return 'unknown';
}
/**
* Gets the user's IP address
*
* @param boolean $filterLocal whether to filter local & LAN IP (defaults to true)
*
* @return string
*/
public static function userIP($filterLocal = true)
{
$ipSources = [
'HTTP_CLIENT_IP',
'HTTP_X_FORWARDED_FOR',
'HTTP_X_FORWARDED',
'HTTP_X_CLUSTER_CLIENT_IP',
'HTTP_FORWARDED_FOR',
'HTTP_FORWARDED',
'REMOTE_ADDR'
];
foreach ($ipSources as $key) {
if (array_key_exists($key, $_SERVER) === true) {
foreach (array_map('trim', explode(',', $_SERVER[$key])) as $ip) {
if ($filterLocal) {
$checkFilter = filter_var(
$ip,
FILTER_VALIDATE_IP,
FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE
);
if ($checkFilter !== false) {
return $ip;
}
} else {
return $ip;
}
}
}
}
return 'Unknown';
}
/**
* Gets basic browser information
*
* @param boolean $common show common browsers only
* @param array $browsers the list of browsers
* @param string $agent user agent
*
* @return array the browser information
*/
public static function getBrowser($common = false, $browsers = [], $agent = null)
{
static::initI18N();
if ($agent === null) {
$agent = $_SERVER['HTTP_USER_AGENT'];
}
if ($common) {
$browsers = [
"opera" => Yii::t("kvenum", "Opera"),
"chrome" => Yii::t("kvenum", "Google Chrome"),
"safari" => Yii::t("kvenum", "Safari"),
"firefox" => Yii::t("kvenum", "Mozilla Firefox"),
"msie" => Yii::t("kvenum", "Microsoft Internet Explorer"),
"mobile safari" => Yii::t("kvenum", "Mobile Safari"),
];
} elseif (empty($browsers)) {
$browsers = [
"opera" => Yii::t("kvenum", "Opera"),
"maxthon" => Yii::t("kvenum", "Maxthon"),
"seamonkey" => Yii::t("kvenum", "Mozilla Sea Monkey"),
"arora" => Yii::t("kvenum", "Arora"),
"avant" => Yii::t("kvenum", "Avant"),
"omniweb" => Yii::t("kvenum", "Omniweb"),
"epiphany" => Yii::t("kvenum", "Epiphany"),
"chromium" => Yii::t("kvenum", "Chromium"),
"galeon" => Yii::t("kvenum", "Galeon"),
"puffin" => Yii::t("kvenum", "Puffin"),
"fennec" => Yii::t("kvenum", "Mozilla Firefox Fennec"),
"chrome" => Yii::t("kvenum", "Google Chrome"),
"mobile safari" => Yii::t("kvenum", "Mobile Safari"),
"safari" => Yii::t("kvenum", "Apple Safari"),
"firefox" => Yii::t("kvenum", "Mozilla Firefox"),
"iemobile" => Yii::t("kvenum", "Microsoft Internet Explorer Mobile"),
"msie" => Yii::t("kvenum", "Microsoft Internet Explorer"),
"konqueror" => Yii::t("kvenum", "Konqueror"),
"amaya" => Yii::t("kvenum", "Amaya"),
"netscape" => Yii::t("kvenum", "Netscape"),
"mosaic" => Yii::t("kvenum", "Mosaic"),
"netsurf" => Yii::t("kvenum", "NetSurf"),
"netfront" => Yii::t("kvenum", "NetFront"),
"minimo" => Yii::t("kvenum", "Minimo"),
"blackberry" => Yii::t("kvenum", "Blackberry"),
];
}
$info = [
'agent' => $agent,
'code' => 'other',
'name' => 'Other',
'version' => "?",
'platform' => 'Unknown'
];
if (preg_match('/iphone|ipod|ipad/i', $agent)) {
$info['platform'] = 'ios';
} elseif (preg_match('/android/i', $agent)) {
$info['platform'] = 'android';
} elseif (preg_match('/symbian/i', $agent)) {
$info['platform'] = 'symbian';
} elseif (preg_match('/maemo/i', $agent)) {
$info['platform'] = 'maemo';
} elseif (preg_match('/palm/i', $agent)) {
$info['platform'] = 'palm';
} elseif (preg_match('/linux/i', $agent)) {
$info['platform'] = 'linux';
} elseif (preg_match('/mac/i', $agent)) {
$info['platform'] = 'mac';
} elseif (preg_match('/win/i', $agent)) {
$info['platform'] = 'windows';
} elseif (preg_match('/x11|bsd|sun/i', $agent)) {
$info['platform'] = 'unix';
}
foreach ($browsers as $code => $name) {
if (preg_match("/{$code}/i", $agent)) {
$info['code'] = $code;
$info['name'] = $name;
$info['version'] = static::getBrowserVer($agent, $code);
return $info;
}
}
return $info;
}
/**
* Returns browser version
*
* @param string $agent the user agent string
* @param string $code the browser string
*
* @return float
*/
protected static function getBrowserVer($agent, $code)
{
$version = '?';
$pattern = '#(?<browser>' . $code . ')[/v ]+(?<version>[0-9]+(?:\.[0-9]+)?)#';
if ($code == 'blackberry') {
$pattern = '#(?<browser>' . $code . ')[/v0-9 ]+(?<version>[0-9]+(?:\.[0-9]+)?)#';
}
if (preg_match_all($pattern, strtolower($agent), $matches)) {
$i = count($matches['browser']) - 1;
$ver = [$matches['browser'][$i] => $matches['version'][$i]];
$version = empty($ver[$code]) ? '?' : $ver[$code];
}
return $version;
}
}