demarches-normaliennes/app/models/concerns/rna_champ_association_fetchable_concern.rb

33 lines
991 B
Ruby

# frozen_string_literal: true
module RNAChampAssociationFetchableConcern
extend ActiveSupport::Concern
attr_reader :association_fetch_error_key
def fetch_association!(rna)
self.value = rna
return clear_association!(:empty) if rna.empty?
return clear_association!(:invalid) unless valid_champ_value?
return clear_association!(:not_found) if (data = APIEntreprise::RNAAdapter.new(rna, procedure_id).to_params).blank?
update!(data:, value_json: APIGeoService.parse_rna_address(data['adresse']))
rescue APIEntreprise::API::Error, APIEntrepriseToken::TokenError => error
if APIEntrepriseService.service_unavailable_error?(error, target: :djepva)
clear_association!(:network_error)
else
Sentry.capture_exception(error, extra: { dossier_id:, rna: })
clear_association!(nil)
end
end
private
def clear_association!(error)
@association_fetch_error_key = error
self.data = nil
save(validate: false)
false
end
end