Sha256: 6842f3e35838360b2ca068c25d5d307dbbe6ad9dc5fefec3d8fae74410329d74

Contents?: true

Size: 1.55 KB

Versions: 5

Compression:

Stored size: 1.55 KB

Contents

# This module is included in your application controller which makes
# several methods available to all controllers and views. Here's a
# common example you might add to your application layout file.
#
#   <%% if logged_in? %>
#     Welcome <%%= current_<%= user_singular_name %>.username %>.
#     <%%= link_to "Edit profile", edit_current_<%= user_singular_name %>_path %> or
#     <%%= link_to "Log out", logout_path %>
#   <%% else %>
#     <%%= link_to "Sign up", signup_path %> or
#     <%%= link_to "log in", login_path %>.
#   <%% end %>
#
# You can also restrict unregistered users from accessing a controller using
# a before filter. For example.
#
#   before_filter :login_required, except: [:index, :show]
module ControllerAuthentication
  def self.included(controller)
    controller.send :helper_method, :current_<%= user_singular_name %>, :logged_in?, :redirect_to_target_or_default
  end

  def current_<%= user_singular_name %>
    @current_<%= user_singular_name %> ||= <%= user_class_name %>.find(session[:<%= user_singular_name %>_id]) if session[:<%= user_singular_name %>_id]
  end

  def logged_in?
    current_<%= user_singular_name %>
  end

  def login_required
    unless logged_in?
      store_target_location
      redirect_to login_url, alert: "You must first log in or sign up before accessing this page."
    end
  end

  def redirect_to_target_or_default(default, *args)
    redirect_to(session[:return_to] || default, *args)
    session[:return_to] = nil
  end

  private

  def store_target_location
    session[:return_to] = request.url
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
zoo-generators-0.1.5 lib/generators/zoo/authentication/templates/controller_authentication.rb
zoo-generators-0.1.4 lib/generators/zoo/authentication/templates/controller_authentication.rb
zoo-generators-0.1.3 lib/generators/zoo/authentication/templates/controller_authentication.rb
zoo-generators-0.1.2 lib/generators/zoo/authentication/templates/controller_authentication.rb
zoo-generators-0.1.1 lib/generators/zoo/authentication/templates/controller_authentication.rb