]> ruin.nu Git - ndwebbie.git/commitdiff
def request page
authorMichael Andreen <harv@ruin.nu>
Tue, 12 Dec 2006 22:15:09 +0000 (22:15 +0000)
committerMichael Andreen <harv@ruin.nu>
Tue, 12 Dec 2006 22:15:09 +0000 (22:15 +0000)
defrequest.pl [new file with mode: 0644]
index.pl
templates/defrequest.tmpl [new file with mode: 0644]

diff --git a/defrequest.pl b/defrequest.pl
new file mode 100644 (file)
index 0000000..b1d4577
--- /dev/null
@@ -0,0 +1,42 @@
+#**************************************************************************
+#   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
+#                                                                         *
+#   This program is free software; you can redistribute it and/or modify  *
+#   it under the terms of the GNU General Public License as published by  *
+#   the Free Software Foundation; either version 2 of the License, or     *
+#   (at your option) any later version.                                   *
+#                                                                         *
+#   This program is distributed in the hope that it will be useful,       *
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+#   GNU General Public License for more details.                          *
+#                                                                         *
+#   You should have received a copy of the GNU General Public License     *
+#   along with this program; if not, write to the                         *
+#   Free Software Foundation, Inc.,                                       *
+#   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
+#**************************************************************************/
+
+use strict;
+
+$ND::TEMPLATE->param(TITLE => 'Request Defense');
+
+our $BODY;
+our $DBH;
+our $LOG;
+
+
+
+die "You don't have access" unless isMember();
+
+if (param('cmd') eq 'submit'){
+       my $insert = $DBH->prepare('INSERT INTO defense_requests (uid,message) VALUES (?,?)');
+       if($insert->execute($ND::UID,param('message'))){
+               $BODY->param(Reply => param('message'));
+       }else{
+               print "<b>".$DBH->errstr."</b>";
+       }
+}
+
+
+1;
index ad5ccfb52ce27851a4279f9688c891fc6776bafc..ff0381f0be616ac4fbc9f20ae5d91d66cb8e7415 100755 (executable)
--- a/index.pl
+++ b/index.pl
@@ -66,7 +66,7 @@ while (my ($name,$attack,$gid) = $query->fetchrow()){
 our $LOG = $DBH->prepare('INSERT INTO log (uid,text) VALUES(?,?)');
 
 my $page = 'main';
-if (param('page') =~ /^(main|check|motd|points|covop|top100|launchConfirmation|addintel)$/){
+if (param('page') =~ /^(main|check|motd|points|covop|top100|launchConfirmation|addintel|defrequest)$/){
        $page = $1;
 }
 
diff --git a/templates/defrequest.tmpl b/templates/defrequest.tmpl
new file mode 100644 (file)
index 0000000..10d9273
--- /dev/null
@@ -0,0 +1,10 @@
+<TMPL_IF Reply><p>Sent the message '<TMPL_VAR NAME=Reply>' to def
+channel</p></TMPL_IF>
+<form action="index.pl" method="post"><fieldset> <legend>Launch confirmation</legend>
+       <p>Message to def channel (like a line from gal status):</p>
+       <input type="text" name="message" value=""/>
+       <input type="hidden" name="cmd" value="submit"/>
+       <input type="hidden" name="page" value="defrequest"/>
+       <br/>
+       <input type="submit" value="Submit"/>
+</fieldset></form>