]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/RepoTree.pm
viewvcs: prepopulate search bar with dfpost + dfn
[public-inbox.git] / lib / PublicInbox / RepoTree.pm
index cec71eb6570108060c543a36dfe8195a877634a2..4c6ed840ee5e7e9a04859a4315cf52e0632b6a2e 100644 (file)
@@ -5,7 +5,6 @@
 package PublicInbox::RepoTree;
 use v5.12;
 use PublicInbox::ViewDiff qw(uri_escape_path);
-use PublicInbox::GitAsyncCat;
 use PublicInbox::WwwStatic qw(r);
 use PublicInbox::Qspawn;
 use PublicInbox::WwwStream qw(html_oneshot);
@@ -48,15 +47,22 @@ sub find_missing {
        $qsp->psgi_qx($ctx->{env}, undef, \&rd_404_log, $ctx);
 }
 
-sub tree_30x { # git check_async callback
+sub tree_show { # git check_async callback
        my ($oid, $type, $size, $ctx) = @_;
        return find_missing($ctx) if $type eq 'missing';
-       my $wcb = delete $ctx->{-wcb};
-       my $u = $ctx->{git}->base_url($ctx->{env});
-       my $path = uri_escape_path(delete $ctx->{-path});
-       $u .= "$oid/s/?b=$path";
-       $wcb->([ 302, [ Location => $u, 'Content-Type' => 'text/plain' ],
-               [ "Redirecting to $u\n" ] ])
+
+       open $ctx->{lh}, '<', \(my $dbg_log = '') or die "open(scalar): $!";
+       my $res = [ $ctx->{git}, $oid, $type, $size ];
+       my ($bn) = ($ctx->{-path} =~ m!/?([^/]+)\z!);
+       if ($type eq 'blob') {
+               my $obj = ascii_html($ctx->{-obj});
+               $ctx->{-q_value_html} = 'dfn:'.ascii_html($ctx->{-path}) .
+                       ' dfpost:'.substr($oid, 0, 7);
+               $ctx->{-paths} = [ $bn, qq[(<a
+href="$ctx->{-upfx}$oid/s/$bn">raw</a>)
+\$ git show $obj\t# shows this blob on the CLI] ];
+       }
+       PublicInbox::ViewVCS::solve_result($res, $ctx);
 }
 
 sub srv_tree {
@@ -73,12 +79,7 @@ sub srv_tree {
        return if index($obj, "\n") >= 0;
        sub {
                $ctx->{-wcb} = $_[0]; # HTTP::{Chunked,Identity}
-               if ($ctx->{env}->{'pi-httpd.async'}) {
-                       async_check($ctx, $obj, \&tree_30x, $ctx);
-               } else {
-                       $ctx->{git}->check_async($obj, \&tree_30x, $ctx);
-                       $ctx->{git}->async_wait_all;
-               }
+               PublicInbox::ViewVCS::do_check_async($ctx, \&tree_show, $obj);
        };
 }