pass API manager token when downloading CERFA documents (#35326)

This commit is contained in:
Frédéric Péters 2019-09-11 08:12:04 +02:00
parent 9823da3fc9
commit 6f91879377
1 changed files with 3 additions and 3 deletions

View File

@ -60,9 +60,9 @@ class GLCartaDSCS(AbstractCartaDSCS):
# served directly and have to be copied to a different server :/
return super(AbstractCartaDSCS, self).soap_client(**kwargs)
def fix_pdf_url(self, url):
# fixup URL for recette environment, another patch will be required for production...
return url.replace('http://ads-rec.grandlyon.fr/', 'http://api-rec.grandlyon.com/ads-rec-portail/')
def get_cerfa_pdf(self, url):
url = url.replace('http://ads-rec.grandlyon.fr/', 'https://api-rec.grandlyon.com/ads-rec/')
return self.requests.get(url, auth=HttpBearerAuth(self.get_api_manager_token()))
def get_api_manager_token(self, renew=False):
cache_key = 'cartads-%s-token' % self.id