This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Add pagination token + limit to OpportunityRequest model #139
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,9 +2,9 @@ | |
|
|
||
| import logging | ||
| import traceback | ||
| from typing import TYPE_CHECKING, Annotated, Self | ||
| from typing import TYPE_CHECKING, Self | ||
|
|
||
| from fastapi import APIRouter, Body, HTTPException, Request, Response, status | ||
| from fastapi import APIRouter, HTTPException, Request, Response, status | ||
| from geojson_pydantic.geometries import Geometry | ||
| from returns.maybe import Some | ||
| from returns.result import Failure, Success | ||
|
|
@@ -165,8 +165,6 @@ async def search_opportunities( | |
| self, | ||
| search: OpportunityRequest, | ||
| request: Request, | ||
| next: Annotated[str | None, Body()] = None, | ||
| limit: Annotated[int, Body()] = 10, | ||
| ) -> OpportunityCollection: | ||
| """ | ||
| Explore the opportunities available for a particular set of constraints | ||
|
|
@@ -175,18 +173,16 @@ async def search_opportunities( | |
| match await self.product._search_opportunities( | ||
| self, | ||
| search, | ||
| next, | ||
| limit, | ||
| search.next, | ||
| search.limit, | ||
| request, | ||
| ): | ||
| case Success((features, Some(pagination_token))): | ||
| links.append(self.order_link(request)) | ||
| body = { | ||
| "search": search.model_dump(mode="json"), | ||
| "next": pagination_token, | ||
| "limit": limit, | ||
| } | ||
| links.append(self.pagination_link(request, body)) | ||
| search.next = pagination_token | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice side effect of model change is that limit stays the same and just get carried through and all we have to update is the new pagination token for the returned body in the link object. |
||
| links.append( | ||
| self.pagination_link(request, search.model_dump(mode="json")) | ||
| ) | ||
| case Success((features, Nothing)): # noqa: F841 | ||
| links.append(self.order_link(request)) | ||
| case Failure(e) if isinstance(e, ConstraintsException): | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.