generic_resource.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. from flask import current_app, g
  2. from rdflib.resource import Resource
  3. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  4. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  5. from lakesuperior.store_layouts.ldp_rs.rsrc_centric_layout import PTREE_GR_URI
  6. class GenericResource:
  7. '''
  8. Generic RDF resource.
  9. This may not have a dedicated named graph.
  10. '''
  11. def __init__(self, uid):
  12. '''
  13. Initialize a generic resource.
  14. '''
  15. self.uid = uid
  16. self.urn = nsc['fcres'][uid]
  17. self.rdfly = current_app.rdfly
  18. @property
  19. def metadata(self):
  20. if not hasattr(self, '_metadata'):
  21. gr = self.rdfly.get_raw(self.urn)
  22. self._metadata = Resource(gr, self.urn)
  23. return self._metadata
  24. @property
  25. def out_graph(self):
  26. return self.metadata.graph
  27. def head(self):
  28. '''
  29. No-op to keep consistency with methods that may request this
  30. without knowing if it is a LDP resource or what else.
  31. '''
  32. return {}
  33. def extract(self, p=None, o=None):
  34. '''
  35. Extract an in-memory copy of the resource containing either a
  36. sub-graph, defined with the `p` and `o` parameters, or the whole
  37. resource.
  38. '''
  39. # @TODO
  40. pass
  41. class PathSegment(GenericResource):
  42. '''
  43. Represent a path segment in a URI.
  44. A path segment is not an LDP resource, and its metadata should be confined
  45. to a separate, generic named graph.
  46. '''
  47. @property
  48. def metadata(self):
  49. if not hasattr(self, '_metadata'):
  50. gr = self.rdfly.get_raw(self.urn, PTREE_GR_URI)
  51. self._metadata = Resource(gr, self.urn)
  52. return self._metadata
  53. def get(self):
  54. '''
  55. Get an RDF representation of the resource.
  56. Internal URNs are replaced by global URIs using the endpoint webroot.
  57. The resource has very few triples so no namespace manager is used to
  58. reduce output size.
  59. '''
  60. return g.tbox.globalize_graph(self.out_graph)