-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Filesystem.php
100 lines (79 loc) · 2.95 KB
/
Filesystem.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
<?php
declare(strict_types=1);
namespace SonsOfPHP\Component\Filesystem;
use SonsOfPHP\Component\Filesystem\Exception\FilesystemException;
use SonsOfPHP\Contract\Filesystem\Adapter\AdapterInterface;
use SonsOfPHP\Contract\Filesystem\Adapter\CopyAwareInterface;
use SonsOfPHP\Contract\Filesystem\Adapter\MoveAwareInterface;
use SonsOfPHP\Contract\Filesystem\ContextInterface;
use SonsOfPHP\Contract\Filesystem\FilesystemInterface;
/**
* @author Joshua Estes <[email protected]>
*/
final readonly class Filesystem implements FilesystemInterface
{
public function __construct(
private AdapterInterface $adapter,
) {}
public function write(string $path, mixed $contents, ContextInterface|array $context = null): void
{
if (!is_string($contents) && !is_resource($contents)) {
throw new FilesystemException(sprintf('Argument "$contents" must be of type "string" or "resource". Type "%s" given.', gettype($contents)));
}
if (is_array($context)) {
$context = new Context($context);
}
$this->adapter->add($path, $contents, $context);
}
public function read(string $path, ContextInterface|array $context = null): string
{
if (is_array($context)) {
$context = new Context($context);
}
return $this->adapter->get($path, $context);
}
public function delete(string $path, ContextInterface|array $context = null): void
{
if (is_array($context)) {
$context = new Context($context);
}
$this->adapter->remove($path, $context);
}
public function exists(string $path, ContextInterface|array $context = null): bool
{
if (is_array($context)) {
$context = new Context($context);
}
return $this->adapter->has($path, $context);
}
public function copy(string $source, string $destination, ContextInterface|array $context = null): void
{
if (is_array($context)) {
$context = new Context($context);
}
if ($this->adapter instanceof CopyAwareInterface) {
$this->adapter->copy($source, $destination);
return;
}
$this->write($destination, $this->get($source, $context), $context);
}
public function move(string $source, string $destination, ContextInterface|array $context = null): void
{
if (is_array($context)) {
$context = new Context($context);
}
if ($this->adapter instanceof MoveAwareInterface) {
$this->adapter->move($source, $destination, $context);
return;
}
$this->copy($source, $destination, $context);
$this->delete($source, $context);
}
public function mimeType(string $path, ContextInterface|array $context = null): string
{
if (is_array($context)) {
$context = new Context($context);
}
return $this->adapter->mimeType($path, $context);
}
}