mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
122 lines
4.2 KiB
PHP
122 lines
4.2 KiB
PHP
<?php
|
|
namespace Mailgun\Tests\Connection;
|
|
|
|
use Mailgun\Connection\HttpBroker;
|
|
|
|
class TestBroker extends HttpBroker{
|
|
private $apiKey;
|
|
protected $domain;
|
|
protected $debug;
|
|
|
|
protected $apiEndpoint = API_ENDPOINT;
|
|
protected $apiVersion = API_VERSION;
|
|
protected $apiUser = API_USER;
|
|
protected $sdkVersion = SDK_VERSION;
|
|
protected $sdkUserAgent = SDK_USER_AGENT;
|
|
|
|
public function __construct($apiKey, $domain, $debug = false){
|
|
$this->apiKey = $apiKey;
|
|
$this->domain = $domain;
|
|
$this->debug = $debug;
|
|
}
|
|
|
|
public function postRequest($endpointUrl, $postData = array(), $files = array()){
|
|
if(preg_match("/\/messages$/", $endpointUrl)){
|
|
$httpResponseCode = "200";
|
|
$jsonResponseData = json_encode('{"message": "Queued. Thank you.","id": "<20111114174239.25659.5817@samples.mailgun.org>"}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
elseif(preg_match("/\/unsubscribes$/", $endpointUrl)){
|
|
$httpResponseCode = "200";
|
|
$jsonResponseData = json_encode('{"message": "Address has been added to the unsubscribes table","address": "ev@mailgun.net"}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
else{
|
|
|
|
}
|
|
return $result;
|
|
}
|
|
public function getRequest($endpointUrl, $queryString = array()){
|
|
if($endpointUrl == "domains"){
|
|
$httpResponseCode = 200;
|
|
$jsonResponseData = json_decode('{"total_count": 1,"items": [{"created_at": "Wed, 10 Jul 2013 19:26:52 GMT","smtp_login": "postmaster@samples.mailgun.org","name": "samples.mailgun.org","smtp_password": "4rtqo4p6rrx9"}]}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
elseif(preg_match("/\/unsubscribes\//", $endpointUrl)){
|
|
$httpResponseCode = "200";
|
|
$jsonResponseData = json_encode('{"message": "Unsubscribe event has been removed","address": "ev@mailgun.net"}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
elseif(preg_match("/\/unsubscribes/", $endpointUrl)){
|
|
$httpResponseCode = "200";
|
|
$jsonResponseData = json_encode('{"total_count": 4,"items": [{"created_at": "Thu, 15 Mar 2012 08:35:02 GMT","tag": "*","id": "4f3b954a6addaa3e196735a2","address":"ev@mailgun.net"},{"created_at": "Thu, 15 Mar 2012 08:35:02 GMT","tag": "tag1","id": "4f3b954a6addaa3e1967359f","address":ev@mailgun.net"},{"created_at": "Wed, 01 Feb 2012 08:09:45 GMT","tag": "Testing Tag","id": "4f28f3494d532a3a823d0d9f","address": "alex@mailgun.net"},{"created_at": "Wed, 01 Feb 2012 08:09:38 GMT","tag": "*","id": "4f28f1024d532a3a823d0d68","address": "alex@mailgun.net"}]}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
return $result;
|
|
}
|
|
public function deleteRequest($endpointUrl){
|
|
if($endpointUrl == "domains"){
|
|
$httpResponseCode = 200;
|
|
$jsonResponseData = json_decode('asdfasdfasdf');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
elseif(preg_match("/\/unsubscribes\//", $endpointUrl)){
|
|
$httpResponseCode = "200";
|
|
$jsonResponseData = json_encode('{"message": "Unsubscribe event has been removed","address": "ev@mailgun.net"}');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
return $result;
|
|
}
|
|
public function putRequest($endpointUrl, $queryString){
|
|
if($endpointUrl == "domains"){
|
|
$httpResponseCode = 200;
|
|
$jsonResponseData = json_decode('asdfasdfasdf');
|
|
if($httpResponseCode === 200){
|
|
foreach($jsonResponseData as $key => $value){
|
|
$result->$key = $value;
|
|
}
|
|
}
|
|
$result->http_response_code = $httpResponseCode;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|