ldp.py 14 KB

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