summaryrefslogtreecommitdiff
path: root/app/Core/Security/AccessMap.php
blob: 10a29e1f47b19b8599f3deed5770c8f5f7c0e39c (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
<?php

namespace Kanboard\Core\Security;

/**
 * Access Map Definition
 *
 * @package  security
 * @author   Frederic Guillot
 */
class AccessMap
{
    /**
     * Default role
     *
     * @access private
     * @var string
     */
    private $defaultRole = '';

    /**
     * Access map
     *
     * @access private
     * @var array
     */
    private $map = array();

    /**
     * Define the default role when nothing match
     *
     * @access public
     * @param  string $role
     * @return Acl
     */
    public function setDefaultRole($role)
    {
        $this->defaultRole = $role;
        return $this;
    }

    /**
     * Add new access rules
     *
     * @access public
     * @param  string $controller
     * @param  string $method
     * @param  array  $roles
     * @return Acl
     */
    public function add($controller, $method, array $roles)
    {
        $controller = strtolower($controller);
        $method = strtolower($method);

        if (! isset($this->map[$controller])) {
            $this->map[$controller] = array();
        }

        if (! isset($this->map[$controller][$method])) {
            $this->map[$controller][$method] = array();
        }

        $this->map[$controller][$method] = $roles;

        return $this;
    }

    /**
     * Get roles that match the given controller/method
     *
     * @access public
     * @param  string $controller
     * @param  string $method
     * @return boolean
     */
    public function getRoles($controller, $method)
    {
        $controller = strtolower($controller);
        $method = strtolower($method);

        if (isset($this->map[$controller][$method])) {
            return $this->map[$controller][$method];
        }

        if (isset($this->map[$controller]['*'])) {
            return $this->map[$controller]['*'];
        }

        return array($this->defaultRole);
    }
}