]> ruin.nu Git - ndwebbie.git/blob - NDWeb/Pages/Motd.pm
2914191611461933035ead519d32a81f286eb7b3
[ndwebbie.git] / NDWeb / Pages / Motd.pm
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 package ND::Web::Pages::Motd;
21 use strict;
22 use warnings FATAL => 'all';
23 use ND::Include;
24 use CGI qw/:standard/;
25 use ND::Web::Include;
26
27 use base qw/ND::Web::XMLPage/;
28
29 $ND::Web::Page::PAGES{motd} = __PACKAGE__;
30
31 sub render_body {
32         my $self = shift;
33         my ($BODY) = @_;
34         $self->{TITLE} = 'Edit MOTD';
35         my $DBH = $self->{DBH};
36
37         return $self->noAccess unless $self->isHC;
38
39         if (defined param 'cmd' and param('cmd') eq 'change'){
40                 $DBH->begin_work;
41                 my $query = $DBH->prepare(q{UPDATE misc SET value= ? WHERE id='MOTD'});
42                 my $motd = escapeHTML(param('motd'));
43                 $query->execute($motd);
44                 log_message $ND::UID,"Updated MOTD";
45                 $DBH->commit;
46                 $BODY->param(MOTD => $motd);
47         }else{
48                 my ($motd) = $DBH->selectrow_array(q{SELECT value FROM misc WHERE id='MOTD'});
49                 $BODY->param(MOTD => $motd);
50         }
51         return $BODY;
52 }
53
54 1;