1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
| | # Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
#
# Standalone code repository viewer for users w/o cgit.
# This isn't intended to replicate all of cgit, but merely to be a
# "good enough" viewer with search support and some UI hints to encourage
# cloning + command-line usage.
package PublicInbox::WwwCoderepo;
use v5.12;
use File::Temp 0.19 (); # newdir
use PublicInbox::ViewVCS;
use PublicInbox::WwwStatic qw(r);
use PublicInbox::GitHTTPBackend;
use PublicInbox::Git;
use PublicInbox::GitAsyncCat;
use PublicInbox::WwwStream;
use PublicInbox::Hval qw(ascii_html);
use PublicInbox::RepoSnapshot;
use PublicInbox::RepoAtom;
my $EACH_REF = "git for-each-ref --sort=-creatordate --format='%(HEAD)%00".
join('%00', map { "%($_)" }
qw(objectname refname:short subject creatordate:short))."'";
# shared with PublicInbox::Cgit
sub prepare_coderepos {
my ($self) = @_;
my $pi_cfg = $self->{pi_cfg};
# TODO: support gitweb and other repository viewers?
$pi_cfg->parse_cgitrc(undef, 0);
my $code_repos = $pi_cfg->{-code_repos};
for my $k (grep(/\Acoderepo\.(?:.+)\.dir\z/, keys %$pi_cfg)) {
$k = substr($k, length('coderepo.'), -length('.dir'));
$code_repos->{$k} //= $pi_cfg->fill_code_repo($k);
}
# associate inboxes and extindices with coderepos for search:
for my $k (grep(/\Apublicinbox\.(?:.+)\.coderepo\z/, keys %$pi_cfg)) {
$k = substr($k, length('publicinbox.'), -length('.coderepo'));
my $ibx = $pi_cfg->lookup_name($k) // next;
$pi_cfg->repo_objs($ibx);
push @{$self->{-strong}}, $ibx; # strengthen {-ibxs} weakref
}
for my $k (grep(/\Aextindex\.(?:.+)\.coderepo\z/, keys %$pi_cfg)) {
$k = substr($k, length('extindex.'), -length('.coderepo'));
my $eidx = $pi_cfg->lookup_ei($k) // next;
$pi_cfg->repo_objs($eidx);
push @{$self->{-strong}}, $eidx; # strengthen {-ibxs} weakref
}
while (my ($nick, $repo) = each %$code_repos) {
$self->{"\0$nick"} = $repo;
}
}
sub new {
my ($cls, $pi_cfg) = @_;
my $self = bless { pi_cfg => $pi_cfg }, $cls;
prepare_coderepos($self);
$self->{snapshots} = do {
my $s = $pi_cfg->{'coderepo.snapshots'} // '';
$s eq 'all' ? \%PublicInbox::RepoSnapshot::FMT_TYPES :
+{ map { $_ => 1 } split(/\s+/, $s) };
};
$self->{$_} = 10 for qw(summary_branches summary_tags);
$self->{$_} = 10 for qw(summary_log);
$self;
}
sub summary_finish {
my ($ctx) = @_;
my $wcb = delete($ctx->{env}->{'qspawn.wcb'}) or return; # already done
my @x = split(/\n\n/sm, delete($ctx->{-each_refs}));
PublicInbox::WwwStream::html_init($ctx);
my $zfh = $ctx->zfh;
# git log
my @r = split(/\n/s, pop(@x) // '');
my $last = pop(@r) if scalar(@r) > $ctx->{wcr}->{summary_log};
print $zfh <<EOM;
<pre>
<a
href='#readme'>about</a> <a
href='#heads'>heads</a> <a
href='#tags'>tags</a>
<a
id=log>\$</a> git log --pretty=format:'%h %s (%cs)%d'
EOM
for (@r) {
my $d; # decorations
s/^ \(([^\)]+)\)// and $d = $1;
substr($_, 0, 1, '');
my ($H, $h, $cs, $s) = split(/ /, $_, 4);
print $zfh "<a\nhref=./$H/s/>$h</a> ", ascii_html($s),
" (", $cs, ")\n";
print $zfh "\t(", ascii_html($d), ")\n" if $d;
}
print $zfh "# no commits, yet\n" if !@r;
print $zfh "...\n" if $last;
# README
my ($bref, $oid, $ref_path) = @{delete $ctx->{-readme}};
if ($bref) {
my $l = PublicInbox::Linkify->new;
$$bref =~ s/\s*\z//sm;
print $zfh "\n<a id=readme>\$</a> " .
"git cat-file blob <a href=./$oid/s/>",
ascii_html($ref_path), "</a>\n",
$l->to_html($$bref), '</pre><hr><pre>';
}
# refs/heads
print $zfh "<a id=heads># heads (aka `branches'):</a>\n\$ " .
"git for-each-ref --sort=-creatordate refs/heads" .
" \\\n\t--format='%(HEAD) ". # no space for %(align:) hint
"%(refname:short) %(subject) (%(creatordate:short))'\n";
@r = split(/^/sm, shift(@x) // '');
$last = pop(@r) if scalar(@r) > $ctx->{wcr}->{summary_branches};
for (@r) {
my ($pfx, $oid, $ref, $s, $cd) = split(/\0/);
utf8::decode($_) for ($ref, $s);
chomp $cd;
my $align = length($ref) < 12 ? ' ' x (12 - length($ref)) : '';
print $zfh "$pfx <a\nhref=./$oid/s/>", ascii_html($ref),
"</a>$align ", ascii_html($s), " ($cd)\n";
}
print $zfh "# no heads (branches) yet...\n" if !@r;
print $zfh "...\n" if $last;
print $zfh "\n<a id=tags># tags:</a>\n\$ " .
"git for-each-ref --sort=-creatordate refs/tags" .
" \\\n\t--format='". # no space for %(align:) hint
"%(refname:short) %(subject) (%(creatordate:short))'\n";
@r = split(/^/sm, shift(@x) // '');
$last = pop(@r) if scalar(@r) > $ctx->{wcr}->{summary_tags};
my @s = sort keys %{$ctx->{wcr}->{snapshots}};
my $n;
if (@s) {
$n = $ctx->{git}->local_nick // die "BUG: $ctx->{git_dir} nick";
$n =~ s/\.git\z/-/;
($n) = ($n =~ m!([^/]+)\z!);
$n = ascii_html($n);
}
for (@r) {
my (undef, $oid, $ref, $s, $cd) = split(/\0/);
utf8::decode($_) for ($ref, $s);
chomp $cd;
my $align = length($ref) < 12 ? ' ' x (12 - length($ref)) : '';
print $zfh "<a\nhref=./$oid/s/>", ascii_html($ref),
"</a>$align ", ascii_html($s), " ($cd)";
if (@s) {
my $v = $ref;
$v =~ s/\A[vV]//;
print $zfh "\t", join(' ', map {
qq{<a href="snapshot/$n$v.$_">$_</a>} } @s);
}
print $zfh "\n";
}
print $zfh "# no tags yet...\n" if !@r;
print $zfh "...\n" if $last;
$wcb->($ctx->html_done('</pre>'));
}
sub capture_refs ($$) { # psgi_qx callback to capture git-for-each-ref + git-log
my ($bref, $ctx) = @_;
my $qsp_err = delete $ctx->{-qsp_err};
$ctx->{-each_refs} = $$bref;
summary_finish($ctx) if $ctx->{-readme};
}
sub set_readme { # git->cat_async callback
my ($bref, $oid, $type, $size, $ctx) = @_;
my $ref_path = shift @{$ctx->{-nr_readme_tries}}; # e.g. HEAD:README
if ($type eq 'blob' && !$ctx->{-readme}) {
$ctx->{-readme} = [ $bref, $oid, $ref_path ];
} elsif (scalar @{$ctx->{-nr_readme_tries}} == 0) {
$ctx->{-readme} //= []; # nothing left to try
} # or try another README...
summary_finish($ctx) if $ctx->{-each_refs} && $ctx->{-readme};
}
sub summary {
my ($self, $ctx) = @_;
$ctx->{wcr} = $self;
my $nb = $self->{summary_branches} + 1;
my $nt = $self->{summary_tags} + 1;
my $nl = $self->{summary_log} + 1;
my $qsp = PublicInbox::Qspawn->new([qw(/bin/sh -c),
"$EACH_REF --count=$nb refs/heads; echo && " .
"$EACH_REF --count=$nt refs/tags; echo && " .
"git log -$nl --pretty=format:'%d %H %h %cs %s' --" ],
{ GIT_DIR => $ctx->{git}->{git_dir} });
$qsp->{qsp_err} = \($ctx->{-qsp_err} = '');
my @try = qw(HEAD:README HEAD:README.md); # TODO: configurable
$ctx->{-nr_readme_tries} = [ @try ];
$ctx->{git}->cat_async($_, \&set_readme, $ctx) for @try;
if ($ctx->{env}->{'pi-httpd.async'}) {
PublicInbox::GitAsyncCat::watch_cat($ctx->{git});
} else { # synchronous
$ctx->{git}->cat_async_wait;
}
sub { # $_[0] => PublicInbox::HTTP::{Identity,Chunked}
$ctx->{env}->{'qspawn.wcb'} = $_[0];
$qsp->psgi_qx($ctx->{env}, undef, \&capture_refs, $ctx);
}
}
sub srv { # endpoint called by PublicInbox::WWW
my ($self, $ctx) = @_;
my $path_info = $ctx->{env}->{PATH_INFO};
my $git;
# handle clone requests
if ($path_info =~ m!\A/(.+?)/($PublicInbox::GitHTTPBackend::ANY)\z!x) {
$git = $self->{"\0$1"} and return
PublicInbox::GitHTTPBackend::serve($ctx->{env},$git,$2);
}
$path_info =~ m!\A/(.+?)/\z! and
($ctx->{git} = $self->{"\0$1"}) and return summary($self, $ctx);
$path_info =~ m!\A/(.+?)/([a-f0-9]+)/s/\z! and
($ctx->{git} = $self->{"\0$1"}) and
return PublicInbox::ViewVCS::show($ctx, $2);
# snapshots:
if ($path_info =~ m!\A/(.+?)/snapshot/([^/]+)\z! and
($ctx->{git} = $self->{"\0$1"})) {
$ctx->{wcr} = $self;
return PublicInbox::RepoSnapshot::srv($ctx, $2) // r(404);
}
if ($path_info =~ m!\A/(.+?)/atom/(.*)\z! and
($ctx->{git} = $self->{"\0$1"})) {
return PublicInbox::RepoAtom::srv_atom($ctx, $2) // r(404);
}
# enforce trailing slash:
if ($path_info =~ m!\A/(.+?)\z! and ($git = $self->{"\0$1"})) {
my $qs = $ctx->{env}->{QUERY_STRING};
my $url = $git->base_url($ctx->{env});
$url .= "?$qs" if $qs ne '';
[ 301, [ Location => $url, 'Content-Type' => 'text/plain' ],
[ "Redirecting to $url\n" ] ];
} else {
r(404);
}
}
1;
|