ldp.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. import logging
  2. from collections import defaultdict
  3. from pprint import pformat
  4. from uuid import uuid4
  5. from flask import Blueprint, current_app, g, request, send_file, url_for
  6. from rdflib import Graph
  7. from rdflib.namespace import RDF, XSD
  8. from werkzeug.datastructures import FileStorage
  9. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  10. from lakesuperior.exceptions import *
  11. from lakesuperior.model.ldpr import Ldpr
  12. from lakesuperior.model.ldp_nr import LdpNr
  13. from lakesuperior.model.ldp_rs import Ldpc, LdpDc, LdpIc, LdpRs
  14. from lakesuperior.toolbox import Toolbox
  15. logger = logging.getLogger(__name__)
  16. # Blueprint for LDP REST API. This is what is usually found under `/rest/` in
  17. # standard fcrepo4. Here, it is under `/ldp` but initially `/rest` can be kept
  18. # for backward compatibility.
  19. ldp = Blueprint('ldp', __name__)
  20. accept_patch = (
  21. 'application/sparql-update',
  22. )
  23. accept_rdf = (
  24. 'application/ld+json',
  25. 'application/n-triples',
  26. 'application/rdf+xml',
  27. #'application/x-turtle',
  28. #'application/xhtml+xml',
  29. #'application/xml',
  30. #'text/html',
  31. 'text/n3',
  32. #'text/plain',
  33. 'text/rdf+n3',
  34. 'text/turtle',
  35. )
  36. #allow = (
  37. # 'COPY',
  38. # 'DELETE',
  39. # 'GET',
  40. # 'HEAD',
  41. # 'MOVE',
  42. # 'OPTIONS',
  43. # 'PATCH',
  44. # 'POST',
  45. # 'PUT',
  46. #)
  47. std_headers = {
  48. 'Accept-Patch' : ','.join(accept_patch),
  49. 'Accept-Post' : ','.join(accept_rdf),
  50. #'Allow' : ','.join(allow),
  51. }
  52. @ldp.url_defaults
  53. def bp_url_defaults(endpoint, values):
  54. url_prefix = getattr(g, 'url_prefix', None)
  55. if url_prefix is not None:
  56. values.setdefault('url_prefix', url_prefix)
  57. @ldp.url_value_preprocessor
  58. def bp_url_value_preprocessor(endpoint, values):
  59. g.url_prefix = values.pop('url_prefix')
  60. ## REST SERVICES ##
  61. @ldp.route('/<path:uuid>', methods=['GET'], strict_slashes=False)
  62. @ldp.route('/', defaults={'uuid': None}, methods=['GET'], strict_slashes=False)
  63. @ldp.route('/<path:uuid>/fcr:metadata', defaults={'force_rdf' : True},
  64. methods=['GET'])
  65. def get_resource(uuid, force_rdf=False):
  66. '''
  67. Retrieve RDF or binary content.
  68. @param uuid (string) UUID of resource to retrieve.
  69. @param force_rdf (boolean) Whether to retrieve RDF even if the resource is
  70. a LDP-NR. This is not available in the API but is used e.g. by the
  71. `*/fcr:metadata` endpoint. The default is False.
  72. '''
  73. out_headers = std_headers
  74. repr_options = defaultdict(dict)
  75. if 'prefer' in request.headers:
  76. prefer = Toolbox().parse_rfc7240(request.headers['prefer'])
  77. logger.debug('Parsed Prefer header: {}'.format(pformat(prefer)))
  78. if 'return' in prefer:
  79. repr_options = parse_repr_options(prefer['return'])
  80. try:
  81. rsrc = Ldpr.outbound_inst(uuid, repr_options)
  82. except ResourceNotExistsError as e:
  83. return str(e), 404
  84. except TombstoneError as e:
  85. return _tombstone_response(e, uuid)
  86. else:
  87. out_headers.update(rsrc.head())
  88. if isinstance(rsrc, LdpRs) \
  89. or is_accept_hdr_rdf_parsable() \
  90. or force_rdf:
  91. return (rsrc.get(), out_headers)
  92. else:
  93. return send_file(rsrc.local_path, as_attachment=True,
  94. attachment_filename=rsrc.filename)
  95. @ldp.route('/<path:parent>', methods=['POST'], strict_slashes=False)
  96. @ldp.route('/', defaults={'parent': None}, methods=['POST'],
  97. strict_slashes=False)
  98. def post_resource(parent):
  99. '''
  100. Add a new resource in a new URI.
  101. '''
  102. out_headers = std_headers
  103. try:
  104. slug = request.headers['Slug']
  105. logger.info('Slug: {}'.format(slug))
  106. except KeyError:
  107. slug = None
  108. handling, disposition = set_post_put_params()
  109. stream, mimetype = bitstream_from_req()
  110. try:
  111. uuid = uuid_for_post(parent, slug)
  112. rsrc = Ldpr.inbound_inst(uuid, content_length=request.content_length,
  113. stream=stream, mimetype=mimetype, handling=handling,
  114. disposition=disposition)
  115. except ResourceNotExistsError as e:
  116. return str(e), 404
  117. except InvalidResourceError as e:
  118. return str(e), 409
  119. except TombstoneError as e:
  120. return _tombstone_response(e, uuid)
  121. try:
  122. rsrc.post()
  123. except ServerManagedTermError as e:
  124. return str(e), 412
  125. out_headers.update({
  126. 'Location' : rsrc.uri,
  127. })
  128. return rsrc.uri, 201, out_headers
  129. @ldp.route('/<path:uuid>', methods=['PUT'], strict_slashes=False)
  130. @ldp.route('/<path:uuid>/fcr:metadata', defaults={'force_rdf' : True},
  131. methods=['PUT'])
  132. def put_resource(uuid):
  133. '''
  134. Add a new resource at a specified URI.
  135. '''
  136. # Parse headers.
  137. logger.info('Request headers: {}'.format(request.headers))
  138. rsp_headers = std_headers
  139. handling, disposition = set_post_put_params()
  140. stream, mimetype = bitstream_from_req()
  141. try:
  142. rsrc = Ldpr.inbound_inst(uuid, content_length=request.content_length,
  143. stream=stream, mimetype=mimetype, handling=handling,
  144. disposition=disposition)
  145. except InvalidResourceError as e:
  146. return str(e), 409
  147. except ServerManagedTermError as e:
  148. return str(e), 412
  149. except IncompatibleLdpTypeError as e:
  150. return str(e), 415
  151. try:
  152. ret = rsrc.put()
  153. except (InvalidResourceError, ResourceExistsError ) as e:
  154. return str(e), 409
  155. except TombstoneError as e:
  156. return _tombstone_response(e, uuid)
  157. res_code = 201 if ret == Ldpr.RES_CREATED else 204
  158. return rsrc.uri, res_code, rsp_headers
  159. @ldp.route('/<path:uuid>', methods=['PATCH'], strict_slashes=False)
  160. def patch_resource(uuid):
  161. '''
  162. Update an existing resource with a SPARQL-UPDATE payload.
  163. '''
  164. headers = std_headers
  165. rsrc = LdpRs(uuid)
  166. if request.mimetype != 'application/sparql-update':
  167. return 'Provided content type is not a valid parsable format: {}'\
  168. .format(request.mimetype), 415
  169. try:
  170. rsrc.patch(request.get_data().decode('utf-8'))
  171. except ResourceNotExistsError as e:
  172. return str(e), 404
  173. except TombstoneError as e:
  174. return _tombstone_response(e, uuid)
  175. except ServerManagedTermError as e:
  176. return str(e), 412
  177. return '', 204, headers
  178. @ldp.route('/<path:uuid>/fcr:metadata', methods=['PATCH'])
  179. def patch_resource_metadata(uuid):
  180. return patch_resource(uuid)
  181. @ldp.route('/<path:uuid>', methods=['DELETE'])
  182. def delete_resource(uuid):
  183. '''
  184. Delete a resource.
  185. '''
  186. headers = std_headers
  187. # If referential integrity is enforced, grab all inbound relationships
  188. # to break them.
  189. repr_opts = {'incl_inbound' : True} \
  190. if current_app.config['store']['ldp_rs']['referential_integrity'] \
  191. else {}
  192. if 'prefer' in request.headers:
  193. prefer = Toolbox().parse_rfc7240(request.headers['prefer'])
  194. leave_tstone = 'no-tombstone' not in prefer
  195. else:
  196. leave_tstone = True
  197. try:
  198. Ldpr.outbound_inst(uuid, repr_opts).delete(leave_tstone=leave_tstone)
  199. except ResourceNotExistsError as e:
  200. return str(e), 404
  201. except TombstoneError as e:
  202. return _tombstone_response(e, uuid)
  203. return '', 204, headers
  204. @ldp.route('/<path:uuid>/fcr:tombstone', methods=['GET', 'POST', 'PUT',
  205. 'PATCH', 'DELETE'])
  206. def tombstone(uuid):
  207. '''
  208. Handle all tombstone operations.
  209. The only allowed method is DELETE; any other verb will return a 405.
  210. '''
  211. logger.debug('Deleting tombstone for {}.'.format(uuid))
  212. rsrc = Ldpr(uuid)
  213. try:
  214. imr = rsrc.imr
  215. except TombstoneError as e:
  216. if request.method == 'DELETE':
  217. if e.uuid == uuid:
  218. rsrc.delete_tombstone()
  219. return '', 204
  220. else:
  221. return _tombstone_response(e, uuid)
  222. else:
  223. return 'Method Not Allowed.', 405
  224. except ResourceNotExistsError as e:
  225. return str(e), 404
  226. else:
  227. return '', 404
  228. def uuid_for_post(parent_uuid=None, slug=None):
  229. '''
  230. Validate conditions to perform a POST and return an LDP resource
  231. UUID for using with the `post` method.
  232. This may raise an exception resulting in a 404 if the parent is not
  233. found or a 409 if the parent is not a valid container.
  234. '''
  235. def split_if_legacy(uuid):
  236. if current_app.config['store']['ldp_rs']['legacy_ptree_split']:
  237. uuid = Toolbox().split_uuid(uuid)
  238. return uuid
  239. # Shortcut!
  240. if not slug and not parent_uuid:
  241. uuid = split_if_legacy(str(uuid4()))
  242. return uuid
  243. parent = Ldpr.outbound_inst(parent_uuid, repr_opts={'incl_children' : False})
  244. if nsc['fcrepo'].Pairtree in parent.types:
  245. raise InvalidResourceError(parent.uuid,
  246. 'Resources cannot be created under a pairtree.')
  247. # Set prefix.
  248. if parent_uuid:
  249. parent_types = { t.identifier for t in \
  250. parent.imr.objects(RDF.type) }
  251. logger.debug('Parent types: {}'.format(pformat(parent_types)))
  252. if nsc['ldp'].Container not in parent_types:
  253. raise InvalidResourceError('Parent {} is not a container.'
  254. .format(parent_uuid))
  255. pfx = parent_uuid + '/'
  256. else:
  257. pfx = ''
  258. # Create candidate UUID and validate.
  259. if slug:
  260. cnd_uuid = pfx + slug
  261. if current_app.rdfly.ask_rsrc_exists(nsc['fcres'][cnd_uuid]):
  262. uuid = pfx + split_if_legacy(str(uuid4()))
  263. else:
  264. uuid = cnd_uuid
  265. else:
  266. uuid = pfx + split_if_legacy(str(uuid4()))
  267. return uuid
  268. def bitstream_from_req():
  269. '''
  270. Find how a binary file and its MIMEtype were uploaded in the request.
  271. '''
  272. logger.debug('Content type: {}'.format(request.mimetype))
  273. logger.debug('files: {}'.format(request.files))
  274. logger.debug('stream: {}'.format(request.stream))
  275. if request.mimetype == 'multipart/form-data':
  276. # This seems the "right" way to upload a binary file, with a
  277. # multipart/form-data MIME type and the file in the `file`
  278. # field. This however is not supported by FCREPO4.
  279. stream = request.files.get('file').stream
  280. mimetype = request.files.get('file').content_type
  281. # @TODO This will turn out useful to provide metadata
  282. # with the binary.
  283. #metadata = request.files.get('metadata').stream
  284. #provided_imr = [parse RDF here...]
  285. else:
  286. # This is a less clean way, with the file in the form body and
  287. # the request as application/x-www-form-urlencoded.
  288. # This is how FCREPO4 accepts binary uploads.
  289. stream = request.stream
  290. mimetype = request.mimetype
  291. return stream, mimetype
  292. def _get_bitstream(rsrc):
  293. out_headers = std_headers
  294. # @TODO This may change in favor of more low-level handling if the file
  295. # system is not local.
  296. return send_file(rsrc.local_path, as_attachment=True,
  297. attachment_filename=rsrc.filename)
  298. def _tombstone_response(e, uuid):
  299. headers = {
  300. 'Link' : '<{}/fcr:tombstone>; rel="hasTombstone"'.format(request.url),
  301. } if e.uuid == uuid else {}
  302. return str(e), 410, headers
  303. def set_post_put_params():
  304. '''
  305. Sets handling and content disposition for POST and PUT by parsing headers.
  306. '''
  307. handling = None
  308. if 'prefer' in request.headers:
  309. prefer = Toolbox().parse_rfc7240(request.headers['prefer'])
  310. logger.debug('Parsed Prefer header: {}'.format(prefer))
  311. if 'handling' in prefer:
  312. handling = prefer['handling']['value']
  313. try:
  314. disposition = Toolbox().parse_rfc7240(
  315. request.headers['content-disposition'])
  316. except KeyError:
  317. disposition = None
  318. return handling, disposition
  319. def is_accept_hdr_rdf_parsable():
  320. '''
  321. Check if any of the 'Accept' header values provided is a RDF parsable
  322. format.
  323. '''
  324. for mimetype in request.accept_mimetypes.values():
  325. if Ldpr.is_rdf_parsable(mimetype):
  326. return True
  327. return False
  328. def parse_repr_options(retr_opts):
  329. '''
  330. Set options to retrieve IMR.
  331. Ideally, IMR retrieval is done once per request, so all the options
  332. are set once in the `imr()` property.
  333. @param retr_opts (dict): Options parsed from `Prefer` header.
  334. '''
  335. logger.debug('Parsing retrieval options: {}'.format(retr_opts))
  336. imr_options = {}
  337. if retr_opts.setdefault('value') == 'minimal':
  338. imr_options = {
  339. 'embed_children' : False,
  340. 'incl_children' : False,
  341. 'incl_inbound' : False,
  342. 'incl_srv_mgd' : False,
  343. }
  344. else:
  345. # Default.
  346. imr_options = {
  347. 'embed_children' : False,
  348. 'incl_children' : True,
  349. 'incl_inbound' : False,
  350. 'incl_srv_mgd' : True,
  351. }
  352. # Override defaults.
  353. if 'parameters' in retr_opts:
  354. include = retr_opts['parameters']['include'].split(' ') \
  355. if 'include' in retr_opts['parameters'] else []
  356. omit = retr_opts['parameters']['omit'].split(' ') \
  357. if 'omit' in retr_opts['parameters'] else []
  358. logger.debug('Include: {}'.format(include))
  359. logger.debug('Omit: {}'.format(omit))
  360. if str(Ldpr.EMBED_CHILD_RES_URI) in include:
  361. imr_options['embed_children'] = True
  362. if str(Ldpr.RETURN_CHILD_RES_URI) in omit:
  363. imr_options['incl_children'] = False
  364. if str(Ldpr.RETURN_INBOUND_REF_URI) in include:
  365. imr_options['incl_inbound'] = True
  366. if str(Ldpr.RETURN_SRV_MGD_RES_URI) in omit:
  367. imr_options['incl_srv_mgd'] = False
  368. logger.debug('Retrieval options: {}'.format(pformat(imr_options)))
  369. return imr_options