Class: Toast::SingleRequest
- Inherits:
-
Object
- Object
- Toast::SingleRequest
- Includes:
- Errors, RequestHelpers
- Defined in:
- lib/toast/single_request.rb
Instance Method Summary collapse
-
#initialize(config, base_config, auth, request) ⇒ SingleRequest
constructor
A new instance of SingleRequest.
- #respond ⇒ Object
Methods included from RequestHelpers
#allowed_methods, #attr_selected?, #base_uri, #call_allow, #call_handler, #get_config, #is_active_record?, #represent, #represent_one, #response, #split_link_header
Constructor Details
#initialize(config, base_config, auth, request) ⇒ SingleRequest
Returns a new instance of SingleRequest.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/toast/single_request.rb', line 7 def initialize config, base_config, auth, request @config = config @base_config = base_config @selected_attributes = request.query_parameters[:toast_select].try(:split,/ *, */) @uri_params = request.query_parameters @base_uri = base_uri(request) @verb = request.request_method.downcase @auth = auth @path = request.path_parameters[:toast_path]#.split('/') @request = request end |
Instance Method Details
#respond ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/toast/single_request.rb', line 19 def respond if @config.via_get.nil? # not declared response :method_not_allowed, headers: {'Allow' => allowed_methods(@config)}, msg: "GET not configured" else begin model = call_handler(@config.via_get.handler, @uri_params) call_allow(@config.via_get., @auth, model, @uri_params) case model when @base_config.model_class response :ok, headers: {"Content-Type" => @base_config.media_type}, body: represent(model, @base_config) when nil response :not_found, msg: "resource not found at /#{@path}" else # wrong class/model_class response :internal_server_error, msg: "single method returned `#{model.class}', expected `#{@base_config.model_class}'" end rescue ActiveRecord::RecordNotFound => error response :not_found, msg: error. rescue AllowError => error return response :internal_server_error, msg: "exception raised in allow block: `#{error.orig_error.}' in #{error.source_location}" rescue BadRequest => error response :bad_request, msg: "`#{error.}' in: #{error.source_location}", headers: {'X-Toast-Error' => error.code} rescue HandlerError => error return response :internal_server_error, msg: "exception raised in handler: `#{error.orig_error.}' in #{error.source_location}" rescue NotAllowed => error return response :unauthorized, msg: "not authorized by allow block in: #{error.source_location}" rescue => error return response :internal_server_error, msg: "exception raised: #{error} \n#{error.backtrace[0..5].join("\n")}" end end end |