Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
NoAccess
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 4
20
0.00% covered (danger)
0.00%
0 / 1
 accessPossible
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 applyRule
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 revokeRule
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getAdvancedLogger
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2013-2021 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\tao\model\accessControl\func\implementation;
22
23use oat\oatbox\user\User;
24use Psr\Log\LoggerInterface;
25use oat\oatbox\log\logger\AdvancedLogger;
26use oat\oatbox\service\ConfigurableService;
27use oat\tao\model\accessControl\func\AccessRule;
28use oat\tao\model\accessControl\func\FuncAccessControl;
29
30/**
31 * Fallback functional Access Control denying all access
32 *
33 * @author Joel Bout, <joel@taotesting.com>
34 */
35class NoAccess extends ConfigurableService implements FuncAccessControl
36{
37    /**
38     * {@inheritdoc}
39     */
40    public function accessPossible(User $user, $controller, $action)
41    {
42        $this->getAdvancedLogger()->info('Access denied.');
43
44        return false;
45    }
46
47    public function applyRule(AccessRule $rule)
48    {
49        // nothing to do
50    }
51
52    public function revokeRule(AccessRule $rule)
53    {
54        // nothing to do
55    }
56
57    private function getAdvancedLogger(): LoggerInterface
58    {
59        return $this->getServiceManager()->getContainer()->get(AdvancedLogger::ACL_SERVICE_ID);
60    }
61}