ldp.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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. if ret == Ldpr.RES_CREATED:
  176. rsp_code = 201
  177. rsp_headers['Location'] = rsp_body = rsrc.uri
  178. else:
  179. rsp_code = 204
  180. rsp_body = ''
  181. return rsp_body, rsp_code, rsp_headers
  182. @ldp.route('/<path:uuid>', methods=['PATCH'], strict_slashes=False)
  183. def patch_resource(uuid):
  184. '''
  185. Update an existing resource with a SPARQL-UPDATE payload.
  186. '''
  187. headers = std_headers
  188. rsrc = LdpRs(uuid)
  189. if request.mimetype != 'application/sparql-update':
  190. return 'Provided content type is not a valid parsable format: {}'\
  191. .format(request.mimetype), 415
  192. try:
  193. rsrc.patch(request.get_data().decode('utf-8'))
  194. except ResourceNotExistsError as e:
  195. return str(e), 404
  196. except TombstoneError as e:
  197. return _tombstone_response(e, uuid)
  198. except ServerManagedTermError as e:
  199. return str(e), 412
  200. return '', 204, headers
  201. @ldp.route('/<path:uuid>/fcr:metadata', methods=['PATCH'])
  202. def patch_resource_metadata(uuid):
  203. return patch_resource(uuid)
  204. @ldp.route('/<path:uuid>', methods=['DELETE'])
  205. def delete_resource(uuid):
  206. '''
  207. Delete a resource.
  208. '''
  209. headers = std_headers
  210. # If referential integrity is enforced, grab all inbound relationships
  211. # to break them.
  212. repr_opts = {'incl_inbound' : True} \
  213. if current_app.config['store']['ldp_rs']['referential_integrity'] \
  214. else {}
  215. if 'prefer' in request.headers:
  216. prefer = g.tbox.parse_rfc7240(request.headers['prefer'])
  217. leave_tstone = 'no-tombstone' not in prefer
  218. else:
  219. leave_tstone = True
  220. try:
  221. Ldpr.outbound_inst(uuid, repr_opts).delete(leave_tstone=leave_tstone)
  222. except ResourceNotExistsError as e:
  223. return str(e), 404
  224. except TombstoneError as e:
  225. return _tombstone_response(e, uuid)
  226. return '', 204, headers
  227. @ldp.route('/<path:uuid>/fcr:tombstone', methods=['GET', 'POST', 'PUT',
  228. 'PATCH', 'DELETE'])
  229. def tombstone(uuid):
  230. '''
  231. Handle all tombstone operations.
  232. The only allowed method is DELETE; any other verb will return a 405.
  233. '''
  234. logger.debug('Deleting tombstone for {}.'.format(uuid))
  235. rsrc = Ldpr(uuid)
  236. try:
  237. imr = rsrc.imr
  238. except TombstoneError as e:
  239. if request.method == 'DELETE':
  240. if e.uuid == uuid:
  241. rsrc.delete_tombstone()
  242. return '', 204
  243. else:
  244. return _tombstone_response(e, uuid)
  245. else:
  246. return 'Method Not Allowed.', 405
  247. except ResourceNotExistsError as e:
  248. return str(e), 404
  249. else:
  250. return '', 404
  251. def uuid_for_post(parent_uuid=None, slug=None):
  252. '''
  253. Validate conditions to perform a POST and return an LDP resource
  254. UUID for using with the `post` method.
  255. This may raise an exception resulting in a 404 if the parent is not
  256. found or a 409 if the parent is not a valid container.
  257. '''
  258. def split_if_legacy(uuid):
  259. if current_app.config['store']['ldp_rs']['legacy_ptree_split']:
  260. uuid = g.tbox.split_uuid(uuid)
  261. return uuid
  262. # Shortcut!
  263. if not slug and not parent_uuid:
  264. uuid = split_if_legacy(str(uuid4()))
  265. return uuid
  266. parent = Ldpr.outbound_inst(parent_uuid, repr_opts={'incl_children' : False})
  267. if nsc['fcrepo'].Pairtree in parent.types:
  268. raise InvalidResourceError(parent.uuid,
  269. 'Resources cannot be created under a pairtree.')
  270. # Set prefix.
  271. if parent_uuid:
  272. parent_types = { t.identifier for t in \
  273. parent.imr.objects(RDF.type) }
  274. logger.debug('Parent types: {}'.format(pformat(parent_types)))
  275. if nsc['ldp'].Container not in parent_types:
  276. raise InvalidResourceError('Parent {} is not a container.'
  277. .format(parent_uuid))
  278. pfx = parent_uuid + '/'
  279. else:
  280. pfx = ''
  281. # Create candidate UUID and validate.
  282. if slug:
  283. cnd_uuid = pfx + slug
  284. if current_app.rdfly.ask_rsrc_exists(nsc['fcres'][cnd_uuid]):
  285. uuid = pfx + split_if_legacy(str(uuid4()))
  286. else:
  287. uuid = cnd_uuid
  288. else:
  289. uuid = pfx + split_if_legacy(str(uuid4()))
  290. return uuid
  291. def bitstream_from_req():
  292. '''
  293. Find how a binary file and its MIMEtype were uploaded in the request.
  294. '''
  295. logger.debug('Content type: {}'.format(request.mimetype))
  296. logger.debug('files: {}'.format(request.files))
  297. logger.debug('stream: {}'.format(request.stream))
  298. if request.mimetype == 'multipart/form-data':
  299. # This seems the "right" way to upload a binary file, with a
  300. # multipart/form-data MIME type and the file in the `file`
  301. # field. This however is not supported by FCREPO4.
  302. stream = request.files.get('file').stream
  303. mimetype = request.files.get('file').content_type
  304. # @TODO This will turn out useful to provide metadata
  305. # with the binary.
  306. #metadata = request.files.get('metadata').stream
  307. #provided_imr = [parse RDF here...]
  308. else:
  309. # This is a less clean way, with the file in the form body and
  310. # the request as application/x-www-form-urlencoded.
  311. # This is how FCREPO4 accepts binary uploads.
  312. stream = request.stream
  313. mimetype = request.mimetype
  314. return stream, mimetype
  315. def _get_bitstream(rsrc):
  316. out_headers = std_headers
  317. # @TODO This may change in favor of more low-level handling if the file
  318. # system is not local.
  319. return send_file(rsrc.local_path, as_attachment=True,
  320. attachment_filename=rsrc.filename)
  321. def _tombstone_response(e, uuid):
  322. headers = {
  323. 'Link' : '<{}/fcr:tombstone>; rel="hasTombstone"'.format(request.url),
  324. } if e.uuid == uuid else {}
  325. return str(e), 410, headers
  326. def set_post_put_params():
  327. '''
  328. Sets handling and content disposition for POST and PUT by parsing headers.
  329. '''
  330. handling = None
  331. if 'prefer' in request.headers:
  332. prefer = g.tbox.parse_rfc7240(request.headers['prefer'])
  333. logger.debug('Parsed Prefer header: {}'.format(prefer))
  334. if 'handling' in prefer:
  335. handling = prefer['handling']['value']
  336. try:
  337. disposition = g.tbox.parse_rfc7240(
  338. request.headers['content-disposition'])
  339. except KeyError:
  340. disposition = None
  341. return handling, disposition
  342. def is_accept_hdr_rdf_parsable():
  343. '''
  344. Check if any of the 'Accept' header values provided is a RDF parsable
  345. format.
  346. '''
  347. for mimetype in request.accept_mimetypes.values():
  348. if Ldpr.is_rdf_parsable(mimetype):
  349. return True
  350. return False
  351. def parse_repr_options(retr_opts):
  352. '''
  353. Set options to retrieve IMR.
  354. Ideally, IMR retrieval is done once per request, so all the options
  355. are set once in the `imr()` property.
  356. @param retr_opts (dict): Options parsed from `Prefer` header.
  357. '''
  358. logger.debug('Parsing retrieval options: {}'.format(retr_opts))
  359. imr_options = {}
  360. if retr_opts.setdefault('value') == 'minimal':
  361. imr_options = {
  362. 'embed_children' : False,
  363. 'incl_children' : False,
  364. 'incl_inbound' : False,
  365. 'incl_srv_mgd' : False,
  366. }
  367. else:
  368. # Default.
  369. imr_options = {
  370. 'embed_children' : False,
  371. 'incl_children' : True,
  372. 'incl_inbound' : False,
  373. 'incl_srv_mgd' : True,
  374. }
  375. # Override defaults.
  376. if 'parameters' in retr_opts:
  377. include = retr_opts['parameters']['include'].split(' ') \
  378. if 'include' in retr_opts['parameters'] else []
  379. omit = retr_opts['parameters']['omit'].split(' ') \
  380. if 'omit' in retr_opts['parameters'] else []
  381. logger.debug('Include: {}'.format(include))
  382. logger.debug('Omit: {}'.format(omit))
  383. if str(Ldpr.EMBED_CHILD_RES_URI) in include:
  384. imr_options['embed_children'] = True
  385. if str(Ldpr.RETURN_CHILD_RES_URI) in omit:
  386. imr_options['incl_children'] = False
  387. if str(Ldpr.RETURN_INBOUND_REF_URI) in include:
  388. imr_options['incl_inbound'] = True
  389. if str(Ldpr.RETURN_SRV_MGD_RES_URI) in omit:
  390. imr_options['incl_srv_mgd'] = False
  391. logger.debug('Retrieval options: {}'.format(pformat(imr_options)))
  392. return imr_options