|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Slince\Upload\Filesystem; |
|
4
|
|
|
|
|
5
|
|
|
use RuntimeException; |
|
6
|
|
|
use Slince\Upload\File; |
|
7
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile; |
|
8
|
|
|
|
|
9
|
|
|
class Local implements FilesystemInterface |
|
10
|
|
|
{ |
|
11
|
|
|
/** |
|
12
|
|
|
* @var string |
|
13
|
|
|
*/ |
|
14
|
|
|
protected $savePath; |
|
15
|
|
|
|
|
16
|
|
|
public function __construct(string $savePath) |
|
17
|
|
|
{ |
|
18
|
|
|
$this->savePath = rtrim($savePath, '\\/'); |
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* {@inheritdoc} |
|
23
|
|
|
*/ |
|
24
|
|
|
public function upload(string $key, UploadedFile $file, bool $overwrite = false) |
|
25
|
|
|
{ |
|
26
|
|
|
if (!$this->ensureDirectory($this->savePath)) { |
|
27
|
|
|
throw new \InvalidArgumentException(sprintf('Directory "%s" was not created', $this->savePath)); |
|
28
|
|
|
} |
|
29
|
|
|
|
|
30
|
|
|
if (!is_writable($this->savePath)) { |
|
31
|
|
|
throw new \InvalidArgumentException(sprintf('The directory "%s" is invalid', $this->savePath)); |
|
32
|
|
|
} |
|
33
|
|
|
|
|
34
|
|
|
$filePath = $this->getFilePath($key); |
|
35
|
|
|
if (!$overwrite && file_exists($filePath)) { |
|
36
|
|
|
throw new RuntimeException(sprintf('The file with key "%s" is exists.', $key)); |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
return $file->move(dirname($filePath), basename($filePath)); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* {@inheritdoc} |
|
44
|
|
|
*/ |
|
45
|
|
|
public function delete(File $file): bool |
|
46
|
|
|
{ |
|
47
|
|
|
$details = $file->getDetails(); |
|
48
|
|
|
|
|
49
|
|
|
$filePath = ''; |
|
50
|
|
|
if ($details) { |
|
51
|
|
|
$filePath = $details->getPathname(); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
if (file_exists($filePath)) { |
|
55
|
|
|
return unlink($filePath); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
return true; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
protected function getFilePath(string $key): string |
|
62
|
|
|
{ |
|
63
|
|
|
return $this->savePath . DIRECTORY_SEPARATOR . $key; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
protected function ensureDirectory(string $directory): bool |
|
67
|
|
|
{ |
|
68
|
|
|
return is_dir($directory) || mkdir($directory, 0755, true) || is_dir($directory); |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|