From: Dirk Koopman Date: Mon, 6 Apr 2020 20:56:42 +0000 (+0100) Subject: Merge branch 'mojo' of ssh://server/scm/spider into mojo X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=65f4d068c56ddb6e25d1f62b7ca6fd43741386b3;hp=-c;p=spider.git Merge branch 'mojo' of ssh://server/scm/spider into mojo I wish I knew why I am doing the merge at this time! --- 65f4d068c56ddb6e25d1f62b7ca6fd43741386b3 diff --combined cmd/show/dx.pl index 371a3983,19396a70..44587680 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@@ -31,8 -31,6 +31,8 @@@ my $itu my $byitu; my $fromdxcc = 0; my $exact; +my $origin; +my $ip; my ($doqsl, $doiota, $doqra, $dofilter); my $usesql = $main::dbh && $Spot::use_db_for_search; @@@ -89,17 -87,6 +89,17 @@@ while ($f = shift @list) { # next fiel dbg "got info $info" if isdbg('shdx'); next; } + if (lc $f eq 'origin' && $list[0]) { + $origin = uc shift @list; + dbg "got origin $origin" if isdbg('shdx'); + next; + } + if (lc $f eq 'ip' && $list[0]) { + $ip = shift @list; + dbg "got ip $ip" if isdbg('shdx'); + next; + } + if ((lc $f eq 'spotter' || lc $f eq 'by') && $list[0]) { $spotter = uc shift @list; if ($list[0] && lc $list[0] eq 'dxcc') { @@@ -165,24 -152,7 +165,24 @@@ #$DB::single = 1; -# first deal with the prefix +# check origin +if ($origin) { + $expr .= ' && ' if $expr; + $expr .= "\$f7 eq '$origin'"; + $hint .= ' && ' if $hint; + $hint .= "m{$origin}"; +} + +# check (any) ip address +if ($ip) { + $expr .= ' && ' if $expr; + $expr .= "\$f14 && \$f14 =~ m{^$ip}"; + $hint .= ' && ' if $hint; + $ip =~ s/\./\\./g; # IPV4 + $hint .= "m{$ip}"; +} + +# deal with the prefix if ($pre) { my @ans; @@@ -250,7 -220,7 +250,7 @@@ if (@freq) # any info if ($info) { $expr .= ' && ' if $expr; - $info =~ s{(.)}{"\Q$1"}ge; +# $info =~ s{(.)}{"\Q$1"}ge; $expr .= "\$f3 =~ m{$info}i"; $hint .= ' && ' if $hint; $hint .= "m{$info}i"; @@@ -414,13 -384,7 +414,13 @@@ if ($doqra) $hint .= "m{$doqra}io"; } -dbg "expr: $expr from: $from to: $to fromday: $fromday today: $today" if isdbg('shdx'); + +$from ||= ''; +$to ||= ''; +$fromday ||= ''; +$today ||= ''; + +dbg "expr: $expr from: $from to: $to fromday: $fromday today: $today" if isdbg('sh/dx'); # now do the search @@@ -443,7 -407,7 +443,7 @@@ push @out, $self->spawn_cmd("sh/dx $lin } } push @out, $self->msg('e3', "sh/dx", "'$line'") unless @out; - $dxchan->send(@out); + return @out; }); #my @res = Spot::search($expr, $fromday, $today, $from, $to, $hint, $dofilter ? $self : undef);