Browse Source

Ability to "move" a thread to another board (2/3 done)

pull/40/head
Savetheinternet 13 years ago
parent
commit
d8fe3ff8d8
  1. 6
      inc/config.php
  2. 3
      inc/display.php
  3. 4
      inc/functions.php
  4. 149
      mod.php

6
inc/config.php

@ -691,6 +691,7 @@
$config['mod']['link_unlock'] = '[-Lock]';
$config['mod']['link_bumplock'] = '[Sage]';
$config['mod']['link_bumpunlock'] = '[-Sage]';
$config['mod']['link_move'] = '[Move]';
// Moderator capcodes
$config['capcode'] = ' <a class="capcode">## %s</a>';
@ -754,6 +755,7 @@
define('JANITOR', 0, true);
define('MOD', 1, true);
define('ADMIN', 2, true);
define('DISABLED', 3, true);
}
/*
@ -762,6 +764,8 @@
* ====================
*/
// Set any of the below to "DISABLED" to make them unavailable for everyone.
// Don't worry about per-board moderators. Let all mods moderate any board.
$config['mod']['skip_per_board'] = true;
@ -790,6 +794,8 @@
$config['mod']['bumplock'] = MOD;
// View whether a thread has been bumplocked ("-1" to allow non-mods to see too)
$config['mod']['view_bumplock'] = MOD;
// "Move" a thread to another board
$config['mod']['move'] = MOD;
// Post bypass unoriginal content check on robot-enabled boards
$config['mod']['postunoriginal'] = ADMIN;
// Bypass flood check

3
inc/display.php

@ -376,6 +376,9 @@
else
$built .= ' <a title="Lock thread" href="?/' . $board['uri'] . '/lock/' . $this->id . '">' . $config['mod']['link_lock'] . '</a>';
if(hasPermission($config['mod']['move'], $board['uri'], $this->mod))
$built .= ' <a title="Move thread to another board" href="?/' . $board['uri'] . '/move/' . $this->id . '">' . $config['mod']['link_move'] . '</a>';
if(!empty($built))
$built = '<span class="controls op">' . $built . '</span>';
}

4
inc/functions.php

@ -614,9 +614,9 @@
$query->bindValue(':name', $post['name']);
$query->bindValue(':trip', $post['trip']);
$query->bindValue(':body', $post['body']);
$query->bindValue(':time', time(), PDO::PARAM_INT);
$query->bindValue(':time', $post['time'] ? $post['time'] : time(), PDO::PARAM_INT);
$query->bindValue(':password', $post['password']);
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
$query->bindValue(':ip', $post['ip'] ? $post['ip'] : $_SERVER['REMOTE_ADDR']);
if($post['mod'] && $post['sticky']) {
$query->bindValue(':sticky', 1, PDO::PARAM_INT);

149
mod.php

@ -2168,6 +2168,155 @@
else
header('Location: ?/', true, $config['redirect_http']);
}
} elseif(preg_match('/^\/' . $regex['board'] . 'move\/(\d+)$/', $query, $matches)) {
$boardName = &$matches[1];
$postID = $matches[2];
// Open board
if(!openBoard($boardName))
error($config['error']['noboard']);
if(!hasPermission($config['mod']['move'], $boardName)) error($config['error']['noaccess']);
if(isset($_POST['board'])) {
$targetBoard = $_POST['board'];
$shadow = isset($_POST['shadow']);
// copy() if leaving a shadow thread behind. otherwise, rename().
$clone = $shadow ? 'copy' : 'rename';
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE `thread` IS NULL AND `id` = :id", $board['uri']));
$query->bindValue(':id', $postID, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
if(!$post = $query->fetch()) {
error($config['error']['nonexistant']);
}
if($post['file']) {
$post['has_file'] = true;
$post['width'] = &$post['filewidth'];
$post['height'] = &$post['fileheight'];
$file_src = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file'];
$file_thumb = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb'];
} else $post['has_file'] = false;
// allow thread to keep its same traits (stickied, locked, etc.)
$post['mod'] = true;
if(!openBoard($targetBoard))
error($config['error']['noboard']);
$newID = post($post, true);
if($post['has_file']) {
$clone($file_src, sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file']);
$clone($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']);
}
// move replies too...
openBoard($boardName);
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE `thread` = :id ORDER BY `id`", $board['uri']));
$query->bindValue(':id', $postID, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$replies = Array();
while($post = $query->fetch()) {
$post['mod'] = true;
$post['thread'] = $newID;
if($post['file']) {
$post['has_file'] = true;
$post['width'] = &$post['filewidth'];
$post['height'] = &$post['fileheight'];
$post['file_src'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file'];
$post['file_thumb'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb'];
} else $post['has_file'] = false;
$replies[] = $post;
}
openBoard($targetBoard);
foreach($replies as &$post) {
var_dump(post($post, false));
if($post['has_file']) {
$clone($post['file_src'], sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file']);
$clone($post['file_thumb'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']);
}
}
// build thread
buildThread($newID);
buildIndex();
// trigger themes
rebuildThemes('post');
if($shadow) {
// do something
} else {
openBoard($boardName);
deletePost($postID);
buildIndex();
}
header('Location: ?/' . sprintf($config['board_path'], $boardName) . $config['file_index'], true, $config['redirect_http']);
} else {
$body = '<fieldset><legend>Move thread</legend>' .
'<form action="?/' . $boardName . '/move/' . $postID . '" method="post">' .
'<table>'
;
$boards = listBoards();
$__boards = '';
foreach($boards as &$_board) {
$__boards .= '<li>' .
'<input type="radio" name="board" id="board_' . $_board['uri'] . '" value="' . $_board['uri'] . '">' .
'<label style="display:inline" for="board_' . $_board['uri'] . '"> ' .
sprintf($config['board_abbreviation'], $_board['uri']) .
' - ' . $_board['title'] .
'</label>' .
'</li>';
}
$body .= '<tr>' .
'<th>Thread ID</th>' .
'<td><input type="text" size="7" value="' . $postID . '" disabled /></td>' .
'</tr>' .
'<tr>' .
'<th><label for="message">Leave shadow thread</label></th>' .
'<td>' .
'<input type="checkbox" id="shadow" name="shadow"/>' .
' <span class="unimportant">(locks thread; replies to it with a link.)</span>' .
'</td>' .
'</tr>' .
'<tr>' .
'<th>Target board</th>' .
'<td><ul style="list-style:none;padding:2px 5px">' . $__boards . '</tl></td>' .
'</tr>' .
'<tr>' .
'<td></td>' .
'<td><input type="submit" value="Move thread" /></td>' .
'</tr>' .
'</table>' .
'</form></fieldset>';
echo Element('page.html', Array(
'config'=>$config,
'title'=>'Move #' . $postID,
'body'=>$body,
'mod'=>true
)
);
}
} elseif(preg_match('/^\/' . $regex['board'] . 'ban(&delete)?\/(\d+)$/', $query, $matches)) {
// Ban by post

Loading…
Cancel
Save