Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
FactoryLtiAuthAdapterService
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 create
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
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) 2018 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22namespace oat\taoLti\models\classes;
23
24use common_ext_ExtensionsManager;
25use common_http_Request;
26use common_user_auth_Adapter;
27use oat\oatbox\service\ConfigurableService;
28
29class FactoryLtiAuthAdapterService extends ConfigurableService implements FactoryLtiAuthAdapterServiceInterface
30{
31    /**
32     * @param common_http_Request $request
33     * @return common_user_auth_Adapter
34     */
35    public function create(common_http_Request $request)
36    {
37        /** @var common_ext_ExtensionsManager $extensionManager */
38        $extensionManager = $this->getServiceLocator()->get(common_ext_ExtensionsManager::SERVICE_ID);
39        $config = $extensionManager ->getExtensionById('taoLti')->getConfig('auth');
40
41        /** @var \common_user_auth_Adapter $adapter */
42        $adapter = new $config['adapter']($request);
43        $this->propagate($adapter);
44
45        return $adapter;
46    }
47}