query.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. from flask import Blueprint, current_app, request, render_template
  2. from rdflib.plugin import PluginException
  3. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  4. from lakesuperior.query import QueryEngine
  5. from lakesuperior.store_layouts.ldp_rs.lmdb_store import LmdbStore, TxnManager
  6. # Query endpoint. raw SPARQL queries exposing the underlying layout can be made
  7. # available. Also convenience methods that allow simple lookups based on simple
  8. # binary comparisons should be added. Binary lookups—maybe?
  9. # N.B All data sources are read-only for this endpoint.
  10. query = Blueprint('query', __name__)
  11. @query.route('/find', methods=['GET'])
  12. def find():
  13. '''
  14. Search by entering a search term and optional property and comparison term.
  15. '''
  16. valid_operands = (
  17. ('=', 'Equals'),
  18. ('>', 'Greater Than'),
  19. ('<', 'Less Than'),
  20. ('<>', 'Not Equal'),
  21. ('a', 'RDF Type'),
  22. )
  23. term = request.args.get('term')
  24. prop = request.args.get('prop', default=1)
  25. cmp = request.args.get('cmp', default='=')
  26. # @TODO
  27. @query.route('/sparql', methods=['GET', 'POST'])
  28. def sparql():
  29. '''
  30. Perform a direct SPARQL query on the underlying triplestore.
  31. @param q SPARQL query string.
  32. '''
  33. accept_mimetypes = {
  34. 'text/csv': 'csv',
  35. 'application/sparql-results+json': 'json',
  36. 'application/sparql-results+xml': 'xml',
  37. }
  38. if request.method == 'GET':
  39. return render_template('sparql_query.html', nsm=nsm)
  40. else:
  41. store = current_app.rdfly.store
  42. with TxnManager(store) as txn:
  43. qres = QueryEngine().sparql_query(request.form['query'])
  44. match = request.accept_mimetypes.best_match(accept_mimetypes.keys())
  45. if match:
  46. enc = accept_mimetypes[match]
  47. else:
  48. enc = request.accept_mimetypes.best
  49. try:
  50. out = qres.serialize(format=enc)
  51. except PluginException:
  52. return (
  53. 'Unable to serialize results into format {}'.format(enc),
  54. 406)
  55. return out, 200