summaryrefslogtreecommitdiff
path: root/app/services/users/validate_push_otp_service.rb
blob: 6a914cda28c076dd8f8126bc393dda5c1669e818 (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
# frozen_string_literal: true

module Users
  class ValidatePushOtpService < BaseService
    include ::Gitlab::Auth::Otp::Fortinet

    def initialize(current_user)
      @current_user = current_user
      @strategy = if forti_authenticator_enabled?(current_user)
                    ::Gitlab::Auth::Otp::Strategies::FortiAuthenticator::PushOtp.new(current_user)
                  end
    end

    def execute
      strategy.validate
    rescue StandardError => ex
      Gitlab::ErrorTracking.log_exception(ex)
      error(ex.message)
    end

    private

    attr_reader :strategy
  end
end