mirror of
https://github.com/Quit/mwForum.git
synced 2026-04-05 01:50:19 +09:00
61 lines
2.0 KiB
Perl
Executable File
61 lines
2.0 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
#------------------------------------------------------------------------------
|
|
# mwForum - Web-based discussion forum
|
|
# Copyright (c) 1999-2015 Markus Wichitill
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#------------------------------------------------------------------------------
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings qw(uninitialized redefine);
|
|
|
|
# Imports
|
|
use MwfMain;
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Init
|
|
my ($m, $cfg, $lng, $user, $userId) = MwfMain->new($_[0]);
|
|
|
|
# Get CGI parameters
|
|
my $topicId = $m->paramInt('tid');
|
|
my $action = $m->paramStrId('act');
|
|
$topicId or $m->error('errParamMiss');
|
|
|
|
# Check request source authentication
|
|
$m->checkSourceAuth() or $m->error('errSrcAuth');
|
|
|
|
# Get board id
|
|
my $boardId = $m->fetchArray("
|
|
SELECT boardId FROM topics WHERE id = ?", $topicId);
|
|
$boardId or $m->error('errTpcNotFnd');
|
|
|
|
# Get board
|
|
my $board = $m->fetchHash("
|
|
SELECT topicAdmins FROM boards WHERE id = ?", $boardId);
|
|
|
|
# Check if user is admin or moderator
|
|
$user->{admin} || $m->boardAdmin($userId, $boardId)
|
|
|| $board->{topicAdmins} && $m->topicAdmin($userId, $topicId)
|
|
or $m->error('errNoAccess');
|
|
|
|
# Lock or unlock
|
|
my $locked = $action eq "lock" ? 1 : 0;
|
|
|
|
# Update
|
|
$m->dbDo("
|
|
UPDATE topics SET locked = ? WHERE id = ?", $locked, $topicId);
|
|
|
|
# Log action and finish
|
|
$m->logAction(1, 'topic', $locked ? 'lock' : 'unlock', $userId, $boardId, $topicId);
|
|
$m->redirect('topic_show', tid => $topicId, msg => $locked ? "TpcLock" : "TpcUnlock");
|