Class: V0::PPIUController

Inherits:
ApplicationController show all
Defined in:
app/controllers/v0/ppiu_controller.rb

Constant Summary

Constants inherited from ApplicationController

ApplicationController::VERSION_STATUS

Constants included from SignIn::Authentication

SignIn::Authentication::BEARER_PATTERN

Constants included from ExceptionHandling

ExceptionHandling::SKIP_SENTRY_EXCEPTION_TYPES

Instance Attribute Summary

Attributes inherited from ApplicationController

#current_user

Instance Method Summary collapse

Methods inherited from ApplicationController

#clear_saved_form, #cors_preflight, #pagination_params, #render_job_id, #routing_error, #set_csrf_header

Methods included from Traceable

#set_trace_tags

Methods included from SentryControllerLogging

#set_tags_and_extra_context, #tags_context, #user_context

Methods included from SentryLogging

#log_exception_to_sentry, #log_message_to_sentry, #non_nil_hash?, #normalize_level, #rails_logger, #set_sentry_metadata

Methods included from Instrumentation

#append_info_to_payload

Methods included from SignIn::Authentication

#access_token, #access_token_authenticate, #authenticate, #authenticate_access_token, #bearer_token, #cookie_access_token, #handle_authenticate_error, #load_user, #load_user_object, #scrub_bearer_token, #validate_request_ip

Methods included from Headers

#set_app_info_headers

Methods included from ExceptionHandling

#render_errors, #report_mapped_exception, #report_original_exception, #skip_sentry_exception?, #skip_sentry_exception_types

Methods included from AuthenticationAndSSOConcerns

#authenticate, #clear_session, #extend_session!, #load_user, #log_sso_info, #render_unauthorized, #reset_session, #set_api_cookie!, #set_current_user, #set_session_expiration_header, #set_session_object, #sign_in_service_exp_time, #sign_in_service_session, #sso_cookie_content, #sso_logging_info, #validate_inbound_login_params, #validate_session

Methods included from SignIn::AudienceValidator

#authenticate, #validate_audience!

Instance Method Details

#controller_enabled?Boolean

Returns:

  • (Boolean)


14
15
16
17
18
19
20
21
22
# File 'app/controllers/v0/ppiu_controller.rb', line 14

def controller_enabled?
  if Flipper.enabled?(:profile_ppiu_reject_requests, @current_user)
    message = 'EVSS PPIU endpoint is being deprecated. Please contact the ' \
              'Authenticated Experience team with any questions or use the ' \
              "'/v0/profile/direct_deposits' endpoint instead."

    raise Common::Exceptions::Forbidden, detail: message
  end
end

#indexObject



24
25
26
27
# File 'app/controllers/v0/ppiu_controller.rb', line 24

def index
  response = service.get_payment_information
  render json: PPIUSerializer.new(response)
end

#pay_infoObject (private)



51
52
53
# File 'app/controllers/v0/ppiu_controller.rb', line 51

def pay_info
  @pay_info ||= EVSS::PPIU::PaymentAccount.new(ppiu_params)
end

#ppiu_paramsObject (private)



42
43
44
45
46
47
48
49
# File 'app/controllers/v0/ppiu_controller.rb', line 42

def ppiu_params
  params.permit(
    :account_type,
    :financial_institution_name,
    :account_number,
    :financial_institution_routing_number
  )
end

#send_confirmation_emailObject (private)



62
63
64
# File 'app/controllers/v0/ppiu_controller.rb', line 62

def send_confirmation_email
  VANotifyDdEmailJob.send_to_emails(current_user.all_emails, 'comp_and_pen')
end

#serviceObject (private)



38
39
40
# File 'app/controllers/v0/ppiu_controller.rb', line 38

def service
  EVSS::PPIU::Service.new(@current_user)
end

#updateObject



29
30
31
32
33
34
# File 'app/controllers/v0/ppiu_controller.rb', line 29

def update
  response = service.update_payment_information(pay_info)
  Rails.logger.warn('PPIUController#update request completed', sso_logging_info)
  send_confirmation_email
  render json: PPIUSerializer.new(response)
end

#validate_pay_infoObject (private)



55
56
57
58
59
60
# File 'app/controllers/v0/ppiu_controller.rb', line 55

def validate_pay_info
  unless pay_info.valid?
    Sentry.set_tags(validation: 'direct_deposit')
    raise Common::Exceptions::ValidationErrors, pay_info
  end
end