Class: V0::EVSSClaimsAsyncController

Inherits:
ApplicationController show all
Includes:
IgnoreNotFound
Defined in:
app/controllers/v0/evss_claims_async_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 Method Summary collapse

Methods included from IgnoreNotFound

#skip_sentry_exception_types

Methods inherited from ApplicationController

#clear_saved_form, #cors_preflight, #routing_error

Methods included from Traceable

#set_trace_tags

Methods included from SentryLogging

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

Methods included from SignIn::Authentication

#authenticate, #authenticate_service_account, #load_user

Methods included from Headers

#block_unknown_hosts, #set_app_info_headers

Methods included from AuthenticationAndSSOConcerns

#authenticate, #clear_session, #extend_session!, #load_user, #log_sso_info, #render_unauthorized, #reset_session, #set_api_cookie!, #set_session_expiration_header, #sso_logging_info, #validate_inbound_login_params, #validate_session

Instance Method Details

#indexObject



10
11
12
13
14
15
16
# File 'app/controllers/v0/evss_claims_async_controller.rb', line 10

def index
  claims, synchronized = service.all
  render json: claims,
         serializer: ActiveModel::Serializer::CollectionSerializer,
         each_serializer: EVSSClaimListSerializer,
         meta: { sync_status: synchronized }
end

#showObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/controllers/v0/evss_claims_async_controller.rb', line 18

def show
  claim = EVSSClaim.for_user(current_user).find_by(evss_id: params[:id])

  # No record in DB of a claim with that ID being associated with current_user
  if claim.blank?
    # Pull the list of claims so that the DB (potentially) gets populated
    EVSSClaimService.new(current_user).all

    # Check to see if a record is there now
    claim = EVSSClaim.for_user(current_user).find_by(evss_id: params[:id])

    # Still no record in the DB, safe to assume that the claim doesn't belong to
    # current_user
    unless claim
      Raven.tags_context(team: 'benefits-memorial-1') # tag sentry logs with team name
      raise Common::Exceptions::RecordNotFound, params[:id]
    end
  end

  claim, synchronized = service.update_from_remote(claim)
  render json: claim, serializer: EVSSClaimDetailSerializer,
         meta: { sync_status: synchronized }
end