demarches-normaliennes/app/lib/api_entreprise/adapter.rb
2024-08-22 09:26:48 +02:00

39 lines
694 B
Ruby

# frozen_string_literal: true
class APIEntreprise::Adapter
UNAVAILABLE = 'Donnée indisponible'
def initialize(siret, procedure_id, depreciated = false)
@siret = siret
@procedure_id = procedure_id
@depreciated = depreciated
end
def api(procedure_id = nil)
APIEntreprise::API.new(procedure_id)
end
def data_source
begin
@data_source ||= get_resource
rescue APIEntreprise::API::Error::ResourceNotFound
@data_source = nil
end
end
def to_params
if data_source.present?
process_params
else
{}
end
end
def valid_params?(params)
!params.has_value?(UNAVAILABLE)
end
def siren
@siret[0..8]
end
end