123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- from flask import Blueprint, request, render_template
- from rdflib.plugin import PluginException
- from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
- from lakesuperior.query import QueryEngine
- # Query endpoint. raw SPARQL queries exposing the underlying layout can be made
- # available. Also convenience methods that allow simple lookups based on simple
- # binary comparisons should be added. Binary lookups—maybe?
- # N.B All data sources are read-only for this endpoint.
- query = Blueprint('query', __name__)
- @query.route('/find', methods=['GET'])
- def find():
- '''
- Search by entering a search term and optional property and comparison term.
- '''
- valid_operands = (
- ('=', 'Equals'),
- ('>', 'Greater Than'),
- ('<', 'Less Than'),
- ('<>', 'Not Equal'),
- ('a', 'RDF Type'),
- )
- term = request.args.get('term')
- prop = request.args.get('prop', default=1)
- cmp = request.args.get('cmp', default='=')
- # @TODO
- @query.route('/sparql', methods=['GET', 'POST'])
- def sparql():
- '''
- Perform a direct SPARQL query on the underlying triplestore.
- @param q SPARQL query string.
- '''
- accept_mimetypes = {
- 'text/csv': 'csv',
- 'application/sparql-results+json': 'json',
- 'application/sparql-results+xml': 'xml',
- }
- if request.method == 'GET':
- return render_template('sparql_query.html', nsm=nsm)
- else:
- qres = QueryEngine().sparql_query(request.form['query'])
- match = request.accept_mimetypes.best_match(accept_mimetypes.keys())
- if match:
- enc = accept_mimetypes[match]
- else:
- enc = request.accept_mimetypes.best
- try:
- out = qres.serialize(format=enc)
- except PluginException:
- return ('Unable to serialize results into format {}'.format(enc),
- 406)
- return out, 200
|