# frozen_string_literal: true module Services 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 return false if @user_account.nil? && wrong_user_password? { token: service.call(DateTime.now + 30.minutes), refresh: service.call(DateTime.now + 3.days) } end private def wrong_user_password? @user_account.password != @password end def service @service ||= Services::TokenGenerationService.new(service_params) end def service_params { email: @email, role: @user_account.role} end end end end