From c8ca2bcf4000af98f5b4ba8512d14049fce7fc7d Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 11 Feb 2021 19:16:41 -0800 Subject: api: handle null 'q' parameter on search endpoint --- fatcat_scholar/web.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fatcat_scholar') diff --git a/fatcat_scholar/web.py b/fatcat_scholar/web.py index 124e269..31ee617 100644 --- a/fatcat_scholar/web.py +++ b/fatcat_scholar/web.py @@ -97,6 +97,8 @@ class HitsModel(BaseModel): @api.get("/search", operation_id="get_search", response_model=HitsModel) async def search(query: FulltextQuery = Depends(FulltextQuery)) -> FulltextHits: hits: Optional[FulltextHits] = None + if query.q is None: + raise HTTPException(status_code=400, detail=f"Expected a 'q' query parameter") try: hits = process_query(query) except ValueError as e: -- cgit v1.2.3