Module: Clearance::Authentication

Extended by:
ActiveSupport::Concern
Included in:
Controller
Defined in:
lib/clearance/authentication.rb

Instance Method Summary collapse

Instance Method Details

#authenticate(params) ⇒ Object



17
18
19
20
21
# File 'lib/clearance/authentication.rb', line 17

def authenticate(params)
  Clearance.configuration.user_model.authenticate(
    params[:session][:email], params[:session][:password]
  )
end

#current_userObject



23
24
25
# File 'lib/clearance/authentication.rb', line 23

def current_user
  clearance_session.current_user
end

#current_user=(user) ⇒ Object



27
28
29
30
31
# File 'lib/clearance/authentication.rb', line 27

def current_user=(user)
  warn "#{Kernel.caller.first}: [DEPRECATION] " +
    'Assigning the current_user has been deprecated. Use the sign_in method instead.'
  clearance_session. user
end

#handle_unverified_requestObject



51
52
53
54
# File 'lib/clearance/authentication.rb', line 51

def handle_unverified_request
  super
  sign_out
end

#sign_in(user, &block) ⇒ Object



33
34
35
# File 'lib/clearance/authentication.rb', line 33

def (user, &block)
  clearance_session. user, &block
end

#sign_outObject



37
38
39
# File 'lib/clearance/authentication.rb', line 37

def sign_out
  clearance_session.sign_out
end

#signed_in?Boolean

Returns:

  • (Boolean)


41
42
43
# File 'lib/clearance/authentication.rb', line 41

def signed_in?
  clearance_session.signed_in?
end

#signed_out?Boolean

Returns:

  • (Boolean)


45
46
47
# File 'lib/clearance/authentication.rb', line 45

def signed_out?
  !signed_in?
end