Skip to content

Commit a1852fc

Browse files
authored
Add accept_language support (#60)
1 parent 2011c77 commit a1852fc

9 files changed

+55
-16
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.22.0] - 2022-05-16
9+
10+
### Added
11+
12+
- Adds support for the `accept_language` option on `projects`, to add support for the `Accept-Language` header.
13+
814
## [1.21.0] - 2022-05-03
915

1016
### Added

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,12 @@ patch.projects.retrieve_projects(country="CA")
188188

189189
# Retrieve a list of projects with at least 100 grams of available offsets
190190
patch.projects.retrieve_projects(minimum_available_mass=100)
191+
192+
# Retrieve a project / all projects in a different language
193+
# See http://docs.patch.test:3000/#/internationalization for more information and support
194+
patch.projects.retrieve_projects(accept_language='fr')
195+
project_id = 'pro_test_1234'
196+
patch.projects.retrieve_project(id=project_id, accept_language='fr')
191197
```
192198

193199
## Contributing

patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.21.0"
18+
__version__ = "1.22.0"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api/projects_api.py

+20-2
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def retrieve_project(self, id={}, **kwargs): # noqa: E501
7979
8080
:param async_req bool: execute request asynchronously
8181
:param str id: (required)
82+
:param str accept_language:
8283
:param _preload_content: if False, the urllib3.HTTPResponse object will
8384
be returned without reading/decoding response
8485
data. Default is True.
@@ -104,6 +105,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
104105
105106
:param async_req bool: execute request asynchronously
106107
:param str id: (required)
108+
:param str accept_language:
107109
:param _return_http_data_only: response data without head status code
108110
and headers
109111
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -120,7 +122,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
120122

121123
local_var_params = locals()
122124

123-
all_params = ["id"] # noqa: E501
125+
all_params = ["id", "accept_language"] # noqa: E501
124126
all_params.append("async_req")
125127
all_params.append("_return_http_data_only")
126128
all_params.append("_preload_content")
@@ -193,6 +195,10 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
193195
query_params.append([key, kwargs.get(key)])
194196

195197
header_params = {}
198+
if "accept_language" in local_var_params:
199+
header_params["Accept-Language"] = local_var_params[
200+
"accept_language"
201+
] # noqa: E501
196202

197203
form_params = []
198204
local_var_files = {}
@@ -240,6 +246,7 @@ def retrieve_projects(self, **kwargs): # noqa: E501
240246
:param str country:
241247
:param str type:
242248
:param int minimum_available_mass:
249+
:param str accept_language:
243250
:param _preload_content: if False, the urllib3.HTTPResponse object will
244251
be returned without reading/decoding response
245252
data. Default is True.
@@ -268,6 +275,7 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
268275
:param str country:
269276
:param str type:
270277
:param int minimum_available_mass:
278+
:param str accept_language:
271279
:param _return_http_data_only: response data without head status code
272280
and headers
273281
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -284,7 +292,13 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
284292

285293
local_var_params = locals()
286294

287-
all_params = ["page", "country", "type", "minimum_available_mass"] # noqa: E501
295+
all_params = [
296+
"page",
297+
"country",
298+
"type",
299+
"minimum_available_mass",
300+
"accept_language",
301+
] # noqa: E501
288302
all_params.append("async_req")
289303
all_params.append("_return_http_data_only")
290304
all_params.append("_preload_content")
@@ -360,6 +374,10 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
360374
query_params.append([key, kwargs.get(key)])
361375

362376
header_params = {}
377+
if "accept_language" in local_var_params:
378+
header_params["Accept-Language"] = local_var_params[
379+
"accept_language"
380+
] # noqa: E501
363381

364382
form_params = []
365383
local_var_files = {}

patch_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = "patch-python/1.21.0"
94+
self.user_agent = "patch-python/1.22.0"
9595

9696
def __del__(self):
9797
if self._pool:

patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: v1\n"
344-
"SDK Package Version: 1.21.0".format(
344+
"SDK Package Version: 1.22.0".format(
345345
env=sys.platform, pyversion=sys.version
346346
)
347347
)

patch_api/models/project.py

-10
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,6 @@ def mechanism(self, mechanism):
317317
:param mechanism: The mechanism of this Project. # noqa: E501
318318
:type: str
319319
"""
320-
allowed_values = ["removal", "avoidance"] # noqa: E501
321-
if (
322-
self.local_vars_configuration.client_side_validation
323-
and mechanism not in allowed_values
324-
): # noqa: E501
325-
raise ValueError(
326-
"Invalid value for `mechanism` ({0}), must be one of {1}".format( # noqa: E501
327-
mechanism, allowed_values
328-
)
329-
)
330320

331321
self._mechanism = mechanism
332322

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "patch-api"
15-
VERSION = "1.21.0"
15+
VERSION = "1.22.0"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

test/test_projects_api.py

+19
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ def test_retrieve_project(self):
6464
self.assertTrue(isinstance(inventory[0].currency, str))
6565
self.assertTrue(isinstance(inventory[0].unit, str))
6666

67+
def test_retrieve_project_language(self):
68+
"""Test case for retrieve_project
69+
70+
Retrieves a project # noqa: E501
71+
"""
72+
project_id = "pro_test_2b67b11a030b66e0a6dd61a56b49079a"
73+
project = self.api.retrieve_project(id=project_id, accept_language="fr").data
74+
self.assertIn("Projet", project.name) # French
75+
6776
def test_retrieve_projects(self):
6877
"""Test case for retrieve_projects
6978
@@ -124,6 +133,16 @@ def test_retrieve_projects_with_more_than_100_grams_of_inventory(self):
124133
for project in projects:
125134
self.assertTrue(project.remaining_mass_g >= minimum_available_mass)
126135

136+
def test_retrieve_projects_language(self):
137+
"""Test case for retrieve_projects with a type filter
138+
139+
Retrieves a list of projects # noqa: E501
140+
"""
141+
projects = self.api.retrieve_projects(accept_language="fr").data
142+
143+
for project in projects:
144+
self.assertIn("Projet", project.name) # French
145+
127146

128147
if __name__ == "__main__":
129148
unittest.main()

0 commit comments

Comments
 (0)