Module: Authorized::Authorization::Controller::InstanceMethods

Defined in:
lib/authorized/authorization.rb

Instance Method Summary collapse

Instance Method Details

#auth_redirections(permission_name) ⇒ Object



12
13
14
15
16
17
18
19
20
# File 'lib/authorized/authorization.rb', line 12

def auth_redirections(permission_name)
	if respond_to?(:redirections) && 
		redirections.is_a?(Hash) &&
		!redirections[permission_name].blank?
		redirections[permission_name]
	else
		HashWithIndifferentAccess.new
	end
end

#method_missing_with_authorization(symb, *args, &block) ⇒ Object



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
# File 'lib/authorized/authorization.rb', line 22

def method_missing_with_authorization(symb,*args, &block)
	method_name = symb.to_s
		
	if method_name =~ /^may_(not_)?(.+)_required$/
		full_permission_name = "#{$1}#{$2}"
		negate = !!$1		#	double bang converts to boolean
		permission_name = $2
		verb,target = permission_name.split(/_/,2)
		
		#	using target words where singular == plural won't work here
		if !target.blank? && target == target.singularize
			unless permission = current_user.try(
					"may_#{permission_name}?", 
					instance_variable_get("@#{target}") 
				)
				message = "You don't have permission to " <<
					"#{verb} this #{target}."
			end
		else
			#	current_user may be nil so must use try and NOT send
			unless permission = current_user.try("may_#{permission_name}?")
				message = "You don't have permission to " <<
					"#{permission_name.gsub(/_/,' ')}."
			end
		end

		#	exclusive or
		unless negate ^ permission
			#	if message is nil, negate will be true
			message ||= "Access denied.  May #{(negate)?'not ':''}" <<
				"#{permission_name.gsub(/_/,' ')}."
			ar = auth_redirections(full_permission_name)
			access_denied(
				(ar[:message]||message),
				(ar[:redirect_to]||"/")
			)
		end
	else
		method_missing_without_authorization(symb, *args, &block)
	end
end