From 4406b25d2be6125561b1094dba9404dd7d5a920b Mon Sep 17 00:00:00 2001 From: Travis Swientek Date: Fri, 2 Aug 2013 17:07:16 -0700 Subject: [PATCH] Added 404 error handling and fixed HTTPBroker error handling --- src/Mailgun/Connection/Exceptions/MissingEndpoint.php | 6 ++++++ src/Mailgun/Connection/HttpBroker.php | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 src/Mailgun/Connection/Exceptions/MissingEndpoint.php diff --git a/src/Mailgun/Connection/Exceptions/MissingEndpoint.php b/src/Mailgun/Connection/Exceptions/MissingEndpoint.php new file mode 100644 index 0000000..1f8a5b0 --- /dev/null +++ b/src/Mailgun/Connection/Exceptions/MissingEndpoint.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/src/Mailgun/Connection/HttpBroker.php b/src/Mailgun/Connection/HttpBroker.php index 06f9134..f887994 100644 --- a/src/Mailgun/Connection/HttpBroker.php +++ b/src/Mailgun/Connection/HttpBroker.php @@ -11,6 +11,7 @@ use Mailgun\Connection\Exceptions\GenericHTTPError; use Mailgun\Connection\Exceptions\InvalidCredentials; use Mailgun\Connection\Exceptions\NoDomainsConfigured; use Mailgun\Connection\Exceptions\MissingRequiredMIMEParameters; +use Mailgun\Connection\Exceptions\MissingEndpoint; class HttpBroker{ @@ -27,7 +28,7 @@ class HttpBroker{ $this->mgClient = new Guzzle('https://' . API_ENDPOINT . '/' . API_VERSION . '/'); $this->mgClient->setDefaultOption('curl.options', array('CURLOPT_FORBID_REUSE' => true)); $this->mgClient->setDefaultOption('auth', array (API_USER, $this->apiKey)); - $this->mgClient->setDefaultOption('exceptions', true); + $this->mgClient->setDefaultOption('exceptions', false); $this->mgClient->setUserAgent(SDK_USER_AGENT . '/' . SDK_VERSION); } @@ -78,16 +79,16 @@ class HttpBroker{ $result->http_response_body->$key = $value; } } - elseif($httpStatusCode == 400){ + elseif($httpResponeCode == 400){ throw new MissingRequiredMIMEParameters(EXCEPTION_MISSING_REQUIRED_MIME_PARAMETERS); } - elseif($httpStatusCode == 401){ + elseif($httpResponeCode == 401){ throw new InvalidCredentials(EXCEPTION_INVALID_CREDENTIALS); } - elseif($httpStatusCode == 401){ + elseif($httpResponeCode == 401){ throw new GenericHTTPError(EXCEPTION_INVALID_CREDENTIALS); } - elseif($httpStatusCode == 404){ + elseif($httpResponeCode == 404){ throw new MissingEndpoint(EXCEPTION_MISSING_ENDPOINT); } else{