Browse Source

Fix parental issues.

Stefano Cossu 7 years ago
parent
commit
231ce7c842

+ 10 - 1
lakesuperior/endpoints/ldp.py

@@ -56,6 +56,11 @@ std_headers = {
     #'Allow' : ','.join(allow),
     #'Allow' : ','.join(allow),
 }
 }
 
 
+'''Predicates excluded by view.'''
+vw_blacklist = {
+    nsc['fcrepo'].contains,
+}
+
 @ldp.url_defaults
 @ldp.url_defaults
 def bp_url_defaults(endpoint, values):
 def bp_url_defaults(endpoint, values):
     url_prefix = getattr(g, 'url_prefix', None)
     url_prefix = getattr(g, 'url_prefix', None)
@@ -128,8 +133,12 @@ def get_resource(uuid, force_rdf=False):
             resp = rsrc.get()
             resp = rsrc.get()
             if request.accept_mimetypes.best == 'text/html':
             if request.accept_mimetypes.best == 'text/html':
                 rsrc = resp.resource(request.path)
                 rsrc = resp.resource(request.path)
-                return render_template('resource.html', rsrc=rsrc, nsm=nsm)
+                return render_template(
+                        'resource.html', rsrc=rsrc, nsm=nsm,
+                        blacklist = vw_blacklist)
             else:
             else:
+                for p in vw_blacklist:
+                    resp.remove((None, p, None))
                 return (resp.serialize(format='turtle'), out_headers)
                 return (resp.serialize(format='turtle'), out_headers)
         else:
         else:
             logger.info('Streaming out binary content.')
             logger.info('Streaming out binary content.')

+ 2 - 0
lakesuperior/endpoints/templates/resource.html

@@ -38,6 +38,7 @@
     </thead>
     </thead>
     <tbody>
     <tbody>
     {% for t in rsrc.graph | sort %}
     {% for t in rsrc.graph | sort %}
+        {% if t[1] not in blacklist %}
         <tr>
         <tr>
             <!--
             <!--
             <td>
             <td>
@@ -64,6 +65,7 @@
             {% endif %}
             {% endif %}
             </td>
             </td>
         </tr>
         </tr>
+        {% endif %}
     {% endfor %}
     {% endfor %}
     </tbody>
     </tbody>
 </table>
 </table>

+ 23 - 14
lakesuperior/model/ldpr.py

@@ -801,8 +801,8 @@ class Ldpr(metaclass=ABCMeta):
                     self._logger.info('Removing offending type: {}'.format(t))
                     self._logger.info('Removing offending type: {}'.format(t))
                     gr.remove((None, RDF.type, t))
                     gr.remove((None, RDF.type, t))
 
 
-        #self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
-        #    format='turtle').decode('utf-8')))
+        self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
+            format='turtle').decode('utf-8')))
         return gr
         return gr
 
 
 
 
@@ -839,14 +839,11 @@ class Ldpr(metaclass=ABCMeta):
           pairtree nodes are created for a/b and a/b/c.
           pairtree nodes are created for a/b and a/b/c.
         - If e is being created, the root node becomes container of e.
         - If e is being created, the root node becomes container of e.
         '''
         '''
-        # @FIXME Circular reference.
-        from lakesuperior.model.ldp_rs import Ldpc
-
         if self.urn == self.ROOT_NODE_URN:
         if self.urn == self.ROOT_NODE_URN:
             return
             return
         elif '/' in self.uuid:
         elif '/' in self.uuid:
             # Traverse up the hierarchy to find the parent.
             # Traverse up the hierarchy to find the parent.
-            parent_uri = self._find_parent_or_create_pairtree(self.uuid)
+            parent_uri = self._find_parent_or_create_pairtree()
         else:
         else:
             parent_uri = self.ROOT_NODE_URN
             parent_uri = self.ROOT_NODE_URN
 
 
@@ -861,7 +858,7 @@ class Ldpr(metaclass=ABCMeta):
         self._add_ldp_dc_ic_rel(parent_uri)
         self._add_ldp_dc_ic_rel(parent_uri)
 
 
 
 
-    def _find_parent_or_create_pairtree(self, uuid):
+    def _find_parent_or_create_pairtree(self):
         '''
         '''
         Check the path-wise parent of the new resource. If it exists, return
         Check the path-wise parent of the new resource. If it exists, return
         its URI. Otherwise, create pairtree resources up the path until an
         its URI. Otherwise, create pairtree resources up the path until an
@@ -869,7 +866,7 @@ class Ldpr(metaclass=ABCMeta):
 
 
         @return rdflib.term.URIRef
         @return rdflib.term.URIRef
         '''
         '''
-        path_components = uuid.split('/')
+        path_components = self.uuid.split('/')
 
 
          # If there is only on element, the parent is the root node.
          # If there is only on element, the parent is the root node.
         if len(path_components) < 2:
         if len(path_components) < 2:
@@ -883,17 +880,26 @@ class Ldpr(metaclass=ABCMeta):
         )
         )
         rev_search_order = reversed(list(fwd_search_order))
         rev_search_order = reversed(list(fwd_search_order))
 
 
-        cur_child_uri = nsc['fcres'][uuid]
+        cur_child_uri = nsc['fcres'][self.uuid]
+        parent_uri = None
+        segments = []
         for cparent_uuid in rev_search_order:
         for cparent_uuid in rev_search_order:
             cparent_uri = nsc['fcres'][cparent_uuid]
             cparent_uri = nsc['fcres'][cparent_uuid]
 
 
             if self.rdfly.ask_rsrc_exists(cparent_uri):
             if self.rdfly.ask_rsrc_exists(cparent_uri):
-                return cparent_uri
+                parent_uri = cparent_uri
+                break
             else:
             else:
-                self._create_path_segment(cparent_uri, cur_child_uri)
+                segments.append((cparent_uri, cur_child_uri))
                 cur_child_uri = cparent_uri
                 cur_child_uri = cparent_uri
 
 
-        return self.ROOT_NODE_URN
+        if parent_uri is None:
+            parent_uri = self.ROOT_NODE_URN
+
+        for uri, child_uri in segments:
+            self._create_path_segment(uri, child_uri, parent_uri)
+
+        return parent_uri
 
 
 
 
     def _dedup_deltas(self, remove_gr, add_gr):
     def _dedup_deltas(self, remove_gr, add_gr):
@@ -907,7 +913,7 @@ class Ldpr(metaclass=ABCMeta):
         )
         )
 
 
 
 
-    def _create_path_segment(self, uri, child_uri):
+    def _create_path_segment(self, uri, child_uri, real_parent_uri):
         '''
         '''
         Create a path segment with a non-LDP containment statement.
         Create a path segment with a non-LDP containment statement.
 
 
@@ -925,6 +931,8 @@ class Ldpr(metaclass=ABCMeta):
         imr.add(RDF.type, nsc['ldp'].RDFSource)
         imr.add(RDF.type, nsc['ldp'].RDFSource)
         imr.add(RDF.type, nsc['fcrepo'].Pairtree)
         imr.add(RDF.type, nsc['fcrepo'].Pairtree)
         imr.add(nsc['fcrepo'].contains, child_uri)
         imr.add(nsc['fcrepo'].contains, child_uri)
+        imr.add(nsc['ldp'].contains, self.urn)
+        imr.add(nsc['fcrepo'].hasParent, real_parent_uri)
 
 
         # If the path segment is just below root
         # If the path segment is just below root
         if '/' not in str(uri):
         if '/' not in str(uri):
@@ -948,6 +956,7 @@ class Ldpr(metaclass=ABCMeta):
         self._logger.info('Checking direct or indirect containment.')
         self._logger.info('Checking direct or indirect containment.')
         #self._logger.debug('Parent predicates: {}'.format(cont_p))
         #self._logger.debug('Parent predicates: {}'.format(cont_p))
 
 
+        add_gr.add((self.urn, nsc['fcrepo'].hasParent, cont_uri))
         if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
         if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
             s = g.tbox.localize_term(
             s = g.tbox.localize_term(
                     cont_rsrc.imr.value(self.MBR_RSRC_URI).identifier)
                     cont_rsrc.imr.value(self.MBR_RSRC_URI).identifier)
@@ -970,7 +979,7 @@ class Ldpr(metaclass=ABCMeta):
                     add_gr.add((s, p, target_uri))
                     add_gr.add((s, p, target_uri))
 
 
         if len(add_gr):
         if len(add_gr):
-            add_gr = self._check_mgd_terms(add_gr)
+            #add_gr = self._check_mgd_terms(add_gr)
             #self._logger.debug('Adding DC/IC triples: {}'.format(
             #self._logger.debug('Adding DC/IC triples: {}'.format(
             #    add_gr.serialize(format='turtle').decode('utf-8')))
             #    add_gr.serialize(format='turtle').decode('utf-8')))
             self._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
             self._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)

+ 1 - 1
lakesuperior/store_layouts/ldp_rs/base_rdf_layout.py

@@ -21,7 +21,7 @@ from lakesuperior.toolbox import Toolbox
 class BaseRdfLayout(metaclass=ABCMeta):
 class BaseRdfLayout(metaclass=ABCMeta):
     '''
     '''
     This class exposes an interface to build graph store layouts. It also
     This class exposes an interface to build graph store layouts. It also
-    provides the baics of the triplestore connection.
+    provides the basics of the triplestore connection.
 
 
     Some store layouts are provided. New ones aimed at specific uses
     Some store layouts are provided. New ones aimed at specific uses
     and optimizations of the repository may be developed by extending this
     and optimizations of the repository may be developed by extending this

+ 3 - 7
lakesuperior/store_layouts/ldp_rs/default_layout.py

@@ -59,14 +59,10 @@ class DefaultLayout(BaseRdfLayout):
         CONSTRUCT {{
         CONSTRUCT {{
             ?s ?p ?o .{inb_cnst}
             ?s ?p ?o .{inb_cnst}
             {embed_chld_t}
             {embed_chld_t}
-            ?s fcrepo:writable true ;
-              fcrepo:hasParent ?parent .
+            ?s fcrepo:writable true .
         }} WHERE {{
         }} WHERE {{
             GRAPH ?main_graph {{
             GRAPH ?main_graph {{
               ?s ?p ?o .{inb_qry}{incl_chld}{embed_chld}
               ?s ?p ?o .{inb_qry}{incl_chld}{embed_chld}
-              OPTIONAL {{
-                ?parent ldp:contains ?s .
-              }}
             }}
             }}
         }}
         }}
         '''.format(inb_cnst=inbound_construct,
         '''.format(inb_cnst=inbound_construct,
@@ -116,8 +112,8 @@ class DefaultLayout(BaseRdfLayout):
         self._logger.info('Checking if resource exists: {}'.format(urn))
         self._logger.info('Checking if resource exists: {}'.format(urn))
 
 
         return bool(self._conn.query(
         return bool(self._conn.query(
-                'ASK { GRAPH ?g { ?s ?p ?o . }}', initBindings={
-                    's': urn, 'g': self.MAIN_GRAPH_URI}))
+            'ASK { GRAPH ?g { ?s a fcrepo:Resource . }}', initBindings={
+                's': urn, 'g': self.MAIN_GRAPH_URI}))
 
 
 
 
     def get_version_info(self, urn):
     def get_version_info(self, urn):