blob: 7e26d7988c48d99ef9899b947e3da3b7662923cb (
plain) (
blame)
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
|
<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2018 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace Jose\Component\Signature\Serializer;
use Base64Url\Base64Url;
use Jose\Component\Core\Converter\JsonConverter;
use Jose\Component\Signature\JWS;
final class CompactSerializer extends Serializer
{
public const NAME = 'jws_compact';
/**
* @var JsonConverter
*/
private $jsonConverter;
/**
* JSONFlattenedSerializer constructor.
*/
public function __construct(?JsonConverter $jsonConverter = null)
{
$this->jsonConverter = $jsonConverter ?? new \Jose\Component\Core\Util\JsonConverter();
}
public function displayName(): string
{
return 'JWS Compact';
}
public function name(): string
{
return self::NAME;
}
public function serialize(JWS $jws, ?int $signatureIndex = null): string
{
if (null === $signatureIndex) {
$signatureIndex = 0;
}
$signature = $jws->getSignature($signatureIndex);
if (!empty($signature->getHeader())) {
throw new \LogicException('The signature contains unprotected header parameters and cannot be converted into compact JSON.');
}
if (!$this->isPayloadEncoded($signature->getProtectedHeader()) && !empty($jws->getEncodedPayload())) {
if (1 !== \preg_match('/^[\x{20}-\x{2d}|\x{2f}-\x{7e}]*$/u', $jws->getPayload())) {
throw new \LogicException('Unable to convert the JWS with non-encoded payload.');
}
}
return \sprintf(
'%s.%s.%s',
$signature->getEncodedProtectedHeader(),
$jws->getEncodedPayload(),
Base64Url::encode($signature->getSignature())
);
}
public function unserialize(string $input): JWS
{
$parts = \explode('.', $input);
if (3 !== \count($parts)) {
throw new \InvalidArgumentException('Unsupported input');
}
try {
$encodedProtectedHeader = $parts[0];
$protectedHeader = $this->jsonConverter->decode(Base64Url::decode($parts[0]));
if (empty($parts[1])) {
$payload = null;
$encodedPayload = null;
} else {
$encodedPayload = $parts[1];
$payload = $this->isPayloadEncoded($protectedHeader) ? Base64Url::decode($encodedPayload) : $encodedPayload;
}
$signature = Base64Url::decode($parts[2]);
$jws = JWS::create($payload, $encodedPayload, empty($parts[1]));
$jws = $jws->addSignature($signature, $protectedHeader, $encodedProtectedHeader);
return $jws;
} catch (\Error | \Exception $e) {
throw new \InvalidArgumentException('Unsupported input');
}
}
}
|