Spaces:
No application file
No application file
File size: 1,962 Bytes
d2897cd |
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 |
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Auth\Provider\BasicAuth;
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use Mautic\IntegrationsBundle\Auth\Provider\AuthConfigInterface;
use Mautic\IntegrationsBundle\Auth\Provider\AuthCredentialsInterface;
use Mautic\IntegrationsBundle\Auth\Provider\AuthProviderInterface;
use Mautic\IntegrationsBundle\Exception\PluginNotConfiguredException;
/**
* Factory for building HTTP clients using basic auth.
*/
class HttpFactory implements AuthProviderInterface
{
public const NAME = 'basic_auth';
/**
* Cache of initialized clients.
*
* @var Client[]
*/
private array $initializedClients = [];
public function getAuthType(): string
{
return self::NAME;
}
/**
* @param CredentialsInterface|AuthCredentialsInterface $credentials
*
* @throws PluginNotConfiguredException
*/
public function getClient(AuthCredentialsInterface $credentials, ?AuthConfigInterface $config = null): ClientInterface
{
if (!$this->credentialsAreConfigured($credentials)) {
throw new PluginNotConfiguredException('Username and/or password is missing');
}
// Return cached initialized client if there is one.
if (!empty($this->initializedClients[$credentials->getUsername()])) {
return $this->initializedClients[$credentials->getUsername()];
}
$this->initializedClients[$credentials->getUsername()] = new Client(
[
'auth' => [
$credentials->getUsername(),
$credentials->getPassword(),
],
]
);
return $this->initializedClients[$credentials->getUsername()];
}
protected function credentialsAreConfigured(CredentialsInterface $credentials): bool
{
return $credentials->getUsername() && $credentials->getPassword();
}
}
|