Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
Lti1p1Launcher
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 launch
100.00% covered (success)
100.00%
15 / 15
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) 2020 (original work) Open Assessment Technologies SA
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoLti\models\classes\Tool\Service;
24
25use IMSGlobal\LTI\ToolProvider\ToolConsumer;
26use oat\oatbox\service\ConfigurableService;
27use oat\taoLti\models\classes\LtiLaunchData;
28use oat\taoLti\models\classes\Tool\LtiLaunch;
29use oat\taoLti\models\classes\Tool\LtiLaunchCommandInterface;
30use oat\taoLti\models\classes\Tool\LtiLaunchInterface;
31
32class Lti1p1Launcher extends ConfigurableService implements LtiLauncherInterface
33{
34    public function launch(LtiLaunchCommandInterface $command): LtiLaunchInterface
35    {
36        $data = array_merge(
37            $command->getClaims(),
38            [
39                LtiLaunchData::LTI_VERSION => 'LTI-1p0',
40                LtiLaunchData::USER_ID => $command->getUser()->getIdentifier(),
41                LtiLaunchData::ROLES => current($command->getRoles()),
42            ]
43        );
44
45        $data = ToolConsumer::addSignature(
46            $command->getLaunchUrl(),
47            $command->getLtiProvider()->getKey(),
48            $command->getLtiProvider()->getSecret(),
49            $data
50        );
51
52        return new LtiLaunch($command->getLaunchUrl(), $data);
53    }
54}