query.py 1.9 KB

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