server.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. InvalidResourceError, ResourceNotExistsError
  12. app = Flask(__name__)
  13. app.config.update(config['flask'])
  14. ## ROUTES ##
  15. @app.route('/', methods=['GET'])
  16. def index():
  17. '''
  18. Homepage.
  19. '''
  20. return 'Hello. This is LAKEsuperior.'
  21. @app.route('/debug', methods=['GET'])
  22. def debug():
  23. '''
  24. Debug page.
  25. '''
  26. raise RuntimeError()
  27. ## REST SERVICES ##
  28. @app.route('/rest/<path:uuid>', methods=['GET'])
  29. @app.route('/rest/', defaults={'uuid': None}, methods=['GET'])
  30. def get_resource(uuid):
  31. '''
  32. Retrieve RDF or binary content.
  33. '''
  34. # @TODO Add conditions for LDP-NR
  35. rsrc = Ldpc(uuid)
  36. try:
  37. out = rsrc.get()
  38. except ResourceNotExistsError:
  39. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  40. else:
  41. headers = rsrc.head()
  42. return (out.graph.serialize(format='turtle'), headers)
  43. @app.route('/rest/<path:parent>', methods=['POST'])
  44. @app.route('/rest/', defaults={'parent': None}, methods=['POST'])
  45. def post_resource(parent):
  46. '''
  47. Add a new resource in a new URI.
  48. '''
  49. try:
  50. rsrc = Ldpc.inst_for_post(parent, request.headers['Slug'] or None)
  51. except ResourceNotExistsError as e:
  52. return str(e), 404
  53. except InvalidResourceError as e:
  54. return str(e), 409
  55. rsrc.post(request.get_data().decode('utf-8'))
  56. headers = {
  57. 'Location' : rsrc.uri
  58. }
  59. return rsrc.uri, headers, 201
  60. @app.route('/rest/<path:uuid>', methods=['PUT'])
  61. def put_resource(uuid):
  62. '''
  63. Add a new resource at a specified URI.
  64. '''
  65. rsrc = Ldpc(uuid)
  66. rsrc.put(request.get_data().decode('utf-8'))
  67. return '', 204
  68. @app.route('/rest/<path:uuid>', methods=['PATCH'])
  69. def patch_resource(uuid):
  70. '''
  71. Update an existing resource with a SPARQL-UPDATE payload.
  72. '''
  73. rsrc = Ldpc(uuid)
  74. try:
  75. rsrc.patch(request.get_data().decode('utf-8'))
  76. except ResourceNotExistsError:
  77. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  78. return '', 204
  79. @app.route('/rest/<path:uuid>', methods=['DELETE'])
  80. def delete_resource(uuid):
  81. '''
  82. Delete a resource.
  83. '''
  84. rsrc = Ldpc(uuid)
  85. try:
  86. rsrc.delete()
  87. except ResourceNotExistsError:
  88. return 'Resource #{} not found.'.format(rsrc.uuid), 404
  89. return '', 204