server.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. rsrc = LdpRs(uuid).get()
  34. if rsrc:
  35. headers = {
  36. #'ETag' : 'W/"{}"'.format(ret.value(nsc['premis
  37. }
  38. return (rsrc.graph.serialize(format='turtle'), headers)
  39. else:
  40. return ('Resource not found in repository: {}'.format(uuid), 404)
  41. @app.route('/rest/<path:parent>', methods=['POST'])
  42. @app.route('/rest/', defaults={'parent': None}, methods=['POST'])
  43. def post_resource(parent):
  44. '''
  45. Add a new resource in a new URI.
  46. '''
  47. uuid = uuid4()
  48. uuid = '{}/{}'.format(parent, uuid) \
  49. if path else uuid
  50. rsrc = Ldpc(path).post(request.get_data().decode('utf-8'))
  51. return rsrc.uri, 201
  52. @app.route('/rest/<path:uuid>', methods=['PUT'])
  53. def put_resource(uuid):
  54. '''
  55. Add a new resource at a specified URI.
  56. '''
  57. rsrc = Ldpc(uuid).put(request.get_data().decode('utf-8'))
  58. return '', 204
  59. @app.route('/rest/<path:uuid>', methods=['PATCH'])
  60. def patch_resource(uuid):
  61. '''
  62. Add a new resource at a specified URI.
  63. '''
  64. rsrc = Ldpc(uuid).patch(request.get_data().decode('utf-8'))
  65. return '', 204
  66. @app.route('/rest/<path:uuid>', methods=['DELETE'])
  67. def delete_resource(uuid):
  68. '''
  69. Delete a resource.
  70. '''
  71. rsrc = Ldpc(uuid).delete()
  72. return '', 204