From 91a11ca69d372b8b93b4b56ff716d8578a86500e Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 23 Feb 2023 18:51:51 -0600 Subject: Arregla la autenticación MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/api/authentications_controller.rb | 8 ++++---- app/controllers/services/token_generation_service.rb | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'app') diff --git a/app/controllers/api/authentications_controller.rb b/app/controllers/api/authentications_controller.rb index f2fb993..85ef3d4 100644 --- a/app/controllers/api/authentications_controller.rb +++ b/app/controllers/api/authentications_controller.rb @@ -6,12 +6,12 @@ module Api AUTHENTICATION_ERROR = 'Credenciales incorrectas' def create - @logic = logic + @logic = logic.new(permitted_params) @token = @logic.call - render json: @token && return if @token + render json: @token, status: :ok and return if @token - render json: { message: AUTHENTICATION_ERROR}, status: :unauthorized + render json: { message: AUTHENTICATION_ERROR }, status: :unauthorized end def destroy; end @@ -21,7 +21,7 @@ module Api private def permitted_params - params.require(:user_account).permit(:email, :password) + params.require(:credentials).permit(:email, :password) end def service diff --git a/app/controllers/services/token_generation_service.rb b/app/controllers/services/token_generation_service.rb index 2df2ea6..b1bc10a 100644 --- a/app/controllers/services/token_generation_service.rb +++ b/app/controllers/services/token_generation_service.rb @@ -8,6 +8,10 @@ module Services @role = params[:role] end + def call(expiration) + JWT.encode(payload.merge({ exp: expiration.to_i }), ENV['HMAC_SECRET_KEY'], 'HS512') + end + private def payload -- cgit v1.2.3