-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathDevice.php
More file actions
254 lines (217 loc) · 6.85 KB
/
Device.php
File metadata and controls
254 lines (217 loc) · 6.85 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
<?php
namespace Utopia\Storage;
use Exception;
use Utopia\Telemetry\Adapter as Telemetry;
use Utopia\Telemetry\Adapter\None as NoTelemetry;
use Utopia\Telemetry\Histogram;
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;
protected Histogram $storageOperationTelemetry;
public function __construct(Telemetry $telemetry = new NoTelemetry())
{
$this->setTelemetry($telemetry);
}
/**
* Set Transfer Chunk Size
*/
public function setTransferChunkSize(int $chunkSize): void
{
$this->transferChunkSize = $chunkSize;
}
/**
* Get Transfer Chunk Size
*/
public function getTransferChunkSize(): int
{
return $this->transferChunkSize;
}
/**
* Get Name.
*
* Get storage device name
*/
abstract public function getName(): string;
/**
* Get Type.
*
* Get storage device type
*/
abstract public function getType(): string;
/**
* Get Description.
*
* Get storage device description and purpose.
*/
abstract public function getDescription(): string;
public function setTelemetry(Telemetry $telemetry): void
{
$this->storageOperationTelemetry = $telemetry->createHistogram(
'storage.operation',
's',
advisory: ['ExplicitBucketBoundaries' => [0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1, 2.5, 5, 7.5, 10]]
);
}
/**
* Get Root.
*
* Get storage device root path
*/
abstract public function getRoot(): string;
/**
* Get Path.
*
* Each device hold a complex directory structure that is being build in this method.
*/
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.
*
*
* @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 int chunk
* @param int chunks
*
* @throws Exception
*/
abstract public function uploadData(string $data, string $path, string $contentType, int $chunk = 1, int $chunks = 1, array &$metadata = []): int;
/**
* Abort Chunked Upload
*/
abstract public function abort(string $path, string $extra = ''): bool;
/**
* Read file by given path.
*/
abstract public function read(string $path, int $offset = 0, ?int $length = null): string;
/**
* Transfer
* Transfer a file from current device to destination device.
*/
abstract public function transfer(string $path, string $destination, Device $device): bool;
/**
* Write file by given path.
*/
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
*/
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
*/
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.
*/
abstract public function deletePath(string $path): bool;
/**
* Check if file exists
*/
abstract public function exists(string $path): bool;
/**
* Returns given file path its size.
*
* @see http://php.net/manual/en/function.filesize.php
*/
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
*/
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
*/
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
*/
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
*/
abstract public function getDirectorySize(string $path): int;
/**
* Get Partition Free Space.
*
* disk_free_space — Returns available space on filesystem or disk partition
*/
abstract public function getPartitionFreeSpace(): float;
/**
* Get Partition Total Space.
*
* disk_total_space — Returns the total size of a filesystem or disk partition
*/
abstract public function getPartitionTotalSpace(): float;
/**
* Get all files and directories inside a directory.
*
* @param string $dir Directory to scan
* @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
*/
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);
}
}