ldp.py 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. import logging
  2. from collections import defaultdict
  3. from flask import Blueprint, request
  4. from lakesuperior.exceptions import InvalidResourceError, \
  5. ResourceExistsError, ResourceNotExistsError, \
  6. InvalidResourceError, ServerManagedTermError
  7. from lakesuperior.model.ldp_rs import Ldpc, LdpRs
  8. from lakesuperior.model.ldp_nr import LdpNr
  9. from lakesuperior.store_layouts.rdf.base_rdf_layout import BaseRdfLayout
  10. from lakesuperior.util.translator import Translator
  11. logger = logging.getLogger(__name__)
  12. # Blueprint for LDP REST API. This is what is usually found under `/rest/` in
  13. # standard fcrepo4. Here, it is under `/ldp` but initially `/rest` can be kept
  14. # for backward compatibility.
  15. ldp = Blueprint('ldp', __name__)
  16. accept_patch = (
  17. 'application/sparql-update',
  18. )
  19. accept_post_rdf = (
  20. 'application/ld+json',
  21. 'application/n-triples',
  22. 'application/rdf+xml',
  23. #'application/x-turtle',
  24. #'application/xhtml+xml',
  25. #'application/xml',
  26. #'text/html',
  27. 'text/n3',
  28. #'text/plain',
  29. 'text/rdf+n3',
  30. 'text/turtle',
  31. )
  32. #allow = (
  33. # 'COPY',
  34. # 'DELETE',
  35. # 'GET',
  36. # 'HEAD',
  37. # 'MOVE',
  38. # 'OPTIONS',
  39. # 'PATCH',
  40. # 'POST',
  41. # 'PUT',
  42. #)
  43. std_headers = {
  44. 'Accept-Patch' : ','.join(accept_patch),
  45. 'Accept-Post' : ','.join(accept_post_rdf),
  46. #'Allow' : ','.join(allow),
  47. }
  48. ## REST SERVICES ##
  49. @ldp.route('/<path:uuid>', methods=['GET'])
  50. @ldp.route('/', defaults={'uuid': None}, methods=['GET'],
  51. strict_slashes=False)
  52. def get_resource(uuid):
  53. '''
  54. Retrieve RDF or binary content.
  55. '''
  56. out_headers = std_headers
  57. pref_return = defaultdict(dict)
  58. if 'prefer' in request.headers:
  59. prefer = Translator.parse_rfc7240(request.headers['prefer'])
  60. logger.debug('Parsed Prefer header: {}'.format(prefer))
  61. if 'return' in prefer:
  62. pref_return = prefer['return']
  63. # @TODO Add conditions for LDP-NR
  64. rsrc = Ldpc(uuid)
  65. try:
  66. out = rsrc.get(pref_return=pref_return)
  67. except ResourceNotExistsError:
  68. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  69. else:
  70. out_headers = rsrc.head()
  71. return (out.graph.serialize(format='turtle'), out_headers)
  72. @ldp.route('/<path:parent>', methods=['POST'])
  73. @ldp.route('/', defaults={'parent': None}, methods=['POST'],
  74. strict_slashes=False)
  75. def post_resource(parent):
  76. '''
  77. Add a new resource in a new URI.
  78. '''
  79. out_headers = std_headers
  80. try:
  81. slug = request.headers['Slug']
  82. except KeyError:
  83. slug = None
  84. logger.debug('Content type: {}'.format(request.mimetype))
  85. logger.debug('files: {}'.format(request.files))
  86. #logger.debug('stream: {}'.format(request.stream))
  87. #logger.debug('form: {}'.format(request.form))
  88. #logger.debug('data: {}'.format(request.data))
  89. if request.mimetype in accept_post_rdf:
  90. cls = Ldpc
  91. data = request.data.decode('utf-8')
  92. else:
  93. cls = LdpNr
  94. if request.mimetype == 'multipart/form-data':
  95. # This seems the "right" way to upload a binary file, with a multipart/
  96. # form-data MIME type and the file in the `file` field. This however is
  97. # not supported by FCREPO4.
  98. data = request.files.get('file')
  99. else:
  100. # This is a less clean way, with the file in the form body and the
  101. # request as application/x-www-form-urlencoded.
  102. # This is how FCREPO4 accepts binary uploads.
  103. data = request.data
  104. logger.info('POSTing resource of type: {}'.format(cls.__name__))
  105. #logger.info('POST data: {}'.format(data))
  106. try:
  107. rsrc = cls.inst_for_post(parent, slug)
  108. except ResourceNotExistsError as e:
  109. return str(e), 404
  110. except InvalidResourceError as e:
  111. return str(e), 409
  112. try:
  113. rsrc.post(data)
  114. except ServerManagedTermError as e:
  115. return str(e), 412
  116. out_headers.update({
  117. 'Location' : rsrc.uri,
  118. })
  119. return rsrc.uri, out_headers, 201
  120. @ldp.route('/<path:uuid>', methods=['PUT'])
  121. def put_resource(uuid):
  122. '''
  123. Add a new resource at a specified URI.
  124. '''
  125. logger.info('Request headers: {}'.format(request.headers))
  126. rsp_headers = std_headers
  127. rsrc = Ldpc(uuid)
  128. logger.debug('form: {}'.format(request.form))
  129. # Parse headers.
  130. pref_handling = None
  131. if 'prefer' in request.headers:
  132. prefer = Translator.parse_rfc7240(request.headers['prefer'])
  133. logger.debug('Parsed Prefer header: {}'.format(prefer))
  134. if 'handling' in prefer:
  135. pref_handling = prefer['handling']['value']
  136. try:
  137. ret = rsrc.put(
  138. request.get_data().decode('utf-8'),
  139. handling=pref_handling
  140. )
  141. except InvalidResourceError as e:
  142. return str(e), 409
  143. except ResourceExistsError as e:
  144. return str(e), 409
  145. except ServerManagedTermError as e:
  146. return str(e), 412
  147. else:
  148. res_code = 201 if ret == BaseRdfLayout.RES_CREATED else 204
  149. return '', res_code, rsp_headers
  150. @ldp.route('/<path:uuid>', methods=['PATCH'])
  151. def patch_resource(uuid):
  152. '''
  153. Update an existing resource with a SPARQL-UPDATE payload.
  154. '''
  155. headers = std_headers
  156. rsrc = Ldpc(uuid)
  157. try:
  158. rsrc.patch(request.get_data().decode('utf-8'))
  159. except ResourceNotExistsError:
  160. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  161. except ServerManagedTermError as e:
  162. return str(e), 412
  163. return '', 204, headers
  164. @ldp.route('/<path:uuid>', methods=['DELETE'])
  165. def delete_resource(uuid):
  166. '''
  167. Delete a resource.
  168. '''
  169. headers = std_headers
  170. rsrc = Ldpc(uuid)
  171. try:
  172. rsrc.delete()
  173. except ResourceNotExistsError:
  174. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  175. return '', 204, headers