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