ldp_factory.py 5.5 KB

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