diff options
author | HombreLaser <sebastian-440@live.com> | 2023-02-26 20:20:02 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-02-26 20:20:02 -0600 |
commit | 4a1faf270ae328a1a28d9f8f54d9a96ed41a1542 (patch) | |
tree | cad4a32a4b1c72fa6bfffeb77fc6fc0fdeba22c8 /app/controllers/api | |
parent | c86a5c9e05b183f10a63fb693c8af1d1d5a52e97 (diff) |
Añade métodos de controladores faltantes
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/authentications_controller.rb | 13 | ||||
-rw-r--r-- | app/controllers/api/refresh_tokens_controller.rb | 22 |
2 files changed, 27 insertions, 8 deletions
diff --git a/app/controllers/api/authentications_controller.rb b/app/controllers/api/authentications_controller.rb index 0ab2cb7..3eb52c7 100644 --- a/app/controllers/api/authentications_controller.rb +++ b/app/controllers/api/authentications_controller.rb @@ -2,7 +2,7 @@ module Api # The controller that handles authentications. - class AuthenticationsController < ApplicationController + class AuthenticationsController < ApplicationController def create @token = logic(permitted_params).call @@ -11,18 +11,15 @@ module Api render json: { error_message: 'Credenciales incorrectas' }, status: :unauthorized end - def destroy; end - - def refresh; end + def destroy + current_user_account.session_key = nil + current_user_account.save + end private def permitted_params params.require(:credentials).permit(:email, :password) end - - def service - @service = Services::AuthenticationService.new(permitted_params) - end end end diff --git a/app/controllers/api/refresh_tokens_controller.rb b/app/controllers/api/refresh_tokens_controller.rb new file mode 100644 index 0000000..3b0843e --- /dev/null +++ b/app/controllers/api/refresh_tokens_controller.rb @@ -0,0 +1,22 @@ +# 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 = { token: service.call(DateTime.current + 30), refresh: service.call(authentication_token[0]['exp']) } + + render json: @token, status: :ok + end + + def service_params + { email: @current_user_account.email, role: @current_user_account.role, + session_key: @current_user_account.session_key } + end + + def service + @service ||= Services::TokenGenerationService.new(service_params) + end + end +end |