Class: DeviseJwtAuth::UnlocksController

Inherits:
ApplicationController show all
Defined in:
app/controllers/devise_jwt_auth/unlocks_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#resource_data, #resource_errors

Instance Method Details

#createObject

this action is responsible for generating unlock tokens and sending emails



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'app/controllers/devise_jwt_auth/unlocks_controller.rb', line 9

def create
  return render_create_error_missing_email unless resource_params[:email]

  @email = get_case_insensitive_field_from_resource_params(:email)
  @resource = find_resource(:email, @email)

  if @resource
    yield @resource if block_given?

    @resource.send_unlock_instructions(
      email: @email,
      provider: 'email',
      client_config: params[:config_name]
    )

    if @resource.errors.empty?
      render_create_success
    else
      render_create_error @resource.errors
    end
  else
    render_not_found_error
  end
end

#showObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'app/controllers/devise_jwt_auth/unlocks_controller.rb', line 34

def show
  @resource = resource_class.unlock_access_by_token(params[:unlock_token])

  if @resource.persisted?
    yield @resource if block_given?

    redirect_header_options = { unlock: true }
    redirect_headers = @resource.create_named_token_pair
                         .merge(redirect_header_options)

    update_refresh_token_cookie
    redirect_url = after_unlock_path_for(@resource)
    redirect_to_link = DeviseJwtAuth::Url.generate(redirect_url, redirect_headers)

    redirect_to redirect_to_link
  else
    render_show_error
  end
end