about summary refs log tree commit homepage
path: root/lib/PublicInbox/GitHTTPBackend.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-12-25 07:50:48 +0000
committerEric Wong <e@80x24.org>2019-12-27 20:00:32 +0000
commit07d0e2d336d4697c3284fe3dd59dae0583984e23 (patch)
tree792e6477bfaa63f4ad4ebdf68ee2fa1f6f559693 /lib/PublicInbox/GitHTTPBackend.pm
parenta7949988f7f8690c868d2150fe3000fcf6a6d5f4 (diff)
downloadpublic-inbox-07d0e2d336d4697c3284fe3dd59dae0583984e23.tar.gz
Make it easier to share code between our GitHTTPBackend and Cgit
packages, for now, and possibly other packages in the future.

We can avoid inline_object and anonymous subs at the same
time, reducing per-request memory overhead.
Diffstat (limited to 'lib/PublicInbox/GitHTTPBackend.pm')
-rw-r--r--lib/PublicInbox/GitHTTPBackend.pm91
1 files changed, 3 insertions, 88 deletions
diff --git a/lib/PublicInbox/GitHTTPBackend.pm b/lib/PublicInbox/GitHTTPBackend.pm
index 537a1947..b7640d42 100644
--- a/lib/PublicInbox/GitHTTPBackend.pm
+++ b/lib/PublicInbox/GitHTTPBackend.pm
@@ -10,9 +10,9 @@ use Fcntl qw(:seek);
 use IO::Handle;
 use HTTP::Date qw(time2str);
 use HTTP::Status qw(status_message);
-use Plack::Util;
 use PublicInbox::Qspawn;
 use PublicInbox::Tmpfile;
+use PublicInbox::WwwStatic;
 
 # 32 is same as the git-daemon connection limit
 my $default_limiter = PublicInbox::Qspawn::Limiter->new(32);
@@ -66,12 +66,6 @@ sub err ($@) {
         $env->{'psgi.errors'}->print(@msg, "\n");
 }
 
-sub drop_client ($) {
-        if (my $io = $_[0]->{'psgix.io'}) {
-                $io->close; # this is PublicInbox::DS::close
-        }
-}
-
 my $prev = 0;
 my $exp;
 sub cache_one_year {
@@ -81,44 +75,6 @@ sub cache_one_year {
                 'Cache-Control', 'public, max-age=31536000';
 }
 
-sub static_result ($$$$) {
-        my ($env, $h, $f, $type) = @_;
-        return r(404) unless -f $f && -r _; # just in case it's a FIFO :P
-
-        # TODO: If-Modified-Since and Last-Modified?
-        open my $in, '<', $f or return r(404);
-        my $size = -s $in;
-        my $len = $size;
-        my $code = 200;
-        push @$h, 'Content-Type', $type;
-        if (($env->{HTTP_RANGE} || '') =~ /\bbytes=([0-9]*)-([0-9]*)\z/) {
-                ($code, $len) = prepare_range($env, $in, $h, $1, $2, $size);
-                if ($code == 416) {
-                        push @$h, 'Content-Range', "bytes */$size";
-                        return [ 416, $h, [] ];
-                }
-        }
-        push @$h, 'Content-Length', $len;
-        my $n = 65536;
-        [ $code, $h, Plack::Util::inline_object(close => sub { close $in },
-                getline => sub {
-                        return if $len == 0;
-                        $n = $len if $len < $n;
-                        my $r = sysread($in, my $buf, $n);
-                        if (!defined $r) {
-                                err($env, "$f read error: $!");
-                        } elsif ($r <= 0) {
-                                err($env, "$f EOF with $len bytes left");
-                        } else {
-                                $len -= $r;
-                                $n = 8192;
-                                return $buf;
-                        }
-                        drop_client($env);
-                        return;
-                })]
-}
-
 sub serve_dumb {
         my ($env, $git, $path) = @_;
 
@@ -139,49 +95,8 @@ sub serve_dumb {
         } else {
                 return r(404);
         }
-
-        static_result($env, $h, "$git->{git_dir}/$path", $type);
-}
-
-sub prepare_range {
-        my ($env, $in, $h, $beg, $end, $size) = @_;
-        my $code = 200;
-        my $len = $size;
-        if ($beg eq '') {
-                if ($end ne '') { # "bytes=-$end" => last N bytes
-                        $beg = $size - $end;
-                        $beg = 0 if $beg < 0;
-                        $end = $size - 1;
-                        $code = 206;
-                } else {
-                        $code = 416;
-                }
-        } else {
-                if ($beg > $size) {
-                        $code = 416;
-                } elsif ($end eq '' || $end >= $size) {
-                        $end = $size - 1;
-                        $code = 206;
-                } elsif ($end < $size) {
-                        $code = 206;
-                } else {
-                        $code = 416;
-                }
-        }
-        if ($code == 206) {
-                $len = $end - $beg + 1;
-                if ($len <= 0) {
-                        $code = 416;
-                } else {
-                        sysseek($in, $beg, SEEK_SET) or return [ 500, [], [] ];
-                        push @$h, qw(Accept-Ranges bytes Content-Range);
-                        push @$h, "bytes $beg-$end/$size";
-
-                        # FIXME: Plack::Middleware::Deflater bug?
-                        $env->{'psgix.no-compress'} = 1;
-                }
-        }
-        ($code, $len);
+        $path = "$git->{git_dir}/$path";
+        PublicInbox::WwwStatic::response($env, $h, $path, $type) // r(404);
 }
 
 sub git_parse_hdr { # {parse_hdr} for Qspawn