2
2
3
3
namespace DocumentPHP ;
4
4
5
- include_once getcwd () . '../../../../system/engine/controller.php ' ;
6
-
7
- error_reporting (E_ALL ^ E_NOTICE ^ E_WARNING );
5
+ include_once getcwd () . '/system/engine/controller.php ' ;
8
6
9
7
class FetchFiles {
10
- public $ data = [];
11
- public $ destination_path = getcwd () . '../../../../catalog/controller/api/ ' ;
12
-
13
- function rrmdir ($ dir ) {
14
- // return;
15
- if (is_dir ($ dir )) {
16
- $ objects = scandir ($ dir );
8
+ private $ results = [];
9
+ private $ destination_path = '' ;
17
10
18
- foreach ($ objects as $ object ) {
19
- if ($ object != '. ' && $ object != '.. ' ) {
20
- if (filetype ($ dir . '/ ' . $ object ) == 'dir ' ) {$ this ->rrmdir ($ dir . '/ ' . $ object );} else {unlink ($ dir . '/ ' . $ object );}
21
- }
22
- }
11
+ public function getResults () {
12
+ return $ this ->results ;
13
+ }
23
14
24
- reset ($ objects );
25
- // rmdir($dir);
15
+ public function setDestinationPath ($ path = '' ) {
16
+ if ($ path ) {
17
+ $ this ->destination_path = $ path ;
18
+ } else {
19
+ $ this ->destination_path = getcwd () . '/catalog/controller/api/ ' ;
26
20
}
27
21
}
28
22
29
- function recursive_copy ($ src, $ dst ) {
23
+ private function recursive_copy ($ src ) {
30
24
if (is_dir ($ src )) {
31
25
$ dir = opendir ($ src );
32
26
33
27
while (($ file = readdir ($ dir ))) {
34
28
if ((substr ($ file , -1 ) != '_ ' ) && ($ file != '. ' ) && ($ file != '.. ' )) {
35
29
if (is_dir ($ src . '/ ' . $ file )) {
36
- $ this ->recursive_copy ($ src . '/ ' . $ file, $ dst . ' / ' . $ file );
30
+ $ this ->recursive_copy ($ src . '/ ' . $ file );
37
31
} else {
38
32
if (is_file ($ this ->destination_path . $ file )) {
39
- $ this ->start_processing ($ this ->destination_path . $ file );
33
+ $ this ->start_fetching ($ this ->destination_path . $ file );
40
34
// print_r($this->destination_path . $file);
41
35
}
42
- // die;
43
- // copy($src . '/' . $file, $dst . '/' . $file);
44
36
}
45
37
}
46
38
}
47
39
closedir ($ dir );
48
40
49
41
return ;
50
42
} elseif (is_file ($ src )) {
51
- $ dir = substr ($ dst , 0 , strrpos ($ dst , '/ ' ));
52
- // mkdir($dir, 0777, true);
53
-
54
- print_r ($ src );die;
55
- // copy($src, $dst);
56
43
} else {
57
44
die ('<strong>Not found : </strong> ' . $ src );
58
45
// print_r($src);die;
59
46
}
60
47
}
61
48
62
- function get_function ($ method , $ class = null ) {
49
+ private function get_function ($ method , $ class = null ) {
63
50
64
51
if (!empty ($ class )) {
65
- $ func = new ReflectionMethod ($ class , $ method );
52
+ $ func = new \ ReflectionMethod ($ class , $ method );
66
53
} else {
67
54
$ func = new ReflectionFunction ($ method );
68
55
}
@@ -84,7 +71,12 @@ function get_function($method, $class = null) {
84
71
return $ body ;
85
72
}
86
73
87
- function start_processing ($ file ) {
74
+ public function start_processing ($ path = '' ) {
75
+ $ this ->setDestinationPath ($ path );
76
+ $ this ->recursive_copy ($ this ->destination_path );
77
+ }
78
+
79
+ private function start_fetching ($ file ) {
88
80
include_once $ file ;
89
81
90
82
$ start = strpos ($ file , 'controller ' ) + strlen ('controller ' );
@@ -116,24 +108,25 @@ function start_processing($file) {
116
108
}
117
109
}
118
110
119
- $ this ->data [$ class_name ] = $ current_data ;
120
- // print_r($this->data );
111
+ $ this ->results [$ class_name ] = $ current_data ;
112
+ // print_r($this->results );
121
113
// echo "</pre>";
122
114
}
123
115
124
- function findMethodTypesVars ($ function_string = '' ) {
116
+ private function findMethodTypesVars ($ function_string = '' ) {
125
117
$ method_types = [];
126
118
$ method_types ['POST ' ] = $ this ->getParams ($ function_string , "/->post\[/i " , ['->post[ ' , '\'' ], '' );
127
119
$ method_types ['GET ' ] = $ this ->getParams ($ function_string , "/->get\[/i " , ['->get[ ' , '\'' ], '' );
128
120
return $ method_types ;
129
121
}
130
122
131
- function isReturningJSONResponse ($ function_string = '' ) {
123
+ private function isReturningJSONResponse ($ function_string = '' ) {
132
124
preg_match_all ("/setOutput\(/i " , $ function_string , $ matches );
133
125
134
126
return !empty ($ matches [0 ]) ? true : false ;
135
127
}
136
- function getParams ($ function_string , $ pattern , $ find , $ replace = '' ) {
128
+
129
+ private function getParams ($ function_string , $ pattern , $ find , $ replace = '' ) {
137
130
preg_match_all ($ pattern , $ function_string , $ matches , PREG_OFFSET_CAPTURE );
138
131
139
132
$ var_names = [];
0 commit comments