Stefano Cossu пре 7 година
родитељ
комит
231ce7c842

+ 10 - 1
lakesuperior/endpoints/ldp.py

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

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

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

+ 23 - 14
lakesuperior/model/ldpr.py

@@ -801,8 +801,8 @@ class Ldpr(metaclass=ABCMeta):
                     self._logger.info('Removing offending type: {}'.format(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
 
 
@@ -839,14 +839,11 @@ class Ldpr(metaclass=ABCMeta):
           pairtree nodes are created for a/b and a/b/c.
         - 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:
             return
         elif '/' in self.uuid:
             # 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:
             parent_uri = self.ROOT_NODE_URN
 
@@ -861,7 +858,7 @@ class Ldpr(metaclass=ABCMeta):
         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
         its URI. Otherwise, create pairtree resources up the path until an
@@ -869,7 +866,7 @@ class Ldpr(metaclass=ABCMeta):
 
         @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 len(path_components) < 2:
@@ -883,17 +880,26 @@ class Ldpr(metaclass=ABCMeta):
         )
         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:
             cparent_uri = nsc['fcres'][cparent_uuid]
 
             if self.rdfly.ask_rsrc_exists(cparent_uri):
-                return cparent_uri
+                parent_uri = cparent_uri
+                break
             else:
-                self._create_path_segment(cparent_uri, cur_child_uri)
+                segments.append((cparent_uri, cur_child_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):
@@ -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.
 
@@ -925,6 +931,8 @@ class Ldpr(metaclass=ABCMeta):
         imr.add(RDF.type, nsc['ldp'].RDFSource)
         imr.add(RDF.type, nsc['fcrepo'].Pairtree)
         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 '/' not in str(uri):
@@ -948,6 +956,7 @@ class Ldpr(metaclass=ABCMeta):
         self._logger.info('Checking direct or indirect containment.')
         #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:
             s = g.tbox.localize_term(
                     cont_rsrc.imr.value(self.MBR_RSRC_URI).identifier)
@@ -970,7 +979,7 @@ class Ldpr(metaclass=ABCMeta):
                     add_gr.add((s, p, target_uri))
 
         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(
             #    add_gr.serialize(format='turtle').decode('utf-8')))
             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):
     '''
     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
     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 {{
             ?s ?p ?o .{inb_cnst}
             {embed_chld_t}
-            ?s fcrepo:writable true ;
-              fcrepo:hasParent ?parent .
+            ?s fcrepo:writable true .
         }} WHERE {{
             GRAPH ?main_graph {{
               ?s ?p ?o .{inb_qry}{incl_chld}{embed_chld}
-              OPTIONAL {{
-                ?parent ldp:contains ?s .
-              }}
             }}
         }}
         '''.format(inb_cnst=inbound_construct,
@@ -116,8 +112,8 @@ class DefaultLayout(BaseRdfLayout):
         self._logger.info('Checking if resource exists: {}'.format(urn))
 
         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):