ldp.py 14 KB

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