]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Add ETags for immutable directories
authorJeremy Fitzhardinge <jeremy@goop.org>
Sun, 13 May 2012 03:42:52 +0000 (20:42 -0700)
committerBrian Warner <warner@lothar.com>
Sun, 13 May 2012 07:45:11 +0000 (00:45 -0700)
Like immutable files, the ETag is based on the storage index. However, since
a directory is a special interpretation of a file, it is distinguished from
the file by prepending "DIR:" onto the start of the ETag, and adding
-representation on the end (where -representation is the ?t= argument, json,
info, etc).

It also checks the return of setETag and avoids generating a representation
if the client already has it.

src/allmydata/web/directory.py

index 552935634a9d903525a3068e9cdd7ab415205a8e..80f5aa3deb4d41e3eb620c7f578fb1a5381f57e3 100644 (file)
@@ -153,6 +153,12 @@ class DirectoryNodeHandler(RenderMixin, rend.Page, ReplaceMeMixin):
         req = IRequest(ctx)
         # This is where all of the directory-related ?t=* code goes.
         t = get_arg(req, "t", "").strip()
+
+        if not self.node.is_mutable():
+            si = self.node.get_storage_index()
+            if si and req.setETag('DIR:%s-%s' % (base32.b2a(si), t or "")):
+                return ""
+
         if not t:
             # render the directory as HTML, using the docFactory and Nevow's
             # whole templating thing.