/home/bjcompany/domains/benjabhorn.com/public_html/BJconcrete/control/filemanager/include/utils.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
<?php 

if($_SESSION['RF']["verify"] != "RESPONSIVEfilemanager") die('forbiden');

function 
deleteDir($dir) {
    if (!
file_exists($dir)) return true;
    if (!
is_dir($dir)) return unlink($dir);
    foreach (
scandir($dir) as $item) {
        if (
$item == '.' || $item == '..') continue;
        if (!
deleteDir($dir.DIRECTORY_SEPARATOR.$item)) return false;
    }
    return 
rmdir($dir);
}

function 
duplicate_file($old_path,$name){
    if(
file_exists($old_path)){
    
$info=pathinfo($old_path);
    
$new_path=$info['dirname']."/".$name.".".$info['extension'];
    if(
file_exists($new_path)) return false;
    return 
copy($old_path,$new_path);
    }
}

function 
rename_file($old_path,$name,$transliteration){
    
$name=fix_filename($name,$transliteration);
    if(
file_exists($old_path)){
    
$info=pathinfo($old_path);
    
$new_path=$info['dirname']."/".$name.".".$info['extension'];
    if(
file_exists($new_path)) return false;
    return 
rename($old_path,$new_path);
    }
}

function 
rename_folder($old_path,$name,$transliteration){
    
$name=fix_filename($name,$transliteration);
    if(
file_exists($old_path)){
    
$new_path=fix_dirname($old_path)."/".$name;
    if(
file_exists($new_path)) return false;
    return 
rename($old_path,$new_path);
    }
}

function 
create_img_gd($imgfile$imgthumb$newwidth$newheight="",$option="crop") {
    if(
image_check_memory_usage($imgfile,$newwidth,$newheight)){
    require_once(
'php_image_magician.php');
    
$magicianObj = new imageLib($imgfile);
    
$magicianObj -> resizeImage($newwidth$newheight$option);
    
$magicianObj -> saveImage($imgthumb,80);
    return 
true;
    }
    return 
false;
}

function 
create_img($imgfile$imgthumb$newwidth$newheight="",$option="auto") {
    if(
image_check_memory_usage($imgfile,$newwidth,$newheight)){
    require_once(
'php_image_magician.php');  
    
$magicianObj = new imageLib($imgfile);
    
$magicianObj -> resizeImage($newwidth$newheight$option);  
    
$magicianObj -> saveImage($imgthumb,80);
    return 
true;
    }else{
    return 
false;
    }
}

function 
makeSize($size) {
   
$units = array('B','KB','MB','GB','TB');
   
$u 0;
   while ( (
round($size 1024) > 0) && ($u 4) ) {
     
$size $size 1024;
     
$u++;
   }
   return (
number_format($size0) . " " $units[$u]);
}

function 
foldersize($path) {
    
$total_size 0;
    
$files scandir($path);
    
$cleanPath rtrim($path'/'). '/';

    foreach(
$files as $t) {
        if (
$t != "." && $t != "..") {
            
$currentFile $cleanPath $t;
            if (
is_dir($currentFile)) {
                
$size foldersize($currentFile);
                
$total_size += $size;
            }
            else {
                
$size filesize($currentFile);
                
$total_size += $size;
            }
        }   
    }

    return 
$total_size;
}

function 
filescount($path) {
    
$total_count 0;
    
$files scandir($path);
    
$cleanPath rtrim($path'/'). '/';

    foreach(
$files as $t) {
        if (
$t != "." && $t != "..") {
            
$currentFile $cleanPath $t;
            if (
is_dir($currentFile)) {
                
$size filescount($currentFile);
                
$total_count += $size;
            }
            else {
                
$total_count += 1;
            }
        }   
    }

    return 
$total_count;
}

function 
create_folder($path=false,$path_thumbs=false){
    
$oldumask umask(0);
    if (
$path && !file_exists($path))
        
mkdir($path0777true); // or even 01777 so you get the sticky bit set 
    
if($path_thumbs && !file_exists($path_thumbs)) 
        
mkdir($path_thumbs0777true) or die("$path_thumbs cannot be found"); // or even 01777 so you get the sticky bit set 
    
umask($oldumask);
}

function 
check_files_extensions_on_path($path,$ext){
    if(!
is_dir($path)){
    
$fileinfo pathinfo($path);
    if(!
in_array(mb_strtolower($fileinfo['extension']),$ext))
        
unlink($path);
    }else{
    
$files scandir($path);
    foreach(
$files as $file){
        
check_files_extensions_on_path(trim($path,'/')."/".$file,$ext);
    }
    }
}

function 
check_files_extensions_on_phar$phar, &$files$basepath$ext ) {
    foreach( 
$phar as $file )
    {
        if( 
$file->isFile() )
        {
            if(
in_array(mb_strtolower($file->getExtension()),$ext))
            {
                
$files[] = $basepath.$file->getFileName( );
            }
        }
        else if( 
$file->isDir() )
        {
            
$iterator = new DirectoryIterator$file );
            
check_files_extensions_on_phar($iterator$files$basepath.$file->getFileName().'/'$ext);
        }
    }
}

function 
fix_get_params($str){
    return 
strip_tags(preg_replace"/[^a-zA-Z0-9\.\[\]_| -]/"''$str));
}

function 
fix_filename($str,$transliteration,$convert_spaces=false){
    if (
$convert_spaces) {
        
$str=str_replace(' ''_'$str);
    }

    if(
$transliteration){
        if( 
function_exists'transliterator_transliterate' ) )
        {
           
$str transliterator_transliterate'Accents-Any'$str );
        }
        else
        {
           
$str iconv('UTF-8''ASCII//TRANSLIT//IGNORE'$str);
        }
        
    
$str preg_replace"/[^a-zA-Z0-9\.\[\]_| -]/"''$str );
    }
    
    
$str=str_replace(array('"',"'","/","\\"),"",$str);
    
$str=strip_tags($str);
               
    
// Empty or incorrectly transliterated filename.
    // Here is a point: a good file UNKNOWN_LANGUAGE.jpg could become .jpg in previous code.
    // So we add that default 'file' name to fix that issue.
    
if( strpos$str'.' ) === )
    {
       
$str 'file'.$str;
    }
        
    return 
trim$str );
}

function 
fix_dirname($str){
    return 
str_replace('~',' ',dirname(str_replace(' ','~',$str)));
}

function 
fix_strtoupper($str){
    if( 
function_exists'mb_strtoupper' ) )
    return 
mb_strtoupper($str);
    else
    return 
strtoupper($str);
}


function 
fix_strtolower($str){
    if( 
function_exists'mb_strtoupper' ) )
    return 
mb_strtolower($str);
    else
    return 
strtolower($str);
}

function 
fix_path($path,$transliteration,$convert_spaces=false){
    
$info=pathinfo($path);
    
$tmp_path $info['dirname'];
    
$str=fix_filename($info['filename'],$transliteration,$convert_spaces);
    if(
$tmp_path!="")
        return 
$tmp_path.DIRECTORY_SEPARATOR.$str;
    else
        return 
$str;
}

function 
base_url(){
  return 
sprintf(
    
"%s://%s",
    isset(
$_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' 'https' 'http',
    
$_SERVER['HTTP_HOST']
  );
}

function 
config_loading($current_path,$fld){
    if(
file_exists($current_path.$fld.".config")){
    require_once(
$current_path.$fld.".config");
    return 
true;
    }
    echo 
"!!!!".$parent=fix_dirname($fld);
    if(
$parent!="." && !empty($parent)){
    
config_loading($current_path,$parent);
    }
    
    return 
false;
}


function 
image_check_memory_usage($img$max_breedte$max_hoogte){
    if(
file_exists($img)){
    
$K64 65536;    // number of bytes in 64K
    
$memory_usage memory_get_usage();
    
$memory_limit abs(intval(str_replace('M','',ini_get('memory_limit'))*1024*1024));
    
$image_properties getimagesize($img);
    
$image_width $image_properties[0];
    
$image_height $image_properties[1];
    
$image_bits $image_properties['bits'];
    
$image_memory_usage $K64 + ($image_width $image_height * ($image_bits )  * 2);
    
$thumb_memory_usage $K64 + ($max_breedte $max_hoogte * ($image_bits ) * 2);
    
$memory_needed intval($memory_usage $image_memory_usage $thumb_memory_usage);
 
        if(
$memory_needed $memory_limit){
                
ini_set('memory_limit',(intval($memory_needed/1024/1024)+5) . 'M');
                if(
ini_get('memory_limit') == (intval($memory_needed/1024/1024)+5) . 'M'){
                return 
true;
            }else{
                return 
false;
            }
        }else{
            return 
true;
        }
        }else{
        return 
false;
    }
}

function 
endsWith($haystack$needle)
{
    return 
$needle === "" || substr($haystack, -strlen($needle)) === $needle;
}

function 
new_thumbnails_creation($targetPath,$targetFile,$name,$current_path,$relative_image_creation,$relative_path_from_current_pos,$relative_image_creation_name_to_prepend,$relative_image_creation_name_to_append,$relative_image_creation_width,$relative_image_creation_height,$relative_image_creation_option,$fixed_image_creation,$fixed_path_from_filemanager,$fixed_image_creation_name_to_prepend,$fixed_image_creation_to_append,$fixed_image_creation_width,$fixed_image_creation_height,$fixed_image_creation_option){
    
//create relative thumbs
    
$all_ok=true;
    if(
$relative_image_creation){
    foreach(
$relative_path_from_current_pos as $k=>$path){
        if(
$path!="" && $path[strlen($path)-1]!="/"$path.="/";
        if (!
file_exists($targetPath.$path)) create_folder($targetPath.$path,false);
        
$info=pathinfo($name);
        if(!
endsWith($targetPath,$path))
        if(!
create_img($targetFile$targetPath.$path.$relative_image_creation_name_to_prepend[$k].$info['filename'].$relative_image_creation_name_to_append[$k].".".$info['extension'], $relative_image_creation_width[$k], $relative_image_creation_height[$k], $relative_image_creation_option[$k]))
            
$all_ok=false;
    }
    }
    
    
//create fixed thumbs
    
if($fixed_image_creation){
    foreach(
$fixed_path_from_filemanager as $k=>$path){
        if(
$path!="" && $path[strlen($path)-1]!="/"$path.="/";
        
$base_dir=$path.substr_replace($targetPath''0strlen($current_path));
        if (!
file_exists($base_dir)) create_folder($base_dir,false);
        
$info=pathinfo($name);
        if(!
create_img($targetFile$base_dir.$fixed_image_creation_name_to_prepend[$k].$info['filename'].$fixed_image_creation_to_append[$k].".".$info['extension'], $fixed_image_creation_width[$k], $fixed_image_creation_height[$k], $fixed_image_creation_option[$k]))
        
$all_ok=false;
    }
    }
    return 
$all_ok;
}


// Get a remote file, using whichever mechanism is enabled
function get_file_by_url($url) {
    if (
ini_get('allow_url_fopen')) {
        return 
file_get_contents($url);
    }
    if (!
function_exists('curl_version')) {
        return 
false;
    }
    
    
$ch curl_init();

    
curl_setopt($chCURLOPT_HEADER0);
    
curl_setopt($chCURLOPT_RETURNTRANSFER1);
    
curl_setopt($chCURLOPT_URL$url);

    
$data curl_exec($ch);
    
curl_close($ch);

    return 
$data;
}

// test for dir/file writability properly
function is_really_writable($dir){
    
$dir rtrim($dir'/');
    
// linux, safe off
    
if (DIRECTORY_SEPARATOR == '/' && @ini_get("safe_mode") == FALSE){
        return 
is_writable($dir);
    }

    
// Windows, safe ON. (have to write a file :S)
    
if (is_dir($dir)){
        
$dir $dir.'/'.md5(mt_rand(1,1000).mt_rand(1,1000));

        if ((
$fp = @fopen($dir'ab')) === FALSE){
            return 
FALSE;
        }

        
fclose($fp);
        @
chmod($dir0777);
        @
unlink($dir);
        return 
TRUE;
    }
    elseif ( ! 
is_file($dir) || ($fp = @fopen($dir'ab')) === FALSE){
        return 
FALSE;
    }

    
fclose($fp);
    return 
TRUE;
}

/**
 * Check if a function is callable.
 * Some servers disable copy,rename etc.
 *
 * Returns TRUE if callable and everything is OK
 * Otherwise returns FALSE
 */
function is_function_callable($name){
    if (
function_exists($name) === FALSE) return FALSE;
    
$disabled explode(','ini_get('disable_functions'));
    return !
in_array($name$disabled);
}

// recursivly copies everything
function rcopy($source$destination$is_rec FALSE) {
    if (
is_dir($source)) {
        if (
$is_rec === FALSE){
            
$pinfo pathinfo($source);
            
$destination rtrim($destination'/').DIRECTORY_SEPARATOR.$pinfo['basename'];
        }
        if (
is_dir($destination) === FALSE){
            
mkdir($destination0777true);
        }

        
$files scandir($source);
        foreach (
$files as $file){
            if (
$file != "." && $file != "..") {
                
rcopy($source.DIRECTORY_SEPARATOR.$filertrim($destination'/').DIRECTORY_SEPARATOR.$fileTRUE);
            }
        }
    }
    else {
        if (
file_exists($source)){
            if (
is_dir($destination) === TRUE){
                
$pinfo pathinfo($source);
                
$dest2 rtrim($destination'/').DIRECTORY_SEPARATOR.$pinfo['basename'];
            }
            else {
                
$dest2 $destination;
            }

            
copy($source$dest2);
        }
    }
}

// recursivly renames everything
// I know copy and rename could be done with just one function
// but i split the 2 because sometimes rename fails on windows
// Need more feedback from users and refactor if needed
function rrename($source$destination$is_rec FALSE) {
    if (
is_dir($source)) {
        if (
$is_rec === FALSE){
            
$pinfo pathinfo($source);
            
$destination rtrim($destination'/').DIRECTORY_SEPARATOR.$pinfo['basename'];
        }
        if (
is_dir($destination) === FALSE){
            
mkdir($destination0777true);
        }

        
$files scandir($source);
        foreach (
$files as $file){
            if (
$file != "." && $file != "..") {
                
rrename($source.DIRECTORY_SEPARATOR.$filertrim($destination'/').DIRECTORY_SEPARATOR.$fileTRUE);
            }
        }
    }
    else {
        if (
file_exists($source)){
            if (
is_dir($destination) === TRUE){
                
$pinfo pathinfo($source);
                
$dest2 rtrim($destination'/').DIRECTORY_SEPARATOR.$pinfo['basename'];
            }
            else {
                
$dest2 $destination;
            }
            
            
rename($source$dest2);
        }
    }
}

// On windows rename leaves folders sometime
// This will clear leftover folders
// After more feedback will merge it with rrename
function rrename_after_cleaner($source) {
    
$files scandir($source);

    foreach (
$files as $file) {
        if (
$file != "." && $file != "..") {
            if (
is_dir($source.DIRECTORY_SEPARATOR.$file)){
                
rrename_after_cleaner($source.DIRECTORY_SEPARATOR.$file);
            }
            else {
                
unlink($source.DIRECTORY_SEPARATOR.$file);
            }
        }
    }

    return 
rmdir($source);


function 
rchmod($source$mode$rec_option "none"$is_rec FALSE){
    if (
$rec_option == "none")
    {
        
chmod($source$mode);
    }
    else 
    {
        if (
$is_rec === FALSE){
            
chmod($source$mode);
        }

        
$files scandir($source);

        foreach (
$files as $file
        {
            if (
$file != "." && $file != ".."
            {
                if (
is_dir($source.DIRECTORY_SEPARATOR.$file))
                {
                    if (
$rec_option == "folders" || $rec_option == "both")
                    {
                        
chmod($source.DIRECTORY_SEPARATOR.$file$mode);
                    }
                    
rchmod($source.DIRECTORY_SEPARATOR.$file$mode$rec_optionTRUE);
                }
                else 
                {
                    if (
$rec_option == "files" || $rec_option == "both")
                    {
                        
chmod($source.DIRECTORY_SEPARATOR.$file$mode);
                    }
                }
            }
        }
    }
}

function 
chmod_logic_helper($perm$val){
    
$valid = array(
        
=> array(1,3,5,7),
        
=> array(2,3,6,7),
        
=> array(4,5,6,7)
    );

    if (
in_array($perm$valid[$val])){
        return 
TRUE;
    }
    else {
        return 
FALSE;
    }
}

function 
debugger($input$trace FALSE$halt FALSE){
    
ob_start();

    echo 
"<br>----- DEBUG DUMP -----";
    echo 
"<pre>";
    
var_dump($input);
    echo 
"</pre>";
    
    if (
$trace){
        if( 
is_php('5.3.6')){
            
$debug debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
        }
        else{
            
$debug debug_backtrace(FALSE);
        }

        echo 
"<br>-----STACK TRACE-----";
        echo 
"<pre>";
        
var_dump($debug);
        echo 
"</pre>";
    }

    echo 
"</pre>";
    echo 
"---------------------------<br>";

    
$ret ob_get_contents();
    
ob_end_clean();

    echo 
$ret;

    if (
$halt == TRUE){
        exit();
    }
}

function 
is_php($version '5.0.0'){
    static 
$phpVer;
    
$version = (string)$version;

    if ( ! isset(
$phpVer[$version]))
    {
        
$phpVer[$version] = (version_compare(PHP_VERSION$version) < 0) ? FALSE TRUE;
    }

    return 
$phpVer[$version];
}

?>