-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathFile.php
191 lines (157 loc) · 4.68 KB
/
File.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
<?php
namespace Flow;
class File
{
/**
* File hashed unique identifier
*/
private string $identifier;
public function __construct(protected ConfigInterface $config, protected ?RequestInterface $request = null)
{
if (null === $request) {
$this->request = new Request();
}
$this->identifier = \call_user_func($this->config->getHashNameCallback(), $this->request);
}
/**
* Get file identifier
*/
public function getIdentifier(): string
{
return $this->identifier;
}
/**
* Return chunk path
*/
public function getChunkPath(int $index): string
{
return $this->config->getTempDir().DIRECTORY_SEPARATOR.basename($this->identifier).'_'.(int) $index;
}
/**
* Check if chunk exist
*/
public function checkChunk(): bool
{
return file_exists($this->getChunkPath($this->request->getCurrentChunkNumber()));
}
/**
* Validate file request
*/
public function validateChunk(): bool
{
$file = $this->request->getFile();
if (! $file) {
return false;
}
if (! isset($file['tmp_name']) || ! isset($file['size']) || ! isset($file['error'])) {
return false;
}
if ($this->request->getCurrentChunkSize() != $file['size']) {
return false;
}
return ! (UPLOAD_ERR_OK !== $file['error']);
}
/**
* Save chunk
*/
public function saveChunk(): bool
{
$file = $this->request->getFile();
return $this->_move_uploaded_file($file['tmp_name'], $this->getChunkPath($this->request->getCurrentChunkNumber()));
}
/**
* Check if file upload is complete
*/
public function validateFile(): bool
{
$totalChunks = $this->request->getTotalChunks();
$totalChunksSize = 0;
for ($i = $totalChunks; $i >= 1; $i--) {
$file = $this->getChunkPath($i);
if (! file_exists($file)) {
return false;
}
$totalChunksSize += filesize($file);
}
return $this->request->getTotalSize() == $totalChunksSize;
}
/**
* Merge all chunks to single file
*
* @param string $destination final file location
*
* @throws FileLockException
* @throws FileOpenException
* @throws \Exception
*
* @return bool indicates if file was saved
*/
public function save(string $destination): bool
{
$fh = fopen($destination, 'wb');
if (! $fh) {
throw new FileOpenException('failed to open destination file: '.$destination);
}
if (! flock($fh, LOCK_EX | LOCK_NB, $blocked)) {
// @codeCoverageIgnoreStart
if ($blocked) {
// Concurrent request has requested a lock.
// File is being processed at the moment.
// Warning: lock is not checked in windows.
return false;
}
// @codeCoverageIgnoreEnd
throw new FileLockException('failed to lock file: '.$destination);
}
$totalChunks = $this->request->getTotalChunks();
try {
$preProcessChunk = $this->config->getPreprocessCallback();
for ($i = 1; $i <= $totalChunks; $i++) {
$file = $this->getChunkPath($i);
$chunk = fopen($file, 'rb');
if (! $chunk) {
throw new FileOpenException('failed to open chunk: '.$file);
}
if (null !== $preProcessChunk) {
\call_user_func($preProcessChunk, $chunk);
}
stream_copy_to_stream($chunk, $fh);
fclose($chunk);
}
} catch (\Exception $e) {
flock($fh, LOCK_UN);
fclose($fh);
throw $e;
}
if ($this->config->getDeleteChunksOnSave()) {
$this->deleteChunks();
}
flock($fh, LOCK_UN);
fclose($fh);
return true;
}
/**
* Delete chunks dir
*/
public function deleteChunks(): static
{
$totalChunks = $this->request->getTotalChunks();
for ($i = 1; $i <= $totalChunks; $i++) {
$path = $this->getChunkPath($i);
if (file_exists($path)) {
unlink($path);
}
}
return $this;
}
/**
* This method is used only for testing
*
* @private
* @codeCoverageIgnore
*/
public function _move_uploaded_file(string $filePath, string $destinationPath): bool
{
return move_uploaded_file($filePath, $destinationPath);
}
}