blob: fc7a7146d5ea24b13e48aa59c888e0e55556df54 (
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
98
99
100
101
102
103
104
|
<?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 Jose\Component\Signature\JWS;
class JWSSerializerManager
{
/**
* @var JWSSerializer[]
*/
private $serializers = [];
/**
* JWSSerializerManager constructor.
*
* @param JWSSerializer[] $serializers
*/
public function __construct(array $serializers)
{
foreach ($serializers as $serializer) {
$this->add($serializer);
}
}
/**
* @deprecated Will be removed in v2.0. Please use constructor instead
*
* @param JWSSerializer[] $serializers
*
* @return JWSSerializerManager
*/
public static function create(array $serializers): self
{
return new self($serializers);
}
/**
* @return JWSSerializerManager
*/
private function add(JWSSerializer $serializer): self
{
$this->serializers[$serializer->name()] = $serializer;
return $this;
}
/**
* @return string[]
*/
public function list(): array
{
return \array_keys($this->serializers);
}
/**
* Converts a JWS into a string.
*
* @throws \Exception
*/
public function serialize(string $name, JWS $jws, ?int $signatureIndex = null): string
{
if (!\array_key_exists($name, $this->serializers)) {
throw new \InvalidArgumentException(\sprintf('Unsupported serializer "%s".', $name));
}
return ($this->serializers[$name])->serialize($jws, $signatureIndex);
}
/**
* Loads data and return a JWS object.
*
* @param string $input A string that represents a JWS
* @param string|null $name the name of the serializer if the input is unserialized
*
* @throws \Exception
*/
public function unserialize(string $input, ?string &$name = null): JWS
{
foreach ($this->serializers as $serializer) {
try {
$jws = $serializer->unserialize($input);
$name = $serializer->name();
return $jws;
} catch (\InvalidArgumentException $e) {
continue;
}
}
throw new \InvalidArgumentException('Unsupported input.');
}
}
|