]> ruin.nu Git - ndwebbie.git/blob - memberIntel.pl
make forum/allUnread work
[ndwebbie.git] / memberIntel.pl
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 use strict;
21 use warnings FATAL => 'all';
22 our $BODY;
23 our $DBH;
24 my $error;
25
26 $ND::TEMPLATE->param(TITLE => 'Member Intel');
27
28 die "You don't have access" unless isHC();
29
30 my $showticks = 'AND i.tick > tick()';
31 if (defined param('show')){
32         if (param('show') eq 'all'){
33                 $showticks = '';
34         }elsif (param('show') =~ /^(\d+)$/){
35                 $showticks = "AND (i.tick - i.eta) > (tick() - $1)";
36         }
37 }
38
39
40 my $query = $DBH->prepare(intelquery('o.alliance AS oalliance,coords(o.x,o.y,o.z) AS origin, coords(t.x,t.y,t.z) AS target, t.nick',"t.alliance_id = 1 $showticks"));
41 $query->execute() or $error .= $DBH->errstr;
42 my @intellists;
43 my @incomings;
44 my $i = 0;
45 while (my $intel = $query->fetchrow_hashref){
46         if ($intel->{ingal}){
47                 $intel->{missionclass} = 'ingal';
48         }else{
49                 $intel->{missionclass} = $intel->{mission};
50         }
51         $i++;
52         $intel->{ODD} = $i % 2;
53         push @incomings,$intel;
54 }
55 push @intellists,{Message => 'Incoming fleets', Intel => \@incomings, Origin => 1};
56
57 $query = $DBH->prepare(intelquery('o.nick,coords(o.x,o.y,o.z) AS origin,t.alliance AS talliance,coords(t.x,t.y,t.z) AS target',"o.alliance_id = 1 $showticks"));
58 $query->execute() or $error .= $DBH->errstr;
59 my @outgoings;
60 $i = 0;
61 while (my $intel = $query->fetchrow_hashref){
62         if ($intel->{ingal}){
63                 $intel->{missionclass} = 'ingal';
64         }else{
65                 $intel->{missionclass} = $intel->{mission};
66         }
67         $i++;
68         $intel->{ODD} = $i % 2;
69         push @outgoings,$intel;
70 }
71 push @intellists,{Message => 'Outgoing Fleets', Intel => \@outgoings, Target => 1};
72
73 $BODY->param(IntelLIsts => \@intellists);
74
75 $BODY->param(Error => $error);
76 1;