import io import json import os.path import pickle import arrow from hashlib import sha1 from uuid import uuid4 from flask import Flask, request, url_for from lakesuperior.config_parser import config from lakesuperior.ldp.ldpr import Ldpr, Ldpc, LdpNr, \ InvalidResourceError, ResourceNotExistsError app = Flask(__name__) app.config.update(config['flask']) rest_accept_patch = ( 'application/sparql-update', ) rest_accept_post = ( 'application/ld+json', 'application/n-triples', 'application/rdf+xml', 'application/x-turtle', 'application/xhtml+xml', 'application/xml', 'text/html', 'text/n3', 'text/plain', 'text/rdf+n3', 'text/turtle', ) #rest_allow = ( # 'COPY', # 'DELETE', # 'GET', # 'HEAD', # 'MOVE', # 'OPTIONS', # 'PATCH', # 'POST', # 'PUT', #) rest_std_headers = { 'Accept-Patch' : ','.join(rest_accept_patch), 'Accept-Post' : ','.join(rest_accept_post), #'Allow' : ','.join(rest_allow), } ## ROUTES ## @app.route('/', methods=['GET']) def index(): ''' Homepage. ''' return u'

Hello. This is LAKEsuperior.

Exciting, isn’t it?

' @app.route('/debug', methods=['GET']) def debug(): ''' Debug page. ''' raise RuntimeError() ## REST SERVICES ## @app.route('/rest/', methods=['GET']) @app.route('/rest/', defaults={'uuid': None}, methods=['GET'], strict_slashes=False) def get_resource(uuid): ''' Retrieve RDF or binary content. ''' headers = rest_std_headers # @TODO Add conditions for LDP-NR rsrc = Ldpc(uuid) try: out = rsrc.get() except ResourceNotExistsError: return 'Resource #{} not found.'.format(rsrc.uuid), 404 else: headers = rsrc.head() return (out.graph.serialize(format='turtle'), headers) @app.route('/rest/', methods=['POST']) @app.route('/rest/', defaults={'parent': None}, methods=['POST'], strict_slashes=False) def post_resource(parent): ''' Add a new resource in a new URI. ''' headers = rest_std_headers try: slug = request.headers['Slug'] except KeyError: slug = None try: rsrc = Ldpc.inst_for_post(parent, slug) except ResourceNotExistsError as e: return str(e), 404 except InvalidResourceError as e: return str(e), 409 rsrc.post(request.get_data().decode('utf-8')) headers.update({ 'Location' : rsrc.uri, }) return rsrc.uri, headers, 201 @app.route('/rest/', methods=['PUT']) def put_resource(uuid): ''' Add a new resource at a specified URI. ''' headers = rest_std_headers rsrc = Ldpc(uuid) rsrc.put(request.get_data().decode('utf-8')) return '', 204, headers @app.route('/rest/', methods=['PATCH']) def patch_resource(uuid): ''' Update an existing resource with a SPARQL-UPDATE payload. ''' headers = rest_std_headers rsrc = Ldpc(uuid) try: rsrc.patch(request.get_data().decode('utf-8')) except ResourceNotExistsError: return 'Resource #{} not found.'.format(rsrc.uuid), 404 return '', 204, headers @app.route('/rest/', methods=['DELETE']) def delete_resource(uuid): ''' Delete a resource. ''' headers = rest_std_headers rsrc = Ldpc(uuid) try: rsrc.delete() except ResourceNotExistsError: return 'Resource #{} not found.'.format(rsrc.uuid), 404 return '', 204, headers