query.py 2.2 KB

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