mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 06:46:08 +03:00
043658f996
* Added meta files * Style fixes from StyleCI
213 lines
5.4 KiB
PHP
213 lines
5.4 KiB
PHP
<?PHP
|
|
|
|
/*
|
|
* Copyright (C) 2013-2016 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\HttpClient;
|
|
use Mailgun\Connection\RestClient;
|
|
use Mailgun\Constants\ExceptionMessages;
|
|
use Mailgun\Lists\OptInHandler;
|
|
use Mailgun\Messages\BatchMessage;
|
|
use Mailgun\Messages\Exceptions;
|
|
use Mailgun\Messages\MessageBuilder;
|
|
|
|
/**
|
|
* This class is the base class for the Mailgun SDK.
|
|
* See the official documentation (link below) for usage instructions.
|
|
*
|
|
* @link https://github.com/mailgun/mailgun-php/blob/master/README.md
|
|
*/
|
|
class Mailgun
|
|
{
|
|
/**
|
|
* @var RestClient
|
|
*/
|
|
protected $restClient;
|
|
|
|
/**
|
|
* @var null|string
|
|
*/
|
|
protected $apiKey;
|
|
|
|
/**
|
|
* @param string|null $apiKey
|
|
* @param HttpClient $httpClient
|
|
* @param string $apiEndpoint
|
|
*/
|
|
public function __construct(
|
|
$apiKey = null,
|
|
HttpClient $httpClient = null,
|
|
$apiEndpoint = 'api.mailgun.net'
|
|
) {
|
|
$this->apiKey = $apiKey;
|
|
$this->restClient = new RestClient($apiKey, $apiEndpoint, $httpClient);
|
|
}
|
|
|
|
/**
|
|
* This function allows the sending of a fully formed message OR a custom
|
|
* MIME string. If sending MIME, the string must be passed in to the 3rd
|
|
* position of the function call.
|
|
*
|
|
* @param string $workingDomain
|
|
* @param array $postData
|
|
* @param array $postFiles
|
|
*
|
|
* @throws Exceptions\MissingRequiredMIMEParameters
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
public function sendMessage($workingDomain, $postData, $postFiles = [])
|
|
{
|
|
if (is_array($postFiles)) {
|
|
return $this->post("$workingDomain/messages", $postData, $postFiles);
|
|
} elseif (is_string($postFiles)) {
|
|
$tempFile = tempnam(sys_get_temp_dir(), 'MG_TMP_MIME');
|
|
$fileHandle = fopen($tempFile, 'w');
|
|
fwrite($fileHandle, $postFiles);
|
|
|
|
$result = $this->post("$workingDomain/messages.mime", $postData, ['message' => $tempFile]);
|
|
fclose($fileHandle);
|
|
unlink($tempFile);
|
|
|
|
return $result;
|
|
} else {
|
|
throw new Exceptions\MissingRequiredMIMEParameters(ExceptionMessages::EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This function checks the signature in a POST request to see if it is
|
|
* authentic.
|
|
*
|
|
* Pass an array of parameters. If you pass nothing, $_POST will be
|
|
* used instead.
|
|
*
|
|
* If this function returns FALSE, you must not process the request.
|
|
* You should reject the request with status code 403 Forbidden.
|
|
*
|
|
* @param array|null $postData
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function verifyWebhookSignature($postData = null)
|
|
{
|
|
if ($postData === null) {
|
|
$postData = $_POST;
|
|
}
|
|
if (!isset($postData['timestamp']) || !isset($postData['token']) || !isset($postData['signature'])) {
|
|
return false;
|
|
}
|
|
$hmac = hash_hmac('sha256', "{$postData['timestamp']}{$postData['token']}", $this->apiKey);
|
|
$sig = $postData['signature'];
|
|
if (function_exists('hash_equals')) {
|
|
// hash_equals is constant time, but will not be introduced until PHP 5.6
|
|
return hash_equals($hmac, $sig);
|
|
} else {
|
|
return $hmac === $sig;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $endpointUrl
|
|
* @param array $postData
|
|
* @param array $files
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
public function post($endpointUrl, $postData = [], $files = [])
|
|
{
|
|
return $this->restClient->post($endpointUrl, $postData, $files);
|
|
}
|
|
|
|
/**
|
|
* @param string $endpointUrl
|
|
* @param array $queryString
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
public function get($endpointUrl, $queryString = [])
|
|
{
|
|
return $this->restClient->get($endpointUrl, $queryString);
|
|
}
|
|
|
|
/**
|
|
* @param string $endpointUrl
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
public function delete($endpointUrl)
|
|
{
|
|
return $this->restClient->delete($endpointUrl);
|
|
}
|
|
|
|
/**
|
|
* @param string $endpointUrl
|
|
* @param array $putData
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
public function put($endpointUrl, $putData)
|
|
{
|
|
return $this->restClient->put($endpointUrl, $putData);
|
|
}
|
|
|
|
/**
|
|
* @param string $apiVersion
|
|
*
|
|
* @return Mailgun
|
|
*/
|
|
public function setApiVersion($apiVersion)
|
|
{
|
|
$this->restClient->setApiVersion($apiVersion);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param bool $sslEnabled
|
|
*
|
|
* @return Mailgun
|
|
*
|
|
* @deprecated This will be removed in 3.0. Mailgun does not support non-secure connections to their API.
|
|
*/
|
|
public function setSslEnabled($sslEnabled)
|
|
{
|
|
$this->restClient->setSslEnabled($sslEnabled);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return MessageBuilder
|
|
*/
|
|
public function MessageBuilder()
|
|
{
|
|
return new MessageBuilder();
|
|
}
|
|
|
|
/**
|
|
* @return OptInHandler
|
|
*/
|
|
public function OptInHandler()
|
|
{
|
|
return new OptInHandler();
|
|
}
|
|
|
|
/**
|
|
* @param string $workingDomain
|
|
* @param bool $autoSend
|
|
*
|
|
* @return BatchMessage
|
|
*/
|
|
public function BatchMessage($workingDomain, $autoSend = true)
|
|
{
|
|
return new BatchMessage($this->restClient, $workingDomain, $autoSend);
|
|
}
|
|
}
|