server.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. import io
  2. import json
  3. import os.path
  4. import pickle
  5. import arrow
  6. from hashlib import sha1
  7. from uuid import uuid4
  8. from flask import Flask, request, url_for
  9. from lakesuperior.config_parser import config
  10. from lakesuperior.ldp.ldpr import Ldpr, Ldpc, LdpNr, \
  11. InvalidResourceError, ResourceNotExistsError
  12. app = Flask(__name__)
  13. app.config.update(config['flask'])
  14. rest_accept_patch = (
  15. 'application/sparql-update',
  16. )
  17. rest_accept_post = (
  18. 'application/ld+json',
  19. 'application/n-triples',
  20. 'application/rdf+xml',
  21. 'application/x-turtle',
  22. 'application/xhtml+xml',
  23. 'application/xml',
  24. 'text/html',
  25. 'text/n3',
  26. 'text/plain',
  27. 'text/rdf+n3',
  28. 'text/turtle',
  29. )
  30. #rest_allow = (
  31. # 'COPY',
  32. # 'DELETE',
  33. # 'GET',
  34. # 'HEAD',
  35. # 'MOVE',
  36. # 'OPTIONS',
  37. # 'PATCH',
  38. # 'POST',
  39. # 'PUT',
  40. #)
  41. rest_std_headers = {
  42. 'Accept-Patch' : ','.join(rest_accept_patch),
  43. 'Accept-Post' : ','.join(rest_accept_post),
  44. #'Allow' : ','.join(rest_allow),
  45. }
  46. ## ROUTES ##
  47. @app.route('/', methods=['GET'])
  48. def index():
  49. '''
  50. Homepage.
  51. '''
  52. return u'<h1>Hello. This is LAKEsuperior.</h1><p>Exciting, isn’t it?</p>'
  53. @app.route('/debug', methods=['GET'])
  54. def debug():
  55. '''
  56. Debug page.
  57. '''
  58. raise RuntimeError()
  59. ## REST SERVICES ##
  60. @app.route('/rest/<path:uuid>', methods=['GET'])
  61. @app.route('/rest/', defaults={'uuid': None}, methods=['GET'],
  62. strict_slashes=False)
  63. def get_resource(uuid):
  64. '''
  65. Retrieve RDF or binary content.
  66. '''
  67. headers = rest_std_headers
  68. # @TODO Add conditions for LDP-NR
  69. rsrc = Ldpc(uuid)
  70. try:
  71. out = rsrc.get()
  72. except ResourceNotExistsError:
  73. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  74. else:
  75. headers = rsrc.head()
  76. return (out.graph.serialize(format='turtle'), headers)
  77. @app.route('/rest/<path:parent>', methods=['POST'])
  78. @app.route('/rest/', defaults={'parent': None}, methods=['POST'],
  79. strict_slashes=False)
  80. def post_resource(parent):
  81. '''
  82. Add a new resource in a new URI.
  83. '''
  84. headers = rest_std_headers
  85. try:
  86. slug = request.headers['Slug']
  87. except KeyError:
  88. slug = None
  89. try:
  90. rsrc = Ldpc.inst_for_post(parent, slug)
  91. except ResourceNotExistsError as e:
  92. return str(e), 404
  93. except InvalidResourceError as e:
  94. return str(e), 409
  95. rsrc.post(request.get_data().decode('utf-8'))
  96. headers.update({
  97. 'Location' : rsrc.uri,
  98. })
  99. return rsrc.uri, headers, 201
  100. @app.route('/rest/<path:uuid>', methods=['PUT'])
  101. def put_resource(uuid):
  102. '''
  103. Add a new resource at a specified URI.
  104. '''
  105. headers = rest_std_headers
  106. rsrc = Ldpc(uuid)
  107. rsrc.put(request.get_data().decode('utf-8'))
  108. return '', 204, headers
  109. @app.route('/rest/<path:uuid>', methods=['PATCH'])
  110. def patch_resource(uuid):
  111. '''
  112. Update an existing resource with a SPARQL-UPDATE payload.
  113. '''
  114. headers = rest_std_headers
  115. rsrc = Ldpc(uuid)
  116. try:
  117. rsrc.patch(request.get_data().decode('utf-8'))
  118. except ResourceNotExistsError:
  119. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  120. return '', 204, headers
  121. @app.route('/rest/<path:uuid>', methods=['DELETE'])
  122. def delete_resource(uuid):
  123. '''
  124. Delete a resource.
  125. '''
  126. headers = rest_std_headers
  127. rsrc = Ldpc(uuid)
  128. try:
  129. rsrc.delete()
  130. except ResourceNotExistsError:
  131. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  132. return '', 204, headers