Skip to content

Commit

Permalink
Deployed 7c798f0 to 1.2.0 with MkDocs 1.5.3 and mike 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 17, 2024
1 parent 1c8662e commit 987f785
Show file tree
Hide file tree
Showing 101 changed files with 73,493 additions and 3 deletions.
906 changes: 906 additions & 0 deletions 1.2.0/404.html

Large diffs are not rendered by default.

97 changes: 97 additions & 0 deletions 1.2.0/advanced/custom_search/custom_search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
Even though `TiTiler.PgSTAC` includes default FastAPI application,
it also can be used like a library if you want to extend or
override default behavior.

Let's look at one such example. Imagine that we use JSON Web Token (JWT)
based approach for authorization and every token contains information
about area a user has access to:

```json
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022,
"scope": "zone_A"
}
```

We want our application to take this information into account while
registering a search query. It can be done in the following way:

```python
from contextlib import asynccontextmanager

from typing import Tuple
import json
import jwt
from fastapi import FastAPI
from fastapi.security.utils import get_authorization_scheme_param
from starlette.requests import Request
from titiler.pgstac.factory import MosaicTilerFactory, add_search_register_route
from titiler.pgstac.model import RegisterMosaic, Metadata, PgSTACSearch
from titiler.pgstac.db import close_db_connection, connect_to_db
from titiler.pgstac.extensions import searchInfoExtension


@asynccontextmanager
async def lifespan(app: FastAPI):
"""FastAPI Lifespan."""
# Create Connection Pool
await connect_to_db(app, settings=postgres_settings)
yield
# Close the Connection Pool
await close_db_connection(app)

app = FastAPI(lifespan=lifespan)

AREAS = {
"zone_A": {"type": "Point", "coordinates": [-41.93, -12.76]},
"zone_B": {"type": "Point", "coordinates": [2.15, 41.39]},
}


def search_factory(request: Request, body: RegisterMosaic) -> Tuple[PgSTACSearch, Metadata]:
authorization = request.headers.get("Authorization")
scheme, token = get_authorization_scheme_param(authorization)
payload = jwt.decode(token, algorithms=["HS256"], key="your-256-bit-secret")

search = body.dict(exclude_none=True, exclude={"metadata"}, by_alias=True)
search["filter"] = {
"op": "and",
"args": [
{
"op": "s_intersects",
"args": [{"property": "geometry"}, AREAS[payload["scope"]]],
},
search["filter"],
],
}

return model.PgSTACSearch(**search), body.metadata


mosaic = MosaicTilerFactory(
extensions=[
searchInfoExtension
]
)
app.include_router(mosaic.router)
add_search_register_route(app, search_dependency=search_factory)
```

Checking:

```bash
$ curl -s -X 'POST' \
'http://localhost:8081/register' \
-H 'accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyLCJzY29wZSI6InpvbmVfQSJ9.BelzluX7v7kYObix2KSyy1T5gEOQYQn_pyNO5Ri0gWo' \
-H 'Content-Type: application/json' \
-d '{"filter":{"op":"and","args":[{"op":"=","args":[{"property":"collection"},"l1"]}]}}' | jq '.id'
"bbc3c8f4c392436f74de6cd0308469f6"

$ curl -X 'GET' \
'http://localhost:8081/bbc3c8f4c392436f74de6cd0308469f6/info' \
-H 'accept: application/json'
{"hash":"bbc3c8f4c392436f74de6cd0308469f6","search":{"filter":{"op":"and","args":[{"op":"s_intersects","args":[{"property":"geometry"},{"type":"Point","coordinates":[-41.93,-12.76]}]},{"op":"and","args":[{"op":"=","args":[{"property":"collection"},"l1"]}]}]}},"_where":"( ( st_intersects(geometry, '0101000020E6100000D7A3703D0AF744C085EB51B81E8529C0'::geometry) and ( (collection_id = 'l1') ) ) ) ","orderby":"datetime DESC, id DESC","lastused":"2022-02-23T13:00:04.090757+00:00","usecount":3,"metadata":{"type":"mosaic"}}
```
Loading

0 comments on commit 987f785

Please sign in to comment.