Class: DeviseTokenAuth::SessionsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/devise_token_auth/sessions_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#resource_data, #resource_errors

Instance Method Details

#createObject



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
# File 'app/controllers/devise_token_auth/sessions_controller.rb', line 11

def create
  # Check
  field = (resource_params.keys.map(&:to_sym) & resource_class.authentication_keys).first

  @resource = nil
  if field
    q_value = resource_params[field]

    if resource_class.case_insensitive_keys.include?(field)
      q_value.downcase!
    end

    q = "#{field.to_s} = ? AND provider='email'"

    if ActiveRecord::Base.connection.adapter_name.downcase.starts_with? 'mysql'
      q = "BINARY " + q
    end

    @resource = resource_class.where(q, q_value).first
  end

  if @resource and valid_params?(field, q_value) and @resource.valid_password?(resource_params[:password]) and (!@resource.respond_to?(:active_for_authentication?) or @resource.active_for_authentication?)
    # create client id
    @client_id = SecureRandom.urlsafe_base64(nil, false)
    @token     = SecureRandom.urlsafe_base64(nil, false)

    @resource.tokens[@client_id] = {
      token: BCrypt::Password.create(@token),
      expiry: (Time.now + DeviseTokenAuth.token_lifespan).to_i
    }
    @resource.save

    (:user, @resource, store: false, bypass: false)

    yield @resource if block_given?

    render_create_success
  elsif @resource and not (!@resource.respond_to?(:active_for_authentication?) or @resource.active_for_authentication?)
    render_create_error_not_confirmed
  else
    render_create_error_bad_credentials
  end
end

#destroyObject



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'app/controllers/devise_token_auth/sessions_controller.rb', line 55

def destroy
  # remove auth instance variables so that after_action does not run
  user = remove_instance_variable(:@resource) if @resource
  client_id = remove_instance_variable(:@client_id) if @client_id
  remove_instance_variable(:@token) if @token

  if user and client_id and user.tokens[client_id]
    user.tokens.delete(client_id)
    user.save!

    yield user if block_given?

    render_destroy_success
  else
    render_destroy_error
  end
end

#newObject



7
8
9
# File 'app/controllers/devise_token_auth/sessions_controller.rb', line 7

def new
  render_new_error
end