269 lines
7.4 KiB
Python
269 lines
7.4 KiB
Python
|
from http import HTTPStatus
|
||
|
from typing import Any, Dict, Optional, Union, cast
|
||
|
|
||
|
import httpx
|
||
|
|
||
|
from ... import errors
|
||
|
from ...client import AuthenticatedClient, Client
|
||
|
from ...models.search_results_location import SearchResultsLocation
|
||
|
from ...types import UNSET, Response, Unset
|
||
|
|
||
|
|
||
|
def _get_kwargs(
|
||
|
*,
|
||
|
q: Union[None, Unset, str] = UNSET,
|
||
|
page: Union[Unset, int] = 1,
|
||
|
page_size: Union[Unset, int] = 100,
|
||
|
lat: Union[None, Unset, float] = UNSET,
|
||
|
lng: Union[None, Unset, float] = UNSET,
|
||
|
radius: Union[None, Unset, int] = UNSET,
|
||
|
) -> Dict[str, Any]:
|
||
|
|
||
|
params: Dict[str, Any] = {}
|
||
|
|
||
|
json_q: Union[None, Unset, str]
|
||
|
if isinstance(q, Unset):
|
||
|
json_q = UNSET
|
||
|
else:
|
||
|
json_q = q
|
||
|
params["q"] = json_q
|
||
|
|
||
|
params["page"] = page
|
||
|
|
||
|
params["page_size"] = page_size
|
||
|
|
||
|
json_lat: Union[None, Unset, float]
|
||
|
if isinstance(lat, Unset):
|
||
|
json_lat = UNSET
|
||
|
else:
|
||
|
json_lat = lat
|
||
|
params["lat"] = json_lat
|
||
|
|
||
|
json_lng: Union[None, Unset, float]
|
||
|
if isinstance(lng, Unset):
|
||
|
json_lng = UNSET
|
||
|
else:
|
||
|
json_lng = lng
|
||
|
params["lng"] = json_lng
|
||
|
|
||
|
json_radius: Union[None, Unset, int]
|
||
|
if isinstance(radius, Unset):
|
||
|
json_radius = UNSET
|
||
|
else:
|
||
|
json_radius = radius
|
||
|
params["radius"] = json_radius
|
||
|
|
||
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
||
|
|
||
|
_kwargs: Dict[str, Any] = {
|
||
|
"method": "get",
|
||
|
"url": "/locations",
|
||
|
"params": params,
|
||
|
}
|
||
|
|
||
|
return _kwargs
|
||
|
|
||
|
|
||
|
def _parse_response(
|
||
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
||
|
) -> Optional[Union[Any, SearchResultsLocation]]:
|
||
|
if response.status_code == HTTPStatus.OK:
|
||
|
response_200 = SearchResultsLocation.from_dict(response.json())
|
||
|
|
||
|
return response_200
|
||
|
if response.status_code == HTTPStatus.BAD_REQUEST:
|
||
|
response_400 = cast(Any, None)
|
||
|
return response_400
|
||
|
if response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY:
|
||
|
response_422 = cast(Any, None)
|
||
|
return response_422
|
||
|
if client.raise_on_unexpected_status:
|
||
|
raise errors.UnexpectedStatus(response.status_code, response.content)
|
||
|
else:
|
||
|
return None
|
||
|
|
||
|
|
||
|
def _build_response(
|
||
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
||
|
) -> Response[Union[Any, SearchResultsLocation]]:
|
||
|
return Response(
|
||
|
status_code=HTTPStatus(response.status_code),
|
||
|
content=response.content,
|
||
|
headers=response.headers,
|
||
|
parsed=_parse_response(client=client, response=response),
|
||
|
)
|
||
|
|
||
|
|
||
|
def sync_detailed(
|
||
|
*,
|
||
|
client: Union[AuthenticatedClient, Client],
|
||
|
q: Union[None, Unset, str] = UNSET,
|
||
|
page: Union[Unset, int] = 1,
|
||
|
page_size: Union[Unset, int] = 100,
|
||
|
lat: Union[None, Unset, float] = UNSET,
|
||
|
lng: Union[None, Unset, float] = UNSET,
|
||
|
radius: Union[None, Unset, int] = UNSET,
|
||
|
) -> Response[Union[Any, SearchResultsLocation]]:
|
||
|
"""Location Find
|
||
|
|
||
|
Find a location by name or coordinates
|
||
|
|
||
|
Args:
|
||
|
q (Union[None, Unset, str]):
|
||
|
page (Union[Unset, int]): Default: 1.
|
||
|
page_size (Union[Unset, int]): Default: 100.
|
||
|
lat (Union[None, Unset, float]):
|
||
|
lng (Union[None, Unset, float]):
|
||
|
radius (Union[None, Unset, int]):
|
||
|
|
||
|
Raises:
|
||
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
||
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
||
|
|
||
|
Returns:
|
||
|
Response[Union[Any, SearchResultsLocation]]
|
||
|
"""
|
||
|
|
||
|
kwargs = _get_kwargs(
|
||
|
q=q,
|
||
|
page=page,
|
||
|
page_size=page_size,
|
||
|
lat=lat,
|
||
|
lng=lng,
|
||
|
radius=radius,
|
||
|
)
|
||
|
|
||
|
response = client.get_httpx_client().request(
|
||
|
**kwargs,
|
||
|
)
|
||
|
|
||
|
return _build_response(client=client, response=response)
|
||
|
|
||
|
|
||
|
def sync(
|
||
|
*,
|
||
|
client: Union[AuthenticatedClient, Client],
|
||
|
q: Union[None, Unset, str] = UNSET,
|
||
|
page: Union[Unset, int] = 1,
|
||
|
page_size: Union[Unset, int] = 100,
|
||
|
lat: Union[None, Unset, float] = UNSET,
|
||
|
lng: Union[None, Unset, float] = UNSET,
|
||
|
radius: Union[None, Unset, int] = UNSET,
|
||
|
) -> Optional[Union[Any, SearchResultsLocation]]:
|
||
|
"""Location Find
|
||
|
|
||
|
Find a location by name or coordinates
|
||
|
|
||
|
Args:
|
||
|
q (Union[None, Unset, str]):
|
||
|
page (Union[Unset, int]): Default: 1.
|
||
|
page_size (Union[Unset, int]): Default: 100.
|
||
|
lat (Union[None, Unset, float]):
|
||
|
lng (Union[None, Unset, float]):
|
||
|
radius (Union[None, Unset, int]):
|
||
|
|
||
|
Raises:
|
||
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
||
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
||
|
|
||
|
Returns:
|
||
|
Union[Any, SearchResultsLocation]
|
||
|
"""
|
||
|
|
||
|
return sync_detailed(
|
||
|
client=client,
|
||
|
q=q,
|
||
|
page=page,
|
||
|
page_size=page_size,
|
||
|
lat=lat,
|
||
|
lng=lng,
|
||
|
radius=radius,
|
||
|
).parsed
|
||
|
|
||
|
|
||
|
async def asyncio_detailed(
|
||
|
*,
|
||
|
client: Union[AuthenticatedClient, Client],
|
||
|
q: Union[None, Unset, str] = UNSET,
|
||
|
page: Union[Unset, int] = 1,
|
||
|
page_size: Union[Unset, int] = 100,
|
||
|
lat: Union[None, Unset, float] = UNSET,
|
||
|
lng: Union[None, Unset, float] = UNSET,
|
||
|
radius: Union[None, Unset, int] = UNSET,
|
||
|
) -> Response[Union[Any, SearchResultsLocation]]:
|
||
|
"""Location Find
|
||
|
|
||
|
Find a location by name or coordinates
|
||
|
|
||
|
Args:
|
||
|
q (Union[None, Unset, str]):
|
||
|
page (Union[Unset, int]): Default: 1.
|
||
|
page_size (Union[Unset, int]): Default: 100.
|
||
|
lat (Union[None, Unset, float]):
|
||
|
lng (Union[None, Unset, float]):
|
||
|
radius (Union[None, Unset, int]):
|
||
|
|
||
|
Raises:
|
||
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
||
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
||
|
|
||
|
Returns:
|
||
|
Response[Union[Any, SearchResultsLocation]]
|
||
|
"""
|
||
|
|
||
|
kwargs = _get_kwargs(
|
||
|
q=q,
|
||
|
page=page,
|
||
|
page_size=page_size,
|
||
|
lat=lat,
|
||
|
lng=lng,
|
||
|
radius=radius,
|
||
|
)
|
||
|
|
||
|
response = await client.get_async_httpx_client().request(**kwargs)
|
||
|
|
||
|
return _build_response(client=client, response=response)
|
||
|
|
||
|
|
||
|
async def asyncio(
|
||
|
*,
|
||
|
client: Union[AuthenticatedClient, Client],
|
||
|
q: Union[None, Unset, str] = UNSET,
|
||
|
page: Union[Unset, int] = 1,
|
||
|
page_size: Union[Unset, int] = 100,
|
||
|
lat: Union[None, Unset, float] = UNSET,
|
||
|
lng: Union[None, Unset, float] = UNSET,
|
||
|
radius: Union[None, Unset, int] = UNSET,
|
||
|
) -> Optional[Union[Any, SearchResultsLocation]]:
|
||
|
"""Location Find
|
||
|
|
||
|
Find a location by name or coordinates
|
||
|
|
||
|
Args:
|
||
|
q (Union[None, Unset, str]):
|
||
|
page (Union[Unset, int]): Default: 1.
|
||
|
page_size (Union[Unset, int]): Default: 100.
|
||
|
lat (Union[None, Unset, float]):
|
||
|
lng (Union[None, Unset, float]):
|
||
|
radius (Union[None, Unset, int]):
|
||
|
|
||
|
Raises:
|
||
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
||
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
||
|
|
||
|
Returns:
|
||
|
Union[Any, SearchResultsLocation]
|
||
|
"""
|
||
|
|
||
|
return (
|
||
|
await asyncio_detailed(
|
||
|
client=client,
|
||
|
q=q,
|
||
|
page=page,
|
||
|
page_size=page_size,
|
||
|
lat=lat,
|
||
|
lng=lng,
|
||
|
radius=radius,
|
||
|
)
|
||
|
).parsed
|