18F/identity-idp

View on GitHub
app/services/proofing/state_id_result.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Proofing
  class StateIdResult
    MVA_UNAVAILABLE = 'ExceptionId: 0001'
    MVA_SYSTEM_ERROR = 'ExceptionId: 0002'
    MVA_TIMEOUT_EXCEPTION = 'ExceptionId: 0047'

    attr_reader :errors,
                :exception,
                :vendor_name,
                :transaction_id,
                :requested_attributes,
                :verified_attributes

    def initialize(
      success: nil,
      errors: {},
      exception: nil,
      vendor_name: nil,
      transaction_id: '',
      requested_attributes: {},
      verified_attributes: [],
      jurisdiction_in_maintenance_window: false
    )
      @success = success
      @errors = errors
      @exception = exception
      @vendor_name = vendor_name
      @transaction_id = transaction_id
      @requested_attributes = requested_attributes
      @verified_attributes = verified_attributes
      @jurisdiction_in_maintenance_window = jurisdiction_in_maintenance_window
    end

    def success?
      !!@success
    end

    def timed_out?
      exception.is_a?(Proofing::TimeoutError)
    end

    def mva_unavailable?
      exception&.message&.include? MVA_UNAVAILABLE
    end

    def mva_system_error?
      exception&.message&.include? MVA_SYSTEM_ERROR
    end

    def mva_timeout?
      exception&.message&.include? MVA_TIMEOUT_EXCEPTION
    end

    def mva_exception?
      mva_unavailable? || mva_system_error? || mva_timeout?
    end

    def jurisdiction_in_maintenance_window?
      !!@jurisdiction_in_maintenance_window
    end

    def to_h
      {
        success: success?,
        errors: errors,
        exception: exception,
        mva_exception: mva_exception?,
        requested_attributes: requested_attributes,
        timed_out: timed_out?,
        transaction_id: transaction_id,
        vendor_name: vendor_name,
        verified_attributes: verified_attributes,
        jurisdiction_in_maintenance_window: jurisdiction_in_maintenance_window?,
      }
    end
  end
end