1 # Copyright (C) all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 # Wrapper to "git fetch" remote public-inboxes
4 package PublicInbox::Fetch;
7 use parent qw(PublicInbox::IPC);
9 use PublicInbox::Spawn qw(popen_rd run_die spawn);
10 use PublicInbox::Admin;
12 use PublicInbox::LeiCurl;
13 use PublicInbox::LeiMirror;
15 use PublicInbox::Config;
16 use IO::Compress::Gzip qw(gzip $GzipError);
18 sub new { bless {}, __PACKAGE__ }
22 my @cmd; # (git --git-dir=...) to be added by caller
23 $opt->{$_} = $lei->{$_} for (0..2);
24 # we support "-c $key=$val" for arbitrary git config options
25 # e.g.: git -c http.proxy=socks5h://127.0.0.1:9050
26 push(@cmd, '-c', $_) for @{$lei->{opt}->{c} // []};
28 push @cmd, '-q' if $lei->{opt}->{quiet};
29 push @cmd, '-v' if $lei->{opt}->{verbose};
35 my $rn = $lei->{opt}->{'try-remote'} // [ 'origin', '_grokmirror' ];
37 my $cmd = [ qw(git config), "remote.$r.url" ];
38 my $fh = popen_rd($cmd, undef, { -C => $dir, 2 => $lei->{2} });
47 sub do_manifest ($$$) {
48 my ($lei, $dir, $ibx_uri) = @_;
49 my $muri = URI->new("$ibx_uri/manifest.js.gz");
50 my $ft = File::Temp->new(TEMPLATE => 'm-XXXX',
51 UNLINK => 1, DIR => $dir, SUFFIX => '.tmp');
52 my $fn = $ft->filename;
53 my $mf = "$dir/manifest.js.gz";
54 my $m0; # current manifest.js.gz contents
55 if (open my $fh, '<', $mf) {
57 PublicInbox::LeiMirror::decode_manifest($fh, $mf, $mf)
61 my ($bn) = ($fn =~ m!/([^/]+)\z!);
62 my $curl_cmd = $lei->{curl}->for_uri($lei, $muri, qw(-R -o), $bn);
63 my $opt = { -C => $dir };
64 $opt->{$_} = $lei->{$_} for (0..2);
65 my $cerr = PublicInbox::LeiMirror::run_reap($lei, $curl_cmd, $opt);
67 return [ 404, $muri ] if ($cerr >> 8) == 22; # 404 Missing
68 $lei->child_error($cerr, "@$curl_cmd failed");
72 PublicInbox::LeiMirror::decode_manifest($ft, $fn, $muri);
73 } or return [ 404, $muri ];
76 # filter out unchanged entries. We check modified, too, since
77 # fingerprints are SHA-1, so there's a teeny chance they'll collide
78 while (my ($k, $v0) = each %{$m0 // {}}) {
79 my $cur = $m1->{$k} // next;
80 my $f0 = $v0->{fingerprint} // next;
81 my $f1 = $cur->{fingerprint} // next;
82 my $t0 = $v0->{modified} // next;
83 my $t1 = $cur->{modified} // next;
84 delete($mdiff->{$k}) if $f0 eq $f1 && $t0 == $t1;
86 unless (keys %$mdiff) {
87 $lei->child_error(127 << 8) if $lei->{opt}->{'exit-code'};
90 my (undef, $v1_path, @v2_epochs) =
91 PublicInbox::LeiMirror::deduce_epochs($mdiff, $ibx_uri->path);
92 [ 200, $muri, $v1_path, \@v2_epochs, $ft, $mf, $m1 ];
95 sub get_fingerprint2 {
98 my $rd = popen_rd([qw(git show-ref)], undef, { -C => $git_dir });
99 Digest::SHA::sha256(do { local $/; <$rd> });
102 sub writable_dir ($) {
104 return unless -d $dir && -w _;
106 $st[2] & 0222; # any writable bits set? (in case of root)
109 sub do_fetch { # main entry point
110 my ($cls, $lei, $cd) = @_;
112 $lei->{curl} //= PublicInbox::LeiCurl->new($lei) or return;
113 my $dir = PublicInbox::Admin::resolve_inboxdir($cd, \$ibx_ver);
114 my ($ibx_uri, @git_dir, @epochs, $mg, @new_epoch, $skip);
116 my $url = remote_url($lei, $dir) //
117 die "E: $dir missing remote.*.url\n";
118 $ibx_uri = URI->new($url);
120 require PublicInbox::MultiGit;
121 $mg = PublicInbox::MultiGit->new($dir, 'all.git', 'git');
122 @epochs = $mg->git_epochs;
123 my ($git_url, $epoch);
124 for my $nr (@epochs) { # try newest epoch, first
125 my $edir = "$dir/git/$nr.git";
126 if (!writable_dir($edir)) {
130 next if defined $git_url;
131 if (defined(my $url = remote_url($lei, $edir))) {
135 warn "W: $edir missing remote.*.url\n";
136 my $pid = spawn([qw(git config -l)], undef,
137 { 1 => $lei->{2}, 2 => $lei->{2} });
139 $lei->child_error($?) if $?;
142 @epochs = grep { !$skip->{$_} } @epochs if $skip;
143 $skip //= {}; # makes code below easier
144 $git_url or die "Unable to determine git URL\n";
145 my $inbox_url = $git_url;
146 $inbox_url =~ s!/git/$epoch(?:\.git)?/?\z!! or
147 $inbox_url =~ s!/$epoch(?:\.git)?/?\z!! or die <<EOM;
148 Unable to infer inbox URL from <$git_url>
150 $ibx_uri = URI->new($inbox_url);
152 PublicInbox::LeiMirror::write_makefile($dir, $ibx_ver);
153 $lei->qerr("# inbox URL: $ibx_uri/");
154 my $res = do_manifest($lei, $dir, $ibx_uri) or return;
155 my ($code, $muri, $v1_path, $v2_epochs, $ft, $mf, $m1) = @$res;
157 # any pre-manifest.js.gz instances running? Just fetch all
158 # existing ones and unconditionally try cloning the next
159 $v2_epochs = [ map { "$dir/git/$_.git" } @epochs ];
161 my $n = $epochs[-1] + 1;
162 push @$v2_epochs, "$dir/git/$n.git" if !$skip->{$n};
165 $code == 200 or die "BUG unexpected code $code\n";
169 defined($v1_path) and warn <<EOM;
170 E: got v1 `$v1_path' when expecting v2 epoch(s) in <$muri>, WTF?
172 @git_dir = map { "$dir/git/$_.git" } sort { $a <=> $b } map {
173 my ($nr) = (m!/([0-9]+)\.git\z!g);
174 $skip->{$nr} ? () : $nr;
176 if ($m1 && scalar keys %$skip) {
177 my $re = join('|', keys %$skip);
178 my @del = grep(m!/git/$re\.git\z!, keys %$m1);
185 # n.b. this expects all epochs are from the same host
186 my $torsocks = $lei->{curl}->torsocks($lei, $muri);
187 my $fp2 = $lei->{opt}->{'exit-code'} ? [] : undef;
189 for my $d (@git_dir) {
191 my $opt = {}; # for spawn
193 $fp2->[0] = get_fingerprint2($d) if $fp2;
194 $cmd = [ @$torsocks, 'git', "--git-dir=$d",
195 fetch_args($lei, $opt) ];
197 my $e_uri = $ibx_uri->clone;
198 my ($epath) = ($d =~ m!(/git/[0-9]+\.git)\z!);
200 die "BUG: $d is not an epoch to clone\n";
201 $e_uri->path($ibx_uri->path.$epath);
203 PublicInbox::LeiMirror::clone_cmd($lei, $opt),
205 push @new_epoch, substr($epath, 5, -4) + 0;
208 my $cerr = PublicInbox::LeiMirror::run_reap($lei, $cmd, $opt);
209 # do not bail on clone failure if we didn't have a manifest
210 if ($cerr && ($code == 200 || -d $d)) {
211 $lei->child_error($cerr, "@$cmd failed");
215 $fp2->[1] = get_fingerprint2($d);
216 $xit = 0 if $fp2->[0] ne $fp2->[1];
219 for my $i (@new_epoch) { $mg->epoch_cfg_set($i) }
222 my $json = PublicInbox::Config->json->encode($m1);
223 my $fn = $ft->filename;
224 gzip(\$json => $fn) or die "gzip: $GzipError";
226 PublicInbox::LeiMirror::ft_rename($ft, $mf, 0666);
228 $lei->child_error($xit << 8) if $fp2 && $xit;