spider/cmd/dx.pl

173 lines
3.8 KiB
Perl
Raw Permalink Normal View History

#
# the DX command
#
# this is where the fun starts!
#
# Copyright (c) 1998 Dirk Koopman G1TLH
#
#
#
my ($self, $line) = @_;
my @f = split /\s+/, $line, 3;
my $spotter = $self->call;
my $spotted;
my $freq;
my @out;
my $valid = 0;
my $localonly;
my $oline = $line;
return (1, $self->msg('e5')) if $self->remotecmd || $self->inscript;
return (1, $self->msg('e28')) unless $self->registered;
2001-10-04 15:52:12 +00:00
my @bad;
if (@bad = BadWords::check($line)) {
$self->badcount(($self->badcount||0) + @bad);
LogDbg('DXCommand', "$self->{call} swore: $line (with words:" . join(',', @bad) . ")");
$localonly++;
2001-10-04 15:52:12 +00:00
}
1999-09-21 13:05:58 +00:00
# do we have at least two args?
return (1, $self->msg('dx2')) unless @f >= 2;
# as a result of a suggestion by Steve K9AN, I am changing the syntax of
# 'spotted by' things to "dx by g1tlh <freq> <call>" <freq> and <call>
# can be in any order
if ($f[0] =~ /^by$/i) {
return (1, $self->msg('e5')) unless $main::allowdxby || $self->priv;
1999-09-21 13:05:58 +00:00
$spotter = uc $f[1];
$line =~ s/\s*$f[0]\s+$f[1]\s+//;
# $line = $f[2];
@f = split /\s+/, $line, 3;
1999-09-21 13:05:58 +00:00
return (1, $self->msg('dx2')) unless @f >= 2;
}
# get the freq and callsign either way round
2001-09-09 17:00:49 +00:00
if (is_freq($f[1]) && $f[0] =~ m{^[\w\d]+(?:/[\w\d]+){0,2}$}) {
1999-09-21 13:05:58 +00:00
$spotted = uc $f[0];
$freq = $f[1];
2001-09-09 17:00:49 +00:00
} elsif (is_freq($f[0]) && $f[1] =~ m{^[\w\d]+(?:/[\w\d]+){0,2}$}) {
1999-09-21 13:05:58 +00:00
$freq = $f[0];
$spotted = uc $f[1];
} else {
2001-09-09 17:00:49 +00:00
return (1, $self->msg('dx3'));
}
my $ipaddr;
my $addr = $self->hostname;
if ($self->conn && $self->conn->peerhost) {
$ipaddr = $addr unless !is_ipaddr($addr) || $addr =~ /^127\./ || $addr =~ /^::[0-9a-f]+$/;
} elsif ($self->inscript) {
$ipaddr = "script";
}
# check some other things
# remove ssid from calls
my $spotternoid = basecall($spotter);
my $callnoid = basecall($self->{call});
#$DB::single = 1;
if ($DXProt::baddx->in($spotted)) {
$localonly++;
}
if ($DXProt::badspotter->in($spotternoid)) {
LogDbg('DXCommand', "badspotter $spotternoid as $spotter ($oline) from $addr");
$localonly++;
}
dbg "spotter $spotternoid/$callnoid\n";
if (($spotted =~ /$spotternoid/ || $spotted =~ /$callnoid/) && $freq < $Spot::minselfspotqrg) {
LogDbg('DXCommand', "$spotternoid/$callnoid trying to self spot below ${Spot::minselfspotqrg}KHz ($oline) from $addr, not passed on to cluster");
$localonly++;
}
# make line the rest of the line
$line = $f[2] || " ";
@f = split /\s+/, $line;
# bash down the list of bands until a valid one is reached
my $bandref;
my @bb;
my $i;
# first in KHz
L1:
foreach $bandref (Bands::get_all()) {
@bb = @{$bandref->band};
for ($i = 0; $i < @bb; $i += 2) {
if ($freq >= $bb[$i] && $freq <= $bb[$i+1]) {
$valid = 1;
last L1;
}
}
}
1999-09-21 13:05:58 +00:00
unless ($valid) {
# try again in MHZ
$freq = $freq * 1000 if $freq;
L2:
foreach $bandref (Bands::get_all()) {
@bb = @{$bandref->band};
for ($i = 0; $i < @bb; $i += 2) {
if ($freq >= $bb[$i] && $freq <= $bb[$i+1]) {
$valid = 1;
last L2;
}
}
}
}
1999-09-21 13:05:58 +00:00
push @out, $self->msg('dx1', $freq) unless $valid;
# check we have a callsign :-)
if ($spotted le ' ') {
push @out, $self->msg('dx2');
$valid = 0;
}
1999-09-21 13:05:58 +00:00
return (1, @out) unless $valid;
1999-01-31 13:15:11 +00:00
# Store it here (but only if it isn't baddx)
my $t = (int ($main::systime/60)) * 60;
return (1, $self->msg('dup')) if Spot::dup($freq, $spotted, $t, $line, $spotter);
my @spot = Spot::prepare($freq, $spotted, $t, $line, $spotter, $main::mycall, $ipaddr);
if ($freq =~ /^69/ || $localonly) {
2001-10-05 11:07:12 +00:00
# heaven forfend that we get a 69Mhz band :-)
if ($freq =~ /^69/) {
$self->badcount(($self->badcount||0) + 1);
}
$self->dx_spot(undef, undef, @spot);
return (1);
1999-01-31 13:15:11 +00:00
} else {
if (@spot) {
2001-04-22 22:23:23 +00:00
# store it
2001-04-23 00:47:10 +00:00
Spot::add(@spot);
2001-04-22 22:23:23 +00:00
1999-01-31 13:15:11 +00:00
# send orf to the users
if ($ipaddr) {
DXProt::send_dx_spot($self, DXProt::pc61($spotter, $freq, $spotted, $line, $ipaddr), @spot);
} else {
DXProt::send_dx_spot($self, DXProt::pc11($spotter, $freq, $spotted, $line), @spot);
}
1999-01-31 13:15:11 +00:00
}
}
return (1, @out);