ldp.py 14 KB

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