ldp_factory.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. import logging
  2. from pprint import pformat
  3. import rdflib
  4. from flask import current_app, g
  5. from rdflib import Graph
  6. from rdflib.resource import Resource
  7. from rdflib.namespace import RDF
  8. from lakesuperior import model
  9. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  10. from lakesuperior.exceptions import (IncompatibleLdpTypeError,
  11. InvalidResourceError, ResourceNotExistsError)
  12. class LdpFactory:
  13. '''
  14. Generate LDP instances.
  15. The instance classes are based on provided client data or on stored data.
  16. '''
  17. LDP_NR_TYPE = nsc['ldp'].NonRDFSource
  18. LDP_RS_TYPE = nsc['ldp'].RDFSource
  19. _logger = logging.getLogger(__name__)
  20. @staticmethod
  21. def from_stored(uid, repr_opts={}, **kwargs):
  22. '''
  23. Create an instance for retrieval purposes.
  24. This factory method creates and returns an instance of an LDPR subclass
  25. based on information that needs to be queried from the underlying
  26. graph store.
  27. N.B. The resource must exist.
  28. @param uid UID of the instance.
  29. '''
  30. #__class__._logger.info('Retrieving stored resource: {}'.format(uid))
  31. imr_urn = nsc['fcres'][uid]
  32. rsrc_meta = current_app.rdfly.get_metadata(uid)
  33. #__class__._logger.debug('Extracted metadata: {}'.format(
  34. # pformat(set(rsrc_meta.graph))))
  35. rdf_types = set(rsrc_meta.graph[imr_urn : RDF.type])
  36. if __class__.LDP_NR_TYPE in rdf_types:
  37. __class__._logger.info('Resource is a LDP-NR.')
  38. rsrc = model.ldp_nr.LdpNr(uid, repr_opts, **kwargs)
  39. elif __class__.LDP_RS_TYPE in rdf_types:
  40. __class__._logger.info('Resource is a LDP-RS.')
  41. rsrc = model.ldp_rs.LdpRs(uid, repr_opts, **kwargs)
  42. else:
  43. raise ResourceNotExistsError(uid)
  44. # Sneak in the already extracted metadata to save a query.
  45. rsrc._metadata = rsrc_meta
  46. return rsrc
  47. @staticmethod
  48. def from_provided(uid, content_length, mimetype, stream, **kwargs):
  49. '''
  50. Determine LDP type from request content.
  51. @param uid (string) UID of the resource to be created or updated.
  52. @param content_length (int) The provided content length.
  53. @param mimetype (string) The provided content MIME type.
  54. @param stream (IOStream) The provided data stream. This can be RDF or
  55. non-RDF content.
  56. '''
  57. urn = nsc['fcres'][uid]
  58. logger = __class__._logger
  59. if not content_length:
  60. # Create empty LDPC.
  61. logger.info('No data received in request. '
  62. 'Creating empty container.')
  63. inst = model.ldp_rs.Ldpc(
  64. uid, provided_imr=Resource(Graph(), urn), **kwargs)
  65. elif __class__.is_rdf_parsable(mimetype):
  66. # Create container and populate it with provided RDF data.
  67. input_rdf = stream.read()
  68. provided_gr = Graph().parse(data=input_rdf,
  69. format=mimetype, publicID=urn)
  70. #logger.debug('Provided graph: {}'.format(
  71. # pformat(set(provided_gr))))
  72. local_gr = g.tbox.localize_graph(provided_gr)
  73. #logger.debug('Parsed local graph: {}'.format(
  74. # pformat(set(local_gr))))
  75. provided_imr = Resource(local_gr, urn)
  76. # Determine whether it is a basic, direct or indirect container.
  77. Ldpr = model.ldpr.Ldpr
  78. if Ldpr.MBR_RSRC_URI in local_gr.predicates() and \
  79. Ldpr.MBR_REL_URI in local_gr.predicates():
  80. if Ldpr.INS_CNT_REL_URI in local_gr.predicates():
  81. cls = model.ldp_rs.LdpIc
  82. else:
  83. cls = model.ldp_rs.LdpDc
  84. else:
  85. cls = model.ldp_rs.Ldpc
  86. inst = cls(uid, provided_imr=provided_imr, **kwargs)
  87. # Make sure we are not updating an LDP-RS with an LDP-NR.
  88. if inst.is_stored and __class__.LDP_NR_TYPE in inst.ldp_types:
  89. raise IncompatibleLdpTypeError(uid, mimetype)
  90. inst._check_mgd_terms(inst.provided_imr.graph)
  91. else:
  92. # Create a LDP-NR and equip it with the binary file provided.
  93. provided_imr = Resource(Graph(), urn)
  94. inst = model.ldp_nr.LdpNr(uid, stream=stream, mimetype=mimetype,
  95. provided_imr=provided_imr, **kwargs)
  96. # Make sure we are not updating an LDP-NR with an LDP-RS.
  97. if inst.is_stored and __class__.LDP_RS_TYPE in inst.ldp_types:
  98. raise IncompatibleLdpTypeError(uid, mimetype)
  99. logger.info('Creating resource of type: {}'.format(
  100. inst.__class__.__name__))
  101. try:
  102. types = inst.types
  103. except:
  104. types = set()
  105. if nsc['fcrepo'].Pairtree in types:
  106. raise InvalidResourceError(inst.uid, 'Resource {} is a Pairtree.')
  107. return inst
  108. @staticmethod
  109. def is_rdf_parsable(mimetype):
  110. '''
  111. Checks whether a MIME type support RDF parsing by a RDFLib plugin.
  112. @param mimetype (string) MIME type to check.
  113. '''
  114. try:
  115. rdflib.plugin.get(mimetype, rdflib.parser.Parser)
  116. except rdflib.plugin.PluginException:
  117. return False
  118. else:
  119. return True
  120. @staticmethod
  121. def is_rdf_serializable(mimetype):
  122. '''
  123. Checks whether a MIME type support RDF serialization by a RDFLib plugin
  124. @param mimetype (string) MIME type to check.
  125. '''
  126. try:
  127. rdflib.plugin.get(mimetype, rdflib.serializer.Serializer)
  128. except rdflib.plugin.PluginException:
  129. return False
  130. else:
  131. return True