forked from SUNCAT-Center/CatalysisHubBackend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.py
628 lines (499 loc) · 19.1 KB
/
api.py
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
"""
API for GraphQL enhanced queries against catapp and ase-db database
Some Examples:
- Get total number of rows in table (in this case reactions)::
{reactions (first: 0) {
totalCount
edges {
node {
id
}
}
}}
- Filter by reactants and products from reactions::
{reactions(reactants: "H2O", products: "OH") {
edges {
node {
reactants
products
reactionEnergy
activationEnergy
}
}
}}
- Filter by several reactants or products from reactions::
{reactions(products: "Nstar+CH3star") {
edges {
node {
reactants
products
reactionEnergy
activationEnergy
}
}
}}
- Author-name from publications::
{publications(authors: "~Bajdich") {
edges {
node {
reactions {
chemicalComposition
reactants
products
reactionEnergy
}
}
}
}}
- Full text search in reactions (reactants, products, chemical composition, facet)::
{reactions(textsearch: "CO CH 111") {
edges {
node {
reactants
products
publication {
title
authors
}
}
}
}}
- Full text search in publications (title, authors, year)::
{publications(pubtextsearch: "oxygen evolution bajdich 2017") {
edges {
node {
title
authors
year
reactions {
reactants
products
}
}
}
}}
- Distinct reactants and products from reactions (works with and without "~")::
{reactions(reactants: "~OH", products: "~", distinct: true) {
edges {
node {
reactants
products
reactionEnergy
}
}
}}
- ASE structures belonging to reactions::
{reactions(reactants: "~OH", first:1) {
edges {
node {
systems {
Cifdata
}
}
}
}}
- Get all distinct DOIs::
{publications {
edges {
node {
doi
}
}
}}
- Get all entries published since (and including) 2015::
{publications(year: 2015, op: "ge", last:1) {
edges {
node {
id
year
systems {
keyValuePairs
}
}
}
}}
"""
try:
import io as StringIO
except ImportError:
# Fallback solution for python2.7
import StringIO
# global imports
import re
import json
import graphene
import graphene.relay
import graphene_sqlalchemy
#import promise.dataloader
import promise
import sqlalchemy
import six
# local imports
import models
class CountableConnection(graphene.relay.Connection):
class Meta:
abstract = True
total_count = graphene.Int()
@staticmethod
def resolve_total_count(root, info):
return root.length
class CustomSQLAlchemyObjectType(graphene_sqlalchemy.SQLAlchemyObjectType):
class Meta:
abstract = True
@classmethod
def __init_subclass_with_meta__(cls, model=None, registry=None,
skip_registry=False, only_fields=(),
exclude_fields=(), connection=None,
use_connection=None,
id=None, **options):
# Force it to use the countable connection
countable_conn = connection or CountableConnection.create_type(
"{}CountableConnection".format(model.__name__),
node=cls)
super(CustomSQLAlchemyObjectType, cls).__init_subclass_with_meta__(
model,
registry,
skip_registry,
only_fields,
exclude_fields,
countable_conn,
use_connection,
id,
**options)
class Publication(CustomSQLAlchemyObjectType):
class Meta:
model = models.Publication
interfaces = (graphene.relay.Node,)
reactions = graphene.List('api.Reaction')
systems = graphene.List('api.System')
#def resolve_reactions(self, info):
# return reaction_loader.load_many(
# [x.id for x in self.reactions]
# )
#def resolve_systems(self, info):
# return system_loader.load_many(
# [x.id for x in self.systems]
# )
#class PublicationLoader(promise.dataloader.DataLoader):
# def batch_load_fn(self, keys):
# return promise.Promise.resolve(
# models.db_session.query(models.Publication) \
# .filter(models.Publication.id.in_(keys)).all()
# )
#publication_loader = PublicationLoader()
class ReactionSystem(CustomSQLAlchemyObjectType):
class Meta:
model = models.ReactionSystem
interfaces = (graphene.relay.Node, )
# name = graphene.InputField()
# systems = graphene.List('api.Systems')
class Log(CustomSQLAlchemyObjectType):
class Meta:
model = models.Log
interfaces = (graphene.relay.Node, )
class System(CustomSQLAlchemyObjectType):
_input_file = graphene.String(format=graphene.String())
class Meta:
model = models.System
interfaces = (graphene.relay.Node, )
publication = graphene.List('api.Publication')
log = graphene.List('api.Log')
@staticmethod
def resolve__input_file(self, info, format="py"):
"""Return the structure as input for one of several
DFT codes as supported by ASE. Default format is "py".
Run::
{systems(last: 1) {
totalCount
edges {
node {
InputFile(format:"")
}
}
}}
to show available formats. Try one of the available formats like,::
{systems(last: 10) {
totalCount
edges {
node {
InputFile(format:"espresso-in")
}
}
}}
to generate QE input.
"""
import ase.io
import ase.io.formats
supported_fileformats = [
key for key, value in ase.io.formats.all_formats.items()
if value[1].find('F') > 0
]
if format in supported_fileformats:
mem_file = StringIO.StringIO()
mem_file.name = 'Export from http://catappdatabase.herokuapp.com/graphql'
ase.io.write(mem_file, self._toatoms(), format)
return mem_file.getvalue()
else:
return 'Unsupported format. Should be one of %s'\
% str(supported_fileformats)
class NumberKeyValue(CustomSQLAlchemyObjectType):
class Meta:
model = models.NumberKeyValue
interfaces = (graphene.relay.Node, )
class TextKeyValue(CustomSQLAlchemyObjectType):
class Meta:
model = models.TextKeyValue
interfaces = (graphene.relay.Node, )
class Information(CustomSQLAlchemyObjectType):
class Meta:
model = models.Information
interfaces = (graphene.relay.Node, )
class Key(CustomSQLAlchemyObjectType):
class Meta:
model = models.Key
interfaces = (graphene.relay.Node, )
class Species(CustomSQLAlchemyObjectType):
class Meta:
model = models.Species
interfaces = (graphene.relay.Node, )
#class SystemLoader(promise.dataloader.DataLoader):
# def batch_load_fn(self, keys):
# return promise.Promise.resolve(
# models.db_session.query(models.System) \
# .filter(models.System.id.in_(keys)).all()
# )
#system_loader = SystemLoader()
#class ReactionLoader(promise.dataloader.DataLoader):
# def batch_load_fn(self, keys):
# return promise.Promise.resolve(
# models.db_session.query(models.Reaction) \
# .filter(models.Reaction.id.in_(keys)).all()
# )
#reaction_loader = ReactionLoader()
class Reaction(CustomSQLAlchemyObjectType):
class Meta:
model = models.Reaction
interfaces = (graphene.relay.Node, )
reaction_systems = graphene.List(ReactionSystem)
systems = graphene.List(System)
#def resolve_systems(self, info):
# return system_loader.load_many(
# [x.id for x in self.systems]
# )
# class Search(CustomSQLAlchemyObjectType):
# class Meta:
# types = (Publications, Catapp)
# interfaces = (graphene.relay.Node, )
class FilteringConnectionField(graphene_sqlalchemy.SQLAlchemyConnectionField):
RELAY_ARGS = ['first', 'last', 'before', 'after']
SPECIAL_ARGS = ['distinct', 'op', 'jsonkey', 'order']
@classmethod
def get_query(cls, model, info, **args):
from sqlalchemy import or_
from sqlalchemy.orm import load_only
query = super(FilteringConnectionField, cls).get_query(model, info)
from sqlalchemy.orm import joinedload
distinct_filter = False # default value for distinct
op = 'eq'
jsonkey_input = None
ALLOWED_OPS = ['gt', 'lt', 'le', 'ge', 'eq', 'ne',
'=', '>', '<', '>=', '<=', '!=']
cont_fields = ['edges', 'node']
skip_fields = ['totalCount', 'pageInfo']
fields = info.field_asts# [0].selection_set.selections
load_fields = {}
field_names = []
def convert(name):
import re
s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower()
include_all = False
while isinstance(fields, list):
for field in fields:
name = field.name.value
if name in cont_fields:
fields = field.selection_set.selections
elif name in skip_fields:# or name[0].isupper():
continue
else:
if name[0].isupper(): # hybrid property
names = models.hybrid_prop_parameters(name)
if 'all' in names:
include_all = True
fields = None
continue
else:
names = [name]
for name in names:
if field.selection_set is not None:
keyname = name
field_names.append(name)
load_fields.update({keyname: []})
fields = field.selection_set.selections
else:
load_fields[keyname].append(convert(name))
fields = None
if not include_all:
query = query.options(load_only(*load_fields[field_names[0]]))
if len(field_names) > 1:
column = getattr(model, convert(field_names[1]), None)
query = query.options(joinedload(column, innerjoin=True).load_only(*load_fields[field_names[1]]))
for field, value in args.items():
if field == 'distinct':
distinct_filter = value
elif field == 'op':
if value in ALLOWED_OPS:
op = value
elif field == 'jsonkey':
jsonkey_input = value
elif field == 'order':
ascending = not value.startswith('-')
column_name = value if not value.startswith('-') else value[1:]
column = getattr(model, convert(column_name), None)
if ascending:
query = query.order_by(column)
else:
query = query.order_by(column.desc())
for field, value in args.items():
if field not in (cls.RELAY_ARGS + cls.SPECIAL_ARGS):
from sqlalchemy.sql.expression import func, cast
jsonb = False
jsonkey = None
if '__' in field:
field, jsonkey = field.split('__')
elif '->' in str(value):
jsonkey, value = value.split('->')
if jsonkey is None:
jsonkey = jsonkey_input
column = getattr(model, field, None)
if str(column.type) == "TSVECTOR":
query = query.filter(column.match("'{}'".format(value)))
elif str(column.type) == "JSONB":
jsonb = True
if jsonkey is not None:
query = query.filter(column.has_key(jsonkey))
column = column[jsonkey].astext
values = value.split('+')
for value in values:
value = value.strip()
if value.startswith("~"):
column = cast(column, sqlalchemy.String)
# if field == 'reactants' or field == 'products':
# column = func.replace(func.replace(column, 'gas', ''), 'star', '')
search_string = '%' + value[1:] + '%'
if not value == "~":
query = query.filter(
column.ilike(search_string))
# else:
# query = query.group_by(column)
else:
if field == 'reactants' or field == 'products':
if not 'star' in value and not 'gas' in value:
or_statement = or_(column.has_key(value),
column.has_key(value +
'gas'),
column.has_key(value +
'star'))
query = query.filter(or_statement)
else:
query = query.filter(column.has_key(value))
else:
if jsonkey is not None:
query = query.filter(column == value)
else:
query = query.filter(column.has_key(value))
# if distinct_filter:
# TO DO: SELECT DISTINCT jsonb_object_keys(reactants) FROM reaction
elif isinstance(value, six.string_types):
if value.startswith("~") or '+' in value:
values = value.split('+')
for value in values:
value = value.replace('~', '')
search_string = '%' + value + '%'
if not query == "~":
query = query.filter(column.ilike(search_string))
else:
query = query.filter(column == value)
# if distinct_filter:
# query = query.distinct(column)#.group_by(column)
else:
if op in ['ge', '>=']:
query = query.filter(column >= value)
elif op in ['gt', '>']:
query = query.filter(column > value)
elif op in ['lt', '<']:
query = query.filter(column < value)
elif op in ['le', '<=']:
query = query.filter(column <= value)
elif op in ['ne', '!=']:
query = query.filter(column != value)
else:
query = query.filter(column == value)
if distinct_filter:
query = query.distinct(column) # .group_by(getattr(model, field))
return query
def get_filter_fields(model):
"""Generate filter fields (= comparison)
from graphene_sqlalcheme model
"""
publication_keys = ['publisher', 'doi', 'title', 'journal', 'authors', 'year']
filter_fields = {}
for column_name in dir(model):
# print('FF {model} => {column_name}'.format(**locals()))
if not column_name.startswith('_') \
and not column_name in ['metadata', 'query', 'cifdata']:
column = getattr(model, column_name)
column_expression = column.expression
if '=' in str(column_expression): # filter out foreign keys
continue
elif column_expression is None: # filter out hybrid properties
continue
elif not ('<' in repr(column_expression) and '>' in repr(column_expression)):
continue
# column_type = repr(column_expression).split(',')[1].strip(' ()')
column_type = re.split('\W+', repr(column_expression))
column_type = column_type[2]
if column_type == 'Integer':
filter_fields[column_name] = getattr(graphene, 'Int')()
elif column_type == 'TSVECTOR':
filter_fields[column_name] = getattr(graphene, 'String')()
elif column_type == 'JSONB':
filter_fields[column_name] = getattr(graphene, 'String')()
elif column_type == 'ARRAY':
if column_name == 'numbers':
filter_fields[column_name] = getattr(graphene, 'Int')()
else:
filter_fields[column_name] = getattr(graphene, 'Float')()
else:
filter_fields[column_name] = getattr(graphene, column_type)()
# always add a distinct filter
filter_fields['distinct'] = graphene.Boolean()
filter_fields['op'] = graphene.String()
filter_fields['search'] = graphene.String()
filter_fields['jsonkey'] = graphene.String()
filter_fields['order'] = graphene.String()
return filter_fields
class Query(graphene.ObjectType):
node = graphene.relay.Node.Field()
information = FilteringConnectionField(
Information, **get_filter_fields(models.Information))
systems = FilteringConnectionField(
System, **get_filter_fields(models.System))
species = FilteringConnectionField(
Species, **get_filter_fields(models.Species))
key = FilteringConnectionField(Key, **get_filter_fields(models.Key))
text_keys = FilteringConnectionField(
TextKeyValue, **get_filter_fields(models.TextKeyValue))
number_keys = FilteringConnectionField(
NumberKeyValue, **get_filter_fields(models.NumberKeyValue))
reactions = FilteringConnectionField(
Reaction, **get_filter_fields(models.Reaction))
reaction_systems = FilteringConnectionField(
ReactionSystem, **get_filter_fields(models.ReactionSystem))
publications = FilteringConnectionField(
Publication, **get_filter_fields(models.Publication))
logs = FilteringConnectionField(
Log, **get_filter_fields(models.Log))
schema = graphene.Schema(
query=Query, types=[System, Species, TextKeyValue, NumberKeyValue, Key, Reaction, ReactionSystem, Publication, Log
])