-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathBuilder.php
124 lines (112 loc) · 4.76 KB
/
Builder.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?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) 2020 (original work) Open Assessment Technologies SA;
*/
declare(strict_types=1);
namespace OAT\Library\Lti1p3Core\Security\Jwt\Builder;
use Carbon\Carbon;
use OAT\Library\Lti1p3Core\Exception\LtiException;
use OAT\Library\Lti1p3Core\Exception\LtiExceptionInterface;
use OAT\Library\Lti1p3Core\Message\Payload\MessagePayloadInterface;
use OAT\Library\Lti1p3Core\Security\Jwt\Configuration\ConfigurationFactory;
use OAT\Library\Lti1p3Core\Security\Jwt\Token;
use OAT\Library\Lti1p3Core\Security\Jwt\TokenInterface;
use OAT\Library\Lti1p3Core\Security\Key\KeyInterface;
use OAT\Library\Lti1p3Core\Util\Generator\IdGenerator;
use OAT\Library\Lti1p3Core\Util\Generator\IdGeneratorInterface;
use Throwable;
class Builder implements BuilderInterface
{
/** @var ConfigurationFactory */
private $factory;
/** @var IdGeneratorInterface */
private $generator;
/** @var int */
private $messageTtl;
public function __construct(
?ConfigurationFactory $factory = null,
?IdGeneratorInterface $generator = null,
int $messageTtl = MessagePayloadInterface::TTL
) {
$this->factory = $factory ?? new ConfigurationFactory();
$this->generator = $generator ?? new IdGenerator();
$this->messageTtl = $messageTtl;
}
/**
* @throws LtiExceptionInterface
*/
public function build(array $headers, array $claims, KeyInterface $key): TokenInterface
{
try {
$now = Carbon::now()->setMicrosecond(0);
$config = $this->factory->create($key);
$builder = $config->builder();
foreach ($headers as $headerName => $headerValue) {
$builder->withHeader($headerName, $headerValue);
}
$claims = array_merge(
$claims,
[
MessagePayloadInterface::CLAIM_JTI => $this->generator->generate(),
MessagePayloadInterface::CLAIM_IAT => $now->toDateTimeImmutable(),
MessagePayloadInterface::CLAIM_NBF => $now->toDateTimeImmutable(),
MessagePayloadInterface::CLAIM_EXP => $now->addSeconds($this->messageTtl)->toDateTimeImmutable(),
]
);
foreach ($claims as $claimName => $claimValue) {
switch ($claimName) {
case MessagePayloadInterface::CLAIM_JTI:
$builder->identifiedBy($claimValue);
break;
case MessagePayloadInterface::CLAIM_EXP:
$builder->expiresAt($claimValue);
break;
case MessagePayloadInterface::CLAIM_NBF:
$builder->canOnlyBeUsedAfter($claimValue);
break;
case MessagePayloadInterface::CLAIM_IAT:
$builder->issuedAt($claimValue);
break;
case MessagePayloadInterface::CLAIM_SUB:
$builder->relatedTo($claimValue);
break;
case MessagePayloadInterface::CLAIM_ISS:
$builder->issuedBy($claimValue);
break;
case MessagePayloadInterface::CLAIM_AUD:
if (is_array($claimValue)) {
foreach ($claimValue as $audience) {
$builder->permittedFor($audience);
}
} else {
$builder->permittedFor($claimValue);
}
break;
default:
$builder->withClaim($claimName, $claimValue);
}
}
return new Token($builder->getToken($config->signer(), $config->signingKey()));
} catch (Throwable $exception) {
throw new LtiException(
sprintf('Cannot build token: %s', $exception->getMessage()),
$exception->getCode(),
$exception
);
}
}
}