demarches-normaliennes/app/lib/api_entreprise/adapter.rb
2020-12-04 17:07:30 +01:00

32 lines
533 B
Ruby

class ApiEntreprise::Adapter
UNAVAILABLE = 'Donnée indisponible'
def initialize(siret, procedure_id)
@siret = siret
@procedure_id = 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