Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16287 | Rev 16766 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Library;
6
 
7
abstract class Functions
8
{
9
    public static function getUserIP()
10
    {
11
        $client  = isset($_SERVER['HTTP_CLIENT_IP'])  ? $_SERVER['HTTP_CLIENT_IP'] : '';
12
        $forward = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : '';
13
        $remote  = $_SERVER['REMOTE_ADDR'];
16287 anderson 14
 
15
        if (filter_var($client, FILTER_VALIDATE_IP)) {
1 www 16
            $ip = $client;
16287 anderson 17
        } elseif (filter_var($forward, FILTER_VALIDATE_IP)) {
1 www 18
            $ip = $forward;
19
        } else {
20
            $ip = $remote;
21
        }
16287 anderson 22
 
1 www 23
        return $ip;
24
    }
16287 anderson 25
 
26
 
1 www 27
    /**
28
     *
29
     * @param string $what
30
     * @param string $date
31
     * @return string
32
     */
16287 anderson 33
    public static function convertDate($what, $date)
34
    {
1 www 35
        if ($what == 'wherecond') {
36
            return date('Y-m-d', strtotime($date));
16287 anderson 37
        } else if ($what == 'display') {
1 www 38
            return date('d M, Y h:i A', strtotime($date));
16287 anderson 39
        } else if ($what == 'displayWeb') {
1 www 40
            return date('d M Y', strtotime($date));
16287 anderson 41
        } else if ($what == 'onlyDate') {
1 www 42
            return date(PHP_DATE_FORMAT, strtotime($date));
16287 anderson 43
        } else if ($what == 'monthYear') {
1 www 44
            return date(PHP_DATE_FORMAT_MONTH_YEAR, strtotime($date));
16287 anderson 45
        } else if ($what == 'onlyMonth') {
1 www 46
            return date(PHP_DATE_FORMAT_MONTH, strtotime($date));
16287 anderson 47
        } else if ($what == 'gmail') {
1 www 48
            return date('D, M d, Y - h:i A', strtotime($date));
16287 anderson 49
        } else if ($what == 'onlyDateForCSV') {
1 www 50
            return date('M d,Y', strtotime($date));
16287 anderson 51
        } else {
1 www 52
            return date('Y-m-d', strtotime($date));
53
        }
54
    }
16287 anderson 55
 
1 www 56
    /**
16287 anderson 57
     *
58
     * @return string[]
59
     */
60
    public static function getAllTimeZones()
61
    {
62
        $timezones =  [];
63
        $zones = \DateTimeZone::listIdentifiers();
64
 
65
        foreach ($zones as $zone) {
66
            array_push($timezones, $zone);
67
        }
68
 
69
        return $timezones;
70
    }
71
 
72
    /**
14739 efrain 73
     *
74
     * @param string $timestamp
75
     * @param string $now
1 www 76
     * @return string
77
     */
14739 efrain 78
    public static function timeAgo($timestamp, $now = '')
79
    {
16287 anderson 80
 
81
        if ($now) {
14739 efrain 82
            $datetime1 = \DateTime::createFromFormat('Y-m-d H:i:s', $now);
83
        } else {
84
            $now = date('Y-m-d H:i:s');
85
            $datetime1 = date_create($now);
86
        }
87
        $datetime2 = date_create($timestamp);
16287 anderson 88
 
14739 efrain 89
        $diff = date_diff($datetime1, $datetime2);
90
        $timemsg = '';
91
        if ($diff->y > 0) {
92
            $timemsg = $diff->y . ' año' . ($diff->y > 1 ? "s" : '');
93
        } else if ($diff->m > 0) {
94
            $timemsg = $diff->m . ' mes' . ($diff->m > 1 ? "es" : '');
95
        } else if ($diff->d > 0) {
96
            $timemsg = $diff->d . ' dia' . ($diff->d > 1 ? "s" : '');
97
        } else if ($diff->h > 0) {
98
            $timemsg = $diff->h . ' hora' . ($diff->h > 1 ? "s" : '');
99
        } else if ($diff->i > 0) {
100
            $timemsg = $diff->i . ' minuto' . ($diff->i > 1 ? "s" : '');
101
        } else if ($diff->s > 0) {
102
            $timemsg = $diff->s . ' segundo' . ($diff->s > 1 ? "s" : '');
103
        }
104
        if (!$timemsg) {
105
            $timemsg = "Ahora";
106
        } else {
107
            $timemsg = $timemsg . '';
108
        }
109
        return $timemsg;
110
    }
16287 anderson 111
 
14739 efrain 112
    /*
14680 efrain 113
    public static function timeElapsedString(int $ptime, $now = null)
1 www 114
    {
14680 efrain 115
        if($now)  {
116
            $etime = $now - $ptime;
117
 
118
        } else {
119
            $etime = time() - $ptime;
120
        }
121
 
122
 
1 www 123
        if ($etime < 1) {
124
            return 'LABEL_ZERO_SECOND';
125
        }
126
        $a = array(365 * 24 * 60 * 60 => 'LABEL_YEAR_SMALL',
127
            30 * 24 * 60 * 60 => 'LABEL_MONTH_SMALL',
128
            24 * 60 * 60 => 'LABEL_DAY_SMALL',
129
            60 * 60 => 'LABEL_HOUR_SMALL',
130
            60 => 'LABEL_MINUTE_SMALL',
131
            1 => 'LABEL_SECOND_SMALL'
132
        );
133
        $a_plural = array('LABEL_YEAR_SMALL' => 'LABEL_YEARS_SMALL',
134
            'LABEL_MONTH_SMALL' => 'LABEL_MONTHS_SMALL',
135
            'LABEL_DAY_SMALL' => 'LABEL_DAYS_SMALL',
136
            'LABEL_HOUR_SMALL' => 'LABEL_HOURS_SMALL',
137
            'LABEL_MINUTE_SMALL' => 'LABEL_MINUTES_SMALL',
138
            'LABEL_SECOND_SMALL' => 'LABEL_SECONDS_SMALL'
139
        );
140
 
141
        foreach ($a as $secs => $str) {
142
            $d = $etime / $secs;
143
            if ($d >= 1) {
144
                $r = round($d);
145
                return $r . ' ' . ($r > 1 ? $a_plural[$str] : $str);
146
            }
147
        }
14739 efrain 148
    }*/
1 www 149
 
16287 anderson 150
 
1 www 151
    /**
152
     *
153
     * @param string $date1
154
     * @param string $date2
155
     * @param string $format
156
     */
16287 anderson 157
    public static function getYears(string $date1, string $date2, string $format = 'YearMonth')
1 www 158
    {
159
        $date1 = new \DateTime($date1);
160
        $date2 = new \DateTime($date2);
161
        $interval = date_diff($date1, $date2);
162
        $months = $interval->m + ($interval->y * 12);
16287 anderson 163
        return (int) ($months / 12);
1 www 164
    }
16287 anderson 165
 
1 www 166
    /**
167
     *
168
     * @param number $length
169
     * @param string $seeds
170
     * @return string
171
     */
16287 anderson 172
    public static function genrateRandom($length = 8, $seeds = 'alphanum')
1 www 173
    {
174
        $seedings = [
175
            'alpha' => 'abcdefghijklmnopqrstuvwqyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
176
            'numeric' => '0123456789',
177
            'alphanum' => 'abcdefghijklmnopqrstuvwqyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',
178
            'hexidec' => '0123456789abcdef',
179
        ];
180
 
181
        if (isset($seedings[$seeds])) {
182
            $seeds = $seedings[$seeds];
183
        }
184
        list($usec, $sec) = explode(' ', microtime());
185
        $seed = (float) $sec + ((float) $usec * 100000);
186
        mt_srand($seed);
187
        $str = '';
188
        $seeds_count = strlen($seeds);
189
        for ($i = 0; $length > $i; $i++) {
190
            $pos = mt_rand(0, $seeds_count - 1);
16287 anderson 191
 
1 www 192
            $str .= substr($seeds, $pos, $pos + 1);
193
        }
194
        return $str;
195
    }
16287 anderson 196
 
1 www 197
    /**
198
     *
199
     * @param string $date1
200
     * @param string $date2
201
     * @param string $timeFormat
202
     * @param bool $positive
203
     * @return number
204
     */
16287 anderson 205
    public static function getDateDiff(string $date1, string $date2, string $timeFormat = 'sec', bool $positive = false)
1 www 206
    {
207
        $dtTime1 = strtotime($date1);
208
        $dtTime2 = strtotime($date2);
209
        if ($positive === true) {
210
            if ($dtTime2 < $dtTime1) {
211
                $tmp = $dtTime1;
212
                $dtTime1 = $dtTime2;
213
                $dtTime2 = $tmp;
214
            }
215
        }
216
        $diff = $dtTime2 - $dtTime1;
217
        if ($timeFormat == 'sec') {
218
            return $diff;
219
        } else if ($timeFormat == 'day') {
220
            return $diff / 86400;
221
        }
222
    }
16287 anderson 223
 
224
 
1 www 225
    /**
226
     *
227
     * @param string $date1
228
     * @param string $date2
229
     * @param string $format
230
     * @return string
231
     */
16287 anderson 232
    public static function getDifference(string $date1, string $date2, string $format = 'YearMonth')
1 www 233
    {
234
        $difference = '';
235
        $datetime1 = date_create($date1);
236
        $datetime2 = date_create($date2);
237
        $interval = date_diff($datetime1, $datetime2);
238
        $years = $interval->format('%y');
239
        $months = $interval->format('%m');
240
        $days = $interval->format('%d');
241
        $years_text = $months_text = $days_text = '';
242
        if ($years == 1) {
243
            $years_text = '1 LABEL_YEAR';
244
        } else if ($years > 1) {
245
            $years_text = $years . ' LABEL_YEARS';
246
        }
247
        if ($months == 1) {
248
            $months_text = '1 LABEL_MONTH';
249
        } else if ($months > 1) {
250
            $months_text = $months . ' LABEL_MONTHS';
251
        }
252
        if ($days == 1) {
253
            $days_text = '1 LABEL_DAY';
254
        } else if ($days > 1) {
255
            $days_text = $days . ' LABEL_DAYS';
256
        }
257
        if ($format == 'Year') {
258
            return trim($years_text);
259
        } else if ($format == 'YearMonth') {
260
            $difference = trim($years_text) . ' ' . trim($months_text);
261
            return trim($difference);
262
        } else if ($format == 'YearMonthDay') {
263
            $difference = trim($years_text) . ' ' . trim($months_text) . ' ' . trim($days_text);
264
            return trim($difference);
265
        }
266
    }
16287 anderson 267
 
1 www 268
    /**
269
     *
270
     * @param string $source
271
     * @param string $destination
272
     * @param int $quality
273
     * @return string
274
     */
16287 anderson 275
    public static function compress(string $source, string $destination, int $quality = null)
1 www 276
    {
277
        $info = getimagesize($source);
278
        if ($info['mime'] == 'image/jpeg') {
279
            $image = imagecreatefromjpeg($source);
16287 anderson 280
        } elseif ($info['mime'] == 'image/gif') {
1 www 281
            $image = imagecreatefromgif($source);
16287 anderson 282
        } elseif ($info['mime'] == 'image/png') {
1 www 283
            $image = imagecreatefrompng($source);
284
        }
16287 anderson 285
 
1 www 286
        imagejpeg($image, $destination, $quality);
287
        return $destination;
288
    }
16287 anderson 289
 
1 www 290
    /**
291
     *
292
     * @param string $filename
293
     * @param string $newfilename
294
     * @param int $max_width
295
     * @param int $max_height
296
     * @param bool $withSampling
297
     * @param array $crop_coords
298
     * @return boolean
299
     */
16287 anderson 300
    public static function resizeImage(string $filename, string $newfilename = "", int $max_width  = 0, int $max_height = 0, bool $withSampling = true, $crop_coords = array())
1 www 301
    {
302
        if (empty($newfilename)) {
303
            $newfilename = $filename;
304
        }
305
        $fileExtension = strtolower(self::getExt($filename));
306
        if ($fileExtension == 'jpg' || $fileExtension == 'jpeg') {
307
            $img = imagecreatefromjpeg($filename);
308
        } else if ($fileExtension == 'png') {
309
            $img = imagecreatefrompng($filename);
310
        } else if ($fileExtension == 'gif') {
311
            $img = imagecreatefromgif($filename);
312
        } else {
313
            $img = imagecreatefromjpeg($filename);
314
        }
315
        $width = imageSX($img);
316
        $height = imageSY($img);
317
        $target_width = $max_width;
318
        $target_height = $max_height;
319
        $target_ratio = $target_width / $target_height;
320
        $img_ratio = $width / $height;
321
        if (empty($crop_coords)) {
322
            if ($target_ratio > $img_ratio) {
323
                $new_height = $target_height;
324
                $new_width = $img_ratio * $target_height;
325
            } else {
326
                $new_height = $target_width / $img_ratio;
327
                $new_width = $target_width;
328
            }
329
            if ($new_height > $target_height) {
330
                $new_height = $target_height;
331
            }
332
            if ($new_width > $target_width) {
333
                $new_height = $target_width;
334
            }
335
            $new_img = imagecreatetruecolor($target_width, $target_height);
336
            $white = imagecolorallocate($new_img, 255, 255, 255);
337
            imagecolortransparent($new_img);
338
            imagefilledrectangle($new_img, 0, 0, $target_width - 1, $target_height - 1, $white);
339
            imagecopyresampled($new_img, $img, ($target_width - $new_width) / 2, ($target_height - $new_height) / 2, 0, 0, $new_width, $new_height, $width, $height);
340
        } else {
341
            $new_img = imagecreatetruecolor($target_width, $target_height);
342
            $white = imagecolorallocate($new_img, 255, 255, 255);
343
            imagefilledrectangle($new_img, 0, 0, $target_width - 1, $target_height - 1, $white);
344
            imagecopyresampled($new_img, $img, 0, 0, $crop_coords['x1'], $crop_coords['y1'], $target_width, $target_height, $crop_coords['x2'], $crop_coords['y2']);
345
        }
346
        if ($fileExtension == 'jpg' || $fileExtension == 'jpeg') {
347
            $createImageSave = imagejpeg($new_img, $newfilename);
348
        } else if ($fileExtension == 'png') {
349
            $createImageSave = imagepng($new_img, $newfilename);
350
        } else if ($fileExtension == 'gif') {
351
            $createImageSave = imagegif($new_img, $newfilename);
352
        } else {
353
            $createImageSave = imagejpeg($new_img, $newfilename);
354
        }
16287 anderson 355
 
1 www 356
        return $createImageSave;
357
    }
16287 anderson 358
 
1 www 359
    /**
360
     *
361
     * @param string $start
362
     * @param string $end
363
     * @return array
364
     */
16287 anderson 365
    public static function getTimeDifference(string $start, string $end)
366
    {
1 www 367
        $uts = [
368
            'start' => strtotime($start),
369
            'end' => strtotime($end)
16287 anderson 370
        ];
1 www 371
        if ($uts['start'] !== -1 && $uts['end'] !== -1) {
372
            if ($uts['end'] >= $uts['start']) {
373
                $diff = $uts['end'] - $uts['start'];
374
                if ($days = intval((floor($diff / 86400)))) {
375
                    $diff = $diff % 86400;
376
                }
377
                if ($hours = intval((floor($diff / 3600)))) {
378
                    $diff = $diff % 3600;
379
                }
380
                if ($minutes = intval((floor($diff / 60)))) {
381
                    $diff = $diff % 60;
382
                }
383
                $diff = intval($diff);
384
                return [
385
                    'days' => $days,
386
                    'hours' => $hours,
387
                    'minutes' => $minutes,
388
                    'seconds' => $diff
389
                ];
390
            } else {
391
                trigger_error("Ending date/time is earlier than the start date/time", E_USER_WARNING);
392
            }
393
        } else {
394
            trigger_error("Invalid date/time data detected", E_USER_WARNING);
395
        }
396
        return;
397
    }
16287 anderson 398
 
1 www 399
    /**
400
     *
401
     * @param number $length
402
     * @return string
403
     */
16287 anderson 404
    public static function generatePassword($length = 8)
1 www 405
    {
406
        $password = '';
407
        $possible = '2346789bcdfghjkmnpqrtvwxyzBCDFGHJKLMNPQRTVWXYZ';
408
        $maxlength = strlen($possible);
409
        if ($length > $maxlength) {
410
            $length = $maxlength;
411
        }
412
        $i = 0;
413
        while ($i < $length) {
414
            $char = substr($possible, mt_rand(0, $maxlength - 1), 1);
415
            if (!strstr($password, $char)) {
416
                $password .= $char;
417
                $i++;
418
            }
419
        }
420
        return $password;
421
    }
16287 anderson 422
 
423
 
424
 
1 www 425
    /**
426
     *
427
     * @param string $date
428
     * @param boolean $time_required
429
     * @return string
430
     */
16287 anderson 431
    public static function countRemainingDays(string $date, $time_required = true)
1 www 432
    {
433
        $datestr = $date;
434
        $date = strtotime($datestr);
435
        $diff = $date - time();
436
        if ($time_required) {
437
            $days = floor($diff / (60 * 60 * 24));
438
            $hours = round(($diff - $days * 60 * 60 * 24) / (60 * 60));
439
            return "$days days $hours hours remaining";
440
        } else {
441
            $days = ceil($diff / (60 * 60 * 24));
442
            return "$days days remaining";
443
        }
444
    }
16287 anderson 445
 
1 www 446
    /**
447
     *
448
     * @param string $varPhoto
449
     * @param string $uploadDir
450
     * @param string $tmp_name
451
     * @param array $th_arr
452
     * @param string $file_nm
453
     * @param boolean $addExt
454
     * @param array $crop_coords
455
     * @return string|boolean
456
     */
16287 anderson 457
    public static function generateThumbnail(string $varPhoto, string $uploadDir, string $tmp_name, $th_arr = array(), $file_nm = '', $addExt = true, $crop_coords = array())
1 www 458
    {
459
        $ext = '.' . strtolower(self::getExt($varPhoto));
460
        $tot_th = count($th_arr);
461
        if (($ext == ".jpg" || $ext == ".gif" || $ext == ".png" || $ext == ".bmp" || $ext == ".jpeg" || $ext == ".ico")) {
462
            if (!file_exists($uploadDir)) {
463
                mkdir($uploadDir, 0777);
464
            }
465
            if ($file_nm == '')
466
                $imagename = rand() . time();
16287 anderson 467
            else
468
                $imagename = $file_nm;
469
            if ($addExt || $file_nm == '')
470
                $imagename = $imagename . $ext;
471
            $pathToImages = $uploadDir . $imagename;
472
            $Photo_Source = copy($tmp_name, $pathToImages);
473
            if ($Photo_Source) {
474
                for ($i = 0; $i < $tot_th; $i++) {
475
                    Functions::resizeImage($uploadDir . $imagename, $uploadDir . 'th' . ($i + 1) . '_' . $imagename, $th_arr[$i]['width'], $th_arr[$i]['height'], false, $crop_coords);
476
                }
477
                return $imagename;
478
            } else {
479
                return false;
480
            }
1 www 481
        } else {
482
            return false;
483
        }
484
    }
485
    /**
486
     *
487
     * @param string $file
488
     * @return mixed
489
     */
490
    public static function getExt(string $file)
491
    {
492
        $path_parts = pathinfo($file);
493
        $ext = $path_parts['extension'];
494
        return $ext;
495
    }
16287 anderson 496
 
497
 
1 www 498
    /**
499
     *
500
     * @param string $source
501
     * @param string $target_path
502
     * @param string $target_filename
503
     * @param number $target_width
504
     * @param number $target_height
505
     * @return boolean
506
     */
16287 anderson 507
    public  static function uploadImage($source, $target_path, $target_filename, $target_width, $target_height)
1 www 508
    {
509
        try {
16287 anderson 510
 
14681 efrain 511
            $target_width = intval($target_width, 10);
512
            $target_height = intval($target_height, 10);
16287 anderson 513
 
1 www 514
            $data = file_get_contents($source);
515
            $img = imagecreatefromstring($data);
16287 anderson 516
 
517
            if (!file_exists($target_path)) {
1 www 518
                mkdir($target_path, 0755);
519
            }
16287 anderson 520
 
521
            if ($img) {
1 www 522
                list($source_width, $source_height) = getimagesize($source);
16287 anderson 523
 
1 www 524
                $width_ratio    = $target_width / $source_width;
525
                $height_ratio   = $target_height / $source_height;
16287 anderson 526
                if ($width_ratio > $height_ratio) {
1 www 527
                    $resized_width = $target_width;
528
                    $resized_height = $source_height * $width_ratio;
529
                } else {
530
                    $resized_height = $target_height;
531
                    $resized_width = $source_width * $height_ratio;
532
                }
16287 anderson 533
 
14683 efrain 534
                $resized_width = intval(round($resized_width), 10);
535
                $resized_height = intval(round($resized_height), 10);
16287 anderson 536
 
14683 efrain 537
                $offset_width = intval(round(($target_width - $resized_width) / 2), 10);
538
                $offset_height = intval(round(($target_height - $resized_height) / 2), 10);
16287 anderson 539
 
540
 
1 www 541
                $new_image = imageCreateTrueColor($target_width, $target_height);
542
                imageAlphaBlending($new_image, False);
543
                imageSaveAlpha($new_image, True);
544
                $transparent = imageColorAllocateAlpha($new_image, 0, 0, 0, 127);
545
                imagefill($new_image, 0, 0, $transparent);
16287 anderson 546
                imageCopyResampled($new_image, $img, $offset_width, $offset_height, 0, 0, $resized_width, $resized_height, $source_width, $source_height);
547
 
548
 
1 www 549
                $target = $target_path . DIRECTORY_SEPARATOR . $target_filename;
16287 anderson 550
                if (file_exists($target)) {
1 www 551
                    @unlink($target);
552
                }
16287 anderson 553
 
554
 
1 www 555
                imagepng($new_image, $target);
556
            }
16287 anderson 557
 
1 www 558
            unlink($source);
16287 anderson 559
 
1 www 560
            return true;
16287 anderson 561
        } catch (\Throwable $e) {
14684 efrain 562
 
1 www 563
            error_log($e->getTraceAsString());
564
            return false;
565
        }
566
    }
16287 anderson 567
 
568
 
1 www 569
    /**
570
     *
571
     * @param string $source
572
     * @param string $target_path
573
     * @param string $target_filename
574
     * @return boolean
575
     */
576
    public  static function uploadFile($source, $target_path, $target_filename)
577
    {
578
        try {
16287 anderson 579
 
1 www 580
            $target_filename = self::normalizeString(basename($target_filename));
16287 anderson 581
 
1 www 582
            $parts = explode('.', $target_filename);
583
            $basename = trim($parts[0]);
16287 anderson 584
            if (strlen($basename) > 220) {
1 www 585
                $basename = substr($basename, 0, 220);
586
            }
16287 anderson 587
            $basename = $basename . '-' . uniqid() . '.' . $parts[count($parts) - 1];
1 www 588
            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $basename;
16287 anderson 589
 
590
 
1 www 591
            return move_uploaded_file($source, $full_filename);
16287 anderson 592
        } catch (\Throwable $e) {
1 www 593
            error_log($e->getTraceAsString());
594
            return false;
595
        }
596
    }
16287 anderson 597
 
1 www 598
    /**
599
     *
600
     * @param string $path
601
     * @param string $prefix
602
     * @return boolean
603
     */
604
    public static function delete($path, $prefix)
605
    {
606
        try {
16287 anderson 607
            if (is_dir($path)) {
1 www 608
                if ($dh = opendir($path)) {
16287 anderson 609
                    while (($file = readdir($dh)) !== false) {
610
                        if ($file == '.' || $file == '..') {
1 www 611
                            continue;
612
                        }
16287 anderson 613
 
614
                        if (strpos($file, $prefix) !== false) {
1 www 615
                            unlink($path . DIRECTORY_SEPARATOR . $file);
616
                        }
617
                    }
618
                    closedir($dh);
619
                }
620
            }
16287 anderson 621
 
1 www 622
            return true;
16287 anderson 623
        } catch (\Throwable $e) {
1 www 624
            error_log($e->getTraceAsString());
625
            return false;
626
        }
627
    }
16287 anderson 628
 
629
 
1 www 630
    /**
631
     *
632
     * @param string $path
633
     * @param string $filename
634
     * @return boolean
635
     */
636
    public static function deleteFilename($path, $filename)
637
    {
638
        try {
16287 anderson 639
            if (is_dir($path)) {
1 www 640
                if ($dh = opendir($path)) {
16287 anderson 641
                    while (($file = readdir($dh)) !== false) {
642
                        if ($file == '.' || $file == '..') {
1 www 643
                            continue;
644
                        }
16287 anderson 645
 
646
                        if ($file == $filename) {
1 www 647
                            unlink($path . DIRECTORY_SEPARATOR . $file);
648
                        }
649
                    }
650
                    closedir($dh);
651
                }
652
            }
16287 anderson 653
 
1 www 654
            return true;
16287 anderson 655
        } catch (\Throwable $e) {
1 www 656
            error_log($e->getTraceAsString());
657
            return false;
658
        }
659
    }
16287 anderson 660
 
661
 
1 www 662
    /**
663
     *
664
     * @param string $str
665
     * @return string
666
     */
16287 anderson 667
    public static function normalizeString($str = '')
1 www 668
    {
669
        $str = strtolower($str);
670
        $str = trim($str);
671
        $str = strip_tags($str);
672
        $str = preg_replace('/[\r\n\t ]+/', ' ', $str);
16747 efrain 673
        $str = preg_replace('/[\#\"\*\/\:\<\>\?\'\|\,]+/', ' ', $str);
1 www 674
        $str = strtolower($str);
16287 anderson 675
        $str = html_entity_decode($str, ENT_QUOTES, "utf-8");
1 www 676
        $str = htmlentities($str, ENT_QUOTES, "utf-8");
677
        $str = preg_replace("/(&)([a-z])([a-z]+;)/i", '$2', $str);
678
        $str = str_replace(' ', '-', $str);
679
        $str = rawurlencode($str);
680
        $str = str_replace('%', '-', $str);
16747 efrain 681
        $str = str_replace(['-----', '----', '---','--'], '-', $str);
1 www 682
        return trim(strtolower($str));
683
    }
16287 anderson 684
 
15394 efrain 685
    public static function normalizeStringFilename($str = '')
686
    {
687
        $basename  = substr($str, 0, strrpos($str, '.'));
688
        $basename  = str_replace('.', '-', $basename);
16287 anderson 689
 
15394 efrain 690
        $extension  = substr($str, strrpos($str, '.'));
16287 anderson 691
 
15394 efrain 692
        $str = $basename . $extension;
16287 anderson 693
 
15394 efrain 694
        $str = strip_tags($str);
695
        $str = preg_replace('/[\r\n\t ]+/', ' ', $str);
16747 efrain 696
        $str = preg_replace('/[\#\"\*\/\:\<\>\?\'\|\,]+/', ' ', $str);
15394 efrain 697
        $str = strtolower($str);
16287 anderson 698
        $str = html_entity_decode($str, ENT_QUOTES, "utf-8");
15394 efrain 699
        $str = htmlentities($str, ENT_QUOTES, "utf-8");
700
        $str = preg_replace("/(&)([a-z])([a-z]+;)/i", '$2', $str);
701
        $str = str_replace(' ', '-', $str);
702
        $str = rawurlencode($str);
703
        $str = str_replace('%', '-', $str);
15447 efrain 704
        $str = str_replace(['-----', '----', '---', '--'], '-', $str);
15394 efrain 705
        return trim(strtolower($str));
706
    }
1 www 707
 
16287 anderson 708
 
709
 
710
 
1 www 711
    /**
712
     *
713
     * @return string
714
     */
715
    public static function genUUID()
716
    {
16287 anderson 717
 
1 www 718
        $data = random_bytes(16);
719
        $data[6] = chr(ord($data[6]) & 0x0f | 0x40);
720
        $data[8] = chr(ord($data[8]) & 0x3f | 0x80);
721
        return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
722
    }
723
 
724
 
725
 
726
 
16287 anderson 727
 
1 www 728
    /**
729
     *
730
     * @param string $dir
731
     */
16287 anderson 732
    public static function rmDirRecursive(string $dir)
1 www 733
    {
734
        if (is_dir($dir)) {
735
            $objects = scandir($dir);
16287 anderson 736
            foreach ($objects as $object) {
1 www 737
                if ($object != '.' && $object != '..') {
738
                    if (is_dir($dir . DIRECTORY_SEPARATOR . $object)) {
739
                        self::rmDirRecursive($dir . DIRECTORY_SEPARATOR . $object);
740
                        rrmdir($dir . DIRECTORY_SEPARATOR . $object);
741
                    } else {
742
                        unlink($dir . DIRECTORY_SEPARATOR . $object);
743
                    }
744
                }
745
            }
746
            rmdir($dir);
747
        }
748
    }
16287 anderson 749
 
1 www 750
    /**
751
     *
752
     * @param string $dir
753
     */
754
    public static function deleteFiles(string $dir)
755
    {
756
        if (is_dir($dir)) {
757
            $objects = scandir($dir);
16287 anderson 758
            foreach ($objects as $object) {
1 www 759
                if ($object != '.' && $object != '..') {
760
                    if (is_dir($dir . DIRECTORY_SEPARATOR . $object)) {
761
                        self::rmDirRecursive($dir . DIRECTORY_SEPARATOR . $object);
762
                        rrmdir($dir . DIRECTORY_SEPARATOR . $object);
763
                    } else {
764
                        unlink($dir . DIRECTORY_SEPARATOR . $object);
765
                    }
766
                }
767
            }
768
        }
769
    }
770
 
771
 
16287 anderson 772
 
1 www 773
    /**
774
     *
775
     * @param string $address
776
     * @return  array
777
     */
778
    public static function reverseGeocode(string $address)
779
    {
780
        $array = [];
781
        $address = str_replace(" ", "+", $address);
782
        $url = "http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false";
783
        $ch = curl_init();
784
        curl_setopt($ch, CURLOPT_URL, $url);
785
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
786
        curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
787
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
788
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
789
        $response = curl_exec($ch);
790
        curl_close($ch);
791
        $json = json_decode($response);
792
        //print_r($json);
793
        foreach ($json->results as $result) {
16287 anderson 794
            $address1 = '';
795
            foreach ($result->address_components as $addressPart) {
796
                if ((in_array('locality', $addressPart->types)) && (in_array('political', $addressPart->types))) {
1 www 797
                    $city = $addressPart->long_name;
16287 anderson 798
                } else if ((in_array('administrative_area_level_1', $addressPart->types)  && (in_array('political', $addressPart->types))) || (in_array('administrative_area_level_2', $addressPart->types) && (in_array('political', $addressPart->types)))) {
1 www 799
                    $state = $addressPart->long_name;
16287 anderson 800
                } else if ((in_array('postal_code', $addressPart->types))) {
1 www 801
                    $postal_code = $addressPart->long_name;
16287 anderson 802
                } else if ((in_array('country', $addressPart->types)) && (in_array('political', $addressPart->types))) {
1 www 803
                    $country = $addressPart->long_name;
804
                } else {
16287 anderson 805
                    $address1 .= $addressPart->long_name . ', ';
1 www 806
                }
807
            }
16287 anderson 808
            if (($city != '') && ($state != '') && ($country != '')) {
809
                $address = $city . ', ' . $state . ', ' . $country;
810
            } else if (($city != '') && ($state != '')) {
811
                $address = $city . ', ' . $state;
812
            } else if (($state != '') && ($country != '')) {
813
                $address = $state . ', ' . $country;
814
            } else if ($country != '') {
1 www 815
                $address = $country;
816
            }
16287 anderson 817
 
818
            $address1 = trim($address1, ',');
819
            $array['country'] = $country;
820
            $array['state'] = $state;
821
            $array['city'] = $city;
822
            $array['address'] = $address1;
823
            $array['postal_code'] = $postal_code;
1 www 824
        }
16287 anderson 825
        $array['status'] = $json->status;
1 www 826
        $array['lat'] = $json->results[0]->geometry->location->lat;
827
        $array['long'] = $json->results[0]->geometry->location->lng;
828
        return $array;
829
    }
830
 
831
 
16287 anderson 832
 
1 www 833
    /**
834
     *
835
     * @param number $number
836
     * @param number $significance
837
     * @return number|boolean
838
     */
16287 anderson 839
    public static function ceiling($number, $significance = 1)
1 www 840
    {
16287 anderson 841
        return (is_numeric($number) && is_numeric($significance)) ? (ceil($number / $significance) * $significance) : 0;
1 www 842
    }
16287 anderson 843
}