summaryrefslogtreecommitdiff
path: root/app/Decorator/ProjectRoleRestrictionCacheDecorator.php
blob: a6e24048cc5efb59820d47abbbd4a2afa9f37d8d (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
<?php

namespace Kanboard\Decorator;

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

/**
 * Class ProjectRoleRestrictionCacheDecorator
 *
 * @package Kanboard\Decorator
 * @author  Frederic Guillot
 */
class ProjectRoleRestrictionCacheDecorator
{
    protected $cachePrefix = 'project_restriction:';

    /**
     * @var CacheInterface
     */
    protected $cache;

    /**
     * @var ProjectRoleRestrictionModel
     */
    protected $projectRoleRestrictionModel;

    /**
     * ColumnMoveRestrictionDecorator constructor.
     *
     * @param CacheInterface                  $cache
     * @param ProjectRoleRestrictionModel     $projectRoleRestrictionModel
     */
    public function __construct(CacheInterface $cache, ProjectRoleRestrictionModel $projectRoleRestrictionModel)
    {
        $this->cache = $cache;
        $this->projectRoleRestrictionModel = $projectRoleRestrictionModel;
    }

    /**
     * Proxy method to get sortable columns
     *
     * @param  int    $project_id
     * @param  string $role
     * @return array|mixed
     */
    public function getAllByRole($project_id, $role)
    {
        $key = $this->cachePrefix.$project_id.$role;
        $projectRestrictions = $this->cache->get($key);

        if ($projectRestrictions === null) {
            $projectRestrictions = $this->projectRoleRestrictionModel->getAllByRole($project_id, $role);
            $this->cache->set($key, $projectRestrictions);
        }

        return $projectRestrictions;
    }
}