-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathutils.py
More file actions
357 lines (292 loc) · 11.4 KB
/
utils.py
File metadata and controls
357 lines (292 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# pylint: disable=import-outside-toplevel,too-many-locals
import re
import urllib.parse
from datetime import datetime
from typing import Any, Dict, List, Optional, Set, Type, Union
from fastapi import Request
from fastapi.responses import JSONResponse
from starlette.datastructures import URL as StarletteURL
from optimade import __api_version__
from optimade.exceptions import BadRequest, InternalServerError
from optimade.models import (
EntryResource,
EntryResponseMany,
EntryResponseOne,
ResponseMeta,
ToplevelLinks,
)
from optimade.server.config import CONFIG
from optimade.server.entry_collections import EntryCollection
from optimade.server.query_params import EntryListingQueryParams, SingleEntryQueryParams
from optimade.utils import PROVIDER_LIST_URLS, get_providers, mongo_id_for_database
__all__ = (
"BASE_URL_PREFIXES",
"meta_values",
"handle_response_fields",
"get_included_relationships",
"get_base_url",
"get_entries",
"get_single_entry",
"mongo_id_for_database",
"get_providers",
"PROVIDER_LIST_URLS",
)
# we need to get rid of any release tags (e.g. -rc.2) and any build metadata (e.g. +py36)
# from the api_version before allowing the URL
BASE_URL_PREFIXES = {
"major": f"/v{__api_version__.split('-')[0].split('+')[0].split('.')[0]}",
"minor": f"/v{'.'.join(__api_version__.split('-')[0].split('+')[0].split('.')[:2])}",
"patch": f"/v{'.'.join(__api_version__.split('-')[0].split('+')[0].split('.')[:3])}",
}
class JSONAPIResponse(JSONResponse):
"""This class simply patches `fastapi.responses.JSONResponse` to use the
JSON:API 'application/vnd.api+json' MIME type.
"""
media_type = "application/vnd.api+json"
def meta_values(
url: Union[urllib.parse.ParseResult, urllib.parse.SplitResult, StarletteURL, str],
data_returned: int,
data_available: int,
more_data_available: bool,
schema: Optional[str] = None,
**kwargs,
) -> ResponseMeta:
"""Helper to initialize the meta values"""
from optimade.models import ResponseMetaQuery
if isinstance(url, str):
url = urllib.parse.urlparse(url)
# To catch all (valid) variations of the version part of the URL, a regex is used
if re.match(r"/v[0-9]+(\.[0-9]+){,2}/.*", url.path) is not None:
url_path = re.sub(r"/v[0-9]+(\.[0-9]+){,2}/", "/", url.path)
else:
url_path = url.path
if schema is None:
schema = CONFIG.schema_url if not CONFIG.is_index else CONFIG.index_schema_url
return ResponseMeta(
query=ResponseMetaQuery(representation=f"{url_path}?{url.query}"),
api_version=__api_version__,
time_stamp=datetime.now(),
data_returned=data_returned,
more_data_available=more_data_available,
provider=CONFIG.provider,
data_available=data_available,
implementation=CONFIG.implementation,
schema=schema,
**kwargs,
)
def handle_response_fields(
results: Union[List[EntryResource], EntryResource, List[Dict], Dict],
exclude_fields: Set[str],
include_fields: Set[str],
) -> List[Dict[str, Any]]:
"""Handle query parameter `response_fields`.
It is assumed that all fields are under `attributes`.
This is due to all other top-level fields are REQUIRED in the response.
Parameters:
exclude_fields: Fields under `attributes` to be excluded from the response.
include_fields: Fields under `attributes` that were requested that should be
set to null if missing in the entry.
Returns:
List of resulting resources as dictionaries after pruning according to
the `response_fields` OPTIMADE URL query parameter.
"""
if not isinstance(results, list):
results = [results]
new_results = []
while results:
new_entry = results.pop(0)
try:
new_entry = new_entry.dict(exclude_unset=True, by_alias=True) # type: ignore[union-attr]
except AttributeError:
pass
# Remove fields excluded by their omission in `response_fields`
for field in exclude_fields:
if field in new_entry["attributes"]:
del new_entry["attributes"][field]
# Include missing fields that were requested in `response_fields`
for field in include_fields:
if field not in new_entry["attributes"]:
new_entry["attributes"][field] = None
new_results.append(new_entry)
return new_results
def get_included_relationships(
results: Union[EntryResource, List[EntryResource], Dict, List[Dict]],
ENTRY_COLLECTIONS: Dict[str, EntryCollection],
include_param: List[str],
) -> List[Union[EntryResource, Dict]]:
"""Filters the included relationships and makes the appropriate compound request
to include them in the response.
Parameters:
results: list of returned documents.
ENTRY_COLLECTIONS: dictionary containing collections to query, with key
based on endpoint type.
include_param: list of queried related resources that should be included in
`included`.
Returns:
Dictionary with the same keys as ENTRY_COLLECTIONS, each containing the list
of resource objects for that entry type.
"""
from collections import defaultdict
if not isinstance(results, list):
results = [results]
for entry_type in include_param:
if entry_type not in ENTRY_COLLECTIONS and entry_type != "":
raise BadRequest(
detail=f"'{entry_type}' cannot be identified as a valid relationship type. "
f"Known relationship types: {sorted(ENTRY_COLLECTIONS.keys())}"
)
endpoint_includes: Dict[Any, Dict] = defaultdict(dict)
for doc in results:
# convert list of references into dict by ID to only included unique IDs
if doc is None:
continue
try:
relationships = doc.relationships # type: ignore
except AttributeError:
relationships = doc.get("relationships", None)
if relationships is None:
continue
if not isinstance(relationships, dict):
relationships = relationships.dict()
for entry_type in ENTRY_COLLECTIONS:
# Skip entry type if it is not in `include_param`
if entry_type not in include_param:
continue
entry_relationship = relationships.get(entry_type, {})
if entry_relationship is not None:
refs = entry_relationship.get("data", [])
for ref in refs:
if ref["id"] not in endpoint_includes[entry_type]:
endpoint_includes[entry_type][ref["id"]] = ref
included: Dict[
str, Union[List[EntryResource], EntryResource, List[Dict], Dict]
] = {}
for entry_type in endpoint_includes:
compound_filter = " OR ".join(
['id="{}"'.format(ref_id) for ref_id in endpoint_includes[entry_type]]
)
params = EntryListingQueryParams(
filter=compound_filter,
response_format="json",
response_fields="",
sort="",
page_limit=0,
page_offset=0,
)
# still need to handle pagination
ref_results, _, _, _, _ = ENTRY_COLLECTIONS[entry_type].find(params)
if ref_results is None:
ref_results = []
included[entry_type] = ref_results
# flatten dict by endpoint to list
return [obj for endp in included.values() for obj in endp]
def get_base_url(
parsed_url_request: Union[
urllib.parse.ParseResult, urllib.parse.SplitResult, StarletteURL, str
]
) -> str:
"""Get base URL for current server
Take the base URL from the config file, if it exists, otherwise use the request.
"""
if CONFIG.base_url:
return CONFIG.base_url.rstrip("/")
parsed_url_request = (
urllib.parse.urlparse(parsed_url_request)
if isinstance(parsed_url_request, str)
else parsed_url_request
)
base_url = f"{parsed_url_request.scheme}://{parsed_url_request.netloc}"
if CONFIG.root_path:
base_url = base_url + CONFIG.root_path.rstrip("/")
return base_url
def get_entries(
collection: EntryCollection,
response: Type[EntryResponseMany],
request: Request,
params: EntryListingQueryParams,
) -> EntryResponseMany:
"""Generalized /{entry} endpoint getter"""
from optimade.server.routers import ENTRY_COLLECTIONS
params.check_params(request.query_params)
(
results,
data_returned,
more_data_available,
fields,
include_fields,
) = collection.find(params)
include = []
if getattr(params, "include", False):
include.extend(params.include.split(","))
included = []
if results is not None:
included = get_included_relationships(results, ENTRY_COLLECTIONS, include)
if more_data_available:
# Deduce the `next` link from the current request
query = urllib.parse.parse_qs(request.url.query)
query.update(collection.get_next_query_params(params, results))
urlencoded = urllib.parse.urlencode(query, doseq=True)
base_url = get_base_url(request.url)
links = ToplevelLinks(next=f"{base_url}{request.url.path}?{urlencoded}")
else:
links = ToplevelLinks(next=None)
if results is not None and (fields or include_fields):
results = handle_response_fields(results, fields, include_fields) # type: ignore[assignment]
return response(
links=links,
data=results if results else [],
meta=meta_values(
url=request.url,
data_returned=data_returned,
data_available=len(collection),
more_data_available=more_data_available,
schema=CONFIG.schema_url
if not CONFIG.is_index
else CONFIG.index_schema_url,
),
included=included,
)
def get_single_entry(
collection: EntryCollection,
entry_id: str,
response: Type[EntryResponseOne],
request: Request,
params: SingleEntryQueryParams,
) -> EntryResponseOne:
from optimade.server.routers import ENTRY_COLLECTIONS
params.check_params(request.query_params)
params.filter = f'id="{entry_id}"' # type: ignore[attr-defined]
(
results,
data_returned,
more_data_available,
fields,
include_fields,
) = collection.find(params)
if more_data_available:
raise InternalServerError(
detail=f"more_data_available MUST be False for single entry response, however it is {more_data_available}",
)
include = []
if getattr(params, "include", False):
include.extend(params.include.split(","))
included = []
if results is not None:
included = get_included_relationships(results, ENTRY_COLLECTIONS, include)
links = ToplevelLinks(next=None)
if results is not None and (fields or include_fields):
results = handle_response_fields(results, fields, include_fields)[0] # type: ignore[assignment]
return response(
links=links,
data=results if results else None,
meta=meta_values(
url=request.url,
data_returned=data_returned,
data_available=len(collection),
more_data_available=more_data_available,
schema=CONFIG.schema_url
if not CONFIG.is_index
else CONFIG.index_schema_url,
),
included=included,
)