Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise error if Help Scout returns validation errors #1

Merged
merged 5 commits into from
Sep 22, 2016

Conversation

dennispaagman
Copy link
Contributor

@dennispaagman dennispaagman commented Sep 22, 2016

We sometimes send borked data to Help Scout, leading to validation errors on their side. They return these nicely, unfortunately the gem currently assumes success (such an optimist) and gives a non descriptive:

"undefined method `match' for nil:NilClass"

Because of a missing location header. This adds a check on the status code of the response and raises a HelpScout::ValidationError exception with the actual error message returned from HS.

@@ -1,6 +1,8 @@
require "help_scout/version"
require "httparty"

class HelpScout::ValidationError < StandardError; end
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can also define this inside the HelpScout class, I think I've seen it be done like that more often.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah thought that was only possible inside a Module, but seems to be working 👍

Copy link
Contributor

@bittersweet bittersweet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, great improvement. There are some stylistic comments you might want to take a look at implementing.

# Extract ID of created conversation from the Location header
conversation_uri = last_response.headers["location"]
conversation_uri.match(/(\d+)\.json$/)[1]
if last_response.code == 201
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be nice for readability to extract these status codes into constants, I always forget what they are, or at least I have to think a bit for non 200/403/404 etc.

elsif last_response.code == 400
# Validation failed so return the errors
raise HelpScout::ValidationError, last_response.parsed_response["message"]
end
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about raising a catch all type thing here at the end if the response is not one of 201 or 400? I'm not super sure what kind of statuses they return at the moment though.

return conversation_uri.match(/(\d+)\.json$/)[1]
elsif last_response.code == 400
# Validation failed so return the errors
raise HelpScout::ValidationError, last_response.parsed_response["message"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we normally do raise ErrorClass.new(message) but fine either way.

@dennispaagman dennispaagman force-pushed the raise_error_on_validation_fail branch from 331fb38 to ce6c17a Compare September 22, 2016 10:18
@bittersweet
Copy link
Contributor

🚢

@dennispaagman dennispaagman merged commit cc3386f into master Sep 22, 2016
@dennispaagman dennispaagman deleted the raise_error_on_validation_fail branch September 22, 2016 11:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants