public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob acac000e1594fb6f4ef2a638c65c80628850c77b 5335 bytes (raw)
$ git show repobrowse:lib/PublicInbox/RepoGitCommit.pm	# shows this blob on the CLI

  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
 
# Copyright (C) 2015 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# shows the /commit/ endpoint for git repositories
#
# anchors used:
#	D - diffstat
#	P - parents
#	...and various filenames from to_attr
# The 'D' and 'P' anchors may conflict with odd filenames, but we won't
# punish the common case with extra bytes if somebody uses 'D' or 'P'
# in filenames.

package PublicInbox::RepoGitCommit;
use strict;
use warnings;
use base qw(PublicInbox::RepoBase);
use PublicInbox::Hval qw(utf8_html to_attr);
use PublicInbox::RepoGit qw(git_unquote git_commit_title);
use PublicInbox::RepoGitDiffCommon;
use PublicInbox::Qspawn;

use constant {
	GIT_FMT => '--pretty=format:'.join('%n',
		'%H', '%s', '%an <%ae>', '%ai', '%cn <%ce>', '%ci',
		'%t', '%p', '%D', '%b%x00'),
	CC_EMPTY => " This is a merge, and the combined diff is empty.\n",
	CC_MERGE => " This is a merge, showing combined diff:\n\n"
};

sub commit_header {
	my ($self, $req) = @_;
	my ($H, $s, $au, $ad, $cu, $cd, $t, $p, $D, $rest) =
		split("\n", $req->{dbuf}, 10);
	$s = utf8_html($s);
	$au = utf8_html($au);
	$cu = utf8_html($cu);
	my @p = split(' ', $p);

	my $rel = $req->{relcmd};
	my $x = $self->html_start($req, $s) . "\n" .
		qq(   commit $H (<a\nhref="${rel}patch/$H">patch</a>)\n) .
		qq(     tree <a\nrel=nofollow\nhref="${rel}src/$H">$t</a>);

	my $git = $req->{-repo}->{git};
	# extra show path information, if any
	my $extra = $req->{extra};
	my $path = '';
	if (@$extra) {
		my @t;
		my $ep;
		$x .= ' -- ';
		$x .= join('/', map {
			push @t, $_;
			my $e = PublicInbox::Hval->utf8($_, join('/', @t));
			$ep = $e->as_path;
			my $eh = $e->as_html;
			$ep = "${rel}src/$ep/$H";
			qq(<a\nrel=nofollow\nhref="$ep">$eh</a>);
		} @$extra);
		$path = "/$ep";
	}

	$x .= "\n   author $au\t$ad\ncommitter $cu\t$cd\n";
	my $np = scalar @p;
	if ($np == 1) {
		my $p = $p[0];
		$x .= git_parent_line('   parent', $p, $git, $rel);
	} elsif ($np > 1) {
		$req->{mhelp} = CC_MERGE;
		my @common = ($git, $rel);
		my @t = @p;
		my $p = shift @t;
		$x .= git_parent_line('  parents', $p, @common);
		foreach $p (@t) {
			$x .= git_parent_line('         ', $p, @common);
		}
	}
	$x .= "\n<b>";
	$x .= $s;
	$x .= "</b>\n\n";
	my $bx00;

	# FIXME: deal with excessively long commit message bodies
	($bx00, $req->{dbuf}) = split("\0", $rest, 2);
	$req->{anchors} = {};
	$req->{H} = $H;
	$req->{p} = \@p;
	$x .= utf8_html($bx00) . "<a\nid=D>---</a>\n";
}

sub git_commit_sed ($$) {
	my ($self, $req) = @_;
	git_diff_sed_init($req);
	my $dbuf = \($req->{dbuf});

	# this filters for $fh->write or $body->getline (see Qspawn)
	sub {
		my $dst = '';
		if (defined $_[0]) { # $_[0] == scalar buffer
			$$dbuf .= $_[0];
			if ($req->{dstate} == DSTATE_INIT) {
				return $dst if index($$dbuf, "\0") < 0;
				$req->{dstate} = DSTATE_STAT;
				$dst .= commit_header($self, $req);
			}
			git_diff_sed_run(\$dst, $req);
		} else { # undef means EOF from "git show", flush the last bit
			git_diff_sed_close(\$dst, $req);
			$dst .= CC_EMPTY if delete $req->{mhelp};
			show_unchanged(\$dst, $req);
			$dst .= '</pre></body></html>';
		}
		$dst;
	}
}

sub call_git_commit { # RepoBase calls this
	my ($self, $req) = @_;
	my $env = $req->{env};

	my $expath = $req->{expath};
	if ($expath ne '') {
		my $relup = join('', map { '../' } @{$req->{extra}});
		return $self->r(301, $req, "$relup#".to_attr($expath));
	}
	my $tip = $req->{tip} || $req->{-repo}->tip;
	my $git = $req->{-repo}->{git};
	my $cmd = $git->cmd(qw(show -z --numstat -p --encoding=UTF-8
			--no-notes --no-color -c --no-abbrev),
			GIT_FMT, $tip, '--');
	my $rdr = { 2 => $git->err_begin };
	my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr);
	$env->{'qspawn.quiet'} = 1;
	$qsp->psgi_return($env, undef, sub { # parse header
		my ($r, $bref) = @_;
		if (!defined $r) {
			$self->rt(500, 'plain', $git->err);
		} elsif ($r == 0) {
			git_commit_404($self, $req);
		} else {
			$env->{'qspawn.filter'} = git_commit_sed($self, $req);
			$self->rt(200, 'html');
		}
	});
}

sub git_commit_404 {
	my ($self, $req) = @_;
	my $x = 'Missing commit or path';
	my $pfx = "$req->{relcmd}commit";

	my $try = 'try';
	$x = "<html><head><title>$x</title></head><body><pre><b>$x</b>\n\n";
	$x .= "<a\nhref=\"$pfx\">$try the latest commit in HEAD</a>\n";
	$x .= '</pre></body>';

	$self->rt(404, 'html', $x);
}

# FIXME: horrifically expensive...
sub git_parent_line {
	my ($pfx, $p, $git, $rel) = @_;
	my $t = git_commit_title($git, $p);
	$t = defined $t ? utf8_html($t) : '';
	my $pad = ' ' x length($pfx);
	$pfx . qq( <a\nid=P\nhref="${rel}commit/$p">$p</a>\n $pad$t\n);
}

# do not break anchor links if the combined diff doesn't show changes:
sub show_unchanged {
	my ($dst, $req) = @_;

	my @unchanged = sort keys %{$req->{anchors}};
	return unless @unchanged;
	my $anchors = $req->{anchors};
	$$dst .= "\n There are uninteresting changes from this merge.\n" .
		qq( See the <a\nhref="#P">parents</a>, ) .
		"or view final state(s) below:\n\n";
	my $rel = $req->{relcmd};
	foreach my $anchor (@unchanged) {
		my $fn = $anchors->{$anchor};
		my $p = PublicInbox::Hval->utf8(git_unquote($fn));
		$p = $p->as_path;
		$fn = utf8_html($fn);
		$$dst .= qq(\t<a\nrel=nofollow);
		$$dst .= qq(\nid="$anchor"\nhref="${rel}src/$p">);
		$$dst .= "$fn</a>\n";
	}
}

1;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git