ldp.py 3.5 KB

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