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 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ProctorAuthorizationProvider
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 verifyStartAuthorization
0.00% covered (danger)
0.00%
0 / 2
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
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) 2016 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\taoProctoring\model\authorization;
23
24use oat\oatbox\service\ConfigurableService;
25use oat\taoDelivery\model\authorization\AuthorizationProvider;
26use oat\taoDelivery\model\execution\DeliveryExecution;
27use oat\oatbox\user\User;
28use oat\taoDelivery\model\execution\DeliveryExecutionInterface;
29
30/**
31 * Delegate the authorization to the Proctor Authorization Service
32 *
33 * @author Bertrand Chevrier <bertrand@taotesting.com>
34 */
35class ProctorAuthorizationProvider extends ConfigurableService implements AuthorizationProvider
36{
37    /**
38     * (non-PHPdoc)
39     * @see \oat\taoDelivery\model\authorization\AuthorizationProvider::verifyStartAuthorization()
40     * @param string $deliveryId
41     * @param User $user
42     */
43    public function verifyStartAuthorization($deliveryId, User $user)
44    {
45        /** @var TestTakerAuthorizationService $service */
46        $service = $this->getServiceLocator()->get(TestTakerAuthorizationService::SERVICE_ID);
47        $service->verifyStartAuthorization($deliveryId, $user);
48    }
49
50    /**
51     * (non-PHPdoc)
52     * @see \oat\taoDelivery\model\authorization\AuthorizationProvider::verifyResumeAuthorization()
53     * @param DeliveryExecution $deliveryExecution
54     * @param User $user
55     */
56    public function verifyResumeAuthorization(DeliveryExecutionInterface $deliveryExecution, User $user)
57    {
58        /** @var TestTakerAuthorizationService $service */
59        $service = $this->getServiceLocator()->get(TestTakerAuthorizationService::SERVICE_ID);
60        $service->verifyResumeAuthorization($deliveryExecution, $user);
61    }
62}