-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrary.php
2125 lines (1758 loc) · 61.4 KB
/
library.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
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* PHP Library -- A simplified toolkit for PHP
*
* @ version 1.7 Beta(β)
* @ author Simon Fraser <http://simonf.co.uk>
* @ acknowledgement php.net community, kirby toolkit, David Turner
* @ copyright Copyright (c) 2012 Simon Fraser
* @ license MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
conf::set('charset', 'utf-8');
error_reporting(E_ALL);
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/*
* Array
* Set of array methods
*/
class ar {
/*
* Gets an element of an array by key
* @param (array) $array - The source
* @param (string|array) $key - Key or Keys to search for
* @return (array)
*/
static function get($array, $key) {
$result = array();
if (is_array($key)) {
foreach($key as $k) { $result[$k] = $array[$k]; }
} else {
$result = (isset($array[$key]))? $array[$key] : false;
}
return $result;
}
/*
* Insert a new element into array
* @param (array) $array - The source
* @param (string) $element - The element to be inserted
* @param (int) $position - Optional position of new element, default is end
* @return (array) - The new array
*/
static function set($array, $element=null, $position=null) {
if (empty($position)) {
array_push($array, $element);
return $array;
} else {
return array_merge( array_slice($array,0,(int)$position), (array)$element, array_slice($array, (int)$position) );
}
}
/*
* Removes an element from an array
* @param (array) $array - The source
* @param (string) $search - The value or key to look for
* @param (boolean) $key - To search for a key or value, default true
* @return (array)
*/
static function delete($array, $search, $key=true) {
if($key) {
unset($array[$search]);
} else {
for ($i=0; $i<sizeof($array) ; $i++) {
$index = array_search($search, $array);
if ($index!==false) {
unset($array[$index]);
}
}
}
return $array;
}
/*
* Print out array on screen
* @param (array) $array - The source
* @echo (string) - Will echo result on screen
*/
static function show($array) {
$output = '<pre>';
$output .= htmlspecialchars(@print_r($array, true));
$output .= '</pre>';
echo $output;
}
/*
* Shuffle an array
* @param (array) $array - The source
* @return (array) - Shuffled array
*/
static function shuffle($array) {
$keys = array_keys($array);
shuffle($keys);
return array_merge(array_flip($keys), $array);
}
/*
* Flatten an array to string
* @param (array) $array - The source
* @param (string) $pre_separator
*/
static function flatten($array,$pre_separator='',$post_separator=',') {
$output = '';
foreach ($array as $a) {
$output .= $pre_separator.$a.$post_separator;
}
return $output;
}
/*
* Search an array
* @param (array) $array - The source
* @param (string) $search - Searching for
* @param (boolean) $key - Return the key space or boolean yes / no
* @return (array|boolean)
*/
static function search($array, $search, $key=false) {
$search = preg_grep('/'.preg_quote($search).'/i', $array);
if ($key) return $search;
return (empty($search))? false : true;
}
} /* Array Methods */
/*
* Cookies (Monster)
* Set of methods to help with cookies
*/
class cm {
/*
* Set and make Cookies
* @param (string) $key - Cookie key value
* @param (string) $value - Value to store into cookie
* @param (int) $expires - Expiration date from time created (default 24 hours)
* @param (string) $domain - Domain for cookie
* @return (boolean)
*/
static function set($key, $value=null, $expires=31536000, $domain='/') {
if(empty($key)) return false;
return setcookie($key, $value, time()+$expires, $domain);
}
/*
* Get value from cookie based off key
* @param (string) $key - Cookie key to target
* @return (boolean)
*/
static function get($key) {
return ar::get($_COOKIE, $key);
}
/*
* Remove cookie based off key
* @param (string) $key - Cookie key value
* @param (string) $domain - Domain for cookie
* @return (boolean)
*/
static function remove($key, $domain='/') {
$_COOKIE[$key] = false;
return @setcookie($key, false, time()-86400, $domain);
}
}
/*
* Config Values
* Configuration values, removes the need of GLOBALS
*/
class conf {
/*
* The static config array
* @var array
*/
private static $config = array();
/*
* Set a configuration value
* @param (string) $key - The reference key
* @param (string) $value - The configuration value
*/
static function set($key, $value=null) {
self::$config[$key] = $value;
}
/*
* Retrieve a config value
* @param (string) $key - config key to get
* @return (string)
*/
static function get($key) {
return ar::get(self::$config,$key);
}
} /* Config Methods */
/*
* Content & Cache methods
* Content zone to store pieces of data
*/
class content {
/*
* The static content array
* @var array
*/
private static $contents = array();
/*
* Save ntnt value
* @param (string) $key - The reference key
* @param (string) $value - The value
*/
static function set($key, $value=null) {
self::$contents[$key] = $value;
}
/*
* Retrieve a content value
* @param (string) $key - config key to get
* @return (string)
*/
static function get($key) {
return ar::get(self::$contents,$key);
}
} /* Content & cache methods */
/*
* Date & Time Class
* Methods and formatting
*/
class timedate {
/*
* Return date / time formated string
* @param (string) $datetime - Unix timestamp to convert to date/time
* @param (string) $format - format parameter string like http://php.net/function.date.php
* @return (string) - formated datetime string
*/
static function format($datetime=null, $format="D jS M Y G:i:s") {
if (empty($datetime)) $datetime = time();
if (!ex::match('~^[1-9][0-9]*$~', $datetime, true)) {
$date = strtotime($datetime);
} else {
$date = $datetime;
}
return date($format, $date);
}
/*
* Check for a valid Datetime string
* @param (string) $datetime - string to check
* @return (boolean) - string valid or not
*/
static function valid($string) {
if ($string=="" || $string=="0000-00-00" || $string=="0000-00-00 00:00:00") return false;
return true;
}
} /* Datetime methods */
/*
* Database Controls
* http://www.php.net/manual/en/mysqli.query.php
*
* Uses four configurations to run and should be set
* db.user, db.password, db.name, (db.host) optional
* Ex : conf::set('db.x','value');
*/
class db extends mysqli {
/*
* Connection instance
*/
private static $instance;
/*
* Connection status check
* @return (object|boolean) - Will return connection object or false
*/
public function connection() {
return (is_resource(self::$instance))? self::$instance : false;
}
/*
* Connect function
* @return (object) - Connection object
*/
public function connect() {
$connection = self::connection();
$host = (conf::get('db.host')!='')? conf::get('db.host') : 'localhost';
$user = (conf::get('db.user')!='')? conf::get('db.user') : 'root';
$password = (conf::get('db.password')!='')? conf::get('db.password') : '';
$database = (conf::get('db.name')!='')? conf::get('db.name') : '';
@$connection = (!$connection)? new mysqli($host, $user, $password, $database) : $connection;
if(!$connection) self::error('database connection failed');
self::$instance = $connection;
return $connection;
}
/*
* Database Disconnect
*/
public function disconnect() {
$instance = self::connect();
if(!$instance) return $instance;
self::$instance->close();
}
/*
* All is lost error function
* @param (string) $msg - Error to show
* @return (die-string)
*/
public function error($msg) {
die('Database error '.$msg);
}
/*
* Run a query
* @param (string) $query - Query to be ran
* @param (boolean) $object - To actually return as total object
* @return (array|object) - string on fault or DB Object
*/
public function query($query,$object=false) {
$instance = self::connect();
if(!$instance) return $instance;
@$result = $instance->query($query) or self::error($instance->error);
if ($object) return $result;
if ($result->num_rows===0) {
return false;
} else {
while ($row = $result->fetch_object()) {
$return[] = $row;
}
return $return;
}
$result->close();
self::disconnect();
}
/*
* Datebase read method
* @param (string) $table - Query table name
* @param (string) $after - Fields to return results from, default all
* @param (string) $where - Where condition
* @param (string) $order - Order By condition
* @param (string) $limit - Limit condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (array-object) Query results
*/
public function read($table, $after="*", $where=null, $order=null, $limit=null, $echo=false) {
$ourquery = "SELECT ".$after." FROM ".$table." ".$where." ".$order." ".$limit;
if($echo == true) echo $ourquery;
return self::query($ourquery);
}
/*
* Datebase single row & column read method
* @param (string) $table - Query table name
* @param (string) $after - Field to read
* @param (string) $where - Where condition
* @param (string) $order - Order By condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (array-object) Query results
*/
public function single($table, $after=null, $where=null, $order=null, $echo=false) {
if (empty($after)) return false;
$ourquery = "SELECT ".$after." FROM ".$table." ".$where." ".$order." LIMIT 1";
if($echo == true) echo $ourquery;
$result = self::query($ourquery,true);
if ($result->num_rows===0) {
return false;
} else {
while ($row = $result->fetch_object()) {
return str::unquote($row->$after);
}
}
$result->close();
self::disconnect();
}
/*
* Inner Join read method
* @param (string) $table_a - Query table name A
* @param (string) $table_b - Query table name B
* @param (string) $on - On join SQL command
* @param (string) $after - Fields to return results from, default all
* @param (string) $where - Where condition
* @param (string) $order - Order By condition
* @param (string) $limit - Limit condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (array-object) Query results
*
*/
public function join($table_a, $table_b, $on, $after="*", $where=null, $order=null, $limit=null, $echo=false) {
$ourquery = "SELECT ".$after." FROM ".$table_a." INNER JOIN ".$table_b." ON ".$on." ".$where." ".$order." ".$limit;
if($echo == true) echo $ourquery;
return self::query($ourquery);
}
/*
* Insert row into database table
* @param (string) $table - Query table name
* @param (array) $labels - Array of field labels
* @param (multidimension array) $values - Array of row values
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (int) - Returns ID of new (last) row
*/
public function insert($table, $labels, $values, $echo=false) {
$ourlabels='';
$ourvalues='';
if (is_array($labels)) {
// foreach ($labels as $label) {
// $ourlabels .= ($label).",";
// }
// $ourlabels = substr($ourlabels,0,-1);
$ourlabels = implode(',', $labels);
}
if (is_array($values)) {
// foreach ($values as $value) {
// $ourvalues .= "'".(str::escape($value))."',";
// }
// $ourvalues = substr($ourvalues,0,-1);
$ourvalues = ar::flatten($values, "'"."',");
}
$ourquery = "INSERT INTO ".$table." (".$ourlabels.") VALUES (".$ourvalues.")";
if($echo == true) echo $ourquery;
self::query($ourquery,true);
return self::$instance->insert_id;
$result->close();
self::disconnect();
}
/*
* Count of rows
* @param (string) $table - Query table name
* @param (string) $after - Fields to return results from, default all
* @param (string) $where - Where condition
* @param (string) $order - Order By condition
* @param (string) $limit - Limit condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (int) - Returns integer of rows
*/
public function count($table, $after="*", $where=null, $order=null, $limit=null, $echo=false){
$ourquery = "SELECT ".$after." FROM ".$table." ".$where." ".$order." ".$limit;
if($echo == true) echo $ourquery;
self::query($ourquery,true);
return self::$instance->affected_rows;
$result->close();
self::disconnect();
}
/*
* Update query command
* @param (string) $table - Query table name
* @param (string) $set - Edit criteria (e.g) col='1'
* @param (string) $criteria - Where condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (int) - Returns number of affected rows
*/
public function update($table, $set, $criteria, $echo=false) {
$ourquery = "UPDATE ".$table." SET ".str::escape($set)." ".$criteria;
if($echo == true) echo $ourquery;
self::query($ourquery,true);
return self::$instance->affected_rows;
$result->close();
self::disconnect();
}
/*
* Delete row from table
* @param (string) $table - Query table name
* @param (string) $where - Where condition
* @param (boolean) $echo - Show constructed query as echo debug output
* @return (int) - Returns number of affected rows
*/
public function delete($table, $where, $echo=false){
$ourquery = "DELETE FROM ".$table." ".str::escape($where);
if($echo == true) echo $ourquery;
self::query($ourquery,true);
return self::$instance->affected_rows;
$result->close();
self::disconnect();
}
/*
* Return list of fields from database and field information
* @param (string) $table - Query table name
* @return (array) - Object of field information
*/
public function fields($table) {
$ourquery = "SELECT * FROM ".$table." LIMIT 1";
$result = self::query($ourquery,true);
return $result->fetch_fields();
self::disconnect();
}
/*
* Return list of saved MySQL Procedures
* @return () - Object of procedure events
*/
public function procedure(){
$query = "select db, type, specific_name, param_list, returns from mysql.proc where definer like concat('%', concat((substring_index( (select user()), '@', 1)), '%'))";
return self::query($query);
self::disconnect();
}
} /* Database Methods */
/*
* Directory Methods
* Easy to create/edit/delete directories
*/
class dir {
/*
* Crawl and return information about a directory
* @param (string) $dir - Directory to crawl
* @return (array) - Associative array about directory
*/
static function crawl($dir) {
if(!is_dir($dir)) return array();
$skip = array('.', '..', '.DS_Store');
$files = array_diff(scandir($dir),$skip);
$modified = str::datetime("d/m/Y-G:i:s", filemtime($dir));
$data = array(
'name' => basename($dir),
'modified' => $modified,
'files' => array(),
'children' => array()
);
foreach($files as $file) {
if(is_dir($dir.'/'.$file)) {
$data['children'][] = $file;
} else {
$data['files'][] = $file;
}
}
return $data;
}
/*
* Make new directory, will check for existing directory first
* @param (string) $dir - Directory name/location to create
* @return (boolean)
*/
static function make($dir) {
if(is_dir($dir)) return true;
if(!@mkdir($dir, 0755)) return false;
@chmod($dir, 0755);
return true;
}
/*
* Move / Rename directory
* @param (string) $old - current directory name
* @param (string) $new - new directory name / location
* @return (boolean)
*/
static function move($old, $new) {
if(!is_dir($old)) return false;
return (@rename($old, $new) && is_dir($new)) ? true : false;
}
/*
* Remove a directory or simply empty it
* @param (string) $dir - Directory to destroy
* @param (boolean) $empty - true = empty and leave directory
* @return (boolean)
*/
static function remove($dir, $empty=false) {
if(!is_dir($dir)) return false;
$skip = array('.', '..');
$open = @opendir($dir);
if(!$open) return false;
while($file = @readdir($open)) {
if (!in_array($file, $skip)) {
if(is_dir($dir.'/'.$file)) {
self::remove($dir.'/'.$file);
} else {
@unlink($dir.'/'.$file);
}
}
}
@closedir($open);
if(!$empty) {
return @rmdir($dir);
} else {
return true;
}
}
} /* Directory Methods */
/*
* Regular Expression Methods
*/
class ex {
/*
* Filter out expression
* @param (mixed) $patern - patern to replace
* @param (mixed) $subject - subject to run filter on
* @param (mixed) $replace - replacement
* @return (array)
*/
static function filter($pattern,$subject,$replace) {
return preg_filter($pattern, $replace, $subject);
}
/*
* Match expression
* @param (mixed) $patern - patern to replace
* @param (mixed) $subject - subject to run match on
* @return (array) - array of matches & offset location
*/
static function match($pattern,$subject) {
preg_match_all($pattern, $subject, $matches);
return $matches;
}
/*
* Match single (first) expression
* @param (mixed) $patern - patern to replace
* @param (mixed) $subject - subject to run match on
* @return (array) - array of matches & offset location
*/
static function matchsingle($pattern,$subject,$bool=false) {
$result = preg_match($pattern, $subject, $matches);
if($bool) return $result;
return $matches;
}
/*
* Replace expression
* @param (mixed) $patern - patern to replace
* @param (mixed) $subject - subject to run replacement on
* @param (mixed) $replace - replacements to run replacements on
* @return (string) - Subject string with replacements made
*/
static function replace($pattern,$subject,$replace) {
$match = preg_replace($pattern, $replace, $subject);
return $match;
}
/*
* Split expression
* @param (string) $patern - patern to replace
* @param (string) $subject - subject to run split on
* @return (array) - array of matches & offset location
*/
static function split($pattern,$subject) {
$match = preg_split($pattern, $subject);
return $match;
}
} /* Regular Expression */
/*
* File System
* Set of file methods
*/
class fs {
/*
* Download Push
* @param (string) $file - File to push download
* @return (file)
* http://php.net/function.readfile.php
*/
static function download($file) {
if (!file_exists($file)) return false;
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.self::filename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: '.self::size($file,false));
ob_clean();
flush();
readfile($file);
exit;
}
/*
* Get the file extension
* @param (string) $file - The file
* @return (boolean|string) returns extension, false on failure
*/
static function extension($file) {
if (!file_exists($file)) return false;
$ext = pathinfo($file);
return $ext['extension'];
}
/*
* Get the filename
* @param (string) $file - The file
* @return (boolean|string) returns filename, false on failure
*/
static function filename($file) {
if (!file_exists($file)) return false;
return basename($file);
}
/*
* Get file info
* @param (string) $file - The file
* @return file information
*/
static function info($file) {
if (!file_exists($file)) return false;
return stat($file);
}
/*
* Get filesize
* @param (string) $file - The file
* @param (boolean) $format - To format with size unit
* @return (string)
* http://php.net/function.filesize.php
*/
static function size($file,$format=true) {
if (!file_exists($file)) return false;
if (!$format) return filesize($file);
return self::stringsize(filesize($file));
}
/*
* Get filesize
* @param (string) $size - Size string
* @return (string)
* http://php.net/function.filesize.php
*/
static function stringsize($size) {
$units = array(' b', ' kb', ' mb', ' gb', ' tb');
for ($i=0; $size>=1024 && $i<4; $i++) $size/=1024;
return round($size, 2).$units[$i];
}
/*
* Replacement for includes
* @param (string) $file - The file to include (require)
*/
static function load($file) {
if (file_exists($file)) require($file);
}
/*
* Read file & return contents
* @param (string) $file - File location
* @return (string) - File contents
*/
static function read($file) {
if (!file_exists($file)) return false;
$content = @file_get_contents($file);
return $content;
}
/*
* Write to a file, will create if does not exist
* @param (string) $file - The file to write
* @param (string) $content - The file content to write
* @param (string) $append - Wether to append to the end of the file
* @return (boolean)
*/
static function write($file,$content,$append=false) {
$mode = ($append)? FILE_APPEND : false;
$write = @file_put_contents($file, $content, $mode);
@chmod($file, 0666);
return $write;
}
/*
* Simply Append data to file
* @param (string) $file - The file to write
* @param (string) $content - The file content to write
* @return (boolean)
*/
static function append($file,$content) {
return self::write($file,$content,true);
}
/*
* Move file to new location
* @param (string) $old - Current filename & location
* @param (string) $new - New filename & location
* @return (boolean)
*/
static function move($old,$new) {
if(!file_exists($old)) return false;
return (@rename($old,$new) && file_exists($new))? true : false;
}
/*
* Remove File from system
* @param (string) $file - The file
* @return (boolean)
*/
static function remove($file) {
if (!file_exists($file)) return false;
return (is_file($file) && file_exists($file))? @unlink($file) : false;
}
} /* File Methods */
/*
* FTP File transfers
*/
class ftp {
/*
* Connection instance
*/
private static $instance;
/*
* Connection status check
* @return (object|boolean) - Will return connection object or false
*/
public function connection() {
return (is_resource(self::$instance))? self::$instance : false;
}
/*
* Connection Method
*/
public function connect() {
$host = (conf::get('ftp.host')!='')? conf::get('ftp.host') : 'localhost';
$user = (conf::get('ftp.user')!='')? conf::get('ftp.user') : 'root';
$password = (conf::get('ftp.password')!='')? conf::get('ftp.password') : '';
$connection = ftp_connect($host);
@$login = ftp_login($connection, $user, $password);
if (!$login) return false;
self::$instance = $connection;
return $connection;
}
/*
* Close Method
*/
public function close() {
@ftp_close(self::instance());
}
/*
* Download File
* @param (string) $local - Local File to create
* @param (string) $remote - Remote file to target and download
* @return (boolean)
*/
public function get($local,$remote) {
$instance = self::connection();
if(!$instance) return $instance;
$u = ftp_get($instance, $local, $remote, FTP_BINARY);
if($u) return true;
if(!$u) return false;
}
/*
* Listing Method
* @param (string) $dir - Directory
* @return (array)
* @return (boolean)
*/
public function listing($dir='.') {
$instance = self::connection();
if(!$instance) return $instance;
$ls = ftp_rawlist($instance, $dir);
foreach ($ls as $list) {
$info = preg_split("/[\s]+/", $list, 9);
// $info = ex::split("/[\s]+/", $list);
$point[] = array(
'name' => $info[8],
'size' => fs::stringsize($info[4]),
'directory' => $info[0]{0} == 'd'
);
}
return @$point;
}
/*
* Make Directory
* @param (string) $dir - Directory name to make
* @return (boolean)
*/
public function makedir($dir) {
if(empty($dir)) return false;
$instance = self::connection();
if(!$instance) return $instance;
$u = ftp_mkdir($instance, $dir);
if($u) return true;
if(!$u) return false;
}
/*
* Remove Directory
* @param (string) $dir - Directory name to make
* @return (boolean)
*/
public function removedir($dir) {
if(empty($dir)) return false;