ldp.py 19 KB

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