-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathDevice.php
320 lines (286 loc) · 7.9 KB
/
Device.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
<?php
namespace Utopia\Storage;
use Exception;
abstract class Device
{
/**
* Max chunk size while transferring file from one device to another
*/
protected int $transferChunkSize = 20000000; //20 MB
/**
* Sets the maximum number of keys returned to the response. By default, the action returns up to 1,000 key names.
*/
protected const MAX_PAGE_SIZE = PHP_INT_MAX;
/**
* Set Transfer Chunk Size
*
* @param int $chunkSize
* @return void
*/
public function setTransferChunkSize(int $chunkSize): void
{
$this->transferChunkSize = $chunkSize;
}
/**
* Get Transfer Chunk Size
*
* @return int
*/
public function getTransferChunkSize(): int
{
return $this->transferChunkSize;
}
/**
* Get Name.
*
* Get storage device name
*
* @return string
*/
abstract public function getName(): string;
/**
* Get Type.
*
* Get storage device type
*
* @return string
*/
abstract public function getType(): string;
/**
* Get Description.
*
* Get storage device description and purpose.
*
* @return string
*/
abstract public function getDescription(): string;
/**
* Get Root.
*
* Get storage device root path
*
* @return string
*/
abstract public function getRoot(): string;
/**
* Get Path.
*
* Each device hold a complex directory structure that is being build in this method.
*
* @param string $filename
* @param string $prefix
* @return string
*/
abstract public function getPath(string $filename, string $prefix = null): string;
/**
* Upload.
*
* Upload a file to desired destination in the selected disk
* return number of chunks uploaded or 0 if it fails.
*
* @param string $source
* @param string $path
* @param int $chunk
* @param int $chunks
* @param array $metadata
* @return int
*
* @throws Exception
*/
abstract public function upload(string $source, string $path, int $chunk = 1, int $chunks = 1, array &$metadata = []): int;
/**
* Upload Data.
*
* Upload file contents to desired destination in the selected disk.
* return number of chunks uploaded or 0 if it fails.
*
* @param string $data
* @param string $path
* @param string $contentType
* @param int chunk
* @param int chunks
* @param array $metadata
* @return int
*
* @throws Exception
*/
abstract public function uploadData(string $data, string $path, string $contentType, int $chunk = 1, int $chunks = 1, array &$metadata = []): int;
/**
* Abort Chunked Upload
*
* @param string $path
* @param string $extra
* @return bool
*/
abstract public function abort(string $path, string $extra = ''): bool;
/**
* Read file by given path.
*
* @param string $path
* @param int $offset
* @param int $length
* @return string
*/
abstract public function read(string $path, int $offset = 0, int $length = null): string;
/**
* Transfer
* Transfer a file from current device to destination device.
*
* @param string $path
* @param string $destination
* @param Device $device
* @return bool
*/
abstract public function transfer(string $path, string $destination, Device $device): bool;
/**
* Write file by given path.
*
* @param string $path
* @param string $data
* @return bool
*/
abstract public function write(string $path, string $data, string $contentType): bool;
/**
* Move file from given source to given path, return true on success and false on failure.
*
* @see http://php.net/manual/en/function.filesize.php
*
* @param string $source
* @param string $target
* @return bool
*/
public function move(string $source, string $target): bool
{
if ($source === $target) {
return false;
}
if ($this->transfer($source, $target, $this)) {
return $this->delete($source);
}
return false;
}
/**
* Delete file in given path return true on success and false on failure.
*
* @see http://php.net/manual/en/function.filesize.php
*
* @param string $path
* @param bool $recursive
* @return bool
*/
abstract public function delete(string $path, bool $recursive = false): bool;
/**
* Delete files in given path, path must be a directory. return true on success and false on failure.
*
*
* @param string $path
* @return bool
*/
abstract public function deletePath(string $path): bool;
/**
* Check if file exists
*
* @param string $path
* @return bool
*/
abstract public function exists(string $path): bool;
/**
* Returns given file path its size.
*
* @see http://php.net/manual/en/function.filesize.php
*
* @param $path
* @return int
*/
abstract public function getFileSize(string $path): int;
/**
* Returns given file path its mime type.
*
* @see http://php.net/manual/en/function.mime-content-type.php
*
* @param $path
* @return string
*/
abstract public function getFileMimeType(string $path): string;
/**
* Returns given file path its MD5 hash value.
*
* @see http://php.net/manual/en/function.md5-file.php
*
* @param $path
* @return string
*/
abstract public function getFileHash(string $path): string;
/**
* Create a directory at the specified path.
*
* Returns true on success or if the directory already exists and false on error
*
* @param $path
* @return bool
*/
abstract public function createDirectory(string $path): bool;
/**
* Get directory size in bytes.
*
* Return -1 on error
*
* Based on http://www.jonasjohn.de/snippets/php/dir-size.htm
*
* @param $path
* @return int
*/
abstract public function getDirectorySize(string $path): int;
/**
* Get Partition Free Space.
*
* disk_free_space — Returns available space on filesystem or disk partition
*
* @return float
*/
abstract public function getPartitionFreeSpace(): float;
/**
* Get Partition Total Space.
*
* disk_total_space — Returns the total size of a filesystem or disk partition
*
* @return float
*/
abstract public function getPartitionTotalSpace(): float;
/**
* Get all files and directories inside a directory.
*
* @param string $dir Directory to scan
* @param int $max
* @param string $continuationToken
* @return array<mixed>
*/
abstract public function getFiles(string $dir, int $max = self::MAX_PAGE_SIZE, string $continuationToken = ''): array;
/**
* Get the absolute path by resolving strings like ../, .., //, /\ and so on.
*
* Works like the realpath function but works on files that does not exist
*
* Reference https://www.php.net/manual/en/function.realpath.php#84012
*
* @param string $path
* @return string
*/
public function getAbsolutePath(string $path): string
{
$path = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $path);
$parts = array_filter(explode(DIRECTORY_SEPARATOR, $path), 'strlen');
$absolutes = [];
foreach ($parts as $part) {
if ('.' == $part) {
continue;
}
if ('..' == $part) {
array_pop($absolutes);
} else {
$absolutes[] = $part;
}
}
return DIRECTORY_SEPARATOR.implode(DIRECTORY_SEPARATOR, $absolutes);
}
}