about summary refs log tree commit homepage
path: root/lib/PublicInbox/GitHTTPBackend.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-05-15 03:44:58 +0000
committerEric Wong <e@80x24.org>2016-05-15 23:49:27 +0000
commit2bbe1636ba09f2f17f789a11e5141d223f937639 (patch)
treed9480964aed16e4d244613e05a7fc5db4cf0ebc8 /lib/PublicInbox/GitHTTPBackend.pm
parentf850effe0baef8a37ad2eef3ef581b79539cc304 (diff)
downloadpublic-inbox-2bbe1636ba09f2f17f789a11e5141d223f937639.tar.gz
Mostly stolen from git upstream, these should prevent any caches
such as varnish or squid from acting improperly.
Diffstat (limited to 'lib/PublicInbox/GitHTTPBackend.pm')
-rw-r--r--lib/PublicInbox/GitHTTPBackend.pm16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/PublicInbox/GitHTTPBackend.pm b/lib/PublicInbox/GitHTTPBackend.pm
index abb70dfa..b58cc30f 100644
--- a/lib/PublicInbox/GitHTTPBackend.pm
+++ b/lib/PublicInbox/GitHTTPBackend.pm
@@ -9,6 +9,7 @@ use warnings;
 use Fcntl qw(:seek);
 use IO::File;
 use PublicInbox::Spawn qw(spawn);
+use HTTP::Date qw(time2str);
 
 # TODO: make configurable, but keep in mind it's better to have
 # multiple -httpd worker processes which are already scaled to
@@ -33,6 +34,10 @@ our $ANY = join('|', @binary, @text);
 my $BIN = join('|', @binary);
 my $TEXT = join('|', @text);
 
+my @no_cache = ('Expires', 'Fri, 01 Jan 1980 00:00:00 GMT',
+                'Pragma', 'no-cache',
+                'Cache-Control', 'no-cache, max-age=0, must-revalidate');
+
 my $nextq;
 sub do_next () {
         my $q = $nextq;
@@ -42,8 +47,9 @@ sub do_next () {
         }
 }
 
-sub r {
-        [ $_[0] , [qw(Content-Type text/plain Content-Length 0) ], [] ]
+sub r ($) {
+        my ($s) = @_;
+        [ $s, [qw(Content-Type text/plain Content-Length 0), @no_cache ], [] ]
 }
 
 sub serve {
@@ -73,11 +79,15 @@ sub drop_client ($) {
 sub serve_dumb {
         my ($cgi, $git, $path) = @_;
 
+        my @h;
         my $type;
         if ($path =~ /\A(?:$BIN)\z/o) {
                 $type = 'application/octet-stream';
+                push @h, 'Expires', time2str(time + 31536000);
+                push @h, 'Cache-Control', 'public, max-age=31536000';
         } elsif ($path =~ /\A(?:$TEXT)\z/o) {
                 $type = 'text/plain';
+                push @h, @no_cache;
         } else {
                 return r(404);
         }
@@ -125,7 +135,7 @@ sub serve_dumb {
         };
 
         my $code = 200;
-        my @h = ('Content-Type', $type);
+        push @h, 'Content-Type', $type;
         my $range = $env->{HTTP_RANGE};
         if (defined $range && $range =~ /\bbytes=(\d*)-(\d*)\z/) {
                 ($code, $len) = prepare_range($cgi, $in, \@h, $1, $2, $size);