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