]> ruin.nu Git - ndwebbie.git/blob - forum.pl
initial commit of the forum page
[ndwebbie.git] / forum.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 => 'Forum');
24
25 our $BODY;
26 our $DBH;
27 my $error;
28
29 my %thread;
30 #TODO: fetch thread info.
31
32 my %board;
33 #TODO: fetch board info.
34
35 if (%thread){ #Display the thread
36 }elsif(%board){ #List threads in this board
37 }else{ #List boards
38         $BODY->param(Overview => 1);
39         my $categories = $DBH->prepare(q{SELECT fcid AS id,category FROM
40                 forum_categories});
41         my $boards = $DBH->prepare(q{SELECT fb.fbid AS id,fb.board
42                 FROM forum_boards fb NATURAL JOIN forum_access fa
43                 WHERE fcid = $1 AND (gid = -1 OR gid IN (SELECT gid FROM groupmembers
44                         WHERE uid = $2))
45                 GROUP BY fb.fbid, fb.board
46                 });
47         $categories->execute or $error .= p($DBH->errstr);
48         my @categories;
49         while (my $category = $categories->fetchrow_hashref){
50                 $boards->execute($category->{id},$ND::UID) or $error .= p($DBH->errstr);
51                 my @boards;
52                 my $i = 0;
53                 while (my $board = $boards->fetchrow_hashref){
54                         $board->{Unread} = 0;
55                         $i++;
56                         $board->{Odd} = $i % 2;
57                         push @boards,$board;
58                 }
59                 $category->{Boards} = \@boards;
60                 delete $category->{id};
61                 push @categories,$category if $i > 0;
62         }
63         $BODY->param(Categories => \@categories);
64
65 }
66 $BODY->param(Error => $error);
67
68 1;
69