Completed
Pull Request — master (#130)
by
unknown
07:37
created

FlysystemStorage   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 83.33%

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 1
dl 0
loc 52
ccs 15
cts 18
cp 0.8333
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A fetch() 0 15 3
A save() 0 4 1
A delete() 0 8 2
1
<?php
2
3
namespace Kevinrob\GuzzleCache\Storage;
4
5
use Kevinrob\GuzzleCache\CacheEntry;
6
use League\Flysystem\AdapterInterface;
7
use League\Flysystem\Filesystem;
8
use League\Flysystem\FileNotFoundException;
9
10
class FlysystemStorage implements CacheStorageInterface
11
{
12
13
    /**
14
     * @var Filesystem
15
     */
16
    protected $filesystem;
17
18 2
    public function __construct(AdapterInterface $adapter)
19
    {
20 2
        $this->filesystem = new Filesystem($adapter);
21 2
    }
22
23
    /**
24
     * @inheritdoc
25
     */
26 2
    public function fetch($key)
27
    {
28 2
        if ($this->filesystem->has($key)) {
29
            // The file exist, read it!
30 2
            $data = @unserialize(
31 2
                $this->filesystem->read($key)
32 2
            );
33
34 2
            if ($data instanceof CacheEntry) {
35 2
                return $data;
36
            }
37
        }
38
39 2
        return;
40
    }
41
42
    /**
43
     * @inheritdoc
44
     */
45 2
    public function save($key, CacheEntry $data)
46
    {
47 2
        return $this->filesystem->put($key, serialize($data));
48
    }
49
50
    /**
51
     * {@inheritdoc}
52
     */
53 2
    public function delete($key)
54
    {
55
        try {
56 2
            return $this->filesystem->delete($key);
57
        } catch (FileNotFoundException $ex){
58
            return true;
59
        }
60
    }
61
}
62