Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
TestTakerAuthorizationDelegator
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 verifyStartAuthorization
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 verifyResumeAuthorization
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 isProctored
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) 2017  (original work) Open Assessment Technologies SA;
19 *
20 * @author Alexander Zagovorichev <zagovorichev@1pt.com>
21 */
22
23namespace oat\taoProctoring\model\authorization;
24
25use oat\oatbox\user\User;
26use oat\taoDelivery\model\execution\DeliveryExecutionInterface;
27use oat\taoProctoring\model\ServiceDelegator;
28
29class TestTakerAuthorizationDelegator extends ServiceDelegator implements TestTakerAuthorizationInterface
30{
31    /**
32     * (non-PHPdoc)
33     * @see \oat\taoDelivery\model\authorization\AuthorizationProvider::verifyStartAuthorization()
34     * @param $deliveryId
35     * @param User $user
36     */
37    public function verifyStartAuthorization($deliveryId, User $user)
38    {
39        return $this->getResponsibleService($user, $deliveryId)->verifyStartAuthorization($deliveryId, $user);
40    }
41
42    /**
43     * (non-PHPdoc)
44     * @see \oat\taoDelivery\model\authorization\AuthorizationProvider::verifyResumeAuthorization()
45     * @param DeliveryExecutionInterface $deliveryExecution
46     * @param User $user
47     * @throws UnAuthorizedException
48     */
49    public function verifyResumeAuthorization(DeliveryExecutionInterface $deliveryExecution, User $user)
50    {
51        $deliveryId = $deliveryExecution->getDelivery()->getUri();
52        return $this->getResponsibleService($user, $deliveryId)->verifyResumeAuthorization($deliveryExecution, $user);
53    }
54
55    /**
56     * Check if delivery id proctored
57     *
58     * @param string $deliveryId
59     * @param User $user
60     * @return bool
61     * @internal param core_kernel_classes_Resource $delivery
62     */
63    public function isProctored($deliveryId, User $user)
64    {
65        return $this->getResponsibleService($user, $deliveryId)->isProctored($deliveryId, $user);
66    }
67}