2013-08-08 03:22:19 +04:00
|
|
|
<?PHP
|
|
|
|
|
|
|
|
namespace Mailgun;
|
|
|
|
|
2015-10-12 20:23:58 +03:00
|
|
|
use Http\Adapter\HttpAdapter;
|
2014-11-20 21:41:25 +03:00
|
|
|
use Mailgun\Constants\ExceptionMessages;
|
2014-05-13 17:52:39 +04:00
|
|
|
use Mailgun\Messages\Exceptions;
|
2013-08-13 23:26:34 +04:00
|
|
|
use Mailgun\Connection\RestClient;
|
2013-08-08 04:41:14 +04:00
|
|
|
use Mailgun\Messages\BatchMessage;
|
2013-08-16 22:20:01 +04:00
|
|
|
use Mailgun\Lists\OptInHandler;
|
2013-08-08 04:41:14 +04:00
|
|
|
use Mailgun\Messages\MessageBuilder;
|
2013-08-08 03:22:19 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2013-08-08 03:22:19 +04:00
|
|
|
class Mailgun{
|
2014-11-20 21:41:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var RestClient
|
|
|
|
*/
|
2013-08-08 03:22:19 +04:00
|
|
|
protected $restClient;
|
2014-11-20 21:41:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var null|string
|
|
|
|
*/
|
2014-06-25 01:36:21 +04:00
|
|
|
protected $apiKey;
|
2014-11-20 21:41:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string|null $apiKey
|
|
|
|
* @param string $apiEndpoint
|
|
|
|
* @param string $apiVersion
|
|
|
|
* @param bool $ssl
|
|
|
|
*/
|
2015-10-12 20:23:58 +03:00
|
|
|
public function __construct(
|
|
|
|
$apiKey = null,
|
|
|
|
$apiEndpoint = "api.mailgun.net",
|
|
|
|
$apiVersion = "v3",
|
|
|
|
$ssl = true,
|
|
|
|
HttpAdapter $adapter = null
|
|
|
|
) {
|
2014-11-20 01:29:08 +03:00
|
|
|
$this->apiKey = $apiKey;
|
2015-10-12 20:23:58 +03:00
|
|
|
$this->restClient = new RestClient($apiKey, $apiEndpoint, $apiVersion, $ssl, $adapter);
|
2013-08-08 03:22:19 +04:00
|
|
|
}
|
2013-08-08 04:41:14 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function sendMessage($workingDomain, $postData, $postFiles = array()){
|
|
|
|
if(is_array($postFiles)){
|
|
|
|
return $this->post("$workingDomain/messages", $postData, $postFiles);
|
|
|
|
}
|
|
|
|
else if(is_string($postFiles)){
|
2014-05-13 17:58:12 +04:00
|
|
|
|
2014-11-20 01:29:08 +03:00
|
|
|
$tempFile = tempnam(sys_get_temp_dir(), "MG_TMP_MIME");
|
|
|
|
$fileHandle = fopen($tempFile, "w");
|
|
|
|
fwrite($fileHandle, $postFiles);
|
2014-05-13 17:58:12 +04:00
|
|
|
|
2014-11-20 01:29:08 +03:00
|
|
|
$result = $this->post("$workingDomain/messages.mime", $postData, array("message" => $tempFile));
|
2014-05-13 19:07:44 +04:00
|
|
|
fclose($fileHandle);
|
|
|
|
unlink($tempFile);
|
2014-11-20 01:29:08 +03:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
else{
|
2014-11-20 21:41:25 +03:00
|
|
|
throw new Exceptions\MissingRequiredMIMEParameters(ExceptionMessages::EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS);
|
2014-11-20 01:29:08 +03:00
|
|
|
}
|
|
|
|
}
|
2014-11-20 21:41:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function verifyWebhookSignature($postData = NULL) {
|
|
|
|
if(is_null($postData)) {
|
|
|
|
$postData = $_POST;
|
|
|
|
}
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
}
|
2013-08-13 23:26:34 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @param string $endpointUrl
|
|
|
|
* @param array $postData
|
|
|
|
* @param array $files
|
|
|
|
* @return \stdClass
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function post($endpointUrl, $postData = array(), $files = array()){
|
|
|
|
return $this->restClient->post($endpointUrl, $postData, $files);
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @param string $endpointUrl
|
|
|
|
* @param array $queryString
|
|
|
|
* @return \stdClass
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function get($endpointUrl, $queryString = array()){
|
|
|
|
return $this->restClient->get($endpointUrl, $queryString);
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @param string $endpointUrl
|
|
|
|
* @return \stdClass
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function delete($endpointUrl){
|
|
|
|
return $this->restClient->delete($endpointUrl);
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @param string $endpointUrl
|
|
|
|
* @param array $putData
|
|
|
|
* @return \stdClass
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function put($endpointUrl, $putData){
|
|
|
|
return $this->restClient->put($endpointUrl, $putData);
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @return MessageBuilder
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function MessageBuilder(){
|
|
|
|
return new MessageBuilder();
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @return OptInHandler
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function OptInHandler(){
|
|
|
|
return new OptInHandler();
|
|
|
|
}
|
2014-10-07 02:53:33 +04:00
|
|
|
|
2014-11-20 21:41:25 +03:00
|
|
|
/**
|
|
|
|
* @param string $workingDomain
|
|
|
|
* @param bool $autoSend
|
|
|
|
* @return BatchMessage
|
|
|
|
*/
|
2014-11-20 01:29:08 +03:00
|
|
|
public function BatchMessage($workingDomain, $autoSend = true){
|
|
|
|
return new BatchMessage($this->restClient, $workingDomain, $autoSend);
|
|
|
|
}
|
2013-08-08 03:22:19 +04:00
|
|
|
}
|