]> ruin.nu Git - ndwebbie.git/blob - addintel.pl
don't show posts for autogenerated boards, and ND::Include needed for calls
[ndwebbie.git] / addintel.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
23 $ND::TEMPLATE->param(TITLE => 'Add Intel and Scans');
24
25 our $BODY;
26 our $DBH;
27 my $error;
28
29 die "You don't have access" unless isMember();
30
31 if (defined param('cmd')){
32         if (param('cmd') eq 'submit' || param('cmd') eq 'submit_message'){
33                 my $findscan = $DBH->prepare("SELECT scan_id FROM scans WHERE scan_id = ? AND tick >= tick() - 48");
34                 my $addscan = $DBH->prepare('INSERT INTO scans (scan_id,tick,"type") VALUES (?,tick(),?)');
35                 my $addpoint = $DBH->prepare('UPDATE users SET scan_points = scan_points + 1 WHERE uid = ? ');
36                 my $intel = param('intel');
37                 my @scans;
38                 while ($intel =~ m/http:\/\/game.planetarion.com\/showscan.pl\?scan_id=(\d+)/g){
39                         my %scan;
40                         $scan{Scan} = $1;
41                         $scan{Message} = "Scan $1: ";
42                         $findscan->execute($1);
43                         if ($findscan->rows == 0){
44                                 if ($addscan->execute($1,$ND::UID)){
45                                         $addpoint->execute($ND::UID);
46                                         $scan{Message} .= '<i>added</i>';
47                                 }else{
48                                         $scan{Message} .= "<b>something went wrong:</b> <i>$DBH->errstr</i>";
49                                 }
50                         }else{
51                                 $scan{Message} .= '<b>already exists</b>';
52                         }
53                         push @scans,\%scan;
54                 }
55                 $BODY->param(Scans => \@scans);
56                 my $tick = $ND::TICK;
57                 $tick = param('tick') if $tick =~ /^(\d+)$/;
58                 my $addintel = $DBH->prepare(qq{SELECT add_intel(?,?,?,?,?,?,?,?,?,?,?)});
59                 while ($intel =~ m/(\d+):(\d+):(\d+)\*?\s+(\d+):(\d+):(\d+)\*?\s+.+(?:Ter|Cat|Xan|Zik)?\s+(\d+)\s+(Attack|Defend)\s+(\d+)/g){
60                         $addintel->execute($tick,$9, $1,$2,$3,$4,$5,$6,$7,$8,$ND::UID) or $error .= $DBH->errstr;
61                 }
62         }
63         if (param('cmd') eq 'submit_message'){
64                 my $query = $DBH->prepare(q{INSERT INTO intel_messages (uid,message) VALUES(?,?)});
65                 if($query->execute($ND::UID,escapeHTML(param('intel')))){
66                         $error .= 'Intel messaged added';
67                 }else{
68                         $error .= $DBH->errstr;
69                 }
70         }
71 }
72 $BODY->param(Tick => $ND::TICK);
73 $BODY->param(Error => $error);
74 1;