From b43c5ef05e5803ba0c49f700b7bbd8b6e81ee41c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 25 Sep 2021 08:49:44 +0000 Subject: lei add-external: split into separate file Also was written before we had auto-loading and rarely used. --- lib/PublicInbox/LeiExternal.pm | 66 ------------------------------------------ 1 file changed, 66 deletions(-) (limited to 'lib/PublicInbox/LeiExternal.pm') diff --git a/lib/PublicInbox/LeiExternal.pm b/lib/PublicInbox/LeiExternal.pm index 35a7d68a..5a54cc19 100644 --- a/lib/PublicInbox/LeiExternal.pm +++ b/lib/PublicInbox/LeiExternal.pm @@ -132,59 +132,6 @@ sub lei_ls_external { } } -sub add_external_finish { - my ($self, $location) = @_; - my $cfg = $self->_lei_cfg(1); - my $new_boost = $self->{opt}->{boost} // 0; - my $key = "external.$location.boost"; - my $cur_boost = $cfg->{$key}; - return if defined($cur_boost) && $cur_boost == $new_boost; # idempotent - $self->_config($key, $new_boost); -} - -sub lei_add_external { - my ($self, $location) = @_; - my $opt = $self->{opt}; - my $mirror = $opt->{mirror} // do { - my @fail; - for my $sw ($self->index_opt, $self->curl_opt, - qw(no-torsocks torsocks inbox-version)) { - my ($f) = (split(/|/, $sw, 2))[0]; - next unless defined $opt->{$f}; - $f = length($f) == 1 ? "-$f" : "--$f"; - push @fail, $f; - } - if (scalar(@fail) == 1) { - return $self->("@fail requires --mirror"); - } elsif (@fail) { - my $last = pop @fail; - my $fail = join(', ', @fail); - return $self->("@fail and $last require --mirror"); - } - undef; - }; - my $new_boost = $opt->{boost} // 0; - $location = ext_canonicalize($location); - if (defined($mirror) && -d $location) { - $self->fail(<<""); # TODO: did you mean "update-external?" ---mirror destination `$location' already exists - - } elsif (-d $location) { - index($location, "\n") >= 0 and - return $self->fail("`\\n' not allowed in `$location'"); - } - if ($location !~ m!\Ahttps?://! && !-d $location) { - $mirror // return $self->fail("$location not a directory"); - index($location, "\n") >= 0 and - return $self->fail("`\\n' not allowed in `$location'"); - $mirror = ext_canonicalize($mirror); - require PublicInbox::LeiMirror; - PublicInbox::LeiMirror->start($self, $mirror => $location); - } else { - add_external_finish($self, $location); - } -} - # returns an anonymous sub which returns an array of potential results sub complete_url_prepare { my $argv = $_[-1]; # $_[0] may be $lei @@ -223,17 +170,4 @@ sub complete_url_prepare { wantarray ? ($re, $cur, $match_cb) : $match_cb; } -sub _complete_add_external { # for bash, this relies on "compopt -o nospace" - my ($self, @argv) = @_; - my $cfg = $self->_lei_cfg; - my $match_cb = complete_url_prepare(\@argv); - require URI; - map { - my $u = URI->new(substr($_, length('external.'))); - my ($base) = ($u->path =~ m!((?:/?.*)?/)[^/]+/?\z!); - $u->path($base); - $match_cb->($u->as_string); - } grep(m!\Aexternal\.https?://!, @{$cfg->{-section_order}}); -} - 1; -- cgit v1.2.3-24-ge0c7