Class: RageController::API
- Inherits:
-
Object
- Object
- RageController::API
- Defined in:
- lib/rage/controller/api.rb
Class Method Summary collapse
-
.after_action(action_name = nil, **opts, &block) ⇒ Object
Register a new
after_actionhook. -
.around_action(action_name = nil, **opts, &block) ⇒ Object
Register a new
around_actionhook. -
.before_action(action_name = nil, **opts, &block) ⇒ Object
Register a new
before_actionhook. -
.rescue_from(*klasses, with: nil, &block) ⇒ Object
Register a global exception handler.
-
.skip_before_action(action_name, only: nil, except: nil) ⇒ Object
Prevent a
before_actionhook from running. -
.wrap_parameters(key, include: [], exclude: []) ⇒ Object
Wraps the parameters hash into a nested hash.
Instance Method Summary collapse
-
#action_name ⇒ String
Get the name of the currently executed action.
-
#append_info_to_payload(payload) ⇒ Object
Define this method to add more information to request logs.
-
#authenticate_or_request_with_http_token {|token| ... } ⇒ Object
Authenticate using an HTTP Bearer token, or otherwise render an HTTP header requesting the client to send a Bearer token.
-
#authenticate_with_http_token {|token| ... } ⇒ Object
Authenticate using an HTTP Bearer token.
-
#cookies ⇒ Rage::Cookies
Get the cookie object.
-
#head(status) ⇒ Object
Send a response with no body.
-
#headers ⇒ Hash
Set response headers.
-
#params ⇒ Hash{Symbol=>String,Array,Hash,Numeric,NilClass,TrueClass,FalseClass}
Get the request data.
-
#render(json: nil, plain: nil, sse: nil, status: nil) ⇒ Object
Send a response to the client.
-
#request ⇒ Rage::Request
Get the request object.
-
#request_http_token_authentication ⇒ Object
Render an HTTP header requesting the client to send a Bearer token for authentication.
-
#reset_session ⇒ Object
Reset the entire session.
-
#response ⇒ Rage::Response
Get the response object.
-
#session ⇒ Rage::Session
Get the session object.
-
#stale?(etag: nil, last_modified: nil) ⇒ Boolean
Checks if the request is stale to decide if the action has to be rendered or the cached version is still valid.
Class Method Details
.after_action(action_name = nil, **opts, &block) ⇒ Object
Register a new after_action hook. Calls with the same action_name will overwrite the previous ones.
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/rage/controller/api.rb', line 316 def after_action(action_name = nil, **opts, &block) action = prepare_action_params(action_name, **opts, &block) if @__after_actions && @__after_actions.frozen? @__after_actions = @__after_actions.dup end if @__after_actions.nil? @__after_actions = [action] elsif (i = @__after_actions.find_index { |a| a[:name] == action_name }) @__after_actions[i] = action else @__after_actions << action end end |
.around_action(action_name = nil, **opts, &block) ⇒ Object
Register a new around_action hook. Calls with the same action_name will overwrite the previous ones.
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'lib/rage/controller/api.rb', line 289 def around_action(action_name = nil, **opts, &block) action = prepare_action_params(action_name, **opts, &block) action.merge!(around: true, wrapper: Rage::Internal.define_maybe_yield(self, action[:name])) if @__before_actions && @__before_actions.frozen? @__before_actions = @__before_actions.dup end if @__before_actions.nil? @__before_actions = [action] elsif (i = @__before_actions.find_index { |a| a[:name] == action_name }) @__before_actions[i] = action else @__before_actions << action end end |
.before_action(action_name = nil, **opts, &block) ⇒ Object
The block form doesn't receive an argument and is executed on the controller level as if it was a regular method.
Register a new before_action hook. Calls with the same action_name will overwrite the previous ones.
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'lib/rage/controller/api.rb', line 257 def before_action(action_name = nil, **opts, &block) action = prepare_action_params(action_name, **opts, &block) if @__before_actions && @__before_actions.frozen? @__before_actions = @__before_actions.dup end if @__before_actions.nil? @__before_actions = [action] elsif (i = @__before_actions.find_index { |a| a[:name] == action_name }) @__before_actions[i] = action else @__before_actions << action end end |
.rescue_from(*klasses, with: nil, &block) ⇒ Object
Register a global exception handler. Handlers are inherited and matched from bottom to top.
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/rage/controller/api.rb', line 214 def rescue_from(*klasses, with: nil, &block) unless with if block_given? with = Rage::Internal.define_dynamic_method(self, block) else raise ArgumentError, "No handler provided. Pass the `with` keyword argument or provide a block." end end if @__rescue_handlers.nil? @__rescue_handlers = [] elsif @__rescue_handlers.frozen? @__rescue_handlers = @__rescue_handlers.dup end @__rescue_handlers.unshift([klasses, with]) end |
.skip_before_action(action_name, only: nil, except: nil) ⇒ Object
Prevent a before_action hook from running.
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/rage/controller/api.rb', line 339 def skip_before_action(action_name, only: nil, except: nil) i = @__before_actions&.find_index { |a| a[:name] == action_name && !a[:around] } raise ArgumentError, "The following action was specified to be skipped but couldn't be found: #{self}##{action_name}" unless i @__before_actions = @__before_actions.dup if @__before_actions.frozen? if only.nil? && except.nil? @__before_actions.delete_at(i) return end action = @__before_actions[i].dup if only action[:except] ? action[:except] |= Array(only) : action[:except] = Array(only) end if except action[:only] = Array(except) end @__before_actions[i] = action end |
.wrap_parameters(key, include: [], exclude: []) ⇒ Object
Wraps the parameters hash into a nested hash. This will allow clients to submit requests without having to specify any root elements.
Params get wrapped only if the Content-Type header is present and the params hash doesn't contain a param with the same name as the wrapper key.
371 372 373 374 |
# File 'lib/rage/controller/api.rb', line 371 def wrap_parameters(key, include: [], exclude: []) @__wrap_parameters_key = key @__wrap_parameters_options = { include:, exclude: } end |
Instance Method Details
#action_name ⇒ String
Get the name of the currently executed action.
657 658 659 |
# File 'lib/rage/controller/api.rb', line 657 def action_name @__params[:action] end |
#append_info_to_payload(payload) ⇒ Object
Define this method to add more information to request logs.
|
|
# File 'lib/rage/controller/api.rb', line 667
|
#authenticate_or_request_with_http_token {|token| ... } ⇒ Object
Authenticate using an HTTP Bearer token, or otherwise render an HTTP header requesting the client to send a Bearer token. For the authentication to be considered successful, the block should return a non-nil value.
593 594 595 |
# File 'lib/rage/controller/api.rb', line 593 def authenticate_or_request_with_http_token authenticate_with_http_token { |token| yield(token) } || request_http_token_authentication end |
#authenticate_with_http_token {|token| ... } ⇒ Object
Authenticate using an HTTP Bearer token. Returns the value of the block if a token is found. Returns nil if no token is found.
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
# File 'lib/rage/controller/api.rb', line 558 def authenticate_with_http_token auth_header = @__env["HTTP_AUTHORIZATION"] payload = if auth_header&.start_with?("Bearer") auth_header[7..] elsif auth_header&.start_with?("Token") auth_header[6..] end return unless payload token = if payload.start_with?("token=") payload[6..] else payload end token.delete_prefix!('"') token.delete_suffix!('"') yield token end |
#cookies ⇒ Rage::Cookies
Get the cookie object. See Rage::Cookies.
456 457 458 |
# File 'lib/rage/controller/api.rb', line 456 def @cookies ||= Rage::Cookies.new(@__env, @__headers) end |
#head(status) ⇒ Object
Send a response with no body.
532 533 534 535 536 537 538 539 540 |
# File 'lib/rage/controller/api.rb', line 532 def head(status) @__rendered = true @__status = if status.is_a?(Symbol) ::Rack::Utils::SYMBOL_TO_STATUS_CODE[status] else status end end |
#headers ⇒ Hash
Set response headers.
547 548 549 |
# File 'lib/rage/controller/api.rb', line 547 def headers @__headers end |
#params ⇒ Hash{Symbol=>String,Array,Hash,Numeric,NilClass,TrueClass,FalseClass}
Get the request data. The keys inside the hash are symbols, so params.keys returns an array of Symbol.
You can also load Strong Parameters to have Rage automatically wrap params in an instance of ActionController::Parameters.
At the same time, if you are not implementing complex filtering rules or working with nested structures, consider using native Hash#fetch and Hash#slice instead.
For multipart file uploads, the uploaded files are represented by an instance of Rage::UploadedFile.
620 621 622 |
# File 'lib/rage/controller/api.rb', line 620 def params @__params end |
#render(json: nil, plain: nil, sse: nil, status: nil) ⇒ Object
render doesn't terminate execution of the action, so if you want to exit an action after rendering, you need to do something like render(...) and return.
Send a response to the client. Keywords corresponding to custom renderers (see Rage::Configuration#renderer) will be delegated automatically.
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
# File 'lib/rage/controller/api.rb', line 486 def render(json: nil, plain: nil, sse: nil, status: nil) raise "Render was called multiple times in this action." if @__rendered @__rendered = true if json || plain @__body << if json json.is_a?(String) ? json : json.to_json else ct = @__headers["content-type"] @__headers["content-type"] = "text/plain; charset=utf-8" if ct.nil? || ct == DEFAULT_CONTENT_TYPE plain.to_s end @__status = 200 end if status @__status = if status.is_a?(Symbol) ::Rack::Utils::SYMBOL_TO_STATUS_CODE[status] else status end end if sse raise ArgumentError, "Cannot render both a standard body and an SSE stream." unless @__body.empty? if status return if @__status == 204 raise ArgumentError, "SSE responses only support 200 and 204 statuses." if @__status != 200 end @__env["rack.upgrade?"] = :sse @__env["rack.upgrade"] = Rage::SSE::Application.new(sse) @__status = 200 @__headers["content-type"] = "text/event-stream; charset=utf-8" end end |
#request ⇒ Rage::Request
Get the request object. See Rage::Request.
444 445 446 |
# File 'lib/rage/controller/api.rb', line 444 def request @request ||= Rage::Request.new(@__env, controller: self) end |
#request_http_token_authentication ⇒ Object
Render an HTTP header requesting the client to send a Bearer token for authentication.
598 599 600 601 |
# File 'lib/rage/controller/api.rb', line 598 def request_http_token_authentication headers["www-authenticate"] = "Token" render plain: "HTTP Token: Access denied.", status: 401 end |
#reset_session ⇒ Object
Reset the entire session. See Rage::Session.
676 677 678 |
# File 'lib/rage/controller/api.rb', line 676 def reset_session session.clear end |
#response ⇒ Rage::Response
Get the response object. See Rage::Response.
450 451 452 |
# File 'lib/rage/controller/api.rb', line 450 def response @response ||= Rage::Response.new(self) end |
#session ⇒ Rage::Session
Get the session object. See Rage::Session.
462 463 464 |
# File 'lib/rage/controller/api.rb', line 462 def session @session ||= Rage::Session.new() end |
#stale?(etag: nil, last_modified: nil) ⇒ Boolean
stale? will set ETag and Last-Modified response headers made of passed arguments in the method. Value for ETag will be additionally hashified using SHA1 algorithm, whereas value for Last-Modified will be converted to the string which represents time as RFC 1123 date of HTTP-date defined by RFC 2616.
stale? will set the response status to 304 if the request is fresh. This side effect will cause a double render error, if render gets called after this method. Make sure to implement a proper conditional in your action to prevent this from happening:
if stale?(etag: "123")
render json: { hello: "world" }
end
Checks if the request is stale to decide if the action has to be rendered or the cached version is still valid. Use this method to implement conditional GET.
645 646 647 648 649 650 651 652 653 |
# File 'lib/rage/controller/api.rb', line 645 def stale?(etag: nil, last_modified: nil) response.etag = etag response.last_modified = last_modified still_fresh = request.fresh?(etag: response.etag, last_modified: last_modified) head :not_modified if still_fresh !still_fresh end |