ldp.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. from flask import Blueprint, request
  2. from lakesuperior.ldp.ldpr import Ldpr, Ldpc, LdpNr, \
  3. InvalidResourceError, ResourceNotExistsError
  4. # Blueprint for LDP REST API. This is what is usually found under `/rest/` in
  5. # standard fcrepo4. Here, it is under `/ldp` but initially `/rest` can be kept
  6. # for backward compatibility.
  7. ldp = Blueprint('ldp', __name__)
  8. accept_patch = (
  9. 'application/sparql-update',
  10. )
  11. accept_post = (
  12. 'application/ld+json',
  13. 'application/n-triples',
  14. 'application/rdf+xml',
  15. 'application/x-turtle',
  16. 'application/xhtml+xml',
  17. 'application/xml',
  18. 'text/html',
  19. 'text/n3',
  20. 'text/plain',
  21. 'text/rdf+n3',
  22. 'text/turtle',
  23. )
  24. #allow = (
  25. # 'COPY',
  26. # 'DELETE',
  27. # 'GET',
  28. # 'HEAD',
  29. # 'MOVE',
  30. # 'OPTIONS',
  31. # 'PATCH',
  32. # 'POST',
  33. # 'PUT',
  34. #)
  35. std_headers = {
  36. 'Accept-Patch' : ','.join(accept_patch),
  37. 'Accept-Post' : ','.join(accept_post),
  38. #'Allow' : ','.join(allow),
  39. }
  40. ## REST SERVICES ##
  41. @ldp.route('/<path:uuid>', methods=['GET'])
  42. @ldp.route('/', defaults={'uuid': None}, methods=['GET'],
  43. strict_slashes=False)
  44. def get_resource(uuid):
  45. '''
  46. Retrieve RDF or binary content.
  47. '''
  48. headers = std_headers
  49. # @TODO Add conditions for LDP-NR
  50. rsrc = Ldpc(uuid)
  51. try:
  52. out = rsrc.get()
  53. except ResourceNotExistsError:
  54. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  55. else:
  56. headers = rsrc.head()
  57. return (out.graph.serialize(format='turtle'), headers)
  58. @ldp.route('/<path:parent>', methods=['POST'])
  59. @ldp.route('/', defaults={'parent': None}, methods=['POST'],
  60. strict_slashes=False)
  61. def post_resource(parent):
  62. '''
  63. Add a new resource in a new URI.
  64. '''
  65. headers = std_headers
  66. try:
  67. slug = request.headers['Slug']
  68. except KeyError:
  69. slug = None
  70. try:
  71. rsrc = Ldpc.inst_for_post(parent, slug)
  72. except ResourceNotExistsError as e:
  73. return str(e), 404
  74. except InvalidResourceError as e:
  75. return str(e), 409
  76. rsrc.post(request.get_data().decode('utf-8'))
  77. headers.update({
  78. 'Location' : rsrc.uri,
  79. })
  80. return rsrc.uri, headers, 201
  81. @ldp.route('/<path:uuid>', methods=['PUT'])
  82. def put_resource(uuid):
  83. '''
  84. Add a new resource at a specified URI.
  85. '''
  86. headers = std_headers
  87. rsrc = Ldpc(uuid)
  88. rsrc.put(request.get_data().decode('utf-8'))
  89. return '', 204, headers
  90. @ldp.route('/<path:uuid>', methods=['PATCH'])
  91. def patch_resource(uuid):
  92. '''
  93. Update an existing resource with a SPARQL-UPDATE payload.
  94. '''
  95. headers = std_headers
  96. rsrc = Ldpc(uuid)
  97. try:
  98. rsrc.patch(request.get_data().decode('utf-8'))
  99. except ResourceNotExistsError:
  100. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  101. return '', 204, headers
  102. @ldp.route('/<path:uuid>', methods=['DELETE'])
  103. def delete_resource(uuid):
  104. '''
  105. Delete a resource.
  106. '''
  107. headers = std_headers
  108. rsrc = Ldpc(uuid)
  109. try:
  110. rsrc.delete()
  111. except ResourceNotExistsError:
  112. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  113. return '', 204, headers