blob: 6d34ab07f2fb9603633fe590e5304c337c7949e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|
# 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
<%- if options[:authlogic] -%>
def current_<%= session_singular_name %>
return @current_<%= session_singular_name %> if defined?(@current_<%= session_singular_name %>)
@current_<%= session_singular_name %> = <%= session_class_name %>.find
end
def current_<%= user_singular_name %>
return @current_<%= user_singular_name %> if defined?(@current_<%= user_singular_name %>)
@current_<%= user_singular_name %> = current_<%= session_singular_name %> && current_<%= session_singular_name %>.record
end
<%- else -%>
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
<%- 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
|