about summary refs log tree commit homepage
path: root/lib/PublicInbox/RepobrowseGitPlain.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-02-09 01:37:03 +0000
committerEric Wong <e@80x24.org>2017-02-09 01:37:03 +0000
commitd9563ea5516e8e786debf223e10ec11695aee9d7 (patch)
treea0842b1ee0953bc8e65d21d5d96432f41973adb7 /lib/PublicInbox/RepobrowseGitPlain.pm
parentfb9ed5324ec7de9420956840ba9a6585b81e8231 (diff)
downloadpublic-inbox-d9563ea5516e8e786debf223e10ec11695aee9d7.tar.gz
We'll still be keeping "repobrowse" for the public API
for use with .psgi files, but shortening the name means
less typing and we may have command-line tools, too.
Diffstat (limited to 'lib/PublicInbox/RepobrowseGitPlain.pm')
-rw-r--r--lib/PublicInbox/RepobrowseGitPlain.pm100
1 files changed, 0 insertions, 100 deletions
diff --git a/lib/PublicInbox/RepobrowseGitPlain.pm b/lib/PublicInbox/RepobrowseGitPlain.pm
deleted file mode 100644
index 24cc70b0..00000000
--- a/lib/PublicInbox/RepobrowseGitPlain.pm
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright (C) 2015-2016 all contributors <meta@public-inbox.org>
-# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
-package PublicInbox::RepobrowseGitPlain;
-use strict;
-use warnings;
-use base qw(PublicInbox::RepobrowseBase);
-use PublicInbox::RepobrowseGitBlob;
-use PublicInbox::Hval qw(utf8_html);
-use PublicInbox::Qspawn;
-
-sub call_git_plain {
-        my ($self, $req) = @_;
-        my $git = $req->{repo_info}->{git};
-        my $q = PublicInbox::RepobrowseGitQuery->new($req->{env});
-        my $id = $q->{id};
-        $id eq '' and $id = 'HEAD';
-        $id .= ":$req->{expath}";
-        my ($cat, $hex, $type, $size) = $git->cat_file_begin($id);
-        return unless defined $cat;
-
-        my ($r, $buf);
-        my $left = $size;
-        if ($type eq 'blob') {
-                $type = git_blob_mime_type($self, $req, $cat, \$buf, \$left);
-        } elsif ($type eq 'commit' || $type eq 'tag') {
-                $type = 'text/plain';
-        } elsif ($type eq 'tree') {
-                $git->cat_file_finish($left);
-                return git_tree_plain($req, $git, $hex);
-        } else {
-                $type = 'application/octet-stream';
-        }
-        git_blob_stream_response($git, $cat, $size, $type, $buf, $left);
-}
-
-sub git_tree_sed ($) {
-        my ($req) = @_;
-        my $buf = '';
-        my $end;
-        my $pfx = $req->{tpfx};
-        sub { # $_[0] = buffer or undef
-                my $dst = delete $req->{tstart} || '';
-                my @files;
-                if (defined $_[0]) {
-                        @files = split(/\0/, $buf .= $_[0]);
-                        $buf = pop @files if scalar @files;
-                } else {
-                        @files = split(/\0/, $buf);
-                        $end = '</ul></body></html>';
-                }
-                foreach my $n (@files) {
-                        $n = PublicInbox::Hval->utf8($n);
-                        my $ref = $n->as_path;
-                        $dst .= qq(<li><a\nhref="$pfx$ref">);
-                        $dst .= $n->as_html;
-                        $dst .= '</a></li>';
-                }
-                $end ? $dst .= $end : $dst;
-        }
-}
-
-# This should follow the cgit DOM structure in case anybody depends on it,
-# not using <pre> here as we don't expect people to actually view it much
-sub git_tree_plain {
-        my ($req, $git, $hex) = @_;
-
-        my @ex = @{$req->{extra}};
-        my $rel = $req->{relcmd};
-        my $title = utf8_html(join('/', '', @ex, ''));
-        my $tslash = $req->{tslash};
-        my $pfx = $tslash ? './' : 'plain/';
-        my $t = "<h2>$title</h2><ul>";
-        if (@ex) {
-                if ($tslash) {
-                        $t .= qq(<li><a\nhref="../">../</a></li>);
-                } else  {
-                        $t .= qq(<li><a\nhref="./">../</a></li>);
-                        my $last = PublicInbox::Hval->utf8($ex[-1])->as_href;
-                        $pfx = "$last/";
-                }
-        }
-
-        $req->{tpfx} = $pfx;
-        $req->{tstart} = "<html><head><title>$title</title></head><body>".$t;
-        my $cmd = $git->cmd(qw(ls-tree --name-only -z), $git->abbrev, $hex);
-        my $rdr = { 2 => $git->err_begin };
-        my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr);
-        my $env = $req->{env};
-        $qsp->psgi_return($env, undef, sub {
-                my ($r) = @_;
-                if (!defined $r) {
-                        [ 500, [ 'Content-Type', 'text/plain' ], [ $git->err ]];
-                } else {
-                        $env->{'qspawn.filter'} = git_tree_sed($req);
-                        [ 200, [ 'Content-Type', 'text/html' ] ];
-                }
-        });
-}
-
-1;