2015-08-17 15:53:35 +02:00
|
|
|
class SIADE::API
|
2015-08-10 11:05:06 +02:00
|
|
|
class << self
|
|
|
|
attr_accessor :token
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.entreprise(siren)
|
|
|
|
endpoint = "/api/v1/entreprises/#{siren}"
|
|
|
|
call(base_url + endpoint)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.etablissement(siret)
|
|
|
|
endpoint = "/api/v1/etablissements/#{siret}"
|
|
|
|
call(base_url + endpoint)
|
|
|
|
end
|
|
|
|
|
2015-11-16 11:23:29 +01:00
|
|
|
def self.exercices(siret)
|
|
|
|
endpoint = "/api/v1/etablissements/exercices/#{siret}"
|
|
|
|
call(base_url + endpoint)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.call(url, params = {})
|
|
|
|
params.merge!(token: SIADETOKEN)
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
verify_ssl_mode = OpenSSL::SSL::VERIFY_NONE
|
|
|
|
|
|
|
|
RestClient::Resource.new(
|
|
|
|
url,
|
|
|
|
verify_ssl: verify_ssl_mode
|
2015-11-16 11:23:29 +01:00
|
|
|
).get(params: params)
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.base_url
|
2015-09-01 15:33:00 +02:00
|
|
|
if Rails.env.production?
|
|
|
|
'https://apientreprise.fr'
|
|
|
|
else
|
|
|
|
'https://api-dev.apientreprise.fr'
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
end
|