X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=lib%2FNDWeb%2FController%2FForum.pm;h=1a796246688d090a717e7046e02af5bb52c12e16;hb=c66b1b9074d880fb13a825bc75c1bc842ec65f75;hp=f33319aabb6379e4cfff2f5ed62a807f19366d00;hpb=c4b993d742eff701dfe3784bfaedf81f9e4cd34d;p=ndwebbie.git diff --git a/lib/NDWeb/Controller/Forum.pm b/lib/NDWeb/Controller/Forum.pm index f33319a..1a79624 100644 --- a/lib/NDWeb/Controller/Forum.pm +++ b/lib/NDWeb/Controller/Forum.pm @@ -182,33 +182,10 @@ sub board : Local { } $c->stash(threads => \@threads); - if ($board->{moderate}){ - my $categories = $dbh->prepare(q{SELECT fcid,category FROM forum_categories ORDER BY fcid}); - my $boards = $dbh->prepare(q{SELECT fb.fbid,fb.board, bool_or(fa.post) AS post - FROM forum_boards fb NATURAL JOIN forum_access fa - WHERE fb.fcid = $1 AND - gid IN (SELECT groups($2)) - GROUP BY fb.fbid,fb.board - ORDER BY fb.fbid - }); - $categories->execute; - my @categories; - while (my $category = $categories->fetchrow_hashref){ - $boards->execute($category->{fcid},$c->stash->{UID}); - - my @boards; - while (my $b = $boards->fetchrow_hashref){ - next if (not $b->{post} or $b->{fbid} == $board->{fbid}); - push @boards,$b; - } - $category->{boards} = \@boards; - push @categories,$category if @boards; - } - $c->stash(categories => \@categories); - } + $c->forward('listModeratorBoards', [$board->{fbid}]) if $board->{moderate}; + } - sub thread : Local { my ( $self, $c, $thread ) = @_; my $dbh = $c->model; @@ -222,9 +199,12 @@ sub thread : Local { JOIN forum_priv_access fta USING (uid) WHERE fta.ftid = $1}); $query->execute($thread); $c->stash(access => $query->fetchall_arrayref({}) ); - $c->forward('findUsers') if $c->stash->{thread}->{moderate}; $c->forward('findPosts'); $c->forward('markThreadAsRead') if $c->user_exists; + if ($c->stash->{thread}->{moderate}) { + $c->forward('findUsers'); + $c->forward('listModeratorBoards', [$c->stash->{thread}->{fbid}]); + } } sub findPosts :Private { @@ -277,7 +257,7 @@ sub markBoardAsRead : Local { $c->forward('markThreadAsRead',[$thread->{ftid}]); } $dbh->commit; - $c->res->redirect($c->req->referer); + $c->forward('/redirect'); } sub markThreadAsRead : Private { @@ -425,6 +405,31 @@ sub removeownthreadaccess : Local { $c->res->redirect($c->uri_for('allUnread')); } +sub privmsg : Local { + my ( $self, $c, $uid ) = @_; + + $uid ||= 0; + $c->stash(uid => $uid); + + $c->forward('findUsers'); +} + +sub postprivmsg : Local { + my ( $self, $c ) = @_; + my $dbh = $c->model; + + $dbh->begin_work; + $c->forward('insertThread',[-1999]); + + $c->req->parameters->{uid} = [$c->req->parameters->{uid}] + unless ref $c->req->parameters->{uid} eq 'ARRAY'; + push @{$c->req->parameters->{uid}}, $c->user->id; + $c->forward('addaccess',[$c->stash->{thread}]); + + $c->forward('addPost',[$c->stash->{thread}]); + $dbh->commit; +} + sub addaccess : Private { my ( $self, $c, $thread) = @_; my $dbh = $c->model; @@ -510,6 +515,35 @@ sub insertPost : Private { $insert->execute($thread,html_escape($c->req->param('message')),$c->stash->{UID}); } +sub listModeratorBoards : Private { + my ( $self, $c, $fbid ) = @_; + my $dbh = $c->model; + + my $categories = $dbh->prepare(q{SELECT fcid,category FROM forum_categories ORDER BY fcid}); + my $boards = $dbh->prepare(q{SELECT fb.fbid,fb.board, bool_or(fa.post) AS post + FROM forum_boards fb NATURAL JOIN forum_access fa + WHERE fb.fcid = $1 + AND gid IN (SELECT groups($2)) + AND moderate + GROUP BY fb.fbid,fb.board + ORDER BY fb.fbid + }); + $categories->execute; + my @categories; + while (my $category = $categories->fetchrow_hashref){ + $boards->execute($category->{fcid},$c->stash->{UID}); + + my @boards; + while (my $b = $boards->fetchrow_hashref){ + next if ($b->{fbid} == $fbid); + push @boards,$b; + } + $category->{boards} = \@boards; + push @categories,$category if @boards; + } + $c->stash(categories => \@categories); +} + =head1 AUTHOR Michael Andreen (harv@ruin.nu)