mirror of
https://github.com/brygphilomena/pysimplesat.git
synced 2025-11-04 16:57:30 +00:00
69 lines
2.4 KiB
Python
69 lines
2.4 KiB
Python
from pysimplesat.endpoints.base.base_endpoint import SimpleSatEndpoint
|
|
from pysimplesat.interfaces import (
|
|
IPostable,
|
|
IPaginateable,
|
|
)
|
|
from pysimplesat.models.simplesat import Response
|
|
from pysimplesat.responses.paginated_response import PaginatedResponse
|
|
from pysimplesat.types import (
|
|
JSON,
|
|
SimpleSatRequestParams,
|
|
)
|
|
|
|
|
|
class ResponsesSearchEndpoint(
|
|
SimpleSatEndpoint,
|
|
IPostable[Response, SimpleSatRequestParams],
|
|
IPaginateable[Response, SimpleSatRequestParams],
|
|
|
|
):
|
|
def __init__(self, client, parent_endpoint=None) -> None:
|
|
SimpleSatEndpoint.__init__(self, client, "search", parent_endpoint=parent_endpoint)
|
|
IPostable.__init__(self, Response)
|
|
IPaginateable.__init__(self, Response)
|
|
|
|
def paginated(
|
|
self,
|
|
page: int,
|
|
limit: int,
|
|
params: SimpleSatRequestParams | None = None,
|
|
) -> PaginatedResponse[Response]:
|
|
"""
|
|
Performs a POST request against the /responses/search endpoint and returns an initialized PaginatedResponse object.
|
|
|
|
Parameters:
|
|
page (int): The page number to request.
|
|
limit (int): The number of results to return per page.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
PaginatedResponse[Response]: The initialized PaginatedResponse object.
|
|
"""
|
|
if params:
|
|
params["page[number]"] = page
|
|
params["page[size]"] = limit
|
|
else:
|
|
params = {"page[number]": page, "page[size]": limit}
|
|
return PaginatedResponse(
|
|
super()._make_request("POST", params=params),
|
|
Response,
|
|
self,
|
|
"responses",
|
|
page,
|
|
limit,
|
|
params,
|
|
)
|
|
|
|
|
|
#TODO: How do I paginate a post?
|
|
def post(self, data: JSON | None = None, params: SimpleSatRequestParams | None = None) -> Response:
|
|
"""
|
|
Performs a POST request against the /responses/search endpoint.
|
|
|
|
Parameters:
|
|
data (dict[str, Any]): The data to send in the request body.
|
|
params (dict[str, int | str]): The parameters to send in the request query string.
|
|
Returns:
|
|
Survey: The parsed response data.
|
|
"""
|
|
return self._parse_many(Response, super()._make_request("POST", data=data, params=params).json().get('responses', {}))
|