|
|
d6e8d8 |
|
|
|
d6e8d8 |
/**
|
|
|
d6e8d8 |
*
|
|
|
d6e8d8 |
* @package phpBB3
|
|
|
d6e8d8 |
* @version $Id: posting.php 9048 2008-11-04 15:54:43Z toonarmy $
|
|
|
d6e8d8 |
* @copyright (c) 2005 phpBB Group
|
|
|
d6e8d8 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
d6e8d8 |
*
|
|
|
d6e8d8 |
*/
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
/**
|
|
|
d6e8d8 |
* @ignore
|
|
|
d6e8d8 |
*/
|
|
|
d6e8d8 |
define('IN_PHPBB', true);
|
|
|
d6e8d8 |
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
|
|
|
d6e8d8 |
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|
|
d6e8d8 |
include($phpbb_root_path . 'common.' . $phpEx);
|
|
|
d6e8d8 |
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
|
|
|
d6e8d8 |
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
|
|
|
d6e8d8 |
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Start session management
|
|
|
d6e8d8 |
$user->session_begin();
|
|
|
d6e8d8 |
$auth->acl($user->data);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Grab only parameters needed here
|
|
|
d6e8d8 |
$post_id = request_var('p', 0);
|
|
|
d6e8d8 |
$topic_id = request_var('t', 0);
|
|
|
d6e8d8 |
$forum_id = request_var('f', 0);
|
|
|
d6e8d8 |
$draft_id = request_var('d', 0);
|
|
|
d6e8d8 |
$lastclick = request_var('lastclick', 0);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$submit = (isset($_POST['post'])) ? true : false;
|
|
|
d6e8d8 |
$preview = (isset($_POST['preview'])) ? true : false;
|
|
|
d6e8d8 |
$save = (isset($_POST['save'])) ? true : false;
|
|
|
d6e8d8 |
$load = (isset($_POST['load'])) ? true : false;
|
|
|
d6e8d8 |
$delete = (isset($_POST['delete'])) ? true : false;
|
|
|
d6e8d8 |
$cancel = (isset($_POST['cancel']) && !isset($_POST['save'])) ? true : false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$refresh = (isset($_POST['add_file']) || isset($_POST['delete_file']) || isset($_POST['cancel_unglobalise']) || $save || $load) ? true : false;
|
|
|
d6e8d8 |
$mode = ($delete && !$preview && !$refresh && $submit) ? 'delete' : request_var('mode', '');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$error = $post_data = array();
|
|
|
d6e8d8 |
$current_time = time();
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Was cancel pressed? If so then redirect to the appropriate page
|
|
|
d6e8d8 |
if ($cancel || ($current_time - $lastclick < 2 && $submit))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$redirect = ($post_id) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'p=' . $post_id) . '#p' . $post_id : (($topic_id) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 't=' . $topic_id) : (($forum_id) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id) : append_sid("{$phpbb_root_path}index.$phpEx")));
|
|
|
d6e8d8 |
redirect($redirect);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (in_array($mode, array('post', 'reply', 'quote', 'edit', 'delete')) && !$forum_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('NO_FORUM');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// We need to know some basic information in all cases before we do anything.
|
|
|
d6e8d8 |
switch ($mode)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
case 'post':
|
|
|
d6e8d8 |
$sql = 'SELECT *
|
|
|
d6e8d8 |
FROM ' . FORUMS_TABLE . "
|
|
|
d6e8d8 |
WHERE forum_id = $forum_id";
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'bump':
|
|
|
d6e8d8 |
case 'reply':
|
|
|
d6e8d8 |
if (!$topic_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('NO_TOPIC');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'SELECT f.*, t.*
|
|
|
d6e8d8 |
FROM ' . TOPICS_TABLE . ' t, ' . FORUMS_TABLE . " f
|
|
|
d6e8d8 |
WHERE t.topic_id = $topic_id
|
|
|
d6e8d8 |
AND (f.forum_id = t.forum_id
|
|
|
d6e8d8 |
OR f.forum_id = $forum_id)";
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'quote':
|
|
|
d6e8d8 |
case 'edit':
|
|
|
d6e8d8 |
case 'delete':
|
|
|
d6e8d8 |
if (!$post_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$user->setup('posting');
|
|
|
d6e8d8 |
trigger_error('NO_POST');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'SELECT f.*, t.*, p.*, u.username, u.username_clean, u.user_sig, u.user_sig_bbcode_uid, u.user_sig_bbcode_bitfield
|
|
|
d6e8d8 |
FROM ' . POSTS_TABLE . ' p, ' . TOPICS_TABLE . ' t, ' . FORUMS_TABLE . ' f, ' . USERS_TABLE . " u
|
|
|
d6e8d8 |
WHERE p.post_id = $post_id
|
|
|
d6e8d8 |
AND t.topic_id = p.topic_id
|
|
|
d6e8d8 |
AND u.user_id = p.poster_id
|
|
|
d6e8d8 |
AND (f.forum_id = t.forum_id
|
|
|
d6e8d8 |
OR f.forum_id = $forum_id)";
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'smilies':
|
|
|
d6e8d8 |
$sql = '';
|
|
|
d6e8d8 |
generate_smilies('window', $forum_id);
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'popup':
|
|
|
d6e8d8 |
if ($forum_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT forum_style
|
|
|
d6e8d8 |
FROM ' . FORUMS_TABLE . '
|
|
|
d6e8d8 |
WHERE forum_id = ' . $forum_id;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
upload_popup();
|
|
|
d6e8d8 |
return;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
default:
|
|
|
d6e8d8 |
$sql = '';
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!$sql)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$user->setup('posting');
|
|
|
d6e8d8 |
trigger_error('NO_POST_MODE');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$post_data = $db->sql_fetchrow($result);
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!$post_data)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (!($mode == 'post' || $mode == 'bump' || $mode == 'reply'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$user->setup('posting');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
trigger_error(($mode == 'post' || $mode == 'bump' || $mode == 'reply') ? 'NO_TOPIC' : 'NO_POST');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode == 'popup')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
upload_popup($post_data['forum_style']);
|
|
|
d6e8d8 |
return;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$user->setup(array('posting', 'mcp', 'viewtopic'), $post_data['forum_style']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Use post_row values in favor of submitted ones...
|
|
|
d6e8d8 |
$forum_id = (!empty($post_data['forum_id'])) ? (int) $post_data['forum_id'] : (int) $forum_id;
|
|
|
d6e8d8 |
$topic_id = (!empty($post_data['topic_id'])) ? (int) $post_data['topic_id'] : (int) $topic_id;
|
|
|
d6e8d8 |
$post_id = (!empty($post_data['post_id'])) ? (int) $post_data['post_id'] : (int) $post_id;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Need to login to passworded forum first?
|
|
|
d6e8d8 |
if ($post_data['forum_password'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
login_forum_box(array(
|
|
|
d6e8d8 |
'forum_id' => $forum_id,
|
|
|
d6e8d8 |
'forum_password' => $post_data['forum_password'])
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Check permissions
|
|
|
d6e8d8 |
if ($user->data['is_bot'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Is the user able to read within this forum?
|
|
|
d6e8d8 |
if (!$auth->acl_get('f_read', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if ($user->data['user_id'] != ANONYMOUS)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('USER_CANNOT_READ');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
login_box('', $user->lang['LOGIN_EXPLAIN_POST']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Permission to do the action asked?
|
|
|
d6e8d8 |
$is_authed = false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
switch ($mode)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
case 'post':
|
|
|
d6e8d8 |
if ($auth->acl_get('f_post', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$is_authed = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'bump':
|
|
|
d6e8d8 |
if ($auth->acl_get('f_bump', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$is_authed = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'quote':
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['post_edit_locked'] = 0;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// no break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'reply':
|
|
|
d6e8d8 |
if ($auth->acl_get('f_reply', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$is_authed = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'edit':
|
|
|
d6e8d8 |
if ($user->data['is_registered'] && $auth->acl_gets('f_edit', 'm_edit', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$is_authed = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'delete':
|
|
|
d6e8d8 |
if ($user->data['is_registered'] && $auth->acl_gets('f_delete', 'm_delete', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$is_authed = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!$is_authed)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$check_auth = ($mode == 'quote') ? 'reply' : $mode;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($user->data['is_registered'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('USER_CANNOT_' . strtoupper($check_auth));
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
login_box('', $user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)]);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Is the user able to post within this forum?
|
|
|
d6e8d8 |
if ($post_data['forum_type'] != FORUM_POST && in_array($mode, array('post', 'bump', 'quote', 'reply')))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('USER_CANNOT_FORUM_POST');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Forum/Topic locked?
|
|
|
d6e8d8 |
if (($post_data['forum_status'] == ITEM_LOCKED || (isset($post_data['topic_status']) && $post_data['topic_status'] == ITEM_LOCKED)) && !$auth->acl_get('m_edit', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error(($post_data['forum_status'] == ITEM_LOCKED) ? 'FORUM_LOCKED' : 'TOPIC_LOCKED');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Can we edit this post ... if we're a moderator with rights then always yes
|
|
|
d6e8d8 |
// else it depends on editing times, lock status and if we're the correct user
|
|
|
d6e8d8 |
if ($mode == 'edit' && !$auth->acl_get('m_edit', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if ($user->data['user_id'] != $post_data['poster_id'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('USER_CANNOT_EDIT');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!($post_data['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('CANNOT_EDIT_TIME');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['post_edit_locked'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('CANNOT_EDIT_POST_LOCKED');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Handle delete mode...
|
|
|
d6e8d8 |
if ($mode == 'delete')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
handle_post_delete($forum_id, $topic_id, $post_id, $post_data);
|
|
|
d6e8d8 |
return;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Handle bump mode...
|
|
|
d6e8d8 |
if ($mode == 'bump')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if ($bump_time = bump_topic_allowed($forum_id, $post_data['topic_bumped'], $post_data['topic_last_post_time'], $post_data['topic_poster'], $post_data['topic_last_poster_id'])
|
|
|
d6e8d8 |
&& check_link_hash(request_var('hash', ''), "topic_{$post_data['topic_id']}"))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$db->sql_transaction('begin');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'UPDATE ' . POSTS_TABLE . "
|
|
|
d6e8d8 |
SET post_time = $current_time
|
|
|
d6e8d8 |
WHERE post_id = {$post_data['topic_last_post_id']}
|
|
|
d6e8d8 |
AND topic_id = $topic_id";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'UPDATE ' . TOPICS_TABLE . "
|
|
|
d6e8d8 |
SET topic_last_post_time = $current_time,
|
|
|
d6e8d8 |
topic_bumped = 1,
|
|
|
d6e8d8 |
topic_bumper = " . $user->data['user_id'] . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
update_post_information('forum', $forum_id);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'UPDATE ' . USERS_TABLE . "
|
|
|
d6e8d8 |
SET user_lastpost_time = $current_time
|
|
|
d6e8d8 |
WHERE user_id = " . $user->data['user_id'];
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$db->sql_transaction('commit');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
markread('post', $forum_id, $topic_id, $current_time);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
add_log('mod', $forum_id, $topic_id, 'LOG_BUMP_TOPIC', $post_data['topic_title']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$meta_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&p={$post_data['topic_last_post_id']}") . "#p{$post_data['topic_last_post_id']}";
|
|
|
d6e8d8 |
meta_refresh(3, $meta_url);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message = $user->lang['TOPIC_BUMPED'] . '
' . sprintf($user->lang['VIEW_MESSAGE'], '', '');
|
|
|
d6e8d8 |
$message .= '
' . sprintf($user->lang['RETURN_FORUM'], '', '');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
trigger_error($message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
trigger_error('BUMP_ERROR');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Subject length limiting to 60 characters if first post...
|
|
|
d6e8d8 |
if ($mode == 'post' || ($mode == 'edit' && $post_data['topic_first_post_id'] == $post_data['post_id']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_var('S_NEW_MESSAGE', true);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Determine some vars
|
|
|
d6e8d8 |
if (isset($post_data['poster_id']) && $post_data['poster_id'] == ANONYMOUS)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['quote_username'] = (!empty($post_data['post_username'])) ? $post_data['post_username'] : $user->lang['GUEST'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['quote_username'] = isset($post_data['username']) ? $post_data['username'] : '';
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['post_edit_locked'] = (isset($post_data['post_edit_locked'])) ? (int) $post_data['post_edit_locked'] : 0;
|
|
|
d6e8d8 |
$post_data['post_subject'] = (in_array($mode, array('quote', 'edit'))) ? $post_data['post_subject'] : ((isset($post_data['topic_title'])) ? $post_data['topic_title'] : '');
|
|
|
d6e8d8 |
$post_data['topic_time_limit'] = (isset($post_data['topic_time_limit'])) ? (($post_data['topic_time_limit']) ? (int) $post_data['topic_time_limit'] / 86400 : (int) $post_data['topic_time_limit']) : 0;
|
|
|
d6e8d8 |
$post_data['poll_length'] = (!empty($post_data['poll_length'])) ? (int) $post_data['poll_length'] / 86400 : 0;
|
|
|
d6e8d8 |
$post_data['poll_start'] = (!empty($post_data['poll_start'])) ? (int) $post_data['poll_start'] : 0;
|
|
|
d6e8d8 |
$post_data['icon_id'] = (!isset($post_data['icon_id']) || in_array($mode, array('quote', 'reply'))) ? 0 : (int) $post_data['icon_id'];
|
|
|
d6e8d8 |
$post_data['poll_options'] = array();
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Get Poll Data
|
|
|
d6e8d8 |
if ($post_data['poll_start'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT poll_option_text
|
|
|
d6e8d8 |
FROM ' . POLL_OPTIONS_TABLE . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id
|
|
|
d6e8d8 |
ORDER BY poll_option_id";
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
while ($row = $db->sql_fetchrow($result))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['poll_options'][] = trim($row['poll_option_text']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$orig_poll_options_size = sizeof($post_data['poll_options']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message_parser = new parse_message();
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (isset($post_data['post_text']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->message = &$post_data['post_text'];
|
|
|
d6e8d8 |
unset($post_data['post_text']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Set some default variables
|
|
|
d6e8d8 |
$uninit = array('post_attachment' => 0, 'poster_id' => $user->data['user_id'], 'enable_magic_url' => 0, 'topic_status' => 0, 'topic_type' => POST_NORMAL, 'post_subject' => '', 'topic_title' => '', 'post_time' => 0, 'post_edit_reason' => '', 'notify_set' => 0);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
foreach ($uninit as $var_name => $default_value)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (!isset($post_data[$var_name]))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data[$var_name] = $default_value;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
unset($uninit);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Always check if the submitted attachment data is valid and belongs to the user.
|
|
|
d6e8d8 |
// Further down (especially in submit_post()) we do not check this again.
|
|
|
d6e8d8 |
$message_parser->get_submitted_attachment_data($post_data['poster_id']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['post_attachment'] && !$submit && !$refresh && !$preview && $mode == 'edit')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Do not change to SELECT *
|
|
|
d6e8d8 |
$sql = 'SELECT attach_id, is_orphan, attach_comment, real_filename
|
|
|
d6e8d8 |
FROM ' . ATTACHMENTS_TABLE . "
|
|
|
d6e8d8 |
WHERE post_msg_id = $post_id
|
|
|
d6e8d8 |
AND in_message = 0
|
|
|
d6e8d8 |
AND is_orphan = 0
|
|
|
d6e8d8 |
ORDER BY filetime DESC";
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$message_parser->attachment_data = array_merge($message_parser->attachment_data, $db->sql_fetchrowset($result));
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['poster_id'] == ANONYMOUS)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['username'] = ($mode == 'quote' || $mode == 'edit') ? trim($post_data['post_username']) : '';
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['username'] = ($mode == 'quote' || $mode == 'edit') ? trim($post_data['username']) : '';
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['enable_urls'] = $post_data['enable_magic_url'];
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode != 'edit')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['enable_sig'] = ($config['allow_sig'] && $user->optionget('attachsig')) ? true: false;
|
|
|
d6e8d8 |
$post_data['enable_smilies'] = ($config['allow_smilies'] && $user->optionget('smilies')) ? true : false;
|
|
|
d6e8d8 |
$post_data['enable_bbcode'] = ($config['allow_bbcode'] && $user->optionget('bbcode')) ? true : false;
|
|
|
d6e8d8 |
$post_data['enable_urls'] = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['enable_magic_url'] = $post_data['drafts'] = false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// User own some drafts?
|
|
|
d6e8d8 |
if ($user->data['is_registered'] && $auth->acl_get('u_savedrafts') && ($mode == 'reply' || $mode == 'post' || $mode == 'quote'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT draft_id
|
|
|
d6e8d8 |
FROM ' . DRAFTS_TABLE . '
|
|
|
d6e8d8 |
WHERE user_id = ' . $user->data['user_id'] .
|
|
|
d6e8d8 |
(($forum_id) ? ' AND forum_id = ' . (int) $forum_id : '') .
|
|
|
d6e8d8 |
(($topic_id) ? ' AND topic_id = ' . (int) $topic_id : '') .
|
|
|
d6e8d8 |
(($draft_id) ? " AND draft_id <> $draft_id" : '');
|
|
|
d6e8d8 |
$result = $db->sql_query_limit($sql, 1);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($db->sql_fetchrow($result))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['drafts'] = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$check_value = (($post_data['enable_bbcode']+1) << 8) + (($post_data['enable_smilies']+1) << 4) + (($post_data['enable_urls']+1) << 2) + (($post_data['enable_sig']+1) << 1);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Check if user is watching this topic
|
|
|
d6e8d8 |
if ($mode != 'post' && $config['allow_topic_notify'] && $user->data['is_registered'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT topic_id
|
|
|
d6e8d8 |
FROM ' . TOPICS_WATCH_TABLE . '
|
|
|
d6e8d8 |
WHERE topic_id = ' . $topic_id . '
|
|
|
d6e8d8 |
AND user_id = ' . $user->data['user_id'];
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$post_data['notify_set'] = (int) $db->sql_fetchfield('topic_id');
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Do we want to edit our post ?
|
|
|
d6e8d8 |
if ($mode == 'edit' && $post_data['bbcode_uid'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->bbcode_uid = $post_data['bbcode_uid'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// HTML, BBCode, Smilies, Images and Flash status
|
|
|
d6e8d8 |
$bbcode_status = ($config['allow_bbcode'] && $auth->acl_get('f_bbcode', $forum_id)) ? true : false;
|
|
|
d6e8d8 |
$smilies_status = ($bbcode_status && $config['allow_smilies'] && $auth->acl_get('f_smilies', $forum_id)) ? true : false;
|
|
|
d6e8d8 |
$img_status = ($bbcode_status && $auth->acl_get('f_img', $forum_id)) ? true : false;
|
|
|
d6e8d8 |
$url_status = ($config['allow_post_links']) ? true : false;
|
|
|
d6e8d8 |
$flash_status = ($bbcode_status && $auth->acl_get('f_flash', $forum_id) && $config['allow_post_flash']) ? true : false;
|
|
|
d6e8d8 |
$quote_status = ($auth->acl_get('f_reply', $forum_id)) ? true : false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Save Draft
|
|
|
d6e8d8 |
if ($save && $user->data['is_registered'] && $auth->acl_get('u_savedrafts') && ($mode == 'reply' || $mode == 'post' || $mode == 'quote'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$subject = utf8_normalize_nfc(request_var('subject', '', true));
|
|
|
d6e8d8 |
$subject = (!$subject && $mode != 'post') ? $post_data['topic_title'] : $subject;
|
|
|
d6e8d8 |
$message = utf8_normalize_nfc(request_var('message', '', true));
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($subject && $message)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (confirm_box(true))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'INSERT INTO ' . DRAFTS_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
d6e8d8 |
'user_id' => (int) $user->data['user_id'],
|
|
|
d6e8d8 |
'topic_id' => (int) $topic_id,
|
|
|
d6e8d8 |
'forum_id' => (int) $forum_id,
|
|
|
d6e8d8 |
'save_time' => (int) $current_time,
|
|
|
d6e8d8 |
'draft_subject' => (string) $subject,
|
|
|
d6e8d8 |
'draft_message' => (string) $message)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$meta_info = ($mode == 'post') ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id) : append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id");
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
meta_refresh(3, $meta_info);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message = $user->lang['DRAFT_SAVED'] . '
';
|
|
|
d6e8d8 |
$message .= ($mode != 'post') ? sprintf($user->lang['RETURN_TOPIC'], '', '') . '
' : '';
|
|
|
d6e8d8 |
$message .= sprintf($user->lang['RETURN_FORUM'], '', '');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
trigger_error($message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$s_hidden_fields = build_hidden_fields(array(
|
|
|
d6e8d8 |
'mode' => $mode,
|
|
|
d6e8d8 |
'save' => true,
|
|
|
d6e8d8 |
'f' => $forum_id,
|
|
|
d6e8d8 |
't' => $topic_id,
|
|
|
d6e8d8 |
'subject' => $subject,
|
|
|
d6e8d8 |
'message' => $message,
|
|
|
d6e8d8 |
'attachment_data' => $message_parser->attachment_data,
|
|
|
d6e8d8 |
)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
confirm_box(false, 'SAVE_DRAFT', $s_hidden_fields);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (utf8_clean_string($subject) === '')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['EMPTY_SUBJECT'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (utf8_clean_string($message) === '')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['TOO_FEW_CHARS'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
unset($subject, $message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Load requested Draft
|
|
|
d6e8d8 |
if ($draft_id && ($mode == 'reply' || $mode == 'quote' || $mode == 'post') && $user->data['is_registered'] && $auth->acl_get('u_savedrafts'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT draft_subject, draft_message
|
|
|
d6e8d8 |
FROM ' . DRAFTS_TABLE . "
|
|
|
d6e8d8 |
WHERE draft_id = $draft_id
|
|
|
d6e8d8 |
AND user_id = " . $user->data['user_id'];
|
|
|
d6e8d8 |
$result = $db->sql_query_limit($sql, 1);
|
|
|
d6e8d8 |
$row = $db->sql_fetchrow($result);
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($row)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['post_subject'] = $row['draft_subject'];
|
|
|
d6e8d8 |
$message_parser->message = $row['draft_message'];
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->assign_var('S_DRAFT_LOADED', true);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$draft_id = 0;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Load draft overview
|
|
|
d6e8d8 |
if ($load && ($mode == 'reply' || $mode == 'quote' || $mode == 'post') && $post_data['drafts'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
load_drafts($topic_id, $forum_id);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$solved_captcha = false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($submit || $preview || $refresh)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['topic_cur_post_id'] = request_var('topic_cur_post_id', 0);
|
|
|
d6e8d8 |
$post_data['post_subject'] = utf8_normalize_nfc(request_var('subject', '', true));
|
|
|
d6e8d8 |
$message_parser->message = utf8_normalize_nfc(request_var('message', '', true));
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['username'] = utf8_normalize_nfc(request_var('username', $post_data['username'], true));
|
|
|
d6e8d8 |
$post_data['post_edit_reason'] = (!empty($_POST['edit_reason']) && $mode == 'edit' && $auth->acl_get('m_edit', $forum_id)) ? utf8_normalize_nfc(request_var('edit_reason', '', true)) : '';
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['orig_topic_type'] = $post_data['topic_type'];
|
|
|
d6e8d8 |
$post_data['topic_type'] = request_var('topic_type', (($mode != 'post') ? (int) $post_data['topic_type'] : POST_NORMAL));
|
|
|
d6e8d8 |
$post_data['topic_time_limit'] = request_var('topic_time_limit', (($mode != 'post') ? (int) $post_data['topic_time_limit'] : 0));
|
|
|
d6e8d8 |
$post_data['icon_id'] = request_var('icon', 0);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['enable_bbcode'] = (!$bbcode_status || isset($_POST['disable_bbcode'])) ? false : true;
|
|
|
d6e8d8 |
$post_data['enable_smilies'] = (!$smilies_status || isset($_POST['disable_smilies'])) ? false : true;
|
|
|
d6e8d8 |
$post_data['enable_urls'] = (isset($_POST['disable_magic_url'])) ? 0 : 1;
|
|
|
d6e8d8 |
$post_data['enable_sig'] = (!$config['allow_sig'] || !$auth->acl_get('f_sigs', $forum_id) || !$auth->acl_get('u_sig')) ? false : ((isset($_POST['attach_sig']) && $user->data['is_registered']) ? true : false);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($config['allow_topic_notify'] && $user->data['is_registered'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$notify = (isset($_POST['notify'])) ? true : false;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$notify = false;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$topic_lock = (isset($_POST['lock_topic'])) ? true : false;
|
|
|
d6e8d8 |
$post_lock = (isset($_POST['lock_post'])) ? true : false;
|
|
|
d6e8d8 |
$poll_delete = (isset($_POST['poll_delete'])) ? true : false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($submit)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$status_switch = (($post_data['enable_bbcode']+1) << 8) + (($post_data['enable_smilies']+1) << 4) + (($post_data['enable_urls']+1) << 2) + (($post_data['enable_sig']+1) << 1);
|
|
|
d6e8d8 |
$status_switch = ($status_switch != $check_value);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$status_switch = 1;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Delete Poll
|
|
|
d6e8d8 |
if ($poll_delete && $mode == 'edit' && sizeof($post_data['poll_options']) &&
|
|
|
d6e8d8 |
((!$post_data['poll_last_vote'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id)) || $auth->acl_get('m_delete', $forum_id)))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if ($submit && check_form_key('posting'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'DELETE FROM ' . POLL_OPTIONS_TABLE . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'DELETE FROM ' . POLL_VOTES_TABLE . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$topic_sql = array(
|
|
|
d6e8d8 |
'poll_title' => '',
|
|
|
d6e8d8 |
'poll_start' => 0,
|
|
|
d6e8d8 |
'poll_length' => 0,
|
|
|
d6e8d8 |
'poll_last_vote' => 0,
|
|
|
d6e8d8 |
'poll_max_options' => 0,
|
|
|
d6e8d8 |
'poll_vote_change' => 0
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'UPDATE ' . TOPICS_TABLE . '
|
|
|
d6e8d8 |
SET ' . $db->sql_build_array('UPDATE', $topic_sql) . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['poll_title'] = $post_data['poll_option_text'] = '';
|
|
|
d6e8d8 |
$post_data['poll_vote_change'] = $post_data['poll_max_options'] = $post_data['poll_length'] = 0;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['poll_title'] = utf8_normalize_nfc(request_var('poll_title', '', true));
|
|
|
d6e8d8 |
$post_data['poll_length'] = request_var('poll_length', 0);
|
|
|
d6e8d8 |
$post_data['poll_option_text'] = utf8_normalize_nfc(request_var('poll_option_text', '', true));
|
|
|
d6e8d8 |
$post_data['poll_max_options'] = request_var('poll_max_options', 1);
|
|
|
d6e8d8 |
$post_data['poll_vote_change'] = ($auth->acl_get('f_votechg', $forum_id) && isset($_POST['poll_vote_change'])) ? 1 : 0;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// If replying/quoting and last post id has changed
|
|
|
d6e8d8 |
// give user option to continue submit or return to post
|
|
|
d6e8d8 |
// notify and show user the post made between his request and the final submit
|
|
|
d6e8d8 |
if (($mode == 'reply' || $mode == 'quote') && $post_data['topic_cur_post_id'] && $post_data['topic_cur_post_id'] != $post_data['topic_last_post_id'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Only do so if it is allowed forum-wide
|
|
|
d6e8d8 |
if ($post_data['forum_flags'] & FORUM_FLAG_POST_REVIEW)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (topic_review($topic_id, $forum_id, 'post_review', $post_data['topic_cur_post_id']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_var('S_POST_REVIEW', true);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$submit = false;
|
|
|
d6e8d8 |
$refresh = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Parse Attachments - before checksum is calculated
|
|
|
d6e8d8 |
$message_parser->parse_attachments('fileupload', $mode, $forum_id, $submit, $preview, $refresh);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Grab md5 'checksum' of new message
|
|
|
d6e8d8 |
$message_md5 = md5($message_parser->message);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Check checksum ... don't re-parse message if the same
|
|
|
d6e8d8 |
$update_message = ($mode != 'edit' || $message_md5 != $post_data['post_checksum'] || $status_switch || strlen($post_data['bbcode_uid']) < BBCODE_UID_LEN) ? true : false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Parse message
|
|
|
d6e8d8 |
if ($update_message)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (sizeof($message_parser->warn_msg))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = implode(' ', $message_parser->warn_msg);
|
|
|
d6e8d8 |
$message_parser->warn_msg = array();
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message_parser->parse($post_data['enable_bbcode'], ($config['allow_post_links']) ? $post_data['enable_urls'] : false, $post_data['enable_smilies'], $img_status, $flash_status, $quote_status, $config['allow_post_links']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// On a refresh we do not care about message parsing errors
|
|
|
d6e8d8 |
if (sizeof($message_parser->warn_msg) && $refresh)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->warn_msg = array();
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->bbcode_bitfield = $post_data['bbcode_bitfield'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode != 'edit' && !$preview && !$refresh && $config['flood_interval'] && !$auth->acl_get('f_ignoreflood', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Flood check
|
|
|
d6e8d8 |
$last_post_time = 0;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($user->data['is_registered'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$last_post_time = $user->data['user_lastpost_time'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT post_time AS last_post_time
|
|
|
d6e8d8 |
FROM ' . POSTS_TABLE . "
|
|
|
d6e8d8 |
WHERE poster_ip = '" . $user->ip . "'
|
|
|
d6e8d8 |
AND post_time > " . ($current_time - $config['flood_interval']);
|
|
|
d6e8d8 |
$result = $db->sql_query_limit($sql, 1);
|
|
|
d6e8d8 |
if ($row = $db->sql_fetchrow($result))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$last_post_time = $row['last_post_time'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($last_post_time && ($current_time - $last_post_time) < intval($config['flood_interval']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['FLOOD_ERROR'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Validate username
|
|
|
d6e8d8 |
if (($post_data['username'] && !$user->data['is_registered']) || ($mode == 'edit' && $post_data['poster_id'] == ANONYMOUS && $post_data['username'] && $post_data['post_username'] && $post_data['post_username'] != $post_data['username']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (($result = validate_username($post_data['username'], (!empty($post_data['post_username'])) ? $post_data['post_username'] : '')) !== false)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$user->add_lang('ucp');
|
|
|
d6e8d8 |
$error[] = $user->lang[$result . '_USERNAME'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($config['enable_post_confirm'] && !$user->data['is_registered'] && in_array($mode, array('quote', 'post', 'reply')))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$confirm_id = request_var('confirm_id', '');
|
|
|
d6e8d8 |
$confirm_code = request_var('confirm_code', '');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'SELECT code
|
|
|
d6e8d8 |
FROM ' . CONFIRM_TABLE . "
|
|
|
d6e8d8 |
WHERE confirm_id = '" . $db->sql_escape($confirm_id) . "'
|
|
|
d6e8d8 |
AND session_id = '" . $db->sql_escape($user->session_id) . "'
|
|
|
d6e8d8 |
AND confirm_type = " . CONFIRM_POST;
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$confirm_row = $db->sql_fetchrow($result);
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (empty($confirm_row['code']) || strcasecmp($confirm_row['code'], $confirm_code) !== 0)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['CONFIRM_CODE_WRONG'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$solved_captcha = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// check form
|
|
|
d6e8d8 |
if (($submit || $preview) && !check_form_key('posting'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['FORM_INVALID'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Parse subject
|
|
|
d6e8d8 |
if (!$preview && !$refresh && utf8_clean_string($post_data['post_subject']) === '' && ($mode == 'post' || ($mode == 'edit' && $post_data['topic_first_post_id'] == $post_id)))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['EMPTY_SUBJECT'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['poll_last_vote'] = (isset($post_data['poll_last_vote'])) ? $post_data['poll_last_vote'] : 0;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['poll_option_text'] &&
|
|
|
d6e8d8 |
($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_post_id']/* && (!$post_data['poll_last_vote'] || $auth->acl_get('m_edit', $forum_id))*/))
|
|
|
d6e8d8 |
&& $auth->acl_get('f_poll', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$poll = array(
|
|
|
d6e8d8 |
'poll_title' => $post_data['poll_title'],
|
|
|
d6e8d8 |
'poll_length' => $post_data['poll_length'],
|
|
|
d6e8d8 |
'poll_max_options' => $post_data['poll_max_options'],
|
|
|
d6e8d8 |
'poll_option_text' => $post_data['poll_option_text'],
|
|
|
d6e8d8 |
'poll_start' => $post_data['poll_start'],
|
|
|
d6e8d8 |
'poll_last_vote' => $post_data['poll_last_vote'],
|
|
|
d6e8d8 |
'poll_vote_change' => $post_data['poll_vote_change'],
|
|
|
d6e8d8 |
'enable_bbcode' => $post_data['enable_bbcode'],
|
|
|
d6e8d8 |
'enable_urls' => $post_data['enable_urls'],
|
|
|
d6e8d8 |
'enable_smilies' => $post_data['enable_smilies'],
|
|
|
d6e8d8 |
'img_status' => $img_status
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message_parser->parse_poll($poll);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$post_data['poll_options'] = (isset($poll['poll_options'])) ? $poll['poll_options'] : '';
|
|
|
d6e8d8 |
$post_data['poll_title'] = (isset($poll['poll_title'])) ? $poll['poll_title'] : '';
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
/* We reset votes, therefore also allow removing options
|
|
|
d6e8d8 |
if ($post_data['poll_last_vote'] && ($poll['poll_options_size'] < $orig_poll_options_size))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->warn_msg[] = $user->lang['NO_DELETE_POLL_OPTIONS'];
|
|
|
d6e8d8 |
}*/
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$poll = array();
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Check topic type
|
|
|
d6e8d8 |
if ($post_data['topic_type'] != POST_NORMAL && ($mode == 'post' || ($mode == 'edit' && $post_data['topic_first_post_id'] == $post_id)))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
switch ($post_data['topic_type'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
case POST_GLOBAL:
|
|
|
d6e8d8 |
case POST_ANNOUNCE:
|
|
|
d6e8d8 |
$auth_option = 'f_announce';
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case POST_STICKY:
|
|
|
d6e8d8 |
$auth_option = 'f_sticky';
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
default:
|
|
|
d6e8d8 |
$auth_option = '';
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!$auth->acl_get($auth_option, $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// There is a special case where a user edits his post whereby the topic type got changed by an admin/mod.
|
|
|
d6e8d8 |
// Another case would be a mod not having sticky permissions for example but edit permissions.
|
|
|
d6e8d8 |
if ($mode == 'edit')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// To prevent non-authed users messing around with the topic type we reset it to the original one.
|
|
|
d6e8d8 |
$post_data['topic_type'] = $post_data['orig_topic_type'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = $user->lang['CANNOT_POST_' . str_replace('F_', '', strtoupper($auth_option))];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (sizeof($message_parser->warn_msg))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = implode(' ', $message_parser->warn_msg);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// DNSBL check
|
|
|
d6e8d8 |
if ($config['check_dnsbl'] && !$refresh)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (($dnsbl = $user->check_dnsbl('post')) !== false)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$error[] = sprintf($user->lang['IP_BLACKLISTED'], $user->ip, $dnsbl[1]);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Store message, sync counters
|
|
|
d6e8d8 |
if (!sizeof($error) && $submit)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Check if we want to de-globalize the topic... and ask for new forum
|
|
|
d6e8d8 |
if ($post_data['topic_type'] != POST_GLOBAL)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT topic_type, forum_id
|
|
|
d6e8d8 |
FROM ' . TOPICS_TABLE . "
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id";
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$row = $db->sql_fetchrow($result);
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($row && !$row['forum_id'] && $row['topic_type'] == POST_GLOBAL)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$to_forum_id = request_var('to_forum_id', 0);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($to_forum_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'SELECT forum_type
|
|
|
d6e8d8 |
FROM ' . FORUMS_TABLE . '
|
|
|
d6e8d8 |
WHERE forum_id = ' . $to_forum_id;
|
|
|
d6e8d8 |
$result = $db->sql_query($sql);
|
|
|
d6e8d8 |
$forum_type = (int) $db->sql_fetchfield('forum_type');
|
|
|
d6e8d8 |
$db->sql_freeresult($result);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($forum_type != FORUM_POST || !$auth->acl_get('f_post', $to_forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$to_forum_id = 0;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!$to_forum_id)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
include_once($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'S_FORUM_SELECT' => make_forum_select(false, false, false, true, true, true),
|
|
|
d6e8d8 |
'S_UNGLOBALISE' => true)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$submit = false;
|
|
|
d6e8d8 |
$refresh = true;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (!$auth->acl_get('f_post', $to_forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// This will only be triggered if the user tried to trick the forum.
|
|
|
d6e8d8 |
trigger_error('NOT_AUTHORISED');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$forum_id = $to_forum_id;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($submit)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Lock/Unlock Topic
|
|
|
d6e8d8 |
$change_topic_status = $post_data['topic_status'];
|
|
|
d6e8d8 |
$perm_lock_unlock = ($auth->acl_get('m_lock', $forum_id) || ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && !empty($post_data['topic_poster']) && $user->data['user_id'] == $post_data['topic_poster'] && $post_data['topic_status'] == ITEM_UNLOCKED)) ? true : false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['topic_status'] == ITEM_LOCKED && !$topic_lock && $perm_lock_unlock)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$change_topic_status = ITEM_UNLOCKED;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else if ($post_data['topic_status'] == ITEM_UNLOCKED && $topic_lock && $perm_lock_unlock)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$change_topic_status = ITEM_LOCKED;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($change_topic_status != $post_data['topic_status'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$sql = 'UPDATE ' . TOPICS_TABLE . "
|
|
|
d6e8d8 |
SET topic_status = $change_topic_status
|
|
|
d6e8d8 |
WHERE topic_id = $topic_id
|
|
|
d6e8d8 |
AND topic_moved_id = 0";
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$user_lock = ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && $user->data['user_id'] == $post_data['topic_poster']) ? 'USER_' : '';
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
add_log('mod', $forum_id, $topic_id, 'LOG_' . $user_lock . (($change_topic_status == ITEM_LOCKED) ? 'LOCK' : 'UNLOCK'), $post_data['topic_title']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Lock/Unlock Post Edit
|
|
|
d6e8d8 |
if ($mode == 'edit' && $post_data['post_edit_locked'] == ITEM_LOCKED && !$post_lock && $auth->acl_get('m_edit', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['post_edit_locked'] = ITEM_UNLOCKED;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else if ($mode == 'edit' && $post_data['post_edit_locked'] == ITEM_UNLOCKED && $post_lock && $auth->acl_get('m_edit', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['post_edit_locked'] = ITEM_LOCKED;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$data = array(
|
|
|
d6e8d8 |
'topic_title' => (empty($post_data['topic_title'])) ? $post_data['post_subject'] : $post_data['topic_title'],
|
|
|
d6e8d8 |
'topic_first_post_id' => (isset($post_data['topic_first_post_id'])) ? (int) $post_data['topic_first_post_id'] : 0,
|
|
|
d6e8d8 |
'topic_last_post_id' => (isset($post_data['topic_last_post_id'])) ? (int) $post_data['topic_last_post_id'] : 0,
|
|
|
d6e8d8 |
'topic_time_limit' => (int) $post_data['topic_time_limit'],
|
|
|
d6e8d8 |
'topic_attachment' => (isset($post_data['topic_attachment'])) ? (int) $post_data['topic_attachment'] : 0,
|
|
|
d6e8d8 |
'post_id' => (int) $post_id,
|
|
|
d6e8d8 |
'topic_id' => (int) $topic_id,
|
|
|
d6e8d8 |
'forum_id' => (int) $forum_id,
|
|
|
d6e8d8 |
'icon_id' => (int) $post_data['icon_id'],
|
|
|
d6e8d8 |
'poster_id' => (int) $post_data['poster_id'],
|
|
|
d6e8d8 |
'enable_sig' => (bool) $post_data['enable_sig'],
|
|
|
d6e8d8 |
'enable_bbcode' => (bool) $post_data['enable_bbcode'],
|
|
|
d6e8d8 |
'enable_smilies' => (bool) $post_data['enable_smilies'],
|
|
|
d6e8d8 |
'enable_urls' => (bool) $post_data['enable_urls'],
|
|
|
d6e8d8 |
'enable_indexing' => (bool) $post_data['enable_indexing'],
|
|
|
d6e8d8 |
'message_md5' => (string) $message_md5,
|
|
|
d6e8d8 |
'post_time' => (isset($post_data['post_time'])) ? (int) $post_data['post_time'] : $current_time,
|
|
|
d6e8d8 |
'post_checksum' => (isset($post_data['post_checksum'])) ? (string) $post_data['post_checksum'] : '',
|
|
|
d6e8d8 |
'post_edit_reason' => $post_data['post_edit_reason'],
|
|
|
d6e8d8 |
'post_edit_user' => ($mode == 'edit') ? $user->data['user_id'] : ((isset($post_data['post_edit_user'])) ? (int) $post_data['post_edit_user'] : 0),
|
|
|
d6e8d8 |
'forum_parents' => $post_data['forum_parents'],
|
|
|
d6e8d8 |
'forum_name' => $post_data['forum_name'],
|
|
|
d6e8d8 |
'notify' => $notify,
|
|
|
d6e8d8 |
'notify_set' => $post_data['notify_set'],
|
|
|
d6e8d8 |
'poster_ip' => (isset($post_data['poster_ip'])) ? $post_data['poster_ip'] : $user->ip,
|
|
|
d6e8d8 |
'post_edit_locked' => (int) $post_data['post_edit_locked'],
|
|
|
d6e8d8 |
'bbcode_bitfield' => $message_parser->bbcode_bitfield,
|
|
|
d6e8d8 |
'bbcode_uid' => $message_parser->bbcode_uid,
|
|
|
d6e8d8 |
'message' => $message_parser->message,
|
|
|
d6e8d8 |
'attachment_data' => $message_parser->attachment_data,
|
|
|
d6e8d8 |
'filename_data' => $message_parser->filename_data,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'topic_approved' => (isset($post_data['topic_approved'])) ? $post_data['topic_approved'] : false,
|
|
|
d6e8d8 |
'post_approved' => (isset($post_data['post_approved'])) ? $post_data['post_approved'] : false,
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode == 'edit')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$data['topic_replies_real'] = $post_data['topic_replies_real'];
|
|
|
d6e8d8 |
$data['topic_replies'] = $post_data['topic_replies'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$redirect_url = submit_post($mode, $post_data['post_subject'], $post_data['username'], $post_data['topic_type'], $poll, $data, $update_message);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Check the permissions for post approval, as well as the queue trigger where users are put on approval with a post count lower than specified. Moderators are not affected.
|
|
|
d6e8d8 |
if ((($config['enable_queue_trigger'] && $user->data['user_posts'] < $config['queue_trigger_posts']) || !$auth->acl_get('f_noapprove', $data['forum_id'])) && !$auth->acl_get('m_approve', $data['forum_id']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
meta_refresh(10, $redirect_url);
|
|
|
d6e8d8 |
$message = ($mode == 'edit') ? $user->lang['POST_EDITED_MOD'] : $user->lang['POST_STORED_MOD'];
|
|
|
d6e8d8 |
$message .= (($user->data['user_id'] == ANONYMOUS) ? '' : ' '. $user->lang['POST_APPROVAL_NOTIFY']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
meta_refresh(3, $redirect_url);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message = ($mode == 'edit') ? 'POST_EDITED' : 'POST_STORED';
|
|
|
d6e8d8 |
$message = $user->lang[$message] . '
' . sprintf($user->lang['VIEW_MESSAGE'], '', '');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message .= '
' . sprintf($user->lang['RETURN_FORUM'], '', '');
|
|
|
d6e8d8 |
trigger_error($message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Preview
|
|
|
d6e8d8 |
if (!sizeof($error) && $preview)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['post_time'] = ($mode == 'edit') ? $post_data['post_time'] : $current_time;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$preview_message = $message_parser->format_display($post_data['enable_bbcode'], $post_data['enable_urls'], $post_data['enable_smilies'], false);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$preview_signature = ($mode == 'edit') ? $post_data['user_sig'] : $user->data['user_sig'];
|
|
|
d6e8d8 |
$preview_signature_uid = ($mode == 'edit') ? $post_data['user_sig_bbcode_uid'] : $user->data['user_sig_bbcode_uid'];
|
|
|
d6e8d8 |
$preview_signature_bitfield = ($mode == 'edit') ? $post_data['user_sig_bbcode_bitfield'] : $user->data['user_sig_bbcode_bitfield'];
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Signature
|
|
|
d6e8d8 |
if ($post_data['enable_sig'] && $config['allow_sig'] && $preview_signature && $auth->acl_get('f_sigs', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$parse_sig = new parse_message($preview_signature);
|
|
|
d6e8d8 |
$parse_sig->bbcode_uid = $preview_signature_uid;
|
|
|
d6e8d8 |
$parse_sig->bbcode_bitfield = $preview_signature_bitfield;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Not sure about parameters for bbcode/smilies/urls... in signatures
|
|
|
d6e8d8 |
$parse_sig->format_display($config['allow_sig_bbcode'], true, $config['allow_sig_smilies']);
|
|
|
d6e8d8 |
$preview_signature = $parse_sig->message;
|
|
|
d6e8d8 |
unset($parse_sig);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$preview_signature = '';
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$preview_subject = censor_text($post_data['post_subject']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Poll Preview
|
|
|
d6e8d8 |
if (!$poll_delete && ($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_post_id']/* && (!$post_data['poll_last_vote'] || $auth->acl_get('m_edit', $forum_id))*/))
|
|
|
d6e8d8 |
&& $auth->acl_get('f_poll', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$parse_poll = new parse_message($post_data['poll_title']);
|
|
|
d6e8d8 |
$parse_poll->bbcode_uid = $message_parser->bbcode_uid;
|
|
|
d6e8d8 |
$parse_poll->bbcode_bitfield = $message_parser->bbcode_bitfield;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$parse_poll->format_display($post_data['enable_bbcode'], $post_data['enable_urls'], $post_data['enable_smilies']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['poll_length'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$poll_end = ($post_data['poll_length'] * 86400) + (($post_data['poll_start']) ? $post_data['poll_start'] : time());
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'S_HAS_POLL_OPTIONS' => (sizeof($post_data['poll_options'])),
|
|
|
d6e8d8 |
'S_IS_MULTI_CHOICE' => ($post_data['poll_max_options'] > 1) ? true : false,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'POLL_QUESTION' => $parse_poll->message,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'L_POLL_LENGTH' => ($post_data['poll_length']) ? sprintf($user->lang['POLL_RUN_TILL'], $user->format_date($poll_end)) : '',
|
|
|
d6e8d8 |
'L_MAX_VOTES' => ($post_data['poll_max_options'] == 1) ? $user->lang['MAX_OPTION_SELECT'] : sprintf($user->lang['MAX_OPTIONS_SELECT'], $post_data['poll_max_options']))
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$parse_poll->message = implode("\n", $post_data['poll_options']);
|
|
|
d6e8d8 |
$parse_poll->format_display($post_data['enable_bbcode'], $post_data['enable_urls'], $post_data['enable_smilies']);
|
|
|
d6e8d8 |
$preview_poll_options = explode(' ', $parse_poll->message);
|
|
|
d6e8d8 |
unset($parse_poll);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
foreach ($preview_poll_options as $key => $option)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_block_vars('poll_option', array(
|
|
|
d6e8d8 |
'POLL_OPTION_CAPTION' => $option,
|
|
|
d6e8d8 |
'POLL_OPTION_ID' => $key + 1)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
unset($preview_poll_options);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Attachment Preview
|
|
|
d6e8d8 |
if (sizeof($message_parser->attachment_data))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_var('S_HAS_ATTACHMENTS', true);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$update_count = array();
|
|
|
d6e8d8 |
$attachment_data = $message_parser->attachment_data;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
parse_attachments($forum_id, $preview_message, $attachment_data, $update_count, true);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
foreach ($attachment_data as $i => $attachment)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_block_vars('attachment', array(
|
|
|
d6e8d8 |
'DISPLAY_ATTACHMENT' => $attachment)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
unset($attachment_data);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (!sizeof($error))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'PREVIEW_SUBJECT' => $preview_subject,
|
|
|
d6e8d8 |
'PREVIEW_MESSAGE' => $preview_message,
|
|
|
d6e8d8 |
'PREVIEW_SIGNATURE' => $preview_signature,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'S_DISPLAY_PREVIEW' => true)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Decode text for message display
|
|
|
d6e8d8 |
$post_data['bbcode_uid'] = ($mode == 'quote' && !$preview && !$refresh && !sizeof($error)) ? $post_data['bbcode_uid'] : $message_parser->bbcode_uid;
|
|
|
d6e8d8 |
$message_parser->decode_message($post_data['bbcode_uid']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode == 'quote' && !$submit && !$preview && !$refresh)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->message = '[quote="' . $post_data['quote_username'] . '"]' . censor_text(trim($message_parser->message)) . "[/quote]\n";
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (($mode == 'reply' || $mode == 'quote') && !$submit && !$preview && !$refresh)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? 'Re: ' : '') . censor_text($post_data['post_subject']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$attachment_data = $message_parser->attachment_data;
|
|
|
d6e8d8 |
$filename_data = $message_parser->filename_data;
|
|
|
d6e8d8 |
$post_data['post_text'] = $message_parser->message;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (sizeof($post_data['poll_options']) && $post_data['poll_title'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$message_parser->message = $post_data['poll_title'];
|
|
|
d6e8d8 |
$message_parser->bbcode_uid = $post_data['bbcode_uid'];
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message_parser->decode_message();
|
|
|
d6e8d8 |
$post_data['poll_title'] = $message_parser->message;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$message_parser->message = implode("\n", $post_data['poll_options']);
|
|
|
d6e8d8 |
$message_parser->decode_message();
|
|
|
d6e8d8 |
$post_data['poll_options'] = explode("\n", $message_parser->message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// MAIN POSTING PAGE BEGINS HERE
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Forum moderators?
|
|
|
d6e8d8 |
$moderators = array();
|
|
|
d6e8d8 |
get_moderators($moderators, $forum_id);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Generate smiley listing
|
|
|
d6e8d8 |
generate_smilies('inline', $forum_id);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Generate inline attachment select box
|
|
|
d6e8d8 |
posting_gen_inline_attachments($attachment_data);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Do show topic type selection only in first post.
|
|
|
d6e8d8 |
$topic_type_toggle = false;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_post_id']))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$topic_type_toggle = posting_gen_topic_types($forum_id, $post_data['topic_type']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$s_topic_icons = false;
|
|
|
d6e8d8 |
if ($post_data['enable_icons'] && $auth->acl_get('f_icons', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$s_topic_icons = posting_gen_topic_icons($mode, $post_data['icon_id']);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$bbcode_checked = (isset($post_data['enable_bbcode'])) ? !$post_data['enable_bbcode'] : (($config['allow_bbcode']) ? !$user->optionget('bbcode') : 1);
|
|
|
d6e8d8 |
$smilies_checked = (isset($post_data['enable_smilies'])) ? !$post_data['enable_smilies'] : (($config['allow_smilies']) ? !$user->optionget('smilies') : 1);
|
|
|
d6e8d8 |
$urls_checked = (isset($post_data['enable_urls'])) ? !$post_data['enable_urls'] : 0;
|
|
|
d6e8d8 |
$sig_checked = $post_data['enable_sig'];
|
|
|
d6e8d8 |
$lock_topic_checked = (isset($topic_lock) && $topic_lock) ? $topic_lock : (($post_data['topic_status'] == ITEM_LOCKED) ? 1 : 0);
|
|
|
d6e8d8 |
$lock_post_checked = (isset($post_lock)) ? $post_lock : $post_data['post_edit_locked'];
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// If the user is replying or posting and not already watching this topic but set to always being notified we need to overwrite this setting
|
|
|
d6e8d8 |
$notify_set = ($mode != 'edit' && $config['allow_topic_notify'] && $user->data['is_registered'] && !$post_data['notify_set']) ? $user->data['user_notify'] : $post_data['notify_set'];
|
|
|
d6e8d8 |
$notify_checked = (isset($notify)) ? $notify : (($mode == 'post') ? $user->data['user_notify'] : $notify_set);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Page title & action URL, include session_id for security purpose
|
|
|
d6e8d8 |
$s_action = append_sid("{$phpbb_root_path}posting.$phpEx", "mode=$mode&f=$forum_id", true, $user->session_id);
|
|
|
d6e8d8 |
$s_action .= ($topic_id) ? "&t=$topic_id" : '';
|
|
|
d6e8d8 |
$s_action .= ($post_id) ? "&p=$post_id" : '';
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
switch ($mode)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
case 'post':
|
|
|
d6e8d8 |
$page_title = $user->lang['POST_TOPIC'];
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'quote':
|
|
|
d6e8d8 |
case 'reply':
|
|
|
d6e8d8 |
$page_title = $user->lang['POST_REPLY'];
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
case 'delete':
|
|
|
d6e8d8 |
case 'edit':
|
|
|
d6e8d8 |
$page_title = $user->lang['EDIT_POST'];
|
|
|
d6e8d8 |
break;
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Build Navigation Links
|
|
|
d6e8d8 |
generate_forum_nav($post_data);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Build Forum Rules
|
|
|
d6e8d8 |
generate_forum_rules($post_data);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($config['enable_post_confirm'] && !$user->data['is_registered'] && $solved_captcha === false && ($mode == 'post' || $mode == 'reply' || $mode == 'quote'))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
// Show confirm image
|
|
|
d6e8d8 |
$sql = 'DELETE FROM ' . CONFIRM_TABLE . "
|
|
|
d6e8d8 |
WHERE session_id = '" . $db->sql_escape($user->session_id) . "'
|
|
|
d6e8d8 |
AND confirm_type = " . CONFIRM_POST;
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Generate code
|
|
|
d6e8d8 |
$code = gen_rand_string(mt_rand(5, 8));
|
|
|
d6e8d8 |
$confirm_id = md5(unique_id($user->ip));
|
|
|
d6e8d8 |
$seed = hexdec(substr(unique_id(), 4, 10));
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// compute $seed % 0x7fffffff
|
|
|
d6e8d8 |
$seed -= 0x7fffffff * floor($seed / 0x7fffffff);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$sql = 'INSERT INTO ' . CONFIRM_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
d6e8d8 |
'confirm_id' => (string) $confirm_id,
|
|
|
d6e8d8 |
'session_id' => (string) $user->session_id,
|
|
|
d6e8d8 |
'confirm_type' => (int) CONFIRM_POST,
|
|
|
d6e8d8 |
'code' => (string) $code,
|
|
|
d6e8d8 |
'seed' => (int) $seed)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
$db->sql_query($sql);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'S_CONFIRM_CODE' => true,
|
|
|
d6e8d8 |
'CONFIRM_ID' => $confirm_id,
|
|
|
d6e8d8 |
'CONFIRM_IMAGE' => '',
|
|
|
d6e8d8 |
'L_POST_CONFIRM_EXPLAIN' => sprintf($user->lang['POST_CONFIRM_EXPLAIN'], '', ''),
|
|
|
d6e8d8 |
));
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$s_hidden_fields = ($mode == 'reply' || $mode == 'quote') ? '<input type="hidden" name="topic_cur_post_id" value="' . $post_data['topic_last_post_id'] . '" />' : '';
|
|
|
d6e8d8 |
$s_hidden_fields .= '<input type="hidden" name="lastclick" value="' . $current_time . '" />';
|
|
|
d6e8d8 |
$s_hidden_fields .= ($draft_id || isset($_REQUEST['draft_loaded'])) ? '<input type="hidden" name="draft_loaded" value="' . request_var('draft_loaded', $draft_id) . '" />' : '';
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Add the confirm id/code pair to the hidden fields, else an error is displayed on next submit/preview
|
|
|
d6e8d8 |
if ($solved_captcha !== false)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$s_hidden_fields .= build_hidden_fields(array(
|
|
|
d6e8d8 |
'confirm_id' => request_var('confirm_id', ''),
|
|
|
d6e8d8 |
'confirm_code' => request_var('confirm_code', ''))
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$form_enctype = (@ini_get('file_uploads') == '0' || strtolower(@ini_get('file_uploads')) == 'off' || !$config['allow_attachments'] || !$auth->acl_get('u_attach') || !$auth->acl_get('f_attach', $forum_id)) ? '' : ' enctype="multipart/form-data"';
|
|
|
d6e8d8 |
add_form_key('posting');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Start assigning vars for main posting page ...
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'L_POST_A' => $page_title,
|
|
|
d6e8d8 |
'L_ICON' => ($mode == 'reply' || $mode == 'quote' || ($mode == 'edit' && $post_id != $post_data['topic_first_post_id'])) ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'],
|
|
|
d6e8d8 |
'L_MESSAGE_BODY_EXPLAIN' => (intval($config['max_post_chars'])) ? sprintf($user->lang['MESSAGE_BODY_EXPLAIN'], intval($config['max_post_chars'])) : '',
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'FORUM_NAME' => $post_data['forum_name'],
|
|
|
d6e8d8 |
'FORUM_DESC' => ($post_data['forum_desc']) ? generate_text_for_display($post_data['forum_desc'], $post_data['forum_desc_uid'], $post_data['forum_desc_bitfield'], $post_data['forum_desc_options']) : '',
|
|
|
d6e8d8 |
'TOPIC_TITLE' => censor_text($post_data['topic_title']),
|
|
|
d6e8d8 |
'MODERATORS' => (sizeof($moderators)) ? implode(', ', $moderators[$forum_id]) : '',
|
|
|
d6e8d8 |
'USERNAME' => ((!$preview && $mode != 'quote') || $preview) ? $post_data['username'] : '',
|
|
|
d6e8d8 |
'SUBJECT' => $post_data['post_subject'],
|
|
|
d6e8d8 |
'MESSAGE' => $post_data['post_text'],
|
|
|
d6e8d8 |
'BBCODE_STATUS' => ($bbcode_status) ? sprintf($user->lang['BBCODE_IS_ON'], '', '') : sprintf($user->lang['BBCODE_IS_OFF'], '', ''),
|
|
|
d6e8d8 |
'IMG_STATUS' => ($img_status) ? $user->lang['IMAGES_ARE_ON'] : $user->lang['IMAGES_ARE_OFF'],
|
|
|
d6e8d8 |
'FLASH_STATUS' => ($flash_status) ? $user->lang['FLASH_IS_ON'] : $user->lang['FLASH_IS_OFF'],
|
|
|
d6e8d8 |
'SMILIES_STATUS' => ($smilies_status) ? $user->lang['SMILIES_ARE_ON'] : $user->lang['SMILIES_ARE_OFF'],
|
|
|
d6e8d8 |
'URL_STATUS' => ($bbcode_status && $url_status) ? $user->lang['URL_IS_ON'] : $user->lang['URL_IS_OFF'],
|
|
|
d6e8d8 |
'MINI_POST_IMG' => $user->img('icon_post_target', $user->lang['POST']),
|
|
|
d6e8d8 |
'POST_DATE' => ($post_data['post_time']) ? $user->format_date($post_data['post_time']) : '',
|
|
|
d6e8d8 |
'ERROR' => (sizeof($error)) ? implode(' ', $error) : '',
|
|
|
d6e8d8 |
'TOPIC_TIME_LIMIT' => (int) $post_data['topic_time_limit'],
|
|
|
d6e8d8 |
'EDIT_REASON' => $post_data['post_edit_reason'],
|
|
|
d6e8d8 |
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id"),
|
|
|
d6e8d8 |
'U_VIEW_TOPIC' => ($mode != 'post') ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id") : '',
|
|
|
d6e8d8 |
'U_PROGRESS_BAR' => append_sid("{$phpbb_root_path}posting.$phpEx", "f=$forum_id&mode=popup"),
|
|
|
d6e8d8 |
'UA_PROGRESS_BAR' => addslashes(append_sid("{$phpbb_root_path}posting.$phpEx", "f=$forum_id&mode=popup")),
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'S_PRIVMSGS' => false,
|
|
|
d6e8d8 |
'S_CLOSE_PROGRESS_WINDOW' => (isset($_POST['add_file'])) ? true : false,
|
|
|
d6e8d8 |
'S_EDIT_POST' => ($mode == 'edit') ? true : false,
|
|
|
d6e8d8 |
'S_EDIT_REASON' => ($mode == 'edit' && $auth->acl_get('m_edit', $forum_id)) ? true : false,
|
|
|
d6e8d8 |
'S_DISPLAY_USERNAME' => (!$user->data['is_registered'] || ($mode == 'edit' && $post_data['poster_id'] == ANONYMOUS)) ? true : false,
|
|
|
d6e8d8 |
'S_SHOW_TOPIC_ICONS' => $s_topic_icons,
|
|
|
d6e8d8 |
'S_DELETE_ALLOWED' => ($mode == 'edit' && (($post_id == $post_data['topic_last_post_id'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id) && !$post_data['post_edit_locked'] && ($post_data['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_delete', $forum_id))) ? true : false,
|
|
|
d6e8d8 |
'S_BBCODE_ALLOWED' => $bbcode_status,
|
|
|
d6e8d8 |
'S_BBCODE_CHECKED' => ($bbcode_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_SMILIES_ALLOWED' => $smilies_status,
|
|
|
d6e8d8 |
'S_SMILIES_CHECKED' => ($smilies_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_SIG_ALLOWED' => ($auth->acl_get('f_sigs', $forum_id) && $config['allow_sig'] && $user->data['is_registered']) ? true : false,
|
|
|
d6e8d8 |
'S_SIGNATURE_CHECKED' => ($sig_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_NOTIFY_ALLOWED' => (!$user->data['is_registered'] || ($mode == 'edit' && $user->data['user_id'] != $post_data['poster_id']) || !$config['allow_topic_notify'] || !$config['email_enable']) ? false : true,
|
|
|
d6e8d8 |
'S_NOTIFY_CHECKED' => ($notify_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_LOCK_TOPIC_ALLOWED' => (($mode == 'edit' || $mode == 'reply' || $mode == 'quote') && ($auth->acl_get('m_lock', $forum_id) || ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && !empty($post_data['topic_poster']) && $user->data['user_id'] == $post_data['topic_poster'] && $post_data['topic_status'] == ITEM_UNLOCKED))) ? true : false,
|
|
|
d6e8d8 |
'S_LOCK_TOPIC_CHECKED' => ($lock_topic_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_LOCK_POST_ALLOWED' => ($mode == 'edit' && $auth->acl_get('m_edit', $forum_id)) ? true : false,
|
|
|
d6e8d8 |
'S_LOCK_POST_CHECKED' => ($lock_post_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_LINKS_ALLOWED' => $url_status,
|
|
|
d6e8d8 |
'S_MAGIC_URL_CHECKED' => ($urls_checked) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'S_TYPE_TOGGLE' => $topic_type_toggle,
|
|
|
d6e8d8 |
'S_SAVE_ALLOWED' => ($auth->acl_get('u_savedrafts') && $user->data['is_registered'] && $mode != 'edit') ? true : false,
|
|
|
d6e8d8 |
'S_HAS_DRAFTS' => ($auth->acl_get('u_savedrafts') && $user->data['is_registered'] && $post_data['drafts']) ? true : false,
|
|
|
d6e8d8 |
'S_FORM_ENCTYPE' => $form_enctype,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'S_BBCODE_IMG' => $img_status,
|
|
|
d6e8d8 |
'S_BBCODE_URL' => $url_status,
|
|
|
d6e8d8 |
'S_BBCODE_FLASH' => $flash_status,
|
|
|
d6e8d8 |
'S_BBCODE_QUOTE' => $quote_status,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'S_POST_ACTION' => $s_action,
|
|
|
d6e8d8 |
'S_HIDDEN_FIELDS' => $s_hidden_fields)
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Build custom bbcodes array
|
|
|
d6e8d8 |
display_custom_bbcodes();
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Poll entry
|
|
|
d6e8d8 |
if (($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_post_id']/* && (!$post_data['poll_last_vote'] || $auth->acl_get('m_edit', $forum_id))*/))
|
|
|
d6e8d8 |
&& $auth->acl_get('f_poll', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'S_SHOW_POLL_BOX' => true,
|
|
|
d6e8d8 |
'S_POLL_VOTE_CHANGE' => ($auth->acl_get('f_votechg', $forum_id)),
|
|
|
d6e8d8 |
'S_POLL_DELETE' => ($mode == 'edit' && sizeof($post_data['poll_options']) && ((!$post_data['poll_last_vote'] && $post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id)) || $auth->acl_get('m_delete', $forum_id))),
|
|
|
d6e8d8 |
'S_POLL_DELETE_CHECKED' => (!empty($poll_delete)) ? true : false,
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'L_POLL_OPTIONS_EXPLAIN' => sprintf($user->lang['POLL_OPTIONS_' . (($mode == 'edit') ? 'EDIT_' : '') . 'EXPLAIN'], $config['max_poll_options']),
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
'VOTE_CHANGE_CHECKED' => (!empty($post_data['poll_vote_change'])) ? ' checked="checked"' : '',
|
|
|
d6e8d8 |
'POLL_TITLE' => (isset($post_data['poll_title'])) ? $post_data['poll_title'] : '',
|
|
|
d6e8d8 |
'POLL_OPTIONS' => (!empty($post_data['poll_options'])) ? implode("\n", $post_data['poll_options']) : '',
|
|
|
d6e8d8 |
'POLL_MAX_OPTIONS' => (isset($post_data['poll_max_options'])) ? (int) $post_data['poll_max_options'] : 1,
|
|
|
d6e8d8 |
'POLL_LENGTH' => $post_data['poll_length'])
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Show attachment box for adding attachments if true
|
|
|
d6e8d8 |
$allowed = ($auth->acl_get('f_attach', $forum_id) && $auth->acl_get('u_attach') && $config['allow_attachments'] && $form_enctype);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Attachment entry
|
|
|
d6e8d8 |
posting_gen_attachment_entry($attachment_data, $filename_data, $allowed);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Output page ...
|
|
|
d6e8d8 |
page_header($page_title);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->set_filenames(array(
|
|
|
d6e8d8 |
'body' => 'posting_body.html')
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// Topic review
|
|
|
d6e8d8 |
if ($mode == 'reply' || $mode == 'quote')
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
if (topic_review($topic_id, $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$template->assign_var('S_DISPLAY_REVIEW', true);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
page_footer();
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
/**
|
|
|
d6e8d8 |
* Show upload popup (progress bar)
|
|
|
d6e8d8 |
*/
|
|
|
d6e8d8 |
function upload_popup($forum_style = 0)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
global $template, $user;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
($forum_style) ? $user->setup('posting', $forum_style) : $user->setup('posting');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
page_header($user->lang['PROGRESS_BAR']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->set_filenames(array(
|
|
|
d6e8d8 |
'popup' => 'posting_progress_bar.html')
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->assign_vars(array(
|
|
|
d6e8d8 |
'PROGRESS_BAR' => $user->img('upload_bar', $user->lang['UPLOAD_IN_PROGRESS']))
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$template->display('popup');
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
garbage_collection();
|
|
|
d6e8d8 |
exit_handler();
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
/**
|
|
|
d6e8d8 |
* Do the various checks required for removing posts as well as removing it
|
|
|
d6e8d8 |
*/
|
|
|
d6e8d8 |
function handle_post_delete($forum_id, $topic_id, $post_id, &$post_data)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
global $user, $db, $auth, $config;
|
|
|
d6e8d8 |
global $phpbb_root_path, $phpEx;
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// If moderator removing post or user itself removing post, present a confirmation screen
|
|
|
d6e8d8 |
if ($auth->acl_get('m_delete', $forum_id) || ($post_data['poster_id'] == $user->data['user_id'] && $user->data['is_registered'] && $auth->acl_get('f_delete', $forum_id) && $post_id == $post_data['topic_last_post_id'] && !$post_data['post_edit_locked'] && ($post_data['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$s_hidden_fields = build_hidden_fields(array(
|
|
|
d6e8d8 |
'p' => $post_id,
|
|
|
d6e8d8 |
'f' => $forum_id,
|
|
|
d6e8d8 |
'mode' => 'delete')
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if (confirm_box(true))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
$data = array(
|
|
|
d6e8d8 |
'topic_first_post_id' => $post_data['topic_first_post_id'],
|
|
|
d6e8d8 |
'topic_last_post_id' => $post_data['topic_last_post_id'],
|
|
|
d6e8d8 |
'topic_replies_real' => $post_data['topic_replies_real'],
|
|
|
d6e8d8 |
'topic_approved' => $post_data['topic_approved'],
|
|
|
d6e8d8 |
'topic_type' => $post_data['topic_type'],
|
|
|
d6e8d8 |
'post_approved' => $post_data['post_approved'],
|
|
|
d6e8d8 |
'post_reported' => $post_data['post_reported'],
|
|
|
d6e8d8 |
'post_time' => $post_data['post_time'],
|
|
|
d6e8d8 |
'poster_id' => $post_data['poster_id'],
|
|
|
d6e8d8 |
'post_postcount' => $post_data['post_postcount']
|
|
|
d6e8d8 |
);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$next_post_id = delete_post($forum_id, $topic_id, $post_id, $data);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($next_post_id === false)
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
add_log('mod', $forum_id, $topic_id, 'LOG_DELETE_TOPIC', $post_data['topic_title']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$meta_info = append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id");
|
|
|
d6e8d8 |
$message = $user->lang['POST_DELETED'];
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
add_log('mod', $forum_id, $topic_id, 'LOG_DELETE_POST', $post_data['post_subject']);
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
$meta_info = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&p=$next_post_id") . "#p$next_post_id";
|
|
|
d6e8d8 |
$message = $user->lang['POST_DELETED'] . '
' . sprintf($user->lang['RETURN_TOPIC'], '', '');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
meta_refresh(3, $meta_info);
|
|
|
d6e8d8 |
$message .= '
' . sprintf($user->lang['RETURN_FORUM'], '', '');
|
|
|
d6e8d8 |
trigger_error($message);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
else
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
confirm_box(false, 'DELETE_POST', $s_hidden_fields);
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
// If we are here the user is not able to delete - present the correct error message
|
|
|
d6e8d8 |
if ($post_data['poster_id'] != $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id))
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('DELETE_OWN_POSTS');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
if ($post_data['poster_id'] == $user->data['user_id'] && $auth->acl_get('f_delete', $forum_id) && $post_id != $post_data['topic_last_post_id'])
|
|
|
d6e8d8 |
{
|
|
|
d6e8d8 |
trigger_error('CANNOT_DELETE_REPLIED');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
trigger_error('USER_CANNOT_DELETE');
|
|
|
d6e8d8 |
}
|
|
|
d6e8d8 |
|
|
|
d6e8d8 |
?>
|