Files
w4rpservices/vendor/web-token/jwt-encryption/Serializer/JWESerializerManager.php

94 lines
2.4 KiB
PHP

<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2020 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\Encryption\Serializer;
use InvalidArgumentException;
use Jose\Component\Encryption\JWE;
class JWESerializerManager
{
/**
* @var JWESerializer[]
*/
private $serializers = [];
/**
* @param JWESerializer[] $serializers
*/
public function __construct(array $serializers)
{
foreach ($serializers as $serializer) {
$this->add($serializer);
}
}
/**
* Return the serializer names supported by the manager.
*
* @return string[]
*/
public function names(): array
{
return array_keys($this->serializers);
}
/**
* Converts a JWE into a string.
* Throws an exception if none of the serializer was able to convert the input.
*
* @throws InvalidArgumentException if the serializer is not supported
*/
public function serialize(string $name, JWE $jws, ?int $recipientIndex = null): string
{
if (!isset($this->serializers[$name])) {
throw new InvalidArgumentException(sprintf('Unsupported serializer "%s".', $name));
}
return $this->serializers[$name]->serialize($jws, $recipientIndex);
}
/**
* Loads data and return a JWE object.
* Throws an exception if none of the serializer was able to convert the input.
*
* @param string $input A string that represents a JWE
* @param null|string $name the name of the serializer if the input is unserialized
*
* @throws InvalidArgumentException if the input cannot be loaded
*/
public function unserialize(string $input, ?string &$name = null): JWE
{
foreach ($this->serializers as $serializer) {
try {
$jws = $serializer->unserialize($input);
$name = $serializer->name();
return $jws;
} catch (InvalidArgumentException $e) {
continue;
}
}
throw new InvalidArgumentException('Unsupported input.');
}
/**
* Adds a serializer to the manager.
*/
private function add(JWESerializer $serializer): void
{
$this->serializers[$serializer->name()] = $serializer;
}
}