]> ruin.nu Git - ndwebbie.git/blob - ND/Web/Pages/Forum.pm
d31f4d3c04cd7a080ecc3530490652913518ccf4
[ndwebbie.git] / ND / Web / Pages / Forum.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::Forum;
21 use strict;
22 use warnings;
23 use ND::Web::Forum;
24 use CGI qw/:standard/;
25 use ND::Web::Include;
26 use ND::Include;
27
28 $ND::PAGES{forum} = {parse => \&parse, process => \&process, render=> \&render};
29
30 sub parse {
31         my ($uri) = @_;
32         if ($uri =~ m{^/.*/allUnread}){
33                 param('allUnread',1);
34         }
35 }
36
37 sub process {
38
39 }
40
41 sub render {
42         my ($DBH,$BODY) = @_;
43
44         $ND::TEMPLATE->param(TITLE => 'Forum');
45
46         $DBH->do(q{UPDATE users SET last_forum_visit = NOW() WHERE uid = $1},undef,$ND::UID) or $ND::ERROR .= p($DBH->errstr);
47
48         my $board;
49         if(param('b')){
50                 my $boards = $DBH->prepare(q{SELECT fb.fbid AS id,fb.board, bool_or(fa.post) AS post, bool_or(fa.moderate) AS moderate,fb.fcid
51                         FROM forum_boards fb NATURAL JOIN forum_access fa
52                         WHERE fb.fbid = $1 AND (gid = -1 OR gid IN (SELECT gid FROM groupmembers
53                         WHERE uid = $2))
54                         GROUP BY fb.fbid,fb.board,fb.fcid});
55                 $board = $DBH->selectrow_hashref($boards,undef,param('b'),$ND::UID) or $ND::ERROR .= p($DBH->errstr);
56         }
57         if (param('markAsRead')){
58                 my $threads = $DBH->prepare(q{SELECT ft.ftid AS id,ft.subject,count(NULLIF(COALESCE(fp.time > ftv.time,TRUE),FALSE)) AS unread,count(fp.fpid) AS posts, max(fp.time)::timestamp as last_post
59                 FROM forum_threads ft JOIN forum_posts fp USING (ftid) LEFT OUTER JOIN (SELECT * FROM forum_thread_visits WHERE uid = $2) ftv ON ftv.ftid = ft.ftid
60                 WHERE ((ft.fbid IS NULL AND $1 IS NULL) OR ft.fbid = $1) AND fp.time <= $3
61                 GROUP BY ft.ftid, ft.subject
62                 HAVING count(NULLIF(COALESCE(fp.time > ftv.time,TRUE),FALSE)) >= 1
63                 });
64
65                 $threads->bind_param('$1',$board->{id},{TYPE => DBI::SQL_INTEGER }) or $ND::ERROR .= p($DBH->errstr);
66                 $threads->bind_param('$2',$ND::UID,{TYPE => DBI::SQL_INTEGER }) or $ND::ERROR .= p($DBH->errstr);
67                 $threads->bind_param('$3',param('markAsRead')) or $ND::ERROR .= p($DBH->errstr);
68                 $threads->execute or $ND::ERROR .= p($DBH->errstr);
69                 while (my $thread = $threads->fetchrow_hashref){
70                         markThreadAsRead $thread->{id};
71                 }
72         }
73
74         my $thread;
75         my $findThread = $DBH->prepare(q{SELECT ft.ftid AS id,ft.subject, bool_or(fa.post) AS post, bool_or(fa.moderate) AS moderate,ft.fbid,fb.board,fb.fcid,ft.sticky
76                 FROM forum_boards fb NATURAL JOIN forum_access fa NATURAL JOIN forum_threads ft
77                 WHERE ft.ftid = $1 AND (gid = -1 OR gid IN (SELECT gid FROM groupmembers
78                 WHERE uid = $2))
79                 GROUP BY ft.ftid,ft.subject,ft.fbid,fb.board,fb.fcid,ft.sticky});
80         if(param('t')){
81                 $thread = $DBH->selectrow_hashref($findThread,undef,param('t'),$ND::UID) or $ND::ERROR .= p($DBH->errstr);
82         }
83
84         if (defined param('cmd')){
85                 if(param('cmd') eq 'Submit' or param('cmd') eq 'Preview'){
86                         $DBH->begin_work;
87                         if ($board && $board->{post}){
88                                 $thread = addForumThread $DBH,$board,$ND::UID,param('subject');
89                         }
90                         if (param('cmd') eq 'Submit' and $thread && $thread->{post}){
91                                 addForumPost($DBH,$thread,$ND::UID,param('message'));
92                         }
93                         $DBH->commit or $ND::ERROR .= p($DBH->errstr);
94                 }
95                 if(param('cmd') eq 'Move' && $board->{moderate}){
96                         $DBH->begin_work;
97                         my $moveThread = $DBH->prepare(q{UPDATE forum_threads SET fbid = $1 WHERE ftid = $2 AND fbid = $3});
98                         for my $param (param()){
99                                 if ($param =~ /t:(\d+)/){
100                                         $moveThread->execute(param('board'),$1,$board->{id}) or $ND::ERROR .= p($DBH->errstr);
101                                         if ($moveThread->rows > 0){
102                                                 log_message $ND::UID, qq{Moved thread: $1 to board: }.param('board');
103                                         }
104                                 }
105                         }
106                         $DBH->commit or $ND::ERROR .= p($DBH->errstr);
107                 }
108                 if($thread && param('cmd') eq 'Sticky' && $thread->{moderate}){
109                         if ($DBH->do(q{UPDATE forum_threads SET sticky = TRUE WHERE ftid = ?}, undef,$thread->{id})){
110                                 $thread->{sticky} = 1;
111                         }else{
112                                 $ND::ERROR .= p($DBH->errstr);
113                         }
114                 }
115                 if($thread && param('cmd') eq 'Unsticky' && $thread->{moderate}){
116                         if ($DBH->do(q{UPDATE forum_threads SET sticky = FALSE WHERE ftid = ?}, undef,$thread->{id})){
117                                 $thread->{sticky} = 0;
118                         }else{
119                                 $ND::ERROR .= p($DBH->errstr);
120                         }
121                 }
122         }
123
124         my $categories = $DBH->prepare(q{SELECT fcid AS id,category FROM forum_categories ORDER BY fcid});
125         my $boards = $DBH->prepare(q{SELECT fb.fbid AS id,fb.board, bool_or(fa.post) AS post
126                 FROM forum_boards fb NATURAL JOIN forum_access fa
127                 WHERE fb.fcid = $1 AND (gid = -1 OR gid IN (SELECT gid FROM groupmembers
128                 WHERE uid = $2))
129                 GROUP BY fb.fbid,fb.board
130                 ORDER BY fb.fbid
131                         });
132         my $threads = $DBH->prepare(q{SELECT ft.ftid AS id,ft.subject,
133                 count(NULLIF(COALESCE(fp.time > ftv.time,TRUE),FALSE)) AS unread,count(fp.fpid) AS posts,
134                 date_trunc('seconds',max(fp.time)::timestamp) as last_post,
135                 min(fp.time)::date as posting_date, ft.sticky
136                 FROM forum_threads ft JOIN forum_posts fp USING (ftid) LEFT OUTER JOIN (SELECT * FROM forum_thread_visits WHERE uid = $2) ftv ON ftv.ftid = ft.ftid
137                 WHERE ft.fbid = $1
138                 GROUP BY ft.ftid, ft.subject,ft.sticky
139                 HAVING count(NULLIF(COALESCE(fp.time > ftv.time,TRUE),FALSE)) >= $3
140                 ORDER BY sticky DESC,last_post DESC});
141
142         if ($thread){ #Display the thread
143                 $BODY->param(Title =>  $thread->{subject});
144                 $BODY->param(FBID =>  $thread->{fbid});
145                 $BODY->param(Board =>  $thread->{board});
146                 $BODY->param(FTID =>  $thread->{id});
147                 $BODY->param(Moderate =>  $thread->{moderate});
148                 $BODY->param(Sticky =>  $thread->{sticky} ? 'Unsticky' : 'Sticky');
149                 $BODY->param(Thread => viewForumThread $thread);
150                 my ($category) = $DBH->selectrow_array(q{SELECT category FROM forum_categories WHERE fcid = $1}
151                         ,undef,$thread->{fcid}) or $ND::ERROR .= p($DBH->errstr);
152                 $BODY->param(Category =>  $category);
153
154         }elsif(defined param('allUnread')){ #List threads in this board
155                 $BODY->param(AllUnread => 1);
156                 $BODY->param(Id => $board->{id});
157                 my ($time) = $DBH->selectrow_array('SELECT now()::timestamp',undef);
158                 $BODY->param(Date => $time);
159                 $categories->execute or $ND::ERROR .= p($DBH->errstr);
160                 my @categories;
161                 while (my $category = $categories->fetchrow_hashref){
162                         $boards->execute($category->{id},$ND::UID) or $ND::ERROR .= p($DBH->errstr);
163                         my @boards;
164                         while (my $board = $boards->fetchrow_hashref){
165                                 $threads->execute($board->{id},$ND::UID,1) or $ND::ERROR .= p($DBH->errstr);
166                                 my $i = 0;
167                                 my @threads;
168                                 while (my $thread = $threads->fetchrow_hashref){
169                                         $i++;
170                                         $thread->{Odd} = $i % 2;
171                                         push @threads,$thread;
172                                 }
173                                 $board->{Threads} = \@threads;
174                                 delete $board->{post};
175                                 push @boards,$board if $i > 0;
176                         }
177                         $category->{Boards} = \@boards;
178                         delete $category->{id};
179                         push @categories,$category if @boards;
180                 }
181                 $BODY->param(Categories => \@categories);
182
183         }elsif($board){ #List threads in this board
184                 $BODY->param(ViewBoard => 1);
185                 $BODY->param(Title => $board->{board});
186                 $BODY->param(Post => $board->{post});
187                 $BODY->param(Moderate => $board->{moderate});
188                 $BODY->param(Id => $board->{id});
189                 $BODY->param(FBID => $board->{id});
190                 $BODY->param(Board => $board->{board});
191                 my ($time) = $DBH->selectrow_array('SELECT now()::timestamp',undef);
192                 $BODY->param(Date => $time);
193                 $threads->execute($board->{id},$ND::UID,0) or $ND::ERROR .= p($DBH->errstr);
194                 my $i = 0;
195                 my @threads;
196                 while (my $thread = $threads->fetchrow_hashref){
197                         $i++;
198                         $thread->{Odd} = $i % 2;
199                         push @threads,$thread;
200                 }
201                 $BODY->param(Threads => \@threads);
202
203                 if ($board->{moderate}){
204                         $categories->execute or $ND::ERROR .= p($DBH->errstr);
205                         my @categories;
206                         while (my $category = $categories->fetchrow_hashref){
207                                 $boards->execute($category->{id},$ND::UID) or $ND::ERROR .= p($DBH->errstr);
208
209                                 my @boards;
210                                 while (my $b = $boards->fetchrow_hashref){
211                                         next if (not $b->{post} or $b->{id} == $board->{id});
212                                         delete $b->{post};
213                                         push @boards,$b;
214                                 }
215                                 $category->{Boards} = \@boards;
216                                 delete $category->{id};
217                                 push @categories,$category if @boards;
218                         }
219                         $BODY->param(Categories => \@categories);
220                 }
221                 my ($category) = $DBH->selectrow_array(q{SELECT category FROM forum_categories WHERE fcid = $1}
222                         ,undef,$board->{fcid}) or $ND::ERROR .= p($DBH->errstr);
223                 $BODY->param(Category =>  $category);
224
225         }else{ #List boards
226                 $BODY->param(Overview => 1);
227                 $categories->execute or $ND::ERROR .= p($DBH->errstr);
228                 my $boards = $DBH->prepare(q{SELECT fb.fbid AS id,fb.board,count(NULLIF(COALESCE(fp.fpid::boolean,FALSE) AND COALESCE(fp.time > ftv.time,TRUE),FALSE)) AS unread,date_trunc('seconds',max(fp.time)::timestamp) as last_post
229                         FROM forum_boards fb LEFT OUTER JOIN (forum_threads ft JOIN forum_posts fp USING (ftid)) ON fb.fbid = ft.fbid LEFT OUTER JOIN (SELECT * FROM forum_thread_visits WHERE uid = $2) ftv ON ftv.ftid = ft.ftid
230                         WHERE fb.fcid = $1 AND 
231                         fb.fbid IN (SELECT fbid FROM forum_access WHERE gid IN (SELECT groups($2)))
232                         GROUP BY fb.fbid, fb.board
233                         ORDER BY fb.fbid        });
234                 my @categories;
235                 while (my $category = $categories->fetchrow_hashref){
236                         $boards->execute($category->{id},$ND::UID) or $ND::ERROR .= p($DBH->errstr);
237                         my @boards;
238                         my $i = 0;
239                         while (my $board = $boards->fetchrow_hashref){
240                                 $i++;
241                                 $board->{Odd} = $i % 2;
242                                 push @boards,$board;
243                         }
244                         $category->{Boards} = \@boards;
245                         delete $category->{id};
246                         push @categories,$category if $i > 0;
247                 }
248                 $BODY->param(Categories => \@categories);
249
250         }
251         return $BODY;
252 }
253
254 1;
255