server.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. import io
  2. import json
  3. import os.path
  4. import pickle
  5. import arrow
  6. from hashlib import sha1
  7. from uuid import uuid4
  8. from flask import Flask, request, url_for
  9. from lakesuperior.config_parser import config
  10. from lakesuperior.ldp.ldpr import Ldpr, Ldpc, LdpNr
  11. app = Flask(__name__)
  12. app.config.update(config['flask'])
  13. ## ROUTES ##
  14. @app.route('/', methods=['GET'])
  15. def index():
  16. '''
  17. Homepage.
  18. '''
  19. return 'Hello. This is LAKEsuperior.'
  20. @app.route('/debug', methods=['GET'])
  21. def debug():
  22. '''
  23. Debug page.
  24. '''
  25. raise RuntimeError()
  26. ## REST SERVICES ##
  27. @app.route('/rest/<path:uuid>', methods=['GET'])
  28. @app.route('/rest/', defaults={'uuid': None}, methods=['GET'])
  29. def get_resource(uuid):
  30. '''
  31. Retrieve RDF or binary content.
  32. '''
  33. # @TODO Add conditions for LDP-NR
  34. rsrc = Ldpc(uuid).get()
  35. if rsrc:
  36. headers = {
  37. #'ETag' : 'W/"{}"'.format(ret.value(nsc['premis
  38. }
  39. return (rsrc.graph.serialize(format='turtle'), headers)
  40. else:
  41. return ('Resource not found in repository: {}'.format(uuid), 404)
  42. @app.route('/rest/<path:parent>', methods=['POST'])
  43. @app.route('/rest/', defaults={'parent': None}, methods=['POST'])
  44. def post_resource(parent):
  45. '''
  46. Add a new resource in a new URI.
  47. '''
  48. uuid = uuid4()
  49. uuid = '{}/{}'.format(parent, uuid) \
  50. if path else uuid
  51. rsrc = Ldpc(path).post(request.get_data().decode('utf-8'))
  52. return rsrc.uri, 201
  53. @app.route('/rest/<path:uuid>', methods=['PUT'])
  54. def put_resource(uuid):
  55. '''
  56. Add a new resource at a specified URI.
  57. '''
  58. rsrc = Ldpc(uuid).put(request.get_data().decode('utf-8'))
  59. return '', 204
  60. @app.route('/rest/<path:uuid>', methods=['PATCH'])
  61. def patch_resource(uuid):
  62. '''
  63. Add a new resource at a specified URI.
  64. '''
  65. rsrc = Ldpc(uuid).patch(request.get_data().decode('utf-8'))
  66. return '', 204
  67. @app.route('/rest/<path:uuid>', methods=['DELETE'])
  68. def delete_resource(uuid):
  69. '''
  70. Delete a resource.
  71. '''
  72. rsrc = Ldpc(uuid).delete()
  73. return '', 204