-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathutils.py
More file actions
366 lines (296 loc) · 11.7 KB
/
utils.py
File metadata and controls
366 lines (296 loc) · 11.7 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
358
359
360
361
362
363
364
365
366
# pylint: disable=import-outside-toplevel,too-many-locals
import re
import urllib
from datetime import datetime
from typing import Union, List, Dict
from fastapi import HTTPException, Request
from starlette.datastructures import URL as StarletteURL
from optimade import __api_version__
from optimade.models import (
ResponseMeta,
EntryResource,
EntryResponseMany,
EntryResponseOne,
ToplevelLinks,
)
from optimade.server.config import CONFIG
from optimade.server.entry_collections import EntryCollection
from optimade.server.exceptions import BadRequest
from optimade.server.query_params import EntryListingQueryParams, SingleEntryQueryParams
# 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])}",
}
def meta_values(
url: Union[urllib.parse.ParseResult, urllib.parse.SplitResult, StarletteURL, str],
data_returned: int,
data_available: int,
more_data_available: bool,
**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
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,
**kwargs,
)
def handle_response_fields(
results: Union[List[EntryResource], EntryResource], exclude_fields: set
) -> dict:
"""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.
:param exclude_fields: Fields under ``attributes`` to be excluded from the response.
"""
if not isinstance(results, list):
results = [results]
new_results = []
while results:
entry = results.pop(0)
# TODO: re-enable exclude_unset when proper handling of known/unknown fields
# has been implemented (relevant issue: https://github.com/Materials-Consortia/optimade-python-tools/issues/263)
# Have to handle top level fields explicitly here for now
new_entry = entry.dict(exclude_unset=False)
for field in ("relationships", "links", "meta", "type", "id"):
if field in new_entry and new_entry[field] is None:
del new_entry[field]
for field in exclude_fields:
if field in new_entry["attributes"]:
del new_entry["attributes"][field]
new_results.append(new_entry)
return new_results
def get_included_relationships(
results: Union[EntryResource, List[EntryResource]],
ENTRY_COLLECTIONS: Dict[str, EntryCollection],
include_param: List[str],
) -> Dict[str, List[EntryResource]]:
"""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 = defaultdict(dict)
for doc in results:
# convert list of references into dict by ID to only included unique IDs
if doc is None:
continue
relationships = doc.relationships
if relationships is None:
continue
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 = {}
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=None,
sort=None,
page_limit=0,
page_offset=0,
)
# still need to handle pagination
ref_results, _, _, _ = ENTRY_COLLECTIONS[entry_type].find(params)
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.
"""
parsed_url_request = (
urllib.parse.urlparse(parsed_url_request)
if isinstance(parsed_url_request, str)
else parsed_url_request
)
root_path = CONFIG.root_path.rstrip("/") if CONFIG.root_path else ""
return (
CONFIG.base_url.rstrip("/")
if CONFIG.base_url
else f"{parsed_url_request.scheme}://{parsed_url_request.netloc}{root_path}"
)
def get_entries(
collection: EntryCollection,
response: EntryResponseMany,
request: Request,
params: EntryListingQueryParams,
) -> EntryResponseMany:
"""Generalized /{entry} endpoint getter"""
from optimade.server.routers import ENTRY_COLLECTIONS
results, data_returned, more_data_available, fields = collection.find(params)
include = []
if getattr(params, "include", False):
include.extend(params.include.split(","))
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["page_offset"] = int(query.get("page_offset", [0])[0]) + len(results)
urlencoded = urllib.parse.urlencode(query, doseq=True)
root_path = CONFIG.root_path.rstrip("/") if CONFIG.root_path else ""
url = f"{get_base_url(request.url)}{request.url.path.replace(root_path, '')}"
links = ToplevelLinks(next=f"{url}?{urlencoded}")
else:
links = ToplevelLinks(next=None)
if fields:
results = handle_response_fields(results, fields)
return response(
links=links,
data=results,
meta=meta_values(
url=request.url,
data_returned=data_returned,
data_available=len(collection),
more_data_available=more_data_available,
),
included=included,
)
def get_single_entry(
collection: EntryCollection,
entry_id: str,
response: EntryResponseOne,
request: Request,
params: SingleEntryQueryParams,
) -> EntryResponseOne:
from optimade.server.routers import ENTRY_COLLECTIONS
params.filter = f'id="{entry_id}"'
results, data_returned, more_data_available, fields = collection.find(params)
include = []
if getattr(params, "include", False):
include.extend(params.include.split(","))
included = get_included_relationships(results, ENTRY_COLLECTIONS, include)
if more_data_available:
raise HTTPException(
status_code=500,
detail=f"more_data_available MUST be False for single entry response, however it is {more_data_available}",
)
links = ToplevelLinks(next=None)
if fields and results is not None:
results = handle_response_fields(results, fields)[0]
return response(
links=links,
data=results,
meta=meta_values(
url=request.url,
data_returned=data_returned,
data_available=len(collection),
more_data_available=more_data_available,
),
included=included,
)
def mongo_id_for_database(database_id: str, database_type: str) -> str:
"""Produce a MondoDB ObjectId for a database"""
from bson.objectid import ObjectId
oid = f"{database_id}{database_type}"
if len(oid) > 12:
oid = oid[:12]
elif len(oid) < 12:
oid = f"{oid}{'0' * (12 - len(oid))}"
return str(ObjectId(oid.encode("UTF-8")))
def get_providers() -> list:
"""Retrieve Materials-Consortia providers (from https://providers.optimade.org/v1/links).
Fallback order if providers.optimade.org is not available:
1. Try Materials-Consortia/providers on GitHub.
2. Try submodule `providers`' list of providers.
3. Log warning that providers list from Materials-Consortia is not included in the
`/links`-endpoint.
Returns:
List of raw JSON-decoded providers including MongoDB object IDs.
"""
import requests
try:
import simplejson as json
except ImportError:
import json
provider_list_urls = [
"https://providers.optimade.org/v1/links",
"https://raw.githubusercontent.com/Materials-Consortia/providers"
"/master/src/links/v1/providers.json",
]
for provider_list_url in provider_list_urls:
try:
providers = requests.get(provider_list_url).json()
except (
requests.exceptions.ConnectionError,
requests.exceptions.ConnectTimeout,
json.JSONDecodeError,
):
pass
else:
break
else:
try:
from optimade.server.data import providers
except ImportError:
from optimade.server.logger import LOGGER
LOGGER.warning(
"""Could not retrieve a list of providers!
Tried the following resources:
{}
The list of providers will not be included in the `/links`-endpoint.
""".format(
"".join([f" * {_}\n" for _ in provider_list_urls])
)
)
return []
providers_list = []
for provider in providers.get("data", []):
# Remove/skip "exmpl"
if provider["id"] == "exmpl":
continue
provider.update(provider.pop("attributes", {}))
# Add MongoDB ObjectId
provider["_id"] = {
"$oid": mongo_id_for_database(provider["id"], provider["type"])
}
providers_list.append(provider)
return providers_list