added predis and eseye back in.
This commit is contained in:
72
vendor/web-token/jwt-encryption/Serializer/JWESerializerManagerFactory.php
vendored
Normal file
72
vendor/web-token/jwt-encryption/Serializer/JWESerializerManagerFactory.php
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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;
|
||||
|
||||
class JWESerializerManagerFactory
|
||||
{
|
||||
/**
|
||||
* @var JWESerializer[]
|
||||
*/
|
||||
private $serializers = [];
|
||||
|
||||
/**
|
||||
* Creates a serializer manager factory using the given serializers.
|
||||
*
|
||||
* @param string[] $names
|
||||
*
|
||||
* @throws InvalidArgumentException if the serializer is not supported
|
||||
*/
|
||||
public function create(array $names): JWESerializerManager
|
||||
{
|
||||
$serializers = [];
|
||||
foreach ($names as $name) {
|
||||
if (!isset($this->serializers[$name])) {
|
||||
throw new InvalidArgumentException(sprintf('Unsupported serializer "%s".', $name));
|
||||
}
|
||||
$serializers[] = $this->serializers[$name];
|
||||
}
|
||||
|
||||
return new JWESerializerManager($serializers);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the serializer names supported by the manager.
|
||||
*
|
||||
* @return string[]
|
||||
*/
|
||||
public function names(): array
|
||||
{
|
||||
return array_keys($this->serializers);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all serializers supported by this factory.
|
||||
*
|
||||
* @return JWESerializer[]
|
||||
*/
|
||||
public function all(): array
|
||||
{
|
||||
return $this->serializers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a serializer to the manager.
|
||||
*/
|
||||
public function add(JWESerializer $serializer): void
|
||||
{
|
||||
$this->serializers[$serializer->name()] = $serializer;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user