summaryrefslogtreecommitdiff
path: root/app/Decorator/MetadataCacheDecorator.php
blob: 0897b51ccd4acec2e9103075335361160ec36ea6 (plain)
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
<?php

namespace Kanboard\Decorator;

use Kanboard\Core\Cache\CacheInterface;
use Kanboard\Model\MetadataModel;

/**
 * Class MetadataCacheDecorator
 *
 * @package Kanboard\Decorator
 * @author  Frederic Guillot
 */
class MetadataCacheDecorator
{
    /**
     * @var CacheInterface
     */
    protected $cache;

    /**
     * @var MetadataModel
     */
    protected $metadataModel;

    /**
     * @var string
     */
    protected $cachePrefix;

    /**
     * @var int
     */
    protected $entityId;

    /**
     * Constructor
     *
     * @param CacheInterface     $cache
     * @param MetadataModel      $metadataModel
     * @param string             $cachePrefix
     * @param integer            $entityId
     */
    public function __construct(CacheInterface $cache, MetadataModel $metadataModel, $cachePrefix, $entityId)
    {
        $this->cache = $cache;
        $this->metadataModel = $metadataModel;
        $this->cachePrefix = $cachePrefix;
        $this->entityId = $entityId;
    }

    /**
     * Get metadata value by key
     *
     * @param  string $key
     * @param  mixed  $default
     * @return mixed
     */
    public function get($key, $default)
    {
        $metadata = $this->cache->get($this->getCacheKey());

        if ($metadata === null) {
            $metadata = $this->metadataModel->getAll($this->entityId);
            $this->cache->set($this->getCacheKey(), $metadata);
        }

        return isset($metadata[$key]) ? $metadata[$key] : $default;
    }

    /**
     * Set new metadata value
     *
     * @param $key
     * @param $value
     */
    public function set($key, $value)
    {
        $this->metadataModel->save($this->entityId, array(
            $key => $value,
        ));

        $metadata = $this->metadataModel->getAll($this->entityId);
        $this->cache->set($this->getCacheKey(), $metadata);
    }

    /**
     * Get cache key
     *
     * @return string
     */
    protected function getCacheKey()
    {
        return $this->cachePrefix.$this->entityId;
    }
}