blob: e3af94d5029a05d403f5f4351b0621c562f46181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# frozen_string_literal: true
module Api
class AuthenticationsController
# The logic for the create method of AuthenticationsController.
class CreateLogic
def initialize(params)
@email = params[:email]
@password = params[:password]
@user_account = UserAccount.find_by(email: @email)
end
def call
jwt = { token: service.call(DateTime.now + 30.minutes), refresh: service.call(DateTime.now + 3.days) }
return jwt if @user_account&.authenticate(@password)
end
private
def service
@service ||= Services::TokenGenerationService.new(service_params)
end
def service_params
{ email: @email, role: @user_account.role }
end
end
end
end
|