add ip <ipaddress> to dx by <spotter>
authorDirk Koopman <djk@tobit.co.uk>
Wed, 22 Dec 2021 21:18:04 +0000 (21:18 +0000)
committerDirk Koopman <djk@tobit.co.uk>
Wed, 22 Dec 2021 21:18:04 +0000 (21:18 +0000)
This is for webclusters and can only be used by privileged users

Changes
cmd/dx.pl
perl/DXChannel.pm
perl/Messages

diff --git a/Changes b/Changes
index 69032476c7a568919605746de2666ee9571e7aaa..a28f5a25f928bf6c9c052c41155f863462f7bb18 100644 (file)
--- a/Changes
+++ b/Changes
@@ -8,7 +8,13 @@
    spots to PC61 where the spotter's IP is known.
 3. Add a shell script "perlbrew-dxspider" that can be used for starting the
    node when using perlbrew (i.e. more modern perls) on older distros such
-   as Centos 7/8. 
+   as Centos 7/8.
+4. Allow to "dx by <spotter> ip <ip address> <qrg> <spot call> <comment>.
+   This is added as a convenience measure for webcluster authors while waiting
+   for the internal websocket interface (or because they cannot use that). 
+   This can only be used by suitably privileged users. 
+   This likely to be a temporary measure and will be immediately withdrawn if
+   there is any sign of abuse. 
 11Dec21=======================================================================
 1. Removed dependency on perl Git package.
 2. Force code to change directory to $DXSPIDER_ROOT || '/spider'. Also force
index 27099f243a2a5f9dba15ec8034da0f3f1d6ca296..f86b46a681c00299ba77d5efbc7e596123b01d16 100644 (file)
--- a/cmd/dx.pl
+++ b/cmd/dx.pl
@@ -38,14 +38,27 @@ return (1, $self->msg('dx2')) unless @f >= 2;
 # can be in any order
 
 if ($f[0] =~ /^by$/i) {
-       return (1, $self->msg('e5')) unless $main::allowdxby || $self->priv;
+       return (1, $self->msg('e5')) unless $main::allowdxby || $self->priv > 1;
     $spotter = uc $f[1];
-    $line =~ s/\s*$f[0]\s+$f[1]\s+//;
-#      $line = $f[2];
+    $line =~ s/^\s*$f[0]\s+$f[1]\s+//;
        @f = split /\s+/, $line, 3;
        return (1, $self->msg('dx2')) unless @f >= 2;
 }
 
+my $ipaddr;
+@f = split /\s+/, $line, 3;
+if ($f[0] eq 'ip') {
+       return (1, $self->msg('e5')) unless $spotter &&  $self->priv > 1;
+       if (is_ipaddr($f[1])) {
+               $ipaddr = $f[1];
+       } else {
+               return (1, $self->msg('dx3', $f[1]));
+       }
+       $line =~ s/^\s*$f[0]\s+$f[1]\s+//;
+       @f = split /\s+/, $line, 3;
+}
+
+
 # get the freq and callsign either way round
 if (is_freq($f[1]) && $f[0] =~ m{^[\w\d]+(?:/[\w\d]+){0,2}$}) {
        $spotted = uc $f[0];
@@ -56,14 +69,14 @@ if (is_freq($f[1]) && $f[0] =~ m{^[\w\d]+(?:/[\w\d]+){0,2}$}) {
 } else {
        return (1, $self->msg('dx3'));
 }
+$line =~ s/^\s*$f[0]\s+$f[1]\s+//;
+$line =~ s/\t+/ /g;                            # do this here because it needs to be stopped ASAP!
+$line ||= ' ';
 
-
-my $ipaddr;
 my $addr = $self->hostname;
-
 if ($self->conn && $self->conn->peerhost) {
 #      $ipaddr = $addr unless !is_ipaddr($addr) || $addr =~ /^127\./ || $addr =~ /^::[0-9a-f]+$/;
-       $ipaddr = $addr; # force a PC61 
+       $ipaddr ||= $addr; # force a PC61 
 } elsif ($self->inscript) {
        $ipaddr = "script";
 }
@@ -90,10 +103,6 @@ if (($spotted =~ /$spotternoid/ || $spotted =~ /$callnoid/) && $freq < $Spot::mi
        $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;
@@ -157,15 +166,9 @@ if ($freq =~ /^69/ || $localonly) {
 
        return (1);
 } else {
-               # send orf to the users
-       my $spot;
-
-       if ($ipaddr) {
-               $spot = DXProt::pc61($spotter, $freq, $spotted, $line, $ipaddr);
-       }
-       #else {
-       #       $spot = DXProt::pc11($spotter, $freq, $spotted, $line);
-       #}
+       # send orf to the users
+       $ipaddr ||= $main::mycall;      # emergency backstop
+       my $spot = DXProt::pc61($spotter, $freq, $spotted, $line, $ipaddr);
        
        $self->dx_spot(undef, undef, @spot);
        if ($self->isslugged) {
index a0bc6ab9d9e7c3e1400709e9473037e745fd890e..c2358c3dd2366f56e1d7018c23fde7d474bb288d 100644 (file)
@@ -360,6 +360,11 @@ sub is_rbn
        return $_[0]->{sort} eq 'N';
 }
 
+sub is_dslink
+{
+       return $_[0]->{sort} eq 'L';
+}
+
 # for perl 5.004's benefit
 sub sort
 {
index 80b4f46df5b41f7d7e9c092acb1cc1522616e58f..2554d2701d0486c9695be620929e39b1694804fb 100644 (file)
@@ -68,6 +68,7 @@ package DXM;
                                dx1 => 'Frequency $_[0] not in band (see show/band); usage: DX [BY call] freq call comments',
                                dx2 => 'Need a callsign; usage: DX [BY call] freq call comments',
                                dx3 => 'The callsign or frequency is invalid',
+                               dx4 => 'The ip address ($_[0]) is invalid',
                                dxcqs => 'DX CQ Zones enabled for $_[0]',
                                dxcqu => 'DX CQ Zones disabled for $_[0]',
                                dxitus => 'DX ITU Zones enabled for $_[0]',