]> ruin.nu Git - ndwebbie.git/blob - intel.pl
ba63838ebc0588993f5a0bf1acb387ffcdcd332f
[ndwebbie.git] / intel.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 use ND::Forum;
23
24 our $BODY;
25 our $DBH;
26 our $LOG;
27 our $ERROR;
28 my $error;
29
30 $ND::TEMPLATE->param(TITLE => 'Intel');
31
32 die "You don't have access" unless isIntel() || isHC();
33
34 my $planet;
35 if (defined param('coords') && param('coords') =~ /^(\d+)(?: |:)(\d+)(?: |:)(\d+)$/){
36         my $query = $DBH->prepare(q{SELECT x,y,z,coords(x,y,z),id, nick, alliance,alliance_id, planet_status,channel FROM current_planet_stats
37 WHERE  x = ? AND y = ? AND z = ?});
38         $planet = $DBH->selectrow_hashref($query,undef,$1,$2,$3);
39 }
40
41 my $showticks = 'AND (i.tick - i.eta) > (tick() - 48)';
42 if (defined param('show')){
43         if (param('show') eq 'all'){
44                 $showticks = '';
45         }elsif (param('show') =~ /^(\d+)$/){
46                 $showticks = "AND (i.tick - i.eta) > (tick() - $1)";
47         }
48 }
49
50 my $thread;
51 if (defined $planet){
52         $thread = $DBH->selectrow_hashref(q{SELECT ftid AS id, subject FROM forum_threads
53                 where planet = $1},undef,$planet->{id}) or $ERROR .= p($DBH->errstr);
54 }
55
56 if (defined param('cmd') && param('cmd') eq 'coords'){
57         my $coords = param('coords');
58         $DBH->do(q{CREATE TEMPORARY TABLE coordlist (
59         x integer NOT NULL,
60         y integer NOT NULL,
61         z integer NOT NULL,
62         PRIMARY KEY (x,y,z)
63                 )});
64         my $insert = $DBH->prepare(q{INSERT INTO coordlist (x,y,z) VALUES(?,?,?)});
65         while ($coords =~ m/(\d+):(\d+):(\d+)/g){
66                 $insert->execute($1,$2,$3);
67         }
68         my $planets = $DBH->prepare(q{SELECT (((p.x || ':') || p.y) || ':') || p.z AS coords, alliance FROM current_planet_stats p
69         JOIN coordlist c ON p.x = c.x AND p.y = c.y AND p.z = c.z
70 ORDER BY alliance, p.x, p.y, p.z});
71         $planets->execute;
72         my @planets;
73         while (my $planet = $planets->fetchrow_hashref){
74                 push @planets,$planet;
75         }
76         $BODY->param(CoordList => \@planets);
77 }
78 if (defined $thread and defined param('cmd') and param('cmd') eq 'forumpost'){
79         addForumPost($DBH,$thread,$ND::UID,param('message'));
80 }
81
82 if ($planet && defined param('cmd')){
83         if (param('cmd') eq 'change'){
84                 $DBH->begin_work;
85                 if (param('cnick')){
86                         my $value = escapeHTML(param('nick'));
87                         if ($DBH->do(q{UPDATE planets SET nick = ? WHERE id =?}
88                                         ,undef,$value,$planet->{id})){
89                                 $planet->{nick} = $value;
90                         }else{
91                                 $error .= "<p> Something went wrong: ".$DBH->errstr."</p>";
92                         }
93                 }
94                 if (param('cchannel')){
95                         my $value = escapeHTML(param('channel'));
96                         if ($DBH->do(q{UPDATE planets SET channel = ? WHERE id =?}
97                                         ,undef,$value,$planet->{id})){
98                                 $planet->{channel} = $value;
99                         }else{
100                                 $error .= "<p> Something went wrong: ".$DBH->errstr."</p>";
101                         }
102                 }
103                 if (param('cstatus')){
104                         my $value = escapeHTML(param('status'));
105                         if ($DBH->do(q{UPDATE planets SET planet_status = ? WHERE id =?}
106                                         ,undef,$value,$planet->{id})){
107                                 $planet->{planet_status} = $value;
108                         }else{
109                                 $error .= "<p> Something went wrong: ".$DBH->errstr."</p>";
110                         }
111                 }
112                 if (param('calliance')){
113                         if ($DBH->do(q{UPDATE planets SET alliance_id = NULLIF(?,-1) WHERE id =?}
114                                         ,undef,param('alliance'),$planet->{id})){
115                                 $planet->{alliance_id} = param('alliance');
116                         }else{
117                                 $error .= "<p> Something went wrong: ".$DBH->errstr."</p>";
118                         }
119                 }
120                 $DBH->commit or $error .= "<p> Something went wrong: ".$DBH->errstr."</p>";
121         }
122 }
123
124 if (param('coords')){
125         my $channel = param('coords');
126         $channel = $planet->{channel} if ($planet);
127         my $findchannel = $DBH->prepare('SELECT coords(x,y,z),alliance,nick,channel FROM current_planet_stats WHERE channel ILIKE ? ');
128         $findchannel->execute($channel);
129         my @channelusers;
130         while (my $user = $findchannel->fetchrow_hashref){
131                 push @channelusers,$user;
132         }
133         $BODY->param(ChannelUsers => \@channelusers);
134 }
135
136 if ($planet){
137         $BODY->param(Coords => $planet->{coords});
138         $BODY->param(Planet => $planet->{id});
139         $BODY->param(Nick => $planet->{nick});
140         $BODY->param(Channel => $planet->{channel});
141         my @status;
142         for my $status ("&nbsp;","Friendly", "NAP", "Hostile"){
143                 push @status,{Status => $status, Selected => defined $planet->{planet_status} && $status eq $planet->{planet_status}}
144         }
145         $BODY->param(PlanetStatus => \@status);
146         my @alliances = alliances($planet->{alliance_id});
147         $BODY->param(Alliances => \@alliances);
148
149         $BODY->param(Thread => viewForumThread $thread);
150
151         my $query = $DBH->prepare(intelquery('o.alliance AS oalliance,coords(o.x,o.y,o.z) AS origin',"t.id = ? $showticks"));
152         $query->execute($planet->{id}) or $error .= $DBH->errstr;
153         my @intellists;
154         my @incomings;
155         my $i = 0;
156         while (my $intel = $query->fetchrow_hashref){
157                 if ($intel->{ingal}){
158                         $intel->{missionclass} = 'ingal';
159                 }else{
160                         $intel->{missionclass} = $intel->{mission};
161                 }
162                 $i++;
163                 $intel->{ODD} = $i % 2;
164                 push @incomings,$intel;
165         }
166         push @intellists,{Message => 'Incoming fleets', Intel => \@incomings, Origin => 1};
167
168         $query = $DBH->prepare(intelquery('t.alliance AS talliance,coords(t.x,t.y,t.z) AS target',"o.id = ? $showticks"));
169         $query->execute($planet->{id}) or $error .= $DBH->errstr;
170         my @outgoings;
171         $i = 0;
172         while (my $intel = $query->fetchrow_hashref){
173                 if ($intel->{ingal}){
174                         $intel->{missionclass} = 'ingal';
175                 }else{
176                         $intel->{missionclass} = $intel->{mission};
177                 }
178                 $i++;
179                 $intel->{ODD} = $i % 2;
180                 push @outgoings,$intel;
181         }
182         push @intellists,{Message => 'Outgoing Fleets', Intel => \@outgoings, Target => 1};
183
184         $BODY->param(IntelLIsts => \@intellists);
185
186 }elsif(!param('coords')){
187         my $query = $DBH->prepare(intelquery('o.alliance AS oalliance,coords(o.x,o.y,o.z) AS origin, t.alliance AS talliance,coords(t.x,t.y,t.z) AS target',qq{not ingal
188                         AND ((( t.alliance_id != o.alliance_id OR t.alliance_id IS NULL OR o.alliance_id IS NULL) AND i.mission != 'Attack')
189                                 OR ( t.alliance_id = o.alliance_id AND i.mission = 'Attack'))
190                         AND i.sender NOT IN (SELECT planet FROM users u NATURAL JOIN groupmembers gm WHERE gid = 8 AND planet IS NOT NULL)
191                         $showticks}));
192         $query->execute() or $error .= $DBH->errstr;
193
194         my @intellists;
195         my @intel;
196         my $i = 0;
197         while (my $intel = $query->fetchrow_hashref){
198                 if ($intel->{ingal}){
199                         $intel->{missionclass} = 'ingal';
200                 }else{
201                         $intel->{missionclass} = $intel->{mission};
202                 }
203                 $i++;
204                 $intel->{ODD} = $i % 2;
205                 push @intel,$intel;
206         }
207         push @intellists,{Message => q{Intel where alliances doesn't match}, Intel => \@intel, Origin => 1, Target => 1};
208         $BODY->param(IntelLIsts => \@intellists);
209 }
210 my $query = $DBH->prepare(q{SELECT i.id, u.username, i.message, report_date FROM intel_messages i
211         JOIN users u ON u.uid = i.uid
212         WHERE NOT handled ORDER BY report_date});
213 $query->execute;
214 my @messages;
215 while (my $message = $query->fetchrow_hashref){
216         $message->{message} = parseMarkup($message->{message});
217         push @messages,$message;
218 }
219 #$BODY->param(IntelMessages => \@messages);
220 $BODY->param(Error => $error);
221 1;