added new commands
[spider.git] / cmd / set / sys_location.pl
1 #
2 # set the system latitude and longtitude field
3 #
4 # Copyright (c) 1998 - Dirk Koopman
5 #
6 # $Id$
7 #
8
9 my ($self, $line) = @_;
10 return (1, $self->msg('e5')) if $self->priv < 9;
11
12 my $call = $main::mycall;
13 my $user;
14
15 # remove leading and trailing spaces
16 $line =~ s/^\s+//;
17 $line =~ s/\s+$//;
18
19 return (1, $self->msg('loce1')) if !$line;
20 return (1, $self->msg('loce2', $line)) unless $line =~ /\d+ \d+ [NnSs] \d+ \d+ [EeWw]/o;
21
22 $user = DXUser->get_current($call);
23 if ($user) {
24         $line = uc $line;
25         my ($lat, $long) = DXBearing::stoll($line);
26         $user->lat($lat);
27         $user->long($long);
28         DXProt::broadcast_ak1a(DXProt::pc41($call, 3, $line), $DXProt::me);
29         if (!$user->qra) {
30                 my $qra = DXBearing::lltos($lat, $long);
31                 $user->qra($qra);
32         }
33         
34         $user->put();
35         return (1, $self->msg('sloc', $lat, $long));
36 } else {
37         return (1, $self->msg('namee2', $call));
38 }