12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import logging
- from flask import Blueprint, current_app, request, render_template, send_file
- from rdflib.plugin import PluginException
- from lakesuperior import env
- from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
- from lakesuperior.api import query as query_api
- # 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.
- logger = logging.getLogger(__name__)
- rdfly = env.app_globals.rdfly
- query = Blueprint('query', __name__)
- @query.route('/term_search', methods=['GET'])
- def term_search():
- """
- 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='=')
- return render_template('term_search.html')
- @query.route('/sparql', methods=['GET', 'POST'])
- def sparql():
- """
- Perform a direct SPARQL query on the underlying triplestore.
- :param str qry: 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:
- if request.mimetype == 'application/sparql-query':
- qstr = request.stream.read()
- else:
- qstr = request.form['query']
- logger.debug('Query: {}'.format(qstr))
- match = request.accept_mimetypes.best_match(accept_mimetypes.keys())
- fmt = (
- accept_mimetypes[match] if match
- else request.accept_mimetypes.best)
- try:
- out_stream = query_api.sparql_query(qstr, fmt)
- except PluginException:
- return (
- 'Unable to serialize results into format {}'.format(fmt), 406)
- return send_file(out_stream, mimetype=fmt), 200
|