X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fdx.pl;h=75ba77dc866e8a0152d918a1ce514a9c6660186a;hb=329702a31bd4a526077c713b12ede457276c79db;hp=98338ec60986b731439d610605fe82e58f0368c1;hpb=82de56e409a19a05761794c9588713160b51144e;p=spider.git diff --git a/cmd/dx.pl b/cmd/dx.pl index 98338ec6..75ba77dc 100644 --- a/cmd/dx.pl +++ b/cmd/dx.pl @@ -9,12 +9,13 @@ # my ($self, $line) = @_; -my @f = split /\s+/, $line; +my @f = split /\s+/, $line, 3; my $spotter = $self->call; my $spotted; my $freq; my @out; my $valid = 0; +return (1, $self->msg('e5')) if $self->remotecmd; # do we have at least two args? return (1, $self->msg('dx2')) unless @f >= 2; @@ -26,8 +27,8 @@ return (1, $self->msg('dx2')) unless @f >= 2; if ($f[0] =~ /^by$/i) { $spotter = uc $f[1]; $line =~ s/^\s*$f[0]\s+$f[1]\s+//; - shift @f; - shift @f; + $line = $f[2]; + @f = split /\s+/, $line; return (1, $self->msg('dx2')) unless @f >= 2; } @@ -41,7 +42,10 @@ if ($f[0] =~ /[A-Za-z]/) { } else { return (1, $self->msg('dx2')); } -$line =~ s/^$f[0]\s+$f[1]\s*//; + +# 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; @@ -94,9 +98,10 @@ $line =~ s/\^/:/og; # Store it here (but only if it isn't baddx) if (grep $_ eq $spotted, @DXProt::baddx) { - my $buf = Spot::formatb($freq, $spotted, $main::systime, $line, $spotter); + my $buf = Spot::formatb($self->user->wantgrid, $freq, $spotted, $main::systime, $line, $spotter); push @out, $buf; } else { + return (1, $self->msg('dup')) if Spot::dup($freq, $spotted, (int ($main::systime/60)) * 60, $line); my @spot = Spot::add($freq, $spotted, $main::systime, $line, $spotter, $main::mycall); if (@spot) { # send orf to the users @@ -105,3 +110,8 @@ if (grep $_ eq $spotted, @DXProt::baddx) { } return (1, @out); + + + + +