Skip to content

Commit ada22dd

Browse files
authored
Support overwriting api-data.line.me in v3 packages (#619)
The line-bot-sdk-python has transitioned to version 3, introducing automatic code generation. However, it did not continue to support overwriting at api-data.line.me, which was available up to version 2. This update reintroduces support for overwriting at api-data.line.me in version 3. Resolve #616
1 parent 9c0ce8b commit ada22dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+487
-638
lines changed

generator/src/main/resources/python-nextgen-custom-client/api.mustache

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ class {{classname}}(object):
3333
if api_client is None:
3434
api_client = ApiClient.get_default()
3535
self.api_client = api_client
36+
self.line_base_path = "{{basePath}}"
37+
3638
{{#operation}}
3739

3840
{{#asyncio}}
@@ -144,6 +146,9 @@ class {{classname}}(object):
144146
)
145147
_host = _hosts[_host_index]
146148
{{/servers.0}}
149+
{{^servers.0}}
150+
_host = self.line_base_path
151+
{{/servers.0}}
147152
_params = locals()
148153

149154
_all_params = [
@@ -301,9 +306,7 @@ class {{classname}}(object):
301306
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
302307
_preload_content=_params.get('_preload_content', True),
303308
_request_timeout=_params.get('_request_timeout'),
304-
{{#servers.0}}
305309
_host=_host,
306-
{{/servers.0}}
307310
collection_formats=_collection_formats,
308311
_request_auth=_params.get('_request_auth'))
309312
{{/operation}}

generator/src/main/resources/python-nextgen-custom-client/api_client.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class ApiClient(object):
209209
body = self.sanitize_for_serialization(body)
210210

211211
# request url
212-
if _host is None:
212+
if self.configuration.host is not None:
213213
url = self.configuration.host + resource_path
214214
else:
215215
# use server/host defined in path or operation instead

generator/src/main/resources/python-nextgen-custom-client/asyncio/api_client.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class AsyncApiClient(object):
204204
body = self.sanitize_for_serialization(body)
205205

206206
# request url
207-
if _host is None:
207+
if self.configuration.host is not None:
208208
url = self.configuration.host + resource_path
209209
else:
210210
# use server/host defined in path or operation instead

generator/src/main/resources/python-nextgen-custom-client/asyncio/async_api.mustache

+5-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ class Async{{classname}}(object):
3434
if api_client is None:
3535
api_client = AsyncApiClient.get_default()
3636
self.api_client = api_client
37+
self.line_base_path = "{{basePath}}"
38+
3739
{{#operation}}
3840

3941
@overload
@@ -141,6 +143,9 @@ class Async{{classname}}(object):
141143
)
142144
_host = _hosts[_host_index]
143145
{{/servers.0}}
146+
{{^servers.0}}
147+
_host = self.line_base_path
148+
{{/servers.0}}
144149
_params = locals()
145150

146151
_all_params = [
@@ -298,9 +303,7 @@ class Async{{classname}}(object):
298303
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
299304
_preload_content=_params.get('_preload_content', True),
300305
_request_timeout=_params.get('_request_timeout'),
301-
{{#servers.0}}
302306
_host=_host,
303-
{{/servers.0}}
304307
collection_formats=_collection_formats,
305308
_request_auth=_params.get('_request_auth'))
306309
{{/operation}}

generator/src/main/resources/python-nextgen-custom-client/configuration.mustache

+2-82
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ conf = {{{packageName}}}.Configuration(
150150
):
151151
"""Constructor
152152
"""
153-
self._base_path = "{{{basePath}}}" if host is None else host
153+
self._base_path = host
154154
"""Default Base url
155155
"""
156156
self.server_index = 0 if server_index is None and host is None else server_index
@@ -526,87 +526,7 @@ conf = {{{packageName}}}.Configuration(
526526
"SDK Package Version: {__version__}".\
527527
format(env=sys.platform, pyversion=sys.version, package_version=__version__)
528528

529-
def get_host_settings(self):
530-
"""Gets an array of host settings
531-
532-
:return: An array of host settings
533-
"""
534-
return [
535-
{{#servers}}
536-
{
537-
'url': "{{{url}}}",
538-
'description': "{{{description}}}{{^description}}No description provided{{/description}}",
539-
{{#variables}}
540-
{{#-first}}
541-
'variables': {
542-
{{/-first}}
543-
'{{{name}}}': {
544-
'description': "{{{description}}}{{^description}}No description provided{{/description}}",
545-
'default_value': "{{{defaultValue}}}",
546-
{{#enumValues}}
547-
{{#-first}}
548-
'enum_values': [
549-
{{/-first}}
550-
"{{{.}}}"{{^-last}},{{/-last}}
551-
{{#-last}}
552-
]
553-
{{/-last}}
554-
{{/enumValues}}
555-
}{{^-last}},{{/-last}}
556-
{{#-last}}
557-
}
558-
{{/-last}}
559-
{{/variables}}
560-
}{{^-last}},{{/-last}}
561-
{{/servers}}
562-
]
563-
564-
def get_host_from_settings(self, index, variables=None, servers=None):
565-
"""Gets host URL based on the index and variables
566-
:param index: array index of the host settings
567-
:param variables: hash of variable and the corresponding value
568-
:param servers: an array of host settings or None
569-
:return: URL based on host settings
570-
"""
571-
if index is None:
572-
return self._base_path
573-
574-
variables = {} if variables is None else variables
575-
servers = self.get_host_settings() if servers is None else servers
576-
577-
try:
578-
server = servers[index]
579-
except IndexError:
580-
raise ValueError(
581-
"Invalid index {0} when selecting the host settings. "
582-
"Must be less than {1}".format(index, len(servers)))
583-
584-
url = server['url']
585-
586-
# go through variables and replace placeholders
587-
for variable_name, variable in server.get('variables', {}).items():
588-
used_value = variables.get(
589-
variable_name, variable['default_value'])
590-
591-
if 'enum_values' in variable \
592-
and used_value not in variable['enum_values']:
593-
raise ValueError(
594-
"The variable `{0}` in the host URL has invalid value "
595-
"{1}. Must be {2}.".format(
596-
variable_name, variables[variable_name],
597-
variable['enum_values']))
598-
599-
url = url.replace("{" + variable_name + "}", used_value)
600-
601-
return url
602-
603529
@property
604530
def host(self):
605531
"""Return generated host."""
606-
return self.get_host_from_settings(self.server_index, variables=self.server_variables)
607-
608-
@host.setter
609-
def host(self, value):
610-
"""Fix base path."""
611-
self._base_path = value
612-
self.server_index = None
532+
return self._base_path

generator/src/main/resources/python-nextgen-custom-client/model_generic.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class {{classname}}({{#parent}}{{{.}}}{{/parent}}{{^parent}}BaseModel{{/parent}}
4747
{{#required}}
4848
{{#isNullable}}
4949
if value is None:
50-
return v
50+
return value
5151

5252
{{/isNullable}}
5353
{{/required}}

linebot/v3/audience/api/async_manage_audience.py

+24
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ def __init__(self, api_client=None):
5858
if api_client is None:
5959
api_client = AsyncApiClient.get_default()
6060
self.api_client = api_client
61+
self.line_base_path = "https://api.line.me"
62+
6163

6264
@overload
6365
async def activate_audience_group(self, audience_group_id : Annotated[StrictInt, Field(..., description="The audience ID.")], **kwargs) -> None: # noqa: E501
@@ -136,6 +138,7 @@ def activate_audience_group_with_http_info(self, audience_group_id : Annotated[S
136138
:rtype: None
137139
"""
138140

141+
_host = self.line_base_path
139142
_params = locals()
140143

141144
_all_params = [
@@ -199,6 +202,7 @@ def activate_audience_group_with_http_info(self, audience_group_id : Annotated[S
199202
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
200203
_preload_content=_params.get('_preload_content', True),
201204
_request_timeout=_params.get('_request_timeout'),
205+
_host=_host,
202206
collection_formats=_collection_formats,
203207
_request_auth=_params.get('_request_auth'))
204208

@@ -279,6 +283,7 @@ def add_audience_to_audience_group_with_http_info(self, add_audience_to_audience
279283
:rtype: None
280284
"""
281285

286+
_host = self.line_base_path
282287
_params = locals()
283288

284289
_all_params = [
@@ -349,6 +354,7 @@ def add_audience_to_audience_group_with_http_info(self, add_audience_to_audience
349354
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
350355
_preload_content=_params.get('_preload_content', True),
351356
_request_timeout=_params.get('_request_timeout'),
357+
_host=_host,
352358
collection_formats=_collection_formats,
353359
_request_auth=_params.get('_request_auth'))
354360

@@ -429,6 +435,7 @@ def create_audience_group_with_http_info(self, create_audience_group_request : C
429435
:rtype: tuple(CreateAudienceGroupResponse, status_code(int), headers(HTTPHeaderDict))
430436
"""
431437

438+
_host = self.line_base_path
432439
_params = locals()
433440

434441
_all_params = [
@@ -505,6 +512,7 @@ def create_audience_group_with_http_info(self, create_audience_group_request : C
505512
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
506513
_preload_content=_params.get('_preload_content', True),
507514
_request_timeout=_params.get('_request_timeout'),
515+
_host=_host,
508516
collection_formats=_collection_formats,
509517
_request_auth=_params.get('_request_auth'))
510518

@@ -585,6 +593,7 @@ def create_click_based_audience_group_with_http_info(self, create_click_based_au
585593
:rtype: tuple(CreateClickBasedAudienceGroupResponse, status_code(int), headers(HTTPHeaderDict))
586594
"""
587595

596+
_host = self.line_base_path
588597
_params = locals()
589598

590599
_all_params = [
@@ -661,6 +670,7 @@ def create_click_based_audience_group_with_http_info(self, create_click_based_au
661670
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
662671
_preload_content=_params.get('_preload_content', True),
663672
_request_timeout=_params.get('_request_timeout'),
673+
_host=_host,
664674
collection_formats=_collection_formats,
665675
_request_auth=_params.get('_request_auth'))
666676

@@ -741,6 +751,7 @@ def create_imp_based_audience_group_with_http_info(self, create_imp_based_audien
741751
:rtype: tuple(CreateImpBasedAudienceGroupResponse, status_code(int), headers(HTTPHeaderDict))
742752
"""
743753

754+
_host = self.line_base_path
744755
_params = locals()
745756

746757
_all_params = [
@@ -817,6 +828,7 @@ def create_imp_based_audience_group_with_http_info(self, create_imp_based_audien
817828
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
818829
_preload_content=_params.get('_preload_content', True),
819830
_request_timeout=_params.get('_request_timeout'),
831+
_host=_host,
820832
collection_formats=_collection_formats,
821833
_request_auth=_params.get('_request_auth'))
822834

@@ -897,6 +909,7 @@ def delete_audience_group_with_http_info(self, audience_group_id : Annotated[Str
897909
:rtype: None
898910
"""
899911

912+
_host = self.line_base_path
900913
_params = locals()
901914

902915
_all_params = [
@@ -960,6 +973,7 @@ def delete_audience_group_with_http_info(self, audience_group_id : Annotated[Str
960973
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
961974
_preload_content=_params.get('_preload_content', True),
962975
_request_timeout=_params.get('_request_timeout'),
976+
_host=_host,
963977
collection_formats=_collection_formats,
964978
_request_auth=_params.get('_request_auth'))
965979

@@ -1040,6 +1054,7 @@ def get_audience_data_with_http_info(self, audience_group_id : Annotated[StrictI
10401054
:rtype: tuple(GetAudienceDataResponse, status_code(int), headers(HTTPHeaderDict))
10411055
"""
10421056

1057+
_host = self.line_base_path
10431058
_params = locals()
10441059

10451060
_all_params = [
@@ -1110,6 +1125,7 @@ def get_audience_data_with_http_info(self, audience_group_id : Annotated[StrictI
11101125
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
11111126
_preload_content=_params.get('_preload_content', True),
11121127
_request_timeout=_params.get('_request_timeout'),
1128+
_host=_host,
11131129
collection_formats=_collection_formats,
11141130
_request_auth=_params.get('_request_auth'))
11151131

@@ -1186,6 +1202,7 @@ def get_audience_group_authority_level_with_http_info(self, **kwargs) -> ApiResp
11861202
:rtype: tuple(GetAudienceGroupAuthorityLevelResponse, status_code(int), headers(HTTPHeaderDict))
11871203
"""
11881204

1205+
_host = self.line_base_path
11891206
_params = locals()
11901207

11911208
_all_params = [
@@ -1251,6 +1268,7 @@ def get_audience_group_authority_level_with_http_info(self, **kwargs) -> ApiResp
12511268
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
12521269
_preload_content=_params.get('_preload_content', True),
12531270
_request_timeout=_params.get('_request_timeout'),
1271+
_host=_host,
12541272
collection_formats=_collection_formats,
12551273
_request_auth=_params.get('_request_auth'))
12561274

@@ -1351,6 +1369,7 @@ def get_audience_groups_with_http_info(self, page : Annotated[conint(strict=True
13511369
:rtype: tuple(GetAudienceGroupsResponse, status_code(int), headers(HTTPHeaderDict))
13521370
"""
13531371

1372+
_host = self.line_base_path
13541373
_params = locals()
13551374

13561375
_all_params = [
@@ -1440,6 +1459,7 @@ def get_audience_groups_with_http_info(self, page : Annotated[conint(strict=True
14401459
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
14411460
_preload_content=_params.get('_preload_content', True),
14421461
_request_timeout=_params.get('_request_timeout'),
1462+
_host=_host,
14431463
collection_formats=_collection_formats,
14441464
_request_auth=_params.get('_request_auth'))
14451465

@@ -1520,6 +1540,7 @@ def update_audience_group_authority_level_with_http_info(self, update_audience_g
15201540
:rtype: None
15211541
"""
15221542

1543+
_host = self.line_base_path
15231544
_params = locals()
15241545

15251546
_all_params = [
@@ -1590,6 +1611,7 @@ def update_audience_group_authority_level_with_http_info(self, update_audience_g
15901611
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
15911612
_preload_content=_params.get('_preload_content', True),
15921613
_request_timeout=_params.get('_request_timeout'),
1614+
_host=_host,
15931615
collection_formats=_collection_formats,
15941616
_request_auth=_params.get('_request_auth'))
15951617

@@ -1674,6 +1696,7 @@ def update_audience_group_description_with_http_info(self, audience_group_id : A
16741696
:rtype: None
16751697
"""
16761698

1699+
_host = self.line_base_path
16771700
_params = locals()
16781701

16791702
_all_params = [
@@ -1748,5 +1771,6 @@ def update_audience_group_description_with_http_info(self, audience_group_id : A
17481771
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
17491772
_preload_content=_params.get('_preload_content', True),
17501773
_request_timeout=_params.get('_request_timeout'),
1774+
_host=_host,
17511775
collection_formats=_collection_formats,
17521776
_request_auth=_params.get('_request_auth'))

linebot/v3/audience/api/async_manage_audience_blob.py

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ def __init__(self, api_client=None):
4545
if api_client is None:
4646
api_client = AsyncApiClient.get_default()
4747
self.api_client = api_client
48+
self.line_base_path = "https://api.line.me"
49+
4850

4951
@overload
5052
async def add_user_ids_to_audience(self, file : Annotated[Union[StrictBytes, StrictStr], Field(..., description="A text file with one user ID or IFA entered per line. Specify text/plain as Content-Type. Max file number: 1 Max number: 1,500,000 ")], audience_group_id : Annotated[Optional[StrictInt], Field(description="The audience ID.")] = None, upload_description : Annotated[Optional[StrictStr], Field(description="The description to register with the job")] = None, **kwargs) -> None: # noqa: E501

0 commit comments

Comments
 (0)