X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FLeiQuery.pm;h=eaf91f2ec90b02647bc935788dd8aa6ff62a342c;hb=fb8b16ff2b40ecd22ebbdea0d27069749e800077;hp=f71beae605aade29db986c514689f9684af0b73e;hpb=b503d87a23c90fc0f705a79bce34944e7e20b28b;p=public-inbox.git diff --git a/lib/PublicInbox/LeiQuery.pm b/lib/PublicInbox/LeiQuery.pm index f71beae6..eaf91f2e 100644 --- a/lib/PublicInbox/LeiQuery.pm +++ b/lib/PublicInbox/LeiQuery.pm @@ -11,14 +11,26 @@ sub prep_ext { # externals_each callback $lxs->prepare_external($loc) unless $exclude->{$loc}; } -sub qstr_add { # for --stdin +sub _start_query { + my ($self) = @_; + if (my $nwr = $self->{nwr}) { + require PublicInbox::LeiAuth; + my $auth = $self->{auth} = PublicInbox::LeiAuth->new($nwr); + my $lxs = $self->{lxs}; + $auth->auth_start($self, $lxs->can('do_query'), $lxs, $self); + } else { + $self->{lxs}->do_query($self); + } +} + +sub qstr_add { # PublicInbox::InputPipe::consume callback for --stdin my ($self) = @_; # $_[1] = $rbuf if (defined($_[1])) { $_[1] eq '' and return eval { my $lse = delete $self->{lse}; $lse->query_approxidate($lse->git, $self->{mset_opt}->{qstr}); - $self->{lxs}->do_query($self); + _start_query($self); }; $self->{mset_opt}->{qstr} .= $_[1]; } else { @@ -115,7 +127,7 @@ no query allowed on command-line with --stdin return; } $mset_opt{qstr} = $lse->query_argv_to_string($lse->git, \@argv); - $lxs->do_query($self); + _start_query($self); } # shell completion helper called by lei__complete