ldp.py 18 KB

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