Skip to content

Commit 9372727

Browse files
committed
fixes #1252 python asyncio: await refresh_api_key_hook, replace usage of urllib3, remove urllib3
1 parent 6e82ee2 commit 9372727

File tree

4 files changed

+37
-10
lines changed

4 files changed

+37
-10
lines changed

src/main/resources/handlebars/python/api_client.mustache

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class ApiClient(object):
133133
collection_formats)
134134

135135
# auth setting
136-
self.update_params_for_auth(header_params, query_params, auth_settings)
136+
{{#asyncio}}await {{/asyncio}}self.update_params_for_auth(header_params, query_params, auth_settings)
137137

138138
# body
139139
if body:
@@ -488,7 +488,7 @@ class ApiClient(object):
488488
else:
489489
return content_types[0]
490490

491-
def update_params_for_auth(self, headers, querys, auth_settings):
491+
{{#asyncio}}async {{/asyncio}}def update_params_for_auth(self, headers, querys, auth_settings):
492492
"""Updates header and query params based on authentication setting.
493493

494494
:param headers: Header parameters dict to be updated.
@@ -499,7 +499,7 @@ class ApiClient(object):
499499
return
500500

501501
for auth in auth_settings:
502-
auth_setting = self.configuration.auth_settings().get(auth)
502+
auth_setting = {{#asyncio}}(await {{/asyncio}}self.configuration.auth_settings(){{#asyncio}}){{/asyncio}}.get(auth)
503503
if auth_setting:
504504
if not auth_setting['value']:
505505
continue

src/main/resources/handlebars/python/configuration.mustache

+25-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@
44

55
from __future__ import absolute_import
66

7+
{{#asyncio}}
8+
import aiohttp
9+
{{/asyncio}}
710
import copy
811
import logging
12+
{{^asyncio}}{{^tornado}}
913
import multiprocessing
14+
{{/asyncio}}{{/tornado}}
1015
import sys
16+
{{^asyncio}}
1117
import urllib3
18+
{{/asyncio}}
19+
1220

1321
import six
1422
from six.moves import http_client as httplib
@@ -60,7 +68,12 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
6068
# Logging Settings
6169
self.logger = {}
6270
self.logger["package_logger"] = logging.getLogger("{{packageName}}")
71+
{{#asyncio}}
72+
self.logger["aiohttp"] = logging.getLogger("aiohttp.client")
73+
{{/asyncio}}
74+
{{^asyncio}}
6375
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
76+
{{/asyncio}}
6477
# Log format
6578
self.logger_format = '%(asctime)s %(levelname)s %(message)s'
6679
# Log stream handler
@@ -84,14 +97,14 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
8497
self.key_file = None
8598
# Set this to True/False to enable/disable SSL hostname verification.
8699
self.assert_hostname = None
87-
100+
{{^asyncio}}{{^tornado}}
88101
# urllib3 connection pool's maximum number of connections saved
89102
# per pool. urllib3 uses 1 connection as default value, but this is
90103
# not the best value when you are making a lot of possibly parallel
91104
# requests to the same host, which is often the case here.
92105
# cpu_count * 5 is used as default value to increase performance.
93106
self.connection_pool_maxsize = multiprocessing.cpu_count() * 5
94-
107+
{{/tornado}}{{/asyncio}}
95108
# Proxy URL
96109
self.proxy = None
97110
# Safe chars for path_param
@@ -193,14 +206,14 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
193206
self.__logger_format = value
194207
self.logger_formatter = logging.Formatter(self.__logger_format)
195208

196-
def get_api_key_with_prefix(self, identifier):
209+
{{#asyncio}}async {{/asyncio}}def get_api_key_with_prefix(self, identifier):
197210
"""Gets API key (with prefix if set).
198211

199212
:param identifier: The identifier of apiKey.
200213
:return: The token for api key authentication.
201214
"""
202215
if self.refresh_api_key_hook:
203-
self.refresh_api_key_hook(self)
216+
{{#asyncio}}await {{/asyncio}}self.refresh_api_key_hook(self)
204217

205218
key = self.api_key.get(identifier)
206219
if key:
@@ -217,12 +230,18 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
217230
"""
218231
token = ""
219232
if self.username or self.password:
233+
{{#asyncio}}
234+
token = aiohttp.BasicAuth(
235+
self.username, self.password).encode()
236+
{{/asyncio}}
237+
{{^asyncio}}
220238
token = urllib3.util.make_headers(
221239
basic_auth=self.username + ':' + self.password
222240
).get('authorization')
241+
{{/asyncio}}
223242
return token
224243

225-
def auth_settings(self):
244+
{{#asyncio}}async {{/asyncio}}def auth_settings(self):
226245
"""Gets Auth Settings dict for api client.
227246

228247
:return: The Auth Settings information dict.
@@ -235,7 +254,7 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
235254
'type': 'api_key',
236255
'in': {{#isKeyInHeader}}'header'{{/isKeyInHeader}}{{#isKeyInQuery}}'query'{{/isKeyInQuery}},
237256
'key': '{{keyParamName}}',
238-
'value': self.get_api_key_with_prefix('{{keyParamName}}')
257+
'value': {{#asyncio}}await {{/asyncio}}self.get_api_key_with_prefix('{{keyParamName}}')
239258
},
240259
{{/isApiKey}}
241260
{{#isBasic}}

src/main/resources/handlebars/python/requirements.mustache

+5
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5+
{{#asyncio}}
6+
aiohttp
7+
{{/asyncio}}
8+
{{^asyncio}}
59
urllib3 >= 1.15.1
10+
{{/asyncio}}

src/main/resources/handlebars/python/setup.mustache

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ VERSION = "{{packageVersion}}"
1616
# prerequisite: setuptools
1717
# http://pypi.python.org/pypi/setuptools
1818

19-
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
19+
REQUIRES = ["six >= 1.10", "certifi", "python-dateutil"]
2020
{{#asyncio}}
2121
REQUIRES.append("aiohttp")
2222
{{/asyncio}}
2323
{{#tornado}}
2424
REQUIRES.append("tornado")
2525
{{/tornado}}
26+
{{^asyncio}}
27+
REQUIRES.append("urllib3 >= 1.15")
28+
{{/asyncio}}
2629

2730
setup(
2831
name=NAME,

0 commit comments

Comments
 (0)