about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiExternal.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-02-10 07:07:47 +0000
committerEric Wong <e@80x24.org>2021-02-10 19:21:36 +0000
commit16e016a3dddce6e65c7b69e4f4fd4b7e65b9ccc7 (patch)
tree149aa2da9d2070d344429ebcf722bfdbc419872e /lib/PublicInbox/LeiExternal.pm
parentdcc0322ec3ec03e25a1ff9c3a8dda710712fcc82 (diff)
downloadpublic-inbox-16e016a3dddce6e65c7b69e4f4fd4b7e65b9ccc7.tar.gz
Similar to "lei q", "--local" means only local and "--remote"
means remote only.  I can't think of a reason to have --no-*
variants for these switches.

There's also updates to the TestCommon for more common lei
cases.
Diffstat (limited to 'lib/PublicInbox/LeiExternal.pm')
-rw-r--r--lib/PublicInbox/LeiExternal.pm12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/PublicInbox/LeiExternal.pm b/lib/PublicInbox/LeiExternal.pm
index b4e1918d..b402eed4 100644
--- a/lib/PublicInbox/LeiExternal.pm
+++ b/lib/PublicInbox/LeiExternal.pm
@@ -101,16 +101,22 @@ sub get_externals {
 
 sub lei_ls_external {
         my ($self, $filter) = @_;
-        my $do_glob = !$self->{opt}->{globoff}; # glob by default
-        my ($OFS, $ORS) = $self->{opt}->{z} ? ("\0", "\0\0") : (" ", "\n");
+        my $opt = $self->{opt};
+        my $do_glob = !$opt->{globoff}; # glob by default
+        my ($OFS, $ORS) = $opt->{z} ? ("\0", "\0\0") : (" ", "\n");
         $filter //= '*';
         my $re = $do_glob ? glob2re($filter) : undef;
         $re //= index($filter, '/') < 0 ?
                         qr!/\Q$filter\E/?\z! : # exact basename match
                         qr/\Q$filter\E/; # grep -F semantics
         my @ext = externals_each($self, my $boost = {});
-        @ext = $self->{opt}->{'invert-match'} ? grep(!/$re/, @ext)
+        @ext = $opt->{'invert-match'} ? grep(!/$re/, @ext)
                                         : grep(/$re/, @ext);
+        if ($opt->{'local'} && !$opt->{remote}) {
+                @ext = grep(!m!\A[a-z\+]+://!, @ext);
+        } elsif ($opt->{remote} && !$opt->{'local'}) {
+                @ext = grep(m!\A[a-z\+]+://!, @ext);
+        }
         for my $loc (@ext) {
                 $self->out($loc, $OFS, 'boost=', $boost->{$loc}, $ORS);
         }