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

28 lines
758 B
Ruby
Raw Normal View History

module RNAChampAssociationFetchableConcern
extend ActiveSupport::Concern
2023-01-14 11:53:55 +01:00
attr_reader :association_fetch_error_key
def fetch_association!(rna)
self.value = rna
2023-01-14 11:53:55 +01:00
return clear_association!(:empty) if rna.empty?
return clear_association!(:invalid) unless valid?(:champs_public_value)
2023-01-14 11:53:55 +01:00
return clear_association!(:not_found) if (data = APIEntreprise::RNAAdapter.new(rna, procedure_id).to_params).blank?
update!(data: data)
rescue APIEntreprise::API::Error => error
error_key = :network_error if error.try(:network_error?) && !APIEntrepriseService.api_up?
clear_association!(error_key)
end
private
def clear_association!(error)
@association_fetch_error_key = error
self.data = nil
save!
2023-01-14 11:53:55 +01:00
false
end
end