-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStartProctoringLaunchRequestBuilder.php
99 lines (88 loc) · 3.93 KB
/
StartProctoringLaunchRequestBuilder.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/**
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2021 (original work) Open Assessment Technologies SA;
*/
declare(strict_types=1);
namespace OAT\Library\Lti1p3Proctoring\Message\Launch\Builder;
use OAT\Library\Lti1p3Core\Exception\LtiException;
use OAT\Library\Lti1p3Core\Exception\LtiExceptionInterface;
use OAT\Library\Lti1p3Core\Message\Launch\Builder\PlatformOriginatingLaunchBuilder;
use OAT\Library\Lti1p3Core\Message\LtiMessageInterface;
use OAT\Library\Lti1p3Core\Message\Payload\Claim\ResourceLinkClaim;
use OAT\Library\Lti1p3Core\Message\Payload\LtiMessagePayloadInterface;
use OAT\Library\Lti1p3Core\Registration\RegistrationInterface;
use OAT\Library\Lti1p3Core\Resource\LtiResourceLink\LtiResourceLinkInterface;
use Throwable;
/**
* @see https://www.imsglobal.org/spec/proctoring/v1p0#h.nah6ikt241z1
*/
class StartProctoringLaunchRequestBuilder extends PlatformOriginatingLaunchBuilder
{
/**
* @throws LtiExceptionInterface
*/
public function buildStartProctoringLaunchRequest(
LtiResourceLinkInterface $ltiResourceLink,
RegistrationInterface $registration,
string $startAssessmentUrl,
string $loginHint,
int $attemptNumber = 1,
string $deploymentId = null,
array $roles = ['http://purl.imsglobal.org/vocab/lis/v2/membership#Learner'],
array $optionalClaims = []
): LtiMessageInterface {
try {
$resourceLinkClaim = ResourceLinkClaim::denormalize([
'id' => $ltiResourceLink->getIdentifier(),
'title' => $ltiResourceLink->getTitle(),
'description' => $ltiResourceLink->getText(),
]);
$sessionDataToken = $this->builder
->withClaim(LtiMessagePayloadInterface::CLAIM_REGISTRATION_ID, $registration->getIdentifier())
->buildMessagePayload($registration->getPlatformKeyChain())
->getToken()
->toString();
$this->builder
->reset()
->withClaim($resourceLinkClaim)
->withClaim(LtiMessagePayloadInterface::CLAIM_LTI_PROCTORING_START_ASSESSMENT_URL, $startAssessmentUrl)
->withClaim(LtiMessagePayloadInterface::CLAIM_LTI_PROCTORING_ATTEMPT_NUMBER, $attemptNumber)
->withClaim(LtiMessagePayloadInterface::CLAIM_LTI_PROCTORING_SESSION_DATA, $sessionDataToken);
$launchUrl = $ltiResourceLink->getUrl() ?? $registration->getTool()->getLaunchUrl();
if (null === $launchUrl) {
throw new LtiException('Neither resource link url nor tool default url were presented');
}
return $this->buildPlatformOriginatingLaunch(
$registration,
LtiMessageInterface::LTI_MESSAGE_TYPE_START_PROCTORING,
$launchUrl,
$loginHint,
$deploymentId,
$roles,
$optionalClaims
);
} catch (LtiExceptionInterface $exception) {
throw $exception;
} catch (Throwable $exception) {
throw new LtiException(
sprintf('Cannot create start proctoring launch request: %s', $exception->getMessage()),
$exception->getCode(),
$exception
);
}
}
}