mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-25 22:36:06 +03:00
152 lines
4.0 KiB
PHP
152 lines
4.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyright (C) 2013 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailgun;
|
|
|
|
use Http\Client\Common\PluginClient;
|
|
use Mailgun\HttpClient\HttpClientConfigurator;
|
|
use Mailgun\HttpClient\Plugin\History;
|
|
use Mailgun\HttpClient\RequestBuilder;
|
|
use Mailgun\Hydrator\Hydrator;
|
|
use Mailgun\Hydrator\ModelHydrator;
|
|
use Psr\Http\Client\ClientInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* This class is the base class for the Mailgun SDK.
|
|
*/
|
|
class Mailgun
|
|
{
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
private $apiKey;
|
|
|
|
/**
|
|
* @var ClientInterface|PluginClient
|
|
*/
|
|
private $httpClient;
|
|
|
|
/**
|
|
* @var Hydrator
|
|
*/
|
|
private $hydrator;
|
|
|
|
/**
|
|
* @var RequestBuilder
|
|
*/
|
|
private $requestBuilder;
|
|
|
|
/**
|
|
* This is a object that holds the last response from the API.
|
|
*
|
|
* @var History
|
|
*/
|
|
private $responseHistory;
|
|
|
|
public function __construct(
|
|
HttpClientConfigurator $configurator,
|
|
Hydrator $hydrator = null,
|
|
RequestBuilder $requestBuilder = null
|
|
) {
|
|
$this->requestBuilder = $requestBuilder ?: new RequestBuilder();
|
|
$this->hydrator = $hydrator ?: new ModelHydrator();
|
|
|
|
$this->httpClient = $configurator->createConfiguredClient();
|
|
$this->apiKey = $configurator->getApiKey();
|
|
$this->responseHistory = $configurator->getResponseHistory();
|
|
}
|
|
|
|
public static function create(string $apiKey, string $endpoint = 'https://api.mailgun.net'): self
|
|
{
|
|
$httpClientConfigurator = (new HttpClientConfigurator())
|
|
->setApiKey($apiKey)
|
|
->setEndpoint($endpoint);
|
|
|
|
return new self($httpClientConfigurator);
|
|
}
|
|
|
|
public function getLastResponse(): ?ResponseInterface
|
|
{
|
|
return $this->responseHistory->getLastResponse();
|
|
}
|
|
|
|
public function attachment(): Api\Attachment
|
|
{
|
|
return new Api\Attachment($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function domains(): Api\Domain
|
|
{
|
|
return new Api\Domain($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function emailValidation(): Api\EmailValidation
|
|
{
|
|
return new Api\EmailValidation($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function emailValidationV4(): Api\EmailValidationV4
|
|
{
|
|
return new Api\EmailValidationV4($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function events(): Api\Event
|
|
{
|
|
return new Api\Event($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function ips(): Api\Ip
|
|
{
|
|
return new Api\Ip($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function mailingList(): Api\MailingList
|
|
{
|
|
return new Api\MailingList($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function messages(): Api\Message
|
|
{
|
|
return new Api\Message($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function routes(): Api\Route
|
|
{
|
|
return new Api\Route($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function suppressions(): Api\Suppression
|
|
{
|
|
return new Api\Suppression($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function stats(): Api\Stats
|
|
{
|
|
return new Api\Stats($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function tags(): Api\Tag
|
|
{
|
|
return new Api\Tag($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
|
|
public function webhooks(): Api\Webhook
|
|
{
|
|
return new Api\Webhook($this->httpClient, $this->requestBuilder, $this->hydrator, $this->apiKey);
|
|
}
|
|
|
|
public function mailboxes(): Api\Mailboxes
|
|
{
|
|
return new Api\Mailboxes($this->httpClient, $this->requestBuilder, $this->hydrator);
|
|
}
|
|
}
|