Skip to content

Instantly share code, notes, and snippets.

@ashmoran
Created September 22, 2014 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashmoran/c99fc0795669171e969f to your computer and use it in GitHub Desktop.
Save ashmoran/c99fc0795669171e969f to your computer and use it in GitHub Desktop.
One of the Webmachine resources in the (unfinished, unpublished) Harvest code that handles signup. service.sign_up_fisherman() is async and returns a Result object, result.on() blocks until an appropriate response message is heard.
require 'json'
module Harvest
module HTTP
module Server
module Resources
class FishermanRegistrarServerResource < Resource
def initialize
@exception_error_code = nil
end
def trace?
true
end
def content_types_provided
[
['application/hal+json', :to_json],
['application/json', :to_json]
]
end
def allowed_methods
%W[ GET POST ]
end
def malformed_request?
# This is probably proof we need to split the GET and POST requests
# into separate resources
return false if request.get?
# Send to_s because we might have a LazyRequestBody
JSON.parse(request.body.to_s)
false
rescue JSON::ParserError
render_json_error_response(
error: "malformed_request",
message: "Request body contained malformed JSON"
)
true
end
# Note: we could consider using post_is_create? and creating a
# fisherman resource here, but I'll leave that for the future
def process_post
service.sign_up_fisherman(
JSON.parse(request.body.to_s).symbolize_keys
).on(
fishing_application_succeeded: ->(result) {
response.headers['Content-Type'] = "application/json"
response.body = result.to_json
true
},
fishing_application_conflicts: ->(result) {
render_json_error_response(
error: "command_failed_validation", message: result.fetch(:message)
)
409
},
fishing_application_invalid: ->(result) {
render_json_error_response(
error: "command_failed_validation", message: result.fetch(:message)
)
422
}
)
end
def to_json
Representations::FishermanRegistrar.new(
base_uri,
fisherman_read_model: harvest_app.read_models[:registered_fishermen],
fishing_ground_read_model: harvest_app.read_models[:fishing_grounds_available_to_join],
fishing_ground_businesses_read_model: harvest_app.read_models[:fishing_ground_businesses],
).to_json
end
def handle_exception(error)
case error
when Realm::Messaging::MessagePropertyError
render_json_error_response(
error: "invalid_command_format", message: error.message
)
# Unprocessable Entity, not in Webmachine as this status code is from WebDAV,
# but it's gaining traction to indicate a semantic error rather than a syntactic
# error (400).
# Maybe it would make more sense to use 400 for unconstructable commands though,
# and 422 only for when domain validation fails.
@exception_error_code = 422
when Realm::Messaging::UnhandledMessageError
# Currently we can get here via either a missing command handler on the
# message bus or a missing response handler in the resource
render_json_error_response(
error: "unhandled_message",
message: %'The server has not been configured to handle "#{error.message_type_name}"'
)
else
super
end
end
# Exception handling changed in Webmachine 1.1.0 and 1.2.2 in a way that broke
# the original way of setting a custom code. I don't know what the best way is
# yet, so this will have to do for now.
def finish_request
if @exception_error_code
response.code = @exception_error_code
end
end
private
def service
harvest_app.application_services.fetch(:poseidon)
end
def render_json_error_response(error:, message:)
response.headers['Content-Type'] = "application/json"
response.body = {
"error" => error,
"message" => message
}.to_json
end
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment