summaryrefslogtreecommitdiff
path: root/app/controllers/api/refresh_tokens_controller.rb
blob: 5ce447d31545b056e5f4e73e6c126cd36d48de38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Api
  # The controller to generate new tokens.
  class RefreshTokensController < AuthenticatedController
    def create
      @current_user_account.update_attribute(:session_key, SecureRandom.hex(16))
      @token = service.call(decoded_token[0]['exp'])

      render json: @token, status: :ok
    end

    def service_params
      { email: @current_user_account.email, role: @current_user_account.role }
    end

    def service
      @service ||= Services::TokenGenerationService.new(service_params)
    end
  end
end