Merge pull request #23 from travelton/DisableSSLOption

Add ability to disable SSL (backward compatible).
This commit is contained in:
Travis Swientek 2013-12-02 10:30:46 -08:00
commit c82fc3a578
2 changed files with 13 additions and 4 deletions

View File

@ -20,9 +20,9 @@ class RestClient{
private $apiKey;
protected $mgClient;
public function __construct($apiKey, $apiEndpoint, $apiVersion){
public function __construct($apiKey, $apiEndpoint, $apiVersion, $ssl){
$this->apiKey = $apiKey;
$this->mgClient = new Guzzle('https://' . $apiEndpoint . '/' . $apiVersion . '/');
$this->mgClient = new Guzzle($this->generateEndpoint($apiEndpoint, $apiVersion, $ssl));
$this->mgClient->setDefaultOption('curl.options', array('CURLOPT_FORBID_REUSE' => true));
$this->mgClient->setDefaultOption('auth', array (API_USER, $this->apiKey));
$this->mgClient->setDefaultOption('exceptions', false);
@ -97,6 +97,15 @@ class RestClient{
$result->http_response_code = $httpResponseCode;
return $result;
}
private function generateEndpoint($apiEndpoint, $apiVersion, $ssl){
if(!$ssl){
return "http://" . $apiEndpoint . "/" . $apiVersion . "/";
}
else{
return "https://" . $apiEndpoint . "/" . $apiVersion . "/";
}
}
}
?>

View File

@ -22,8 +22,8 @@ class Mailgun{
protected $workingDomain;
protected $restClient;
public function __construct($apiKey = null, $apiEndpoint = "api.mailgun.net", $apiVersion = "v2"){
$this->restClient = new RestClient($apiKey, $apiEndpoint, $apiVersion);
public function __construct($apiKey = null, $apiEndpoint = "api.mailgun.net", $apiVersion = "v2", $ssl = true){
$this->restClient = new RestClient($apiKey, $apiEndpoint, $apiVersion, $ssl);
}
public function sendMessage($workingDomain, $postData, $postFiles = array()){