A Rack compatible Controller layer for Lotus.
- Home page: http://lotusrb.org
- Mailing List: http://lotusrb.org/mailing-list
- API Doc: http://rdoc.info/gems/lotus-controller
- Bugs/Issues: https://github.com/lotus/controller/issues
- Support: http://stackoverflow.com/questions/tagged/lotus-ruby
- Chat: https://gitter.im/lotus/chat
Lotus::Controller supports Ruby (MRI) 2+
Add this line to your application's Gemfile:
gem 'lotus-controller'
And then execute:
$ bundle
Or install it yourself as:
$ gem install lotus-controller
Lotus::Controller is a micro library for web frameworks. It works beautifully with Lotus::Router, but it can be employed everywhere. It's designed to be fast and testable.
The core of this frameworks are the actions. They are the endpoint that responds to incoming HTTP requests.
class Show
include Lotus::Action
def call(params)
@article = Article.find params[:id]
end
end
The usage of Lotus::Action
follows the Lotus philosophy: include a module and implement a minimal interface.
In this case, it's only one method: #call(params)
.
Lotus is designed to not interfere with inheritance. This is important, because you can implement your own initialization strategy.
An action is an object after all, it's important that you have the full control on it. In other words, you have the freedom of instantiate, inject dependencies and test it, both with unit and integration.
In the example below, we're stating that the default repository is Article
, but during an unit test we can inject a stubbed version, and invoke #call
with the params that we want to simulate.
We're avoiding HTTP calls, we're eventually avoiding to hit the database (it depends on the stubbed repository), we're just dealing with message passing.
Imagine how fast can be a unit test like this.
class Show
include Lotus::Action
def initialize(repository = Article)
@repository = repository
end
def call(params)
@article = @repository.find params[:id]
end
end
action = Show.new(MemoryArticleRepository)
action.call({ id: 23 })
The request params are passed as an argument to the #call
method.
If routed with Lotus::Router, it extracts the relevant bits from the Rack env
(eg the requested :id
).
Otherwise everything it's passed as it is: the full Rack env
in production, and the given Hash
for unit tests.
With Lotus::Router:
class Show
include Lotus::Action
def call(params)
# ...
puts params # => { id: 23 } extracted from Rack env
end
end
Standalone:
class Show
include Lotus::Action
def call(params)
# ...
puts params # => { :"rack.version"=>[1, 2], :"rack.input"=>#<StringIO:0x007fa563463948>, ... }
end
end
Unit Testing:
class Show
include Lotus::Action
def call(params)
# ...
puts params # => { id: 23, key: 'value' } passed as it is from testing
end
end
action = Show.new
response = action.call({ id: 23, key: 'value' })
Because params represent an untrusted input, it's recommended to whitelist them.
require 'lotus/controller'
class Signup
include Lotus::Action
params do
param :first_name
param :last_name
param :email
end
def call(params)
puts params.class # => Signup::Params
puts params.class.superclass # => Lotus::Action::Params
puts params[:first_name] # => "Luca"
puts params[:admin] # => nil
end
end
The output of #call
is a serialized Rack::Response (see #finish):
class Show
include Lotus::Action
def call(params)
# ...
end
end
action = Show.new
action.call({}) # => [200, {}, [""]]
It has private accessors to explicitly set status, headers and body:
class Show
include Lotus::Action
def call(params)
self.status = 201
self.body = 'Hi!'
self.headers.merge!({ 'X-Custom' => 'OK' })
end
end
action = Show.new
action.call({}) # => [201, { "X-Custom" => "OK" }, ["Hi!"]]
We know that actions are objects and Lotus::Action respects one of the pillars of OOP: encapsulation.
Other frameworks extract instance variables (@ivar
) and make them available to the view context.
The solution of Lotus::Action is a simple and powerful DSL: expose
.
It's a thin layer on top of attr_reader
. When used, it creates a getter for the given attribute, and adds it to the exposures.
Exposures (#exposures
) is set of exposed attributes, so that the view context can have the information needed to render a page.
class Show
include Lotus::Action
expose :article
def call(params)
@article = Article.find params[:id]
end
end
action = Show.new
action.call({ id: 23 })
assert_equal 23, action.article.id
puts action.exposures # => { article: <Article:0x007f965c1d0318 @id=23> }
It offers powerful, inheritable callbacks chain which is executed before and/or after your #call
method invocation:
class Show
include Lotus::Action
before :authenticate, :set_article
def call(params)
end
private
def authenticate
# ...
end
# `params` in the method signature is optional
def set_article(params)
@article = Article.find params[:id]
end
end
Callbacks can also be expressed as anonymous lambdas:
class Show
include Lotus::Action
before { ... } # do some authentication stuff
before {|params| @article = Article.find params[:id] }
def call(params)
end
end
When an exception is raised, it automatically sets the HTTP status to 500:
class Show
include Lotus::Action
def call(params)
raise
end
end
action = Show.new
action.call({}) # => [500, {}, ["Internal Server Error"]]
You can define how a specific raised exception should be transformed in an HTTP status.
class Show
include Lotus::Action
handle_exception RecordNotFound => 404
def call(params)
@article = Article.find params[:id]
end
end
action = Show.new
action.call({id: 'unknown'}) # => [404, {}, ["Not Found"]]
Exception policies can be defined globally, before the controllers/actions are loaded.
Lotus::Controller.configure do
handle_exception RecordNotFound => 404
end
class Show
include Lotus::Action
def call(params)
@article = Article.find params[:id]
end
end
action = Show.new
action.call({id: 'unknown'}) # => [404, {}, ["Not Found"]]
This feature can be turned off globally, in a controller or in a single action.
Lotus::Controller.configure do
handle_exceptions false
end
# or
class ArticlesController
include Lotus::Controller
configure do
handle_exceptions false
end
action 'Show' do
def call(params)
@article = Article.find params[:id]
end
end
end
action = ArticlesController::Show.new
action.call({id: 'unknown'}) # => raises RecordNotFound
When #halt
is used with a valid HTTP code, it stops the execution and sets the proper status and body for the response:
class Show
include Lotus::Action
before :authenticate!
def call(params)
# ...
end
private
def authenticate!
halt 401 unless authenticated?
end
end
action = Show.new
action.call({}) # => [401, {}, ["Unauthorized"]]
It offers convenient access to cookies.
They are read as a Hash from Rack env:
require 'lotus/controller'
require 'lotus/action/cookies'
class ReadCookiesFromRackEnv
include Lotus::Action
include Lotus::Action::Cookies
def call(params)
# ...
cookies[:foo] # => 'bar'
end
end
action = ReadCookiesFromRackEnv.new
action.call({'HTTP_COOKIE' => 'foo=bar'})
They are set like a Hash:
require 'lotus/controller'
require 'lotus/action/cookies'
class SetCookies
include Lotus::Action
include Lotus::Action::Cookies
def call(params)
# ...
cookies[:foo] = 'bar'
end
end
action = SetCookies.new
action.call({}) # => [200, {'Set-Cookie' => 'foo=bar'}, '...']
They are removed by setting their value to nil
:
require 'lotus/controller'
require 'lotus/action/cookies'
class RemoveCookies
include Lotus::Action
include Lotus::Action::Cookies
def call(params)
# ...
cookies[:foo] = nil
end
end
action = SetCookies.new
action.call({}) # => [200, {'Set-Cookie' => "foo=; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 -0000"}, '...']
It has builtin support for Rack sessions:
require 'lotus/controller'
require 'lotus/action/session'
class ReadSessionFromRackEnv
include Lotus::Action
include Lotus::Action::Session
def call(params)
# ...
session[:age] # => '31'
end
end
action = ReadSessionFromRackEnv.new
action.call({ 'rack.session' => { 'age' => '31' }})
Values can be set like a Hash:
require 'lotus/controller'
require 'lotus/action/session'
class SetSession
include Lotus::Action
include Lotus::Action::Session
def call(params)
# ...
session[:age] = 31
end
end
action = SetSession.new
action.call({}) # => [200, {"Set-Cookie"=>"rack.session=..."}, "..."]
Values can be removed like a Hash:
require 'lotus/controller'
require 'lotus/action/session'
class RemoveSession
include Lotus::Action
include Lotus::Action::Session
def call(params)
# ...
session[:age] = nil
end
end
action = RemoveSession.new
action.call({}) # => [200, {"Set-Cookie"=>"rack.session=..."}, "..."] it removes that value from the session
While Lotus::Controller supports sessions natively, it's session store agnostic.
You have to specify the session store in your Rack middleware configuration (eg config.ru
).
use Rack::Session::Cookie, secret: SecureRandom.hex(64)
run Show.new
If you need to redirect the client to another resource, use #redirect_to
:
class Create
include Lotus::Action
def call(params)
# ...
redirect_to 'http://example.com/articles/23'
end
end
action = Create.new
action.call({ article: { title: 'Hello' }}) # => [302, {'Location' => '/articles/23'}, '']
You can also redirect with a custom status code:
class Create
include Lotus::Action
def call(params)
# ...
redirect_to 'http://example.com/articles/23', status: 301
end
end
action = Create.new
action.call({ article: { title: 'Hello' }}) # => [301, {'Location' => '/articles/23'}, '']
Lotus::Action automatically sets the Content-Type
header, according to the request.
class Show
include Lotus::Action
def call(params)
end
end
action = Show.new
action.call({ 'HTTP_ACCEPT' => '*/*' }) # Content-Type "application/octet-stream"
action.format # :all
action.call({ 'HTTP_ACCEPT' => 'text/html' }) # Content-Type "text/html"
action.format # :html
However, you can force this value:
class Show
include Lotus::Action
def call(params)
# ...
self.format = :json
end
end
action = Show.new
action.call({ 'HTTP_ACCEPT' => '*/*' }) # Content-Type "application/json"
action.format # :json
action.call({ 'HTTP_ACCEPT' => 'text/html' }) # Content-Type "application/json"
action.format # :json
You can restrict the accepted mime types:
class Show
include Lotus::Action
accept :html, :json
def call(params)
# ...
end
end
# When called with "\*/\*" => 200
# When called with "text/html" => 200
# When called with "application/json" => 200
# When called with "application/xml" => 406
You can check if the requested mime type is accepted by the client.
class Show
include Lotus::Action
def call(params)
# ...
# @_env['HTTP_ACCEPT'] # => 'text/html,application/xhtml+xml,application/xml;q=0.9'
accept?('text/html') # => true
accept?('application/xml') # => true
accept?('application/json') # => false
self.format # :html
# @_env['HTTP_ACCEPT'] # => '*/*'
accept?('text/html') # => true
accept?('application/xml') # => true
accept?('application/json') # => true
self.format # :html
end
end
Lotus::Controller is shipped with an extensive list of the most common mime types. Also, you can register your own:
Lotus::Controller.configure do
format custom: 'application/custom'
end
class Index
include Lotus::Action
def call(params)
end
end
action = Index.new
action.call({ 'HTTP_ACCEPT' => 'application/custom' }) # => Content-Type 'application/custom'
action.format # => :custom
class Show
include Lotus::Action
def call(params)
# ...
self.format = :custom
end
end
action = Show.new
action.call({ 'HTTP_ACCEPT' => '*/*' }) # => Content-Type 'application/custom'
action.format # => :custom
Lotus::Controller is designed to be a pure HTTP endpoint, rendering belongs to other layers of MVC. You can set the body directly (see response), or use Lotus::View.
A Controller is nothing more than a logical group for actions.
class ArticlesController
class Index
include Lotus::Action
# ...
end
class Show
include Lotus::Action
# ...
end
end
Which is a bit verbose. Instead, just do:
class ArticlesController
include Lotus::Controller
action 'Index' do
# ...
end
action 'Show' do
# ...
end
end
ArticlesController::Index.new.call({})
While Lotus::Router works great with this framework, Lotus::Controller doesn't depend from it. You, as developer, are free to choose your own routing system.
But, if you use them together, the only constraint is that an action must support arity 0 in its constructor. The following examples are valid constructors:
def initialize
end
def initialize(repository = Article)
end
def initialize(repository: Article)
end
def initialize(options = {})
end
def initialize(*args)
end
Please note that this is subject to change: we're working to remove this constraint.
Lotus::Router supports lazy loading for controllers. While this policy can be a convenient fallback, you should know that it's the slower option. Be sure of loading your controllers before you initialize the router.
Lotus::Controller is compatible with Rack. However, it doesn't mount any middleware. While a Lotus application's architecture is more web oriented, this framework is designed to build pure HTTP endpoints.
Rack middleware can be configured globally in config.ru
, but often they add an
unnecessary overhead for all those endpoints who aren't direct users of a
certain middleware. Think about a middleware to create sessions, where only
SessionsController::Create
may be involved and the rest of the application
shouldn't pay the performance ticket of calling that middleware.
An action can employ one or more Rack middleware, with .use
.
require 'lotus/controller'
class SessionsController
include Lotus::Controller
action 'Create' do
use OmniAuth
def call(params)
# ...
end
end
end
require 'lotus/controller'
class SessionsController
include Lotus::Controller
action 'Create' do
use XMiddleware.new('x', 123)
use YMiddleware.new
use ZMiddleware
def call(params)
# ...
end
end
end
Lotus::Controller can be configured with a DSL that determines its behavior. It supports a few options:
require 'lotus/controller'
Lotus::Controller.configure do
# Handle exceptions with HTTP statuses (true) or don't catch them (false)
# Argument: boolean, defaults to true
#
handle_exceptions true
# If the given exception is raised, return that HTTP status
# It can be used multiple times
# Argument: hash, empty by default
#
handle_exception ArgumentError => 404
# Configure which module to include when Lotus::Controller.action is used
# Argument: module, defaults to Lotus::Action
#
action_module MyApp::Action # module, defaults to Lotus::Action
# Register a format to mime type mapping
# Argument: hash, key: format symbol, value: mime type string, empty by default
#
format custom: 'application/custom'
# Configure the modules to be included/extended/prepended by default.
# Argument: proc, empty by default
#
modules do
include Lotus::Action::Sessions
prepend MyLibrary::Session::Store
end
end
All those global configurations can be overwritten at a finer grained level: controllers. Each controller and action has its own copy of the global configuration, so that changes are inherited from the top to the bottom, but not bubbled up in the opposite direction.
require 'lotus/controller'
Lotus::Controller.configure do
handle_exception ArgumentError => 400
end
class ArticlesController
include Lotus::Controller
configure do
handle_exceptions false
end
action 'Create' do
def call(params)
raise ArgumentError
end
end
end
class UsersController
include Lotus::Controller
action 'Create' do
def call(params)
raise ArgumentError
end
end
end
UsersController::Create.new.call({}) # => HTTP 400
ArticlesController::Create.new.call({})
# => raises ArgumentError because we set handle_exceptions to false
Lotus::Controller can be used as a singleton framework as seen in this README.
The application code includes Lotus::Controller
or Lotus::Action
directly
and the configuration is unique per Ruby process.
While this is convenient for tiny applications, it doesn't fit well for more complex scenarios, where we want micro applications to coexist together.
require 'lotus/controller'
module WebApp
Controller = Lotus::Controller.duplicate
end
module ApiApp
Controller = Lotus::Controller.duplicate(self) do
handle_exception ArgumentError => 400
end
end
The code above defines WebApp::Controller
and WebApp::Action
, to be used for
the WebApp
endpoints, while ApiApp::Controller
and ApiApp::Action
have
a different configuration.
An Action is mutable. When used without Lotus::Router, be sure to instantiate an action for each request.
# config.ru
require 'lotus/controller'
class Action
include Lotus::Action
def self.call(env)
new.call(env)
end
def call(params)
self.body = object_id.to_s
end
end
run Action
Lotus::Controller uses Semantic Versioning 2.0.0
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Copyright 2014 Luca Guidi – Released under MIT License