]> ruin.nu Git - ndwebbie.git/blob - ND/Web/Forum.pm
gal rankings and fixed a bug with gal graph caching
[ndwebbie.git] / ND / Web / 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::Forum;
21 use strict;
22 use warnings FATAL => 'all';
23 use CGI qw{:standard};
24 use HTML::Template;
25 use ND::Web::Include;
26 require Exporter;
27
28 our @ISA = qw/Exporter/;
29
30 our @EXPORT = qw/viewForumThread addForumPost addForumThread markThreadAsRead/;
31
32 sub viewForumThread {
33         my ($thread) = @_;
34
35         my $template = HTML::Template->new(filename => "templates/viewthread.tmpl", global_vars => 1, cache => 1);
36
37         $template->param(Id => $thread->{id});
38         $template->param(Post => $thread->{post});
39
40         my $posts = $ND::DBH->prepare(q{SELECT u.username,date_trunc('seconds',fp.time::timestamp) AS time,fp.message,COALESCE(fp.time > ftv.time,TRUE) AS unread
41 FROM forum_threads ft JOIN forum_posts fp USING (ftid) JOIN users u USING (uid) LEFT OUTER JOIN (SELECT * FROM forum_thread_visits WHERE uid = $2) ftv ON ftv.ftid = ft.ftid
42 WHERE ft.ftid = $1
43 ORDER BY fp.time ASC
44 });
45         $posts->execute($thread->{id},$ND::UID) or $ND::ERROR .= p($ND::DBH->errstr);
46         my @posts;
47         my $old = 1;
48         while (my $post = $posts->fetchrow_hashref){
49                 if ($old && $post->{unread}){
50                         $old = 0;
51                         $post->{NewPosts} = 1;
52                 }
53                 $post->{message} = parseMarkup($post->{message});
54                 push @posts,$post;
55         }
56
57         if (defined param('cmd') && param('cmd') eq 'Preview'){
58                 my $text = parseMarkup(escapeHTML(param('message')));
59                 $text .= p b $@ if $@;
60                 push @posts,{message => $text, unread => 1, username => 'PREVIEW', Time => 'Not submitted yet', NewPosts => $old ? 1 : 0};
61
62                 $text = escapeHTML param('message');
63                 $text =~ s/\x{3}\d\d?//g; #mirc color TODO: possibly match until \x{0F} and change to [color] block
64                 $text =~ s/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//g;
65                 $template->param(Message => $text);
66         }
67         $template->param(Posts => \@posts);
68
69         markThreadAsRead($thread->{id});
70
71         return $template->output;
72 }
73
74 sub addForumPost {
75         my ($dbh,$thread,$uid,$message) = @_;
76         my $insert = $dbh->prepare(q{INSERT INTO forum_posts (ftid,message,uid) VALUES($1,$2,$3)});
77         unless ($insert->execute($thread->{id},escapeHTML($message),$uid)){
78                 $ND::ERROR .= p($dbh->errstr);
79                 return 0;
80         }
81         return 1;
82 }
83
84 sub addForumThread {
85         my ($dbh,$board,$uid,$subject) = @_;
86
87         my $insert = $dbh->prepare(q{INSERT INTO forum_threads (fbid,subject) VALUES($1,$2)});
88
89         if ($insert->execute($board->{id},escapeHTML($subject))){
90                 my $id = $dbh->last_insert_id(undef,undef,undef,undef,"forum_threads_ftid_seq");
91                 return $dbh->selectrow_hashref(q{SELECT ftid AS id, subject, $2::boolean AS post FROM forum_threads WHERE ftid = $1}
92                         ,undef,$id,$board->{post})
93                         or $ND::ERROR .= p($dbh->errstr);
94         }else{
95                 $ND::ERROR .= p($dbh->errstr);
96         }
97 }
98
99 sub markThreadAsRead {
100         my ($thread) = @_;
101         my $rows = $ND::DBH->do(q{UPDATE forum_thread_visits SET time = now() 
102 WHERE uid =     $1 AND ftid = $2},undef,$ND::UID,$thread);
103         if ($rows == 0){
104                 $ND::DBH->do(q{INSERT INTO forum_thread_visits (uid,ftid) VALUES ($1,$2)}
105                         ,undef,$ND::UID,$thread) or $ND::ERROR .= p($ND::DBH->errstr);
106         }elsif(not defined $rows){
107                 $ND::ERROR .= p($ND::DBH->errstr);
108         }
109 }
110
111 1;