2 # Copyright (C) all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Wrapper to git fetch remote public-inboxes
7 use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
9 my $help = <<EOF; # the following should fit w/o scrolling in 80x24 term:
10 usage: public-inbox-fetch -C DESTINATION
12 fetch remote public-inboxes
16 --torsocks VAL whether or not to wrap git and curl commands with
17 torsocks (default: `auto')
18 Must be one of: `auto', `no' or `yes'
19 -T NAME Name of remote(s) to try (may be repeated)
20 default: `origin' and `_grokmirror'
21 --exit-code exit with 127 if no updates
22 --verbose | -v increase verbosity (may be repeated)
23 --quiet | -q increase verbosity (may be repeated)
24 -C DIR chdir to specified directory
26 GetOptions($opt, qw(help|h quiet|q verbose|v+ C=s@ c=s@ try-remote|T=s@
27 no-torsocks torsocks=s exit-code)) or die $help;
28 if ($opt->{help}) { print $help; exit };
29 require PublicInbox::Fetch; # loads Admin
30 PublicInbox::Admin::do_chdir(delete $opt->{C});
31 PublicInbox::Admin::setup_signals();
32 $SIG{PIPE} = 'IGNORE';
35 env => \%ENV, opt => $opt, cmd => 'public-inbox-fetch',
36 0 => *STDIN{GLOB}, 1 => *STDOUT{GLOB}, 2 => *STDERR{GLOB},
37 }, 'PublicInbox::LEI';
38 PublicInbox::Fetch->do_fetch($lei, '.');
39 exit(($lei->{child_error} // 0) >> 8);