Filesystem.php
5.37 KB
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
<?php
namespace Nextend\Framework\Filesystem;
use Nextend\Framework\Filesystem\Joomla\JoomlaFilesystem;
use Nextend\Framework\Filesystem\WordPress\WordPressFilesystem;
class Filesystem {
/**
* @var AbstractPlatformFilesystem
*/
private static $platformFilesystem;
public function __construct() {
self::$platformFilesystem = new WordPressFilesystem();
self::$platformFilesystem->init();
}
/**
* @return AbstractPlatformFilesystem
*/
public static function get() {
return self::$platformFilesystem;
}
public static function getPaths() {
return self::$platformFilesystem->getPaths();
}
public static function check($base, $folder) {
self::$platformFilesystem->check($base, $folder);
}
public static function measurePermission($testDir) {
self::$platformFilesystem->measurePermission($testDir);
}
/**
* @param $path
*
* @return string
*/
public static function toLinux($path) {
return self::$platformFilesystem->toLinux($path);
}
/**
* @return string
*/
public static function getBasePath() {
return self::$platformFilesystem->getBasePath();
}
/**
* @param $path
*/
public static function setBasePath($path) {
self::$platformFilesystem->setBasePath($path);
}
public static function getWebCachePath() {
return self::$platformFilesystem->getWebCachePath();
}
public static function getNotWebCachePath() {
return self::$platformFilesystem->getNotWebCachePath();
}
/**
* @param $path
*
* @return string
*/
public static function pathToAbsoluteURL($path) {
return self::$platformFilesystem->pathToAbsoluteURL($path);
}
/**
* @param $path
*
* @return string
*/
public static function pathToRelativePath($path) {
return self::$platformFilesystem->pathToRelativePath($path);
}
/**
* @param $path
*
* @return string
*/
public static function pathToAbsolutePath($path) {
return self::$platformFilesystem->pathToAbsolutePath($path);
}
/**
* @param $url
*
* @return string
*/
public static function absoluteURLToPath($url) {
return self::$platformFilesystem->absoluteURLToPath($url);
}
/**
* @param $file
*
* @return bool
*/
public static function fileexists($file) {
return self::$platformFilesystem->fileexists($file);
}
/**
* @param $file
*
* @return bool
*/
public static function safefileexists($file) {
return self::$platformFilesystem->safefileexists($file);
}
/**
*
* @param $dir
*
* @return array Folder names without trailing slash
*/
public static function folders($dir) {
return self::$platformFilesystem->folders($dir);
}
/**
* @param $path
*
* @return bool
*/
public static function is_writable($path) {
return self::$platformFilesystem->is_writable($path);
}
/**
* @param $path
*
* @return bool
*/
public static function createFolder($path) {
return self::$platformFilesystem->createFolder($path);
}
/**
* @param $dir
*
* @return bool
*/
public static function deleteFolder($dir) {
return self::$platformFilesystem->deleteFolder($dir);
}
/**
* @param $path
*
* @return bool
*/
public static function existsFolder($path) {
return self::$platformFilesystem->existsFolder($path);
}
/**
* @param $path
*
* @return array
*/
public static function files($path) {
return self::$platformFilesystem->files($path);
}
/**
* @param $path
*
* @return bool
*/
public static function existsFile($path) {
return self::$platformFilesystem->existsFile($path);
}
/**
* @param $path
* @param $buffer
*
* @return int
*/
public static function createFile($path, $buffer) {
return self::$platformFilesystem->createFile($path, $buffer);
}
/**
* @param $path
*
* @return string
*/
public static function readFile($path) {
return self::$platformFilesystem->readFile($path);
}
/**
* convert dir alias to normal format
*
* @param $pathName
*
* @return mixed
*/
public static function dirFormat($pathName) {
return self::$platformFilesystem->dirFormat($pathName);
}
public static function getImagesFolder() {
return self::$platformFilesystem->getImagesFolder();
}
public static function realpath($path) {
return self::$platformFilesystem->realpath($path);
}
public static function registerTranslate($from, $to) {
self::$platformFilesystem->registerTranslate($from, $to);
}
public static function convertToRealDirectorySeparator($path) {
return self::$platformFilesystem->convertToRealDirectorySeparator($path);
}
public static function get_temp_dir() {
return self::$platformFilesystem->get_temp_dir();
}
public static function tempnam($filename = '', $dir = '') {
return self::$platformFilesystem->tempnam($filename = '', $dir = '');
}
}
new Filesystem();