Blame Identity/Models/Html/phpBB/3.0.4/includes/functions_admin.php

d6e8d8
d6e8d8
/**
d6e8d8
*
d6e8d8
* @package acp
d6e8d8
* @version $Id: functions_admin.php 9065 2008-11-13 17:32:55Z 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
if (!defined('IN_PHPBB'))
d6e8d8
{
d6e8d8
	exit;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Recalculate Binary Tree
d6e8d8
function recalc_btree($sql_id, $sql_table, $module_class = '')
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	if (!$sql_id || !$sql_table)
d6e8d8
	{
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	$sql_where = ($module_class) ? " WHERE module_class = '" . $db->sql_escape($module_class) . "'" : '';
d6e8d8
d6e8d8
	// Reset to minimum possible left and right id
d6e8d8
	$sql = "SELECT MIN(left_id) as min_left_id, MIN(right_id) as min_right_id
d6e8d8
		FROM $sql_table
d6e8d8
		$sql_where";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$row = $db->sql_fetchrow($result);
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$substract = (int) (min($row['min_left_id'], $row['min_right_id']) - 1);
d6e8d8
d6e8d8
	if ($substract > 0)
d6e8d8
	{
d6e8d8
		$sql = "UPDATE $sql_table
d6e8d8
			SET left_id = left_id - $substract, right_id = right_id - $substract
d6e8d8
			$sql_where";
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = "SELECT $sql_id, parent_id, left_id, right_id
d6e8d8
		FROM $sql_table
d6e8d8
		$sql_where
d6e8d8
		ORDER BY left_id ASC, parent_id ASC, $sql_id ASC";
d6e8d8
	$f_result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($item_data = $db->sql_fetchrow($f_result))
d6e8d8
	{
d6e8d8
		if ($item_data['parent_id'])
d6e8d8
		{
d6e8d8
			$sql = "SELECT left_id, right_id
d6e8d8
				FROM $sql_table
d6e8d8
				$sql_where " . (($sql_where) ? 'AND' : 'WHERE') . "
d6e8d8
					$sql_id = {$item_data['parent_id']}";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			if (!$row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$sql = "UPDATE $sql_table SET parent_id = 0 WHERE $sql_id = " . $item_data[$sql_id];
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$sql = "UPDATE $sql_table
d6e8d8
				SET left_id = left_id + 2, right_id = right_id + 2
d6e8d8
				$sql_where " . (($sql_where) ? 'AND' : 'WHERE') . "
d6e8d8
					left_id > {$row['right_id']}";
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			$sql = "UPDATE $sql_table
d6e8d8
				SET right_id = right_id + 2
d6e8d8
				$sql_where " . (($sql_where) ? 'AND' : 'WHERE') . "
d6e8d8
					{$row['left_id']} BETWEEN left_id AND right_id";
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			$item_data['left_id'] = $row['right_id'];
d6e8d8
			$item_data['right_id'] = $row['right_id'] + 1;
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$sql = "SELECT MAX(right_id) AS right_id
d6e8d8
				FROM $sql_table
d6e8d8
				$sql_where";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
			$row = $db->sql_fetchrow($result);
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$item_data['left_id'] = $row['right_id'] + 1;
d6e8d8
			$item_data['right_id'] = $row['right_id'] + 2;
d6e8d8
		}
d6e8d8
d6e8d8
		$sql = "UPDATE $sql_table
d6e8d8
			SET left_id = {$item_data['left_id']}, right_id = {$item_data['right_id']}
d6e8d8
			WHERE $sql_id = " . $item_data[$sql_id];
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($f_result);
d6e8d8
}
d6e8d8
*/
d6e8d8
d6e8d8
/**
d6e8d8
* Simple version of jumpbox, just lists authed forums
d6e8d8
*/
d6e8d8
function make_forum_select($select_id = false, $ignore_id = false, $ignore_acl = false, $ignore_nonpost = false, $ignore_emptycat = true, $only_acl_post = false, $return_array = false)
d6e8d8
{
d6e8d8
	global $db, $user, $auth;
d6e8d8
d6e8d8
	$acl = ($ignore_acl) ? '' : (($only_acl_post) ? 'f_post' : array('f_list', 'a_forum', 'a_forumadd', 'a_forumdel'));
d6e8d8
d6e8d8
	// This query is identical to the jumpbox one
d6e8d8
	$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
d6e8d8
		FROM ' . FORUMS_TABLE . '
d6e8d8
		ORDER BY left_id ASC';
d6e8d8
	$result = $db->sql_query($sql, 600);
d6e8d8
d6e8d8
	$right = 0;
d6e8d8
	$padding_store = array('0' => '');
d6e8d8
	$padding = '';
d6e8d8
	$forum_list = ($return_array) ? array() : '';
d6e8d8
d6e8d8
	// Sometimes it could happen that forums will be displayed here not be displayed within the index page
d6e8d8
	// This is the result of forums not displayed at index, having list permissions and a parent of a forum with no permissions.
d6e8d8
	// If this happens, the padding could be "broken"
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		if ($row['left_id'] < $right)
d6e8d8
		{
d6e8d8
			$padding .= '   ';
d6e8d8
			$padding_store[$row['parent_id']] = $padding;
d6e8d8
		}
d6e8d8
		else if ($row['left_id'] > $right + 1)
d6e8d8
		{
d6e8d8
			$padding = (isset($padding_store[$row['parent_id']])) ? $padding_store[$row['parent_id']] : '';
d6e8d8
		}
d6e8d8
d6e8d8
		$right = $row['right_id'];
d6e8d8
		$disabled = false;
d6e8d8
d6e8d8
		if ($acl && !$auth->acl_gets($acl, $row['forum_id']))
d6e8d8
		{
d6e8d8
			// List permission?
d6e8d8
			if ($auth->acl_get('f_list', $row['forum_id']))
d6e8d8
			{
d6e8d8
				$disabled = true;
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				continue;
d6e8d8
			}
d6e8d8
		}
d6e8d8
d6e8d8
		if (
d6e8d8
			((is_array($ignore_id) && in_array($row['forum_id'], $ignore_id)) || $row['forum_id'] == $ignore_id)
d6e8d8
			||
d6e8d8
			// Non-postable forum with no subforums, don't display
d6e8d8
			($row['forum_type'] == FORUM_CAT && ($row['left_id'] + 1 == $row['right_id']) && $ignore_emptycat)
d6e8d8
			||
d6e8d8
			($row['forum_type'] != FORUM_POST && $ignore_nonpost)
d6e8d8
			)
d6e8d8
		{
d6e8d8
			$disabled = true;
d6e8d8
		}
d6e8d8
d6e8d8
		if ($return_array)
d6e8d8
		{
d6e8d8
			// Include some more information...
d6e8d8
			$selected = (is_array($select_id)) ? ((in_array($row['forum_id'], $select_id)) ? true : false) : (($row['forum_id'] == $select_id) ? true : false);
d6e8d8
			$forum_list[$row['forum_id']] = array_merge(array('padding' => $padding, 'selected' => ($selected && !$disabled), 'disabled' => $disabled), $row);
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$selected = (is_array($select_id)) ? ((in_array($row['forum_id'], $select_id)) ? ' selected="selected"' : '') : (($row['forum_id'] == $select_id) ? ' selected="selected"' : '');
d6e8d8
			$forum_list .= '<option value="' . $row['forum_id'] . '"' . (($disabled) ? ' disabled="disabled" class="disabled-option"' : $selected) . '>' . $padding . $row['forum_name'] . '</option>';
d6e8d8
		}
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
	unset($padding_store);
d6e8d8
d6e8d8
	return $forum_list;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Generate size select options
d6e8d8
*/
d6e8d8
function size_select_options($size_compare)
d6e8d8
{
d6e8d8
	global $user;
d6e8d8
d6e8d8
	$size_types_text = array($user->lang['BYTES'], $user->lang['KIB'], $user->lang['MIB']);
d6e8d8
	$size_types = array('b', 'kb', 'mb');
d6e8d8
d6e8d8
	$s_size_options = '';
d6e8d8
d6e8d8
	for ($i = 0, $size = sizeof($size_types_text); $i < $size; $i++)
d6e8d8
	{
d6e8d8
		$selected = ($size_compare == $size_types[$i]) ? ' selected="selected"' : '';
d6e8d8
		$s_size_options .= '<option value="' . $size_types[$i] . '"' . $selected . '>' . $size_types_text[$i] . '</option>';
d6e8d8
	}
d6e8d8
d6e8d8
	return $s_size_options;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Generate list of groups (option fields without select)
d6e8d8
*
d6e8d8
* @param int $group_id The default group id to mark as selected
d6e8d8
* @param array $exclude_ids The group ids to exclude from the list, false (default) if you whish to exclude no id
d6e8d8
* @param int $manage_founder If set to false (default) all groups are returned, if 0 only those groups returned not being managed by founders only, if 1 only those groups returned managed by founders only.
d6e8d8
*
d6e8d8
* @return string The list of options.
d6e8d8
*/
d6e8d8
function group_select_options($group_id, $exclude_ids = false, $manage_founder = false)
d6e8d8
{
d6e8d8
	global $db, $user, $config;
d6e8d8
d6e8d8
	$exclude_sql = ($exclude_ids !== false && sizeof($exclude_ids)) ? 'WHERE ' . $db->sql_in_set('group_id', array_map('intval', $exclude_ids), true) : '';
d6e8d8
	$sql_and = (!$config['coppa_enable']) ? (($exclude_sql) ? ' AND ' : ' WHERE ') . "group_name <> 'REGISTERED_COPPA'" : '';
d6e8d8
	$sql_founder = ($manage_founder !== false) ? (($exclude_sql || $sql_and) ? ' AND ' : ' WHERE ') . 'group_founder_manage = ' . (int) $manage_founder : '';
d6e8d8
d6e8d8
	$sql = 'SELECT group_id, group_name, group_type
d6e8d8
		FROM ' . GROUPS_TABLE . "
d6e8d8
		$exclude_sql
d6e8d8
		$sql_and
d6e8d8
		$sql_founder
d6e8d8
		ORDER BY group_type DESC, group_name ASC";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$s_group_options = '';
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$selected = ($row['group_id'] == $group_id) ? ' selected="selected"' : '';
d6e8d8
		$s_group_options .= '<option' . (($row['group_type'] == GROUP_SPECIAL) ? ' class="sep"' : '') . ' value="' . $row['group_id'] . '"' . $selected . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	return $s_group_options;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Obtain authed forums list
d6e8d8
*/
d6e8d8
function get_forum_list($acl_list = 'f_list', $id_only = true, $postable_only = false, $no_cache = false)
d6e8d8
{
d6e8d8
	global $db, $auth;
d6e8d8
	static $forum_rows;
d6e8d8
d6e8d8
	if (!isset($forum_rows))
d6e8d8
	{
d6e8d8
		// This query is identical to the jumpbox one
d6e8d8
		$expire_time = ($no_cache) ? 0 : 600;
d6e8d8
d6e8d8
		$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
d6e8d8
			FROM ' . FORUMS_TABLE . '
d6e8d8
			ORDER BY left_id ASC';
d6e8d8
		$result = $db->sql_query($sql, $expire_time);
d6e8d8
d6e8d8
		$forum_rows = array();
d6e8d8
d6e8d8
		$right = $padding = 0;
d6e8d8
		$padding_store = array('0' => 0);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			if ($row['left_id'] < $right)
d6e8d8
			{
d6e8d8
				$padding++;
d6e8d8
				$padding_store[$row['parent_id']] = $padding;
d6e8d8
			}
d6e8d8
			else if ($row['left_id'] > $right + 1)
d6e8d8
			{
d6e8d8
				// Ok, if the $padding_store for this parent is empty there is something wrong. For now we will skip over it.
d6e8d8
				// @todo digging deep to find out "how" this can happen.
d6e8d8
				$padding = (isset($padding_store[$row['parent_id']])) ? $padding_store[$row['parent_id']] : $padding;
d6e8d8
			}
d6e8d8
d6e8d8
			$right = $row['right_id'];
d6e8d8
			$row['padding'] = $padding;
d6e8d8
d6e8d8
			$forum_rows[] = $row;
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
		unset($padding_store);
d6e8d8
	}
d6e8d8
d6e8d8
	$rowset = array();
d6e8d8
	foreach ($forum_rows as $row)
d6e8d8
	{
d6e8d8
		if ($postable_only && $row['forum_type'] != FORUM_POST)
d6e8d8
		{
d6e8d8
			continue;
d6e8d8
		}
d6e8d8
d6e8d8
		if ($acl_list == '' || ($acl_list != '' && $auth->acl_gets($acl_list, $row['forum_id'])))
d6e8d8
		{
d6e8d8
			$rowset[] = ($id_only) ? $row['forum_id'] : $row;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	return $rowset;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Get forum branch
d6e8d8
*/
d6e8d8
function get_forum_branch($forum_id, $type = 'all', $order = 'descending', $include_forum = true)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	switch ($type)
d6e8d8
	{
d6e8d8
		case 'parents':
d6e8d8
			$condition = 'f1.left_id BETWEEN f2.left_id AND f2.right_id';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'children':
d6e8d8
			$condition = 'f2.left_id BETWEEN f1.left_id AND f1.right_id';
d6e8d8
		break;
d6e8d8
d6e8d8
		default:
d6e8d8
			$condition = 'f2.left_id BETWEEN f1.left_id AND f1.right_id OR f1.left_id BETWEEN f2.left_id AND f2.right_id';
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	$rows = array();
d6e8d8
d6e8d8
	$sql = 'SELECT f2.*
d6e8d8
		FROM ' . FORUMS_TABLE . ' f1
d6e8d8
		LEFT JOIN ' . FORUMS_TABLE . " f2 ON ($condition)
d6e8d8
		WHERE f1.forum_id = $forum_id
d6e8d8
		ORDER BY f2.left_id " . (($order == 'descending') ? 'ASC' : 'DESC');
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		if (!$include_forum && $row['forum_id'] == $forum_id)
d6e8d8
		{
d6e8d8
			continue;
d6e8d8
		}
d6e8d8
d6e8d8
		$rows[] = $row;
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	return $rows;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Get physical file listing
d6e8d8
*/
d6e8d8
function filelist($rootdir, $dir = '', $type = 'gif|jpg|jpeg|png')
d6e8d8
{
d6e8d8
	$matches = array();
d6e8d8
d6e8d8
	// Remove initial / if present
d6e8d8
	$rootdir = (substr($rootdir, 0, 1) == '/') ? substr($rootdir, 1) : $rootdir;
d6e8d8
	// Add closing / if not present
d6e8d8
	$rootdir = ($rootdir && substr($rootdir, -1) != '/') ? $rootdir . '/' : $rootdir;
d6e8d8
d6e8d8
	// Remove initial / if present
d6e8d8
	$dir = (substr($dir, 0, 1) == '/') ? substr($dir, 1) : $dir;
d6e8d8
	// Add closing / if not present
d6e8d8
	$dir = ($dir && substr($dir, -1) != '/') ? $dir . '/' : $dir;
d6e8d8
d6e8d8
	if (!is_dir($rootdir . $dir))
d6e8d8
	{
d6e8d8
		return $matches;
d6e8d8
	}
d6e8d8
d6e8d8
	$dh = @opendir($rootdir . $dir);
d6e8d8
d6e8d8
	if (!$dh)
d6e8d8
	{
d6e8d8
		return $matches;
d6e8d8
	}
d6e8d8
d6e8d8
	while (($fname = readdir($dh)) !== false)
d6e8d8
	{
d6e8d8
		if (is_file("$rootdir$dir$fname"))
d6e8d8
		{
d6e8d8
			if (filesize("$rootdir$dir$fname") && preg_match('#\.' . $type . '$#i', $fname))
d6e8d8
			{
d6e8d8
				$matches[$dir][] = $fname;
d6e8d8
			}
d6e8d8
		}
d6e8d8
		else if ($fname[0] != '.' && is_dir("$rootdir$dir$fname"))
d6e8d8
		{
d6e8d8
			$matches += filelist($rootdir, "$dir$fname", $type);
d6e8d8
		}
d6e8d8
	}
d6e8d8
	closedir($dh);
d6e8d8
d6e8d8
	return $matches;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Move topic(s)
d6e8d8
*/
d6e8d8
function move_topics($topic_ids, $forum_id, $auto_sync = true)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	if (empty($topic_ids))
d6e8d8
	{
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	$forum_ids = array($forum_id);
d6e8d8
d6e8d8
	if (!is_array($topic_ids))
d6e8d8
	{
d6e8d8
		$topic_ids = array($topic_ids);
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = 'DELETE FROM ' . TOPICS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('topic_moved_id', $topic_ids) . '
d6e8d8
			AND forum_id = ' . $forum_id;
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		$sql = 'SELECT DISTINCT forum_id
d6e8d8
			FROM ' . TOPICS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$forum_ids[] = $row['forum_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
	}
d6e8d8
d6e8d8
	$table_ary = array(TOPICS_TABLE, POSTS_TABLE, LOG_TABLE, DRAFTS_TABLE, TOPICS_TRACK_TABLE);
d6e8d8
	foreach ($table_ary as $table)
d6e8d8
	{
d6e8d8
		$sql = "UPDATE $table
d6e8d8
			SET forum_id = $forum_id
d6e8d8
			WHERE " . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
	unset($table_ary);
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		sync('forum', 'forum_id', $forum_ids, true, true);
d6e8d8
		unset($forum_ids);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Move post(s)
d6e8d8
*/
d6e8d8
function move_posts($post_ids, $topic_id, $auto_sync = true)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	if (!is_array($post_ids))
d6e8d8
	{
d6e8d8
		$post_ids = array($post_ids);
d6e8d8
	}
d6e8d8
d6e8d8
	$forum_ids = array();
d6e8d8
	$topic_ids = array($topic_id);
d6e8d8
d6e8d8
	$sql = 'SELECT DISTINCT topic_id, forum_id
d6e8d8
		FROM ' . POSTS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('post_id', $post_ids);
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$forum_ids[] = $row['forum_id'];
d6e8d8
		$topic_ids[] = $row['topic_id'];
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$sql = 'SELECT forum_id
d6e8d8
		FROM ' . TOPICS_TABLE . '
d6e8d8
		WHERE topic_id = ' . $topic_id;
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$forum_row = $db->sql_fetchrow($result);
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if (!$forum_row)
d6e8d8
	{
d6e8d8
		trigger_error('NO_TOPIC');
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = 'UPDATE ' . POSTS_TABLE . '
d6e8d8
		SET forum_id = ' . $forum_row['forum_id'] . ", topic_id = $topic_id
d6e8d8
		WHERE " . $db->sql_in_set('post_id', $post_ids);
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	$sql = 'UPDATE ' . ATTACHMENTS_TABLE . "
d6e8d8
		SET topic_id = $topic_id, in_message = 0
d6e8d8
		WHERE " . $db->sql_in_set('post_msg_id', $post_ids);
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		$forum_ids[] = $forum_row['forum_id'];
d6e8d8
d6e8d8
		sync('topic_reported', 'topic_id', $topic_ids);
d6e8d8
		sync('topic_attachment', 'topic_id', $topic_ids);
d6e8d8
		sync('topic', 'topic_id', $topic_ids, true);
d6e8d8
		sync('forum', 'forum_id', $forum_ids, true, true);
d6e8d8
	}
d6e8d8
d6e8d8
	// Update posted information
d6e8d8
	update_posted_info($topic_ids);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Remove topic(s)
d6e8d8
*/
d6e8d8
function delete_topics($where_type, $where_ids, $auto_sync = true, $post_count_sync = true, $call_delete_posts = true)
d6e8d8
{
d6e8d8
	global $db, $config;
d6e8d8
d6e8d8
	$approved_topics = 0;
d6e8d8
	$forum_ids = $topic_ids = array();
d6e8d8
d6e8d8
	if ($where_type === 'range')
d6e8d8
	{
d6e8d8
		$where_clause = $where_ids;
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$where_ids = (is_array($where_ids)) ? array_unique($where_ids) : array($where_ids);
d6e8d8
d6e8d8
		if (!sizeof($where_ids))
d6e8d8
		{
d6e8d8
			return array('topics' => 0, 'posts' => 0);
d6e8d8
		}
d6e8d8
d6e8d8
		$where_clause = $db->sql_in_set($where_type, $where_ids);
d6e8d8
	}
d6e8d8
d6e8d8
	// Making sure that delete_posts does not call delete_topics again...
d6e8d8
	$return = array(
d6e8d8
		'posts' => ($call_delete_posts) ? delete_posts($where_type, $where_ids, false, true, $post_count_sync, false) : 0,
d6e8d8
	);
d6e8d8
d6e8d8
	$sql = 'SELECT topic_id, forum_id, topic_approved, topic_moved_id
d6e8d8
		FROM ' . TOPICS_TABLE . '
d6e8d8
		WHERE ' . $where_clause;
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$forum_ids[] = $row['forum_id'];
d6e8d8
		$topic_ids[] = $row['topic_id'];
d6e8d8
d6e8d8
		if ($row['topic_approved'] && !$row['topic_moved_id'])
d6e8d8
		{
d6e8d8
			$approved_topics++;
d6e8d8
		}
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$return['topics'] = sizeof($topic_ids);
d6e8d8
d6e8d8
	if (!sizeof($topic_ids))
d6e8d8
	{
d6e8d8
		return $return;
d6e8d8
	}
d6e8d8
d6e8d8
	$db->sql_transaction('begin');
d6e8d8
d6e8d8
	$table_ary = array(TOPICS_TRACK_TABLE, TOPICS_POSTED_TABLE, POLL_VOTES_TABLE, POLL_OPTIONS_TABLE, TOPICS_WATCH_TABLE, TOPICS_TABLE);
d6e8d8
d6e8d8
	foreach ($table_ary as $table)
d6e8d8
	{
d6e8d8
		$sql = "DELETE FROM $table
d6e8d8
			WHERE " . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
	unset($table_ary);
d6e8d8
d6e8d8
	$moved_topic_ids = array();
d6e8d8
d6e8d8
	// update the other forums
d6e8d8
	$sql = 'SELECT topic_id, forum_id
d6e8d8
		FROM ' . TOPICS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('topic_moved_id', $topic_ids);
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$forum_ids[] = $row['forum_id'];
d6e8d8
		$moved_topic_ids[] = $row['topic_id'];
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if (sizeof($moved_topic_ids))
d6e8d8
	{
d6e8d8
		$sql = 'DELETE FROM ' . TOPICS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('topic_id', $moved_topic_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
d6e8d8
	$db->sql_transaction('commit');
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		sync('forum', 'forum_id', array_unique($forum_ids), true, true);
d6e8d8
		sync('topic_reported', $where_type, $where_ids);
d6e8d8
	}
d6e8d8
d6e8d8
	if ($approved_topics)
d6e8d8
	{
d6e8d8
		set_config('num_topics', $config['num_topics'] - $approved_topics, true);
d6e8d8
	}
d6e8d8
d6e8d8
	return $return;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Remove post(s)
d6e8d8
*/
d6e8d8
function delete_posts($where_type, $where_ids, $auto_sync = true, $posted_sync = true, $post_count_sync = true, $call_delete_topics = true)
d6e8d8
{
d6e8d8
	global $db, $config, $phpbb_root_path, $phpEx;
d6e8d8
d6e8d8
	if ($where_type === 'range')
d6e8d8
	{
d6e8d8
		$where_clause = $where_ids;
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		if (is_array($where_ids))
d6e8d8
		{
d6e8d8
			$where_ids = array_unique($where_ids);
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$where_ids = array($where_ids);
d6e8d8
		}
d6e8d8
d6e8d8
		if (!sizeof($where_ids))
d6e8d8
		{
d6e8d8
			return false;
d6e8d8
		}
d6e8d8
d6e8d8
		$where_clause = $db->sql_in_set($where_type, array_map('intval', $where_ids));
d6e8d8
	}
d6e8d8
d6e8d8
	$approved_posts = 0;
d6e8d8
	$post_ids = $topic_ids = $forum_ids = $post_counts = $remove_topics = array();
d6e8d8
d6e8d8
	$sql = 'SELECT post_id, poster_id, post_approved, post_postcount, topic_id, forum_id
d6e8d8
		FROM ' . POSTS_TABLE . '
d6e8d8
		WHERE ' . $where_clause;
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$post_ids[] = $row['post_id'];
d6e8d8
		$poster_ids[] = $row['poster_id'];
d6e8d8
		$topic_ids[] = $row['topic_id'];
d6e8d8
		$forum_ids[] = $row['forum_id'];
d6e8d8
d6e8d8
		if ($row['post_postcount'] && $post_count_sync && $row['post_approved'])
d6e8d8
		{
d6e8d8
			$post_counts[$row['poster_id']] = (!empty($post_counts[$row['poster_id']])) ? $post_counts[$row['poster_id']] + 1 : 1;
d6e8d8
		}
d6e8d8
d6e8d8
		if ($row['post_approved'])
d6e8d8
		{
d6e8d8
			$approved_posts++;
d6e8d8
		}
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if (!sizeof($post_ids))
d6e8d8
	{
d6e8d8
		return false;
d6e8d8
	}
d6e8d8
d6e8d8
	$db->sql_transaction('begin');
d6e8d8
d6e8d8
	$table_ary = array(POSTS_TABLE, REPORTS_TABLE);
d6e8d8
d6e8d8
	foreach ($table_ary as $table)
d6e8d8
	{
d6e8d8
		$sql = "DELETE FROM $table
d6e8d8
			WHERE " . $db->sql_in_set('post_id', $post_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
	unset($table_ary);
d6e8d8
d6e8d8
	// Adjust users post counts
d6e8d8
	if (sizeof($post_counts) && $post_count_sync)
d6e8d8
	{
d6e8d8
		foreach ($post_counts as $poster_id => $substract)
d6e8d8
		{
d6e8d8
			$sql = 'UPDATE ' . USERS_TABLE . '
d6e8d8
				SET user_posts = 0
d6e8d8
				WHERE user_id = ' . $poster_id . '
d6e8d8
				AND user_posts < ' . $substract;
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			$sql = 'UPDATE ' . USERS_TABLE . '
d6e8d8
				SET user_posts = user_posts - ' . $substract . '
d6e8d8
				WHERE user_id = ' . $poster_id . '
d6e8d8
				AND user_posts >= ' . $substract;
d6e8d8
			$db->sql_query($sql);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	// Remove topics now having no posts?
d6e8d8
	if (sizeof($topic_ids))
d6e8d8
	{
d6e8d8
		$sql = 'SELECT topic_id
d6e8d8
			FROM ' . POSTS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('topic_id', $topic_ids) . '
d6e8d8
			GROUP BY topic_id';
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$remove_topics[] = $row['topic_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		// Actually, those not within remove_topics should be removed. ;)
d6e8d8
		$remove_topics = array_diff($topic_ids, $remove_topics);
d6e8d8
	}
d6e8d8
d6e8d8
	// Remove the message from the search index
d6e8d8
	$search_type = basename($config['search_type']);
d6e8d8
d6e8d8
	if (!file_exists($phpbb_root_path . 'includes/search/' . $search_type . '.' . $phpEx))
d6e8d8
	{
d6e8d8
		trigger_error('NO_SUCH_SEARCH_MODULE');
d6e8d8
	}
d6e8d8
d6e8d8
	include_once("{$phpbb_root_path}includes/search/$search_type.$phpEx");
d6e8d8
d6e8d8
	$error = false;
d6e8d8
	$search = new $search_type($error);
d6e8d8
d6e8d8
	if ($error)
d6e8d8
	{
d6e8d8
		trigger_error($error);
d6e8d8
	}
d6e8d8
d6e8d8
	$search->index_remove($post_ids, $poster_ids, $forum_ids);
d6e8d8
d6e8d8
	delete_attachments('post', $post_ids, false);
d6e8d8
d6e8d8
	$db->sql_transaction('commit');
d6e8d8
d6e8d8
	// Resync topics_posted table
d6e8d8
	if ($posted_sync)
d6e8d8
	{
d6e8d8
		update_posted_info($topic_ids);
d6e8d8
	}
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		sync('topic_reported', 'topic_id', $topic_ids);
d6e8d8
		sync('topic', 'topic_id', $topic_ids, true);
d6e8d8
		sync('forum', 'forum_id', $forum_ids, true, true);
d6e8d8
	}
d6e8d8
d6e8d8
	if ($approved_posts)
d6e8d8
	{
d6e8d8
		set_config('num_posts', $config['num_posts'] - $approved_posts, true);
d6e8d8
	}
d6e8d8
d6e8d8
	// We actually remove topics now to not be inconsistent (the delete_topics function calls this function too)
d6e8d8
	if (sizeof($remove_topics) && $call_delete_topics)
d6e8d8
	{
d6e8d8
		delete_topics('topic_id', $remove_topics, $auto_sync, $post_count_sync, false);
d6e8d8
	}
d6e8d8
d6e8d8
	return sizeof($post_ids);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Delete Attachments
d6e8d8
*
d6e8d8
* @param string $mode can be: post|message|topic|attach|user
d6e8d8
* @param mixed $ids can be: post_ids, message_ids, topic_ids, attach_ids, user_ids
d6e8d8
* @param bool $resync set this to false if you are deleting posts or topics
d6e8d8
*/
d6e8d8
function delete_attachments($mode, $ids, $resync = true)
d6e8d8
{
d6e8d8
	global $db, $config;
d6e8d8
d6e8d8
	if (is_array($ids) && sizeof($ids))
d6e8d8
	{
d6e8d8
		$ids = array_unique($ids);
d6e8d8
		$ids = array_map('intval', $ids);
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$ids = array((int) $ids);
d6e8d8
	}
d6e8d8
d6e8d8
	if (!sizeof($ids))
d6e8d8
	{
d6e8d8
		return false;
d6e8d8
	}
d6e8d8
d6e8d8
	switch ($mode)
d6e8d8
	{
d6e8d8
		case 'post':
d6e8d8
		case 'message':
d6e8d8
			$sql_id = 'post_msg_id';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'topic':
d6e8d8
			$sql_id = 'topic_id';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'user':
d6e8d8
			$sql_id = 'poster_id';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'attach':
d6e8d8
		default:
d6e8d8
			$sql_id = 'attach_id';
d6e8d8
			$mode = 'attach';
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	$post_ids = $message_ids = $topic_ids = $physical = array();
d6e8d8
d6e8d8
	// Collect post and topic ids for later use if we need to touch remaining entries (if resync is enabled)
d6e8d8
	$sql = 'SELECT post_msg_id, topic_id, in_message, physical_filename, thumbnail, filesize, is_orphan
d6e8d8
			FROM ' . ATTACHMENTS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set($sql_id, $ids);
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		// We only need to store post/message/topic ids if resync is enabled and the file is not orphaned
d6e8d8
		if ($resync && !$row['is_orphan'])
d6e8d8
		{
d6e8d8
			if (!$row['in_message'])
d6e8d8
			{
d6e8d8
				$post_ids[] = $row['post_msg_id'];
d6e8d8
				$topic_ids[] = $row['topic_id'];
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$message_ids[] = $row['post_msg_id'];
d6e8d8
			}
d6e8d8
		}
d6e8d8
d6e8d8
		$physical[] = array('filename' => $row['physical_filename'], 'thumbnail' => $row['thumbnail'], 'filesize' => $row['filesize'], 'is_orphan' => $row['is_orphan']);
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	// Delete attachments
d6e8d8
	$sql = 'DELETE FROM ' . ATTACHMENTS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set($sql_id, $ids);
d6e8d8
	$db->sql_query($sql);
d6e8d8
	$num_deleted = $db->sql_affectedrows();
d6e8d8
d6e8d8
	if (!$num_deleted)
d6e8d8
	{
d6e8d8
		return 0;
d6e8d8
	}
d6e8d8
d6e8d8
	// Delete attachments from filesystem
d6e8d8
	$space_removed = $files_removed = 0;
d6e8d8
	foreach ($physical as $file_ary)
d6e8d8
	{
d6e8d8
		if (phpbb_unlink($file_ary['filename'], 'file', true) && !$file_ary['is_orphan'])
d6e8d8
		{
d6e8d8
			// Only non-orphaned files count to the file size
d6e8d8
			$space_removed += $file_ary['filesize'];
d6e8d8
			$files_removed++;
d6e8d8
		}
d6e8d8
d6e8d8
		if ($file_ary['thumbnail'])
d6e8d8
		{
d6e8d8
			phpbb_unlink($file_ary['filename'], 'thumbnail', true);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	if ($space_removed || $files_removed)
d6e8d8
	{
d6e8d8
		set_config('upload_dir_size', $config['upload_dir_size'] - $space_removed, true);
d6e8d8
		set_config('num_files', $config['num_files'] - $files_removed, true);
d6e8d8
	}
d6e8d8
d6e8d8
	// If we do not resync, we do not need to adjust any message, post, topic or user entries
d6e8d8
	if (!$resync)
d6e8d8
	{
d6e8d8
		return $num_deleted;
d6e8d8
	}
d6e8d8
d6e8d8
	// No more use for the original ids
d6e8d8
	unset($ids);
d6e8d8
d6e8d8
	// Now, we need to resync posts, messages, topics. We go through every one of them
d6e8d8
	$post_ids = array_unique($post_ids);
d6e8d8
	$message_ids = array_unique($message_ids);
d6e8d8
	$topic_ids = array_unique($topic_ids);
d6e8d8
d6e8d8
	// Update post indicators for posts now no longer having attachments
d6e8d8
	if (sizeof($post_ids))
d6e8d8
	{
d6e8d8
		$sql = 'UPDATE ' . POSTS_TABLE . '
d6e8d8
			SET post_attachment = 0
d6e8d8
			WHERE ' . $db->sql_in_set('post_id', $post_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
d6e8d8
	// Update message table if messages are affected
d6e8d8
	if (sizeof($message_ids))
d6e8d8
	{
d6e8d8
		$sql = 'UPDATE ' . PRIVMSGS_TABLE . '
d6e8d8
			SET message_attachment = 0
d6e8d8
			WHERE ' . $db->sql_in_set('msg_id', $message_ids);
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
d6e8d8
	// Now update the topics. This is a bit trickier, because there could be posts still having attachments within the topic
d6e8d8
	if (sizeof($topic_ids))
d6e8d8
	{
d6e8d8
		// Just check which topics are still having an assigned attachment not orphaned by querying the attachments table (much less entries expected)
d6e8d8
		$sql = 'SELECT topic_id
d6e8d8
			FROM ' . ATTACHMENTS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('topic_id', $topic_ids) . '
d6e8d8
				AND is_orphan = 0';
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		$remaining_ids = array();
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$remaining_ids[] = $row['topic_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		// Now only unset those ids remaining
d6e8d8
		$topic_ids = array_diff($topic_ids, $remaining_ids);
d6e8d8
d6e8d8
		if (sizeof($topic_ids))
d6e8d8
		{
d6e8d8
			$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
				SET topic_attachment = 0
d6e8d8
				WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
			$db->sql_query($sql);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	return $num_deleted;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Remove topic shadows
d6e8d8
*/
d6e8d8
function delete_topic_shadows($max_age, $forum_id = '', $auto_sync = true)
d6e8d8
{
d6e8d8
	$where = (is_array($forum_id)) ? 'AND ' . $db->sql_in_set('t.forum_id', array_map('intval', $forum_id)) : (($forum_id) ? 'AND t.forum_id = ' . (int) $forum_id : '');
d6e8d8
d6e8d8
	switch ($db->sql_layer)
d6e8d8
	{
d6e8d8
		case 'mysql4':
d6e8d8
		case 'mysqli':
d6e8d8
			$sql = 'DELETE t.*
d6e8d8
				FROM ' . TOPICS_TABLE . ' t, ' . TOPICS_TABLE . ' t2
d6e8d8
				WHERE t.topic_moved_id = t2.topic_id
d6e8d8
					AND t.topic_time < ' . (time() - $max_age)
d6e8d8
				. $where;
d6e8d8
			$db->sql_query($sql);
d6e8d8
		break;
d6e8d8
d6e8d8
		default:
d6e8d8
			$sql = 'SELECT t.topic_id
d6e8d8
				FROM ' . TOPICS_TABLE . ' t, ' . TOPICS_TABLE . ' t2
d6e8d8
				WHERE t.topic_moved_id = t2.topic_id
d6e8d8
					AND t.topic_time < ' . (time() - $max_age)
d6e8d8
				. $where;
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$topic_ids = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$topic_ids[] = $row['topic_id'];
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if (sizeof($topic_ids))
d6e8d8
			{
d6e8d8
				$sql = 'DELETE FROM ' . TOPICS_TABLE . '
d6e8d8
					WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	if ($auto_sync)
d6e8d8
	{
d6e8d8
		$where_type = ($forum_id) ? 'forum_id' : '';
d6e8d8
		sync('forum', $where_type, $forum_id, true, true);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Update/Sync posted information for topics
d6e8d8
*/
d6e8d8
function update_posted_info(&$topic_ids)
d6e8d8
{
d6e8d8
	global $db, $config;
d6e8d8
d6e8d8
	if (empty($topic_ids) || !$config['load_db_track'])
d6e8d8
	{
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	// First of all, let us remove any posted information for these topics
d6e8d8
	$sql = 'DELETE FROM ' . TOPICS_POSTED_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	// Now, let us collect the user/topic combos for rebuilding the information
d6e8d8
	$sql = 'SELECT poster_id, topic_id
d6e8d8
		FROM ' . POSTS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('topic_id', $topic_ids) . '
d6e8d8
			AND poster_id <> ' . ANONYMOUS . '
d6e8d8
		GROUP BY poster_id, topic_id';
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$posted = array();
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		// Add as key to make them unique (grouping by) and circumvent empty keys on array_unique
d6e8d8
		$posted[$row['poster_id']][] = $row['topic_id'];
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	// Now add the information...
d6e8d8
	$sql_ary = array();
d6e8d8
	foreach ($posted as $user_id => $topic_row)
d6e8d8
	{
d6e8d8
		foreach ($topic_row as $topic_id)
d6e8d8
		{
d6e8d8
			$sql_ary[] = array(
d6e8d8
				'user_id'		=> (int) $user_id,
d6e8d8
				'topic_id'		=> (int) $topic_id,
d6e8d8
				'topic_posted'	=> 1,
d6e8d8
			);
d6e8d8
		}
d6e8d8
	}
d6e8d8
	unset($posted);
d6e8d8
d6e8d8
	$db->sql_multi_insert(TOPICS_POSTED_TABLE, $sql_ary);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Delete attached file
d6e8d8
*/
d6e8d8
function phpbb_unlink($filename, $mode = 'file', $entry_removed = false)
d6e8d8
{
d6e8d8
	global $db, $phpbb_root_path, $config;
d6e8d8
d6e8d8
	// Because of copying topics or modifications a physical filename could be assigned more than once. If so, do not remove the file itself.
d6e8d8
	$sql = 'SELECT COUNT(attach_id) AS num_entries
d6e8d8
		FROM ' . ATTACHMENTS_TABLE . "
d6e8d8
		WHERE physical_filename = '" . $db->sql_escape(basename($filename)) . "'";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$num_entries = (int) $db->sql_fetchfield('num_entries');
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	// Do not remove file if at least one additional entry with the same name exist.
d6e8d8
	if (($entry_removed && $num_entries > 0) || (!$entry_removed && $num_entries > 1))
d6e8d8
	{
d6e8d8
		return false;
d6e8d8
	}
d6e8d8
d6e8d8
	$filename = ($mode == 'thumbnail') ? 'thumb_' . basename($filename) : basename($filename);
d6e8d8
	return @unlink($phpbb_root_path . $config['upload_path'] . '/' . $filename);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* All-encompasing sync function
d6e8d8
*
d6e8d8
* Exaples:
d6e8d8
* 
d6e8d8
* sync('topic', 'topic_id', 123);			// resync topic #123
d6e8d8
* sync('topic', 'forum_id', array(2, 3));	// resync topics from forum #2 and #3
d6e8d8
* sync('topic');							// resync all topics
d6e8d8
* sync('topic', 'range', 'topic_id BETWEEN 1 AND 60');	// resync a range of topics/forums (only available for 'topic' and 'forum' modes)
d6e8d8
* 
d6e8d8
*
d6e8d8
* Modes:
d6e8d8
* - forum				Resync complete forum
d6e8d8
* - topic				Resync topics
d6e8d8
* - topic_moved			Removes topic shadows that would be in the same forum as the topic they link to
d6e8d8
* - topic_approved		Resyncs the topic_approved flag according to the status of the first post
d6e8d8
* - post_reported		Resyncs the post_reported flag, relying on actual reports
d6e8d8
* - topic_reported		Resyncs the topic_reported flag, relying on post_reported flags
d6e8d8
* - post_attachement	Same as post_reported, but with attachment flags
d6e8d8
* - topic_attachement	Same as topic_reported, but with attachment flags
d6e8d8
*/
d6e8d8
function sync($mode, $where_type = '', $where_ids = '', $resync_parents = false, $sync_extra = false)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	if (is_array($where_ids))
d6e8d8
	{
d6e8d8
		$where_ids = array_unique($where_ids);
d6e8d8
		$where_ids = array_map('intval', $where_ids);
d6e8d8
	}
d6e8d8
	else if ($where_type != 'range')
d6e8d8
	{
d6e8d8
		$where_ids = ($where_ids) ? array((int) $where_ids) : array();
d6e8d8
	}
d6e8d8
d6e8d8
	if ($mode == 'forum' || $mode == 'topic' || $mode == 'topic_approved' || $mode == 'topic_reported' || $mode == 'post_reported')
d6e8d8
	{
d6e8d8
		if (!$where_type)
d6e8d8
		{
d6e8d8
			$where_sql = '';
d6e8d8
			$where_sql_and = 'WHERE';
d6e8d8
		}
d6e8d8
		else if ($where_type == 'range')
d6e8d8
		{
d6e8d8
			// Only check a range of topics/forums. For instance: 'topic_id BETWEEN 1 AND 60'
d6e8d8
			$where_sql = 'WHERE (' . $mode[0] . ".$where_ids)";
d6e8d8
			$where_sql_and = $where_sql . "\n\tAND";
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			// Do not sync the "global forum"
d6e8d8
			$where_ids = array_diff($where_ids, array(0));
d6e8d8
d6e8d8
			if (!sizeof($where_ids))
d6e8d8
			{
d6e8d8
				// Empty array with IDs. This means that we don't have any work to do. Just return.
d6e8d8
				return;
d6e8d8
			}
d6e8d8
d6e8d8
			// Limit the topics/forums we are syncing, use specific topic/forum IDs.
d6e8d8
			// $where_type contains the field for the where clause (forum_id, topic_id)
d6e8d8
			$where_sql = 'WHERE ' . $db->sql_in_set($mode[0] . '.' . $where_type, $where_ids);
d6e8d8
			$where_sql_and = $where_sql . "\n\tAND";
d6e8d8
		}
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		if (!sizeof($where_ids))
d6e8d8
		{
d6e8d8
			return;
d6e8d8
		}
d6e8d8
d6e8d8
		// $where_type contains the field for the where clause (forum_id, topic_id)
d6e8d8
		$where_sql = 'WHERE ' . $db->sql_in_set($mode[0] . '.' . $where_type, $where_ids);
d6e8d8
		$where_sql_and = $where_sql . "\n\tAND";
d6e8d8
	}
d6e8d8
d6e8d8
	switch ($mode)
d6e8d8
	{
d6e8d8
		case 'topic_moved':
d6e8d8
			switch ($db->sql_layer)
d6e8d8
			{
d6e8d8
				case 'mysql4':
d6e8d8
				case 'mysqli':
d6e8d8
					$sql = 'DELETE FROM ' . TOPICS_TABLE . '
d6e8d8
						USING ' . TOPICS_TABLE . ' t1, ' . TOPICS_TABLE . " t2
d6e8d8
						WHERE t1.topic_moved_id = t2.topic_id
d6e8d8
							AND t1.forum_id = t2.forum_id";
d6e8d8
					$db->sql_query($sql);
d6e8d8
				break;
d6e8d8
d6e8d8
				default:
d6e8d8
					$sql = 'SELECT t1.topic_id
d6e8d8
						FROM ' .TOPICS_TABLE . ' t1, ' . TOPICS_TABLE . " t2
d6e8d8
						WHERE t1.topic_moved_id = t2.topic_id
d6e8d8
							AND t1.forum_id = t2.forum_id";
d6e8d8
					$result = $db->sql_query($sql);
d6e8d8
d6e8d8
					$topic_id_ary = array();
d6e8d8
					while ($row = $db->sql_fetchrow($result))
d6e8d8
					{
d6e8d8
						$topic_id_ary[] = $row['topic_id'];
d6e8d8
					}
d6e8d8
					$db->sql_freeresult($result);
d6e8d8
d6e8d8
					if (!sizeof($topic_id_ary))
d6e8d8
					{
d6e8d8
						return;
d6e8d8
					}
d6e8d8
d6e8d8
					$sql = 'DELETE FROM ' . TOPICS_TABLE . '
d6e8d8
						WHERE ' . $db->sql_in_set('topic_id', $topic_id_ary);
d6e8d8
					$db->sql_query($sql);
d6e8d8
d6e8d8
				break;
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'topic_approved':
d6e8d8
			switch ($db->sql_layer)
d6e8d8
			{
d6e8d8
				case 'mysql4':
d6e8d8
				case 'mysqli':
d6e8d8
					$sql = 'UPDATE ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . " p
d6e8d8
						SET t.topic_approved = p.post_approved
d6e8d8
						$where_sql_and t.topic_first_post_id = p.post_id";
d6e8d8
					$db->sql_query($sql);
d6e8d8
				break;
d6e8d8
d6e8d8
				default:
d6e8d8
					$sql = 'SELECT t.topic_id, p.post_approved
d6e8d8
						FROM ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . " p
d6e8d8
						$where_sql_and p.post_id = t.topic_first_post_id
d6e8d8
							AND p.post_approved <> t.topic_approved";
d6e8d8
					$result = $db->sql_query($sql);
d6e8d8
d6e8d8
					$topic_ids = array();
d6e8d8
					while ($row = $db->sql_fetchrow($result))
d6e8d8
					{
d6e8d8
						$topic_ids[] = $row['topic_id'];
d6e8d8
					}
d6e8d8
					$db->sql_freeresult($result);
d6e8d8
d6e8d8
					if (!sizeof($topic_ids))
d6e8d8
					{
d6e8d8
						return;
d6e8d8
					}
d6e8d8
d6e8d8
					$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
						SET topic_approved = 1 - topic_approved
d6e8d8
						WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
					$db->sql_query($sql);
d6e8d8
				break;
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'post_reported':
d6e8d8
			$post_ids = $post_reported = array();
d6e8d8
d6e8d8
			$sql = 'SELECT p.post_id, p.post_reported
d6e8d8
				FROM ' . POSTS_TABLE . " p
d6e8d8
				$where_sql
d6e8d8
				GROUP BY p.post_id, p.post_reported";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$post_ids[$row['post_id']] = $row['post_id'];
d6e8d8
				if ($row['post_reported'])
d6e8d8
				{
d6e8d8
					$post_reported[$row['post_id']] = 1;
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$sql = 'SELECT DISTINCT(post_id)
d6e8d8
				FROM ' . REPORTS_TABLE . '
d6e8d8
				WHERE ' . $db->sql_in_set('post_id', $post_ids) . '
d6e8d8
					AND report_closed = 0';
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$post_ids = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if (!isset($post_reported[$row['post_id']]))
d6e8d8
				{
d6e8d8
					$post_ids[] = $row['post_id'];
d6e8d8
				}
d6e8d8
				else
d6e8d8
				{
d6e8d8
					unset($post_reported[$row['post_id']]);
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			// $post_reported should be empty by now, if it's not it contains
d6e8d8
			// posts that are falsely flagged as reported
d6e8d8
			foreach ($post_reported as $post_id => $void)
d6e8d8
			{
d6e8d8
				$post_ids[] = $post_id;
d6e8d8
			}
d6e8d8
d6e8d8
			if (sizeof($post_ids))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . POSTS_TABLE . '
d6e8d8
					SET post_reported = 1 - post_reported
d6e8d8
					WHERE ' . $db->sql_in_set('post_id', $post_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'topic_reported':
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				sync('post_reported', $where_type, $where_ids);
d6e8d8
			}
d6e8d8
d6e8d8
			$topic_ids = $topic_reported = array();
d6e8d8
d6e8d8
			$sql = 'SELECT DISTINCT(t.topic_id)
d6e8d8
				FROM ' . POSTS_TABLE . " t
d6e8d8
				$where_sql_and t.post_reported = 1";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$topic_reported[$row['topic_id']] = 1;
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$sql = 'SELECT t.topic_id, t.topic_reported
d6e8d8
				FROM ' . TOPICS_TABLE . " t
d6e8d8
				$where_sql";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if ($row['topic_reported'] ^ isset($topic_reported[$row['topic_id']]))
d6e8d8
				{
d6e8d8
					$topic_ids[] = $row['topic_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if (sizeof($topic_ids))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
					SET topic_reported = 1 - topic_reported
d6e8d8
					WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'post_attachment':
d6e8d8
			$post_ids = $post_attachment = array();
d6e8d8
d6e8d8
			$sql = 'SELECT p.post_id, p.post_attachment
d6e8d8
				FROM ' . POSTS_TABLE . " p
d6e8d8
				$where_sql
d6e8d8
				GROUP BY p.post_id, p.post_attachment";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$post_ids[$row['post_id']] = $row['post_id'];
d6e8d8
				if ($row['post_attachment'])
d6e8d8
				{
d6e8d8
					$post_attachment[$row['post_id']] = 1;
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$sql = 'SELECT DISTINCT(post_msg_id)
d6e8d8
				FROM ' . ATTACHMENTS_TABLE . '
d6e8d8
				WHERE ' . $db->sql_in_set('post_msg_id', $post_ids) . '
d6e8d8
					AND in_message = 0';
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$post_ids = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if (!isset($post_attachment[$row['post_msg_id']]))
d6e8d8
				{
d6e8d8
					$post_ids[] = $row['post_msg_id'];
d6e8d8
				}
d6e8d8
				else
d6e8d8
				{
d6e8d8
					unset($post_attachment[$row['post_msg_id']]);
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			// $post_attachment should be empty by now, if it's not it contains
d6e8d8
			// posts that are falsely flagged as having attachments
d6e8d8
			foreach ($post_attachment as $post_id => $void)
d6e8d8
			{
d6e8d8
				$post_ids[] = $post_id;
d6e8d8
			}
d6e8d8
d6e8d8
			if (sizeof($post_ids))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . POSTS_TABLE . '
d6e8d8
					SET post_attachment = 1 - post_attachment
d6e8d8
					WHERE ' . $db->sql_in_set('post_id', $post_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'topic_attachment':
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				sync('post_attachment', $where_type, $where_ids);
d6e8d8
			}
d6e8d8
d6e8d8
			$topic_ids = $topic_attachment = array();
d6e8d8
d6e8d8
			$sql = 'SELECT DISTINCT(t.topic_id)
d6e8d8
				FROM ' . POSTS_TABLE . " t
d6e8d8
				$where_sql_and t.post_attachment = 1";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$topic_attachment[$row['topic_id']] = 1;
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			$sql = 'SELECT t.topic_id, t.topic_attachment
d6e8d8
				FROM ' . TOPICS_TABLE . " t
d6e8d8
				$where_sql";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if ($row['topic_attachment'] ^ isset($topic_attachment[$row['topic_id']]))
d6e8d8
				{
d6e8d8
					$topic_ids[] = $row['topic_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if (sizeof($topic_ids))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
					SET topic_attachment = 1 - topic_attachment
d6e8d8
					WHERE ' . $db->sql_in_set('topic_id', $topic_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'forum':
d6e8d8
d6e8d8
			// 1: Get the list of all forums
d6e8d8
			$sql = 'SELECT f.*
d6e8d8
				FROM ' . FORUMS_TABLE . " f
d6e8d8
				$where_sql";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$forum_data = $forum_ids = $post_ids = $last_post_id = $post_info = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if ($row['forum_type'] == FORUM_LINK)
d6e8d8
				{
d6e8d8
					continue;
d6e8d8
				}
d6e8d8
d6e8d8
				$forum_id = (int) $row['forum_id'];
d6e8d8
				$forum_ids[$forum_id] = $forum_id;
d6e8d8
d6e8d8
				$forum_data[$forum_id] = $row;
d6e8d8
				if ($sync_extra)
d6e8d8
				{
d6e8d8
					$forum_data[$forum_id]['posts'] = 0;
d6e8d8
					$forum_data[$forum_id]['topics'] = 0;
d6e8d8
					$forum_data[$forum_id]['topics_real'] = 0;
d6e8d8
				}
d6e8d8
				$forum_data[$forum_id]['last_post_id'] = 0;
d6e8d8
				$forum_data[$forum_id]['last_post_subject'] = '';
d6e8d8
				$forum_data[$forum_id]['last_post_time'] = 0;
d6e8d8
				$forum_data[$forum_id]['last_poster_id'] = 0;
d6e8d8
				$forum_data[$forum_id]['last_poster_name'] = '';
d6e8d8
				$forum_data[$forum_id]['last_poster_colour'] = '';
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if (!sizeof($forum_ids))
d6e8d8
			{
d6e8d8
				break;
d6e8d8
			}
d6e8d8
d6e8d8
			$forum_ids = array_values($forum_ids);
d6e8d8
d6e8d8
			// 2: Get topic counts for each forum (optional)
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				$sql = 'SELECT forum_id, topic_approved, COUNT(topic_id) AS forum_topics
d6e8d8
					FROM ' . TOPICS_TABLE . '
d6e8d8
					WHERE ' . $db->sql_in_set('forum_id', $forum_ids) . '
d6e8d8
					GROUP BY forum_id, topic_approved';
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$forum_id = (int) $row['forum_id'];
d6e8d8
					$forum_data[$forum_id]['topics_real'] += $row['forum_topics'];
d6e8d8
d6e8d8
					if ($row['topic_approved'])
d6e8d8
					{
d6e8d8
						$forum_data[$forum_id]['topics'] = $row['forum_topics'];
d6e8d8
					}
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
			}
d6e8d8
d6e8d8
			// 3: Get post count for each forum (optional)
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				if (sizeof($forum_ids) == 1)
d6e8d8
				{
d6e8d8
					$sql = 'SELECT SUM(t.topic_replies + 1) AS forum_posts
d6e8d8
						FROM ' . TOPICS_TABLE . ' t
d6e8d8
						WHERE ' . $db->sql_in_set('t.forum_id', $forum_ids) . '
d6e8d8
							AND t.topic_approved = 1
d6e8d8
							AND t.topic_status <> ' . ITEM_MOVED;
d6e8d8
				}
d6e8d8
				else
d6e8d8
				{
d6e8d8
					$sql = 'SELECT t.forum_id, SUM(t.topic_replies + 1) AS forum_posts
d6e8d8
						FROM ' . TOPICS_TABLE . ' t
d6e8d8
						WHERE ' . $db->sql_in_set('t.forum_id', $forum_ids) . '
d6e8d8
							AND t.topic_approved = 1
d6e8d8
							AND t.topic_status <> ' . ITEM_MOVED . '
d6e8d8
						GROUP BY t.forum_id';
d6e8d8
				}
d6e8d8
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$forum_id = (sizeof($forum_ids) == 1) ? (int) $forum_ids[0] : (int) $row['forum_id'];
d6e8d8
d6e8d8
					$forum_data[$forum_id]['posts'] = (int) $row['forum_posts'];
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
			}
d6e8d8
d6e8d8
			// 4: Get last_post_id for each forum
d6e8d8
			if (sizeof($forum_ids) == 1)
d6e8d8
			{
d6e8d8
				$sql = 'SELECT MAX(t.topic_last_post_id) as last_post_id
d6e8d8
					FROM ' . TOPICS_TABLE . ' t
d6e8d8
					WHERE ' . $db->sql_in_set('t.forum_id', $forum_ids) . '
d6e8d8
						AND t.topic_approved = 1';
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$sql = 'SELECT t.forum_id, MAX(t.topic_last_post_id) as last_post_id
d6e8d8
					FROM ' . TOPICS_TABLE . ' t
d6e8d8
					WHERE ' . $db->sql_in_set('t.forum_id', $forum_ids) . '
d6e8d8
						AND t.topic_approved = 1
d6e8d8
					GROUP BY t.forum_id';
d6e8d8
			}
d6e8d8
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$forum_id = (sizeof($forum_ids) == 1) ? (int) $forum_ids[0] : (int) $row['forum_id'];
d6e8d8
d6e8d8
				$forum_data[$forum_id]['last_post_id'] = (int) $row['last_post_id'];
d6e8d8
d6e8d8
				$post_ids[] = $row['last_post_id'];
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			// 5: Retrieve last_post infos
d6e8d8
			if (sizeof($post_ids))
d6e8d8
			{
d6e8d8
				$sql = 'SELECT p.post_id, p.poster_id, p.post_subject, p.post_time, p.post_username, u.username, u.user_colour
d6e8d8
					FROM ' . POSTS_TABLE . ' p, ' . USERS_TABLE . ' u
d6e8d8
					WHERE ' . $db->sql_in_set('p.post_id', $post_ids) . '
d6e8d8
						AND p.poster_id = u.user_id';
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$post_info[$row['post_id']] = $row;
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				foreach ($forum_data as $forum_id => $data)
d6e8d8
				{
d6e8d8
					if ($data['last_post_id'])
d6e8d8
					{
d6e8d8
						if (isset($post_info[$data['last_post_id']]))
d6e8d8
						{
d6e8d8
							$forum_data[$forum_id]['last_post_subject'] = $post_info[$data['last_post_id']]['post_subject'];
d6e8d8
							$forum_data[$forum_id]['last_post_time'] = $post_info[$data['last_post_id']]['post_time'];
d6e8d8
							$forum_data[$forum_id]['last_poster_id'] = $post_info[$data['last_post_id']]['poster_id'];
d6e8d8
							$forum_data[$forum_id]['last_poster_name'] = ($post_info[$data['last_post_id']]['poster_id'] != ANONYMOUS) ? $post_info[$data['last_post_id']]['username'] : $post_info[$data['last_post_id']]['post_username'];
d6e8d8
							$forum_data[$forum_id]['last_poster_colour'] = $post_info[$data['last_post_id']]['user_colour'];
d6e8d8
						}
d6e8d8
						else
d6e8d8
						{
d6e8d8
							// For some reason we did not find the post in the db
d6e8d8
							$forum_data[$forum_id]['last_post_id'] = 0;
d6e8d8
							$forum_data[$forum_id]['last_post_subject'] = '';
d6e8d8
							$forum_data[$forum_id]['last_post_time'] = 0;
d6e8d8
							$forum_data[$forum_id]['last_poster_id'] = 0;
d6e8d8
							$forum_data[$forum_id]['last_poster_name'] = '';
d6e8d8
							$forum_data[$forum_id]['last_poster_colour'] = '';
d6e8d8
						}
d6e8d8
					}
d6e8d8
				}
d6e8d8
				unset($post_info);
d6e8d8
			}
d6e8d8
d6e8d8
			// 6: Now do that thing
d6e8d8
			$fieldnames = array('last_post_id', 'last_post_subject', 'last_post_time', 'last_poster_id', 'last_poster_name', 'last_poster_colour');
d6e8d8
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				array_push($fieldnames, 'posts', 'topics', 'topics_real');
d6e8d8
			}
d6e8d8
d6e8d8
			foreach ($forum_data as $forum_id => $row)
d6e8d8
			{
d6e8d8
				$sql_ary = array();
d6e8d8
d6e8d8
				foreach ($fieldnames as $fieldname)
d6e8d8
				{
d6e8d8
					if ($row['forum_' . $fieldname] != $row[$fieldname])
d6e8d8
					{
d6e8d8
						if (preg_match('#(name|colour|subject)$#', $fieldname))
d6e8d8
						{
d6e8d8
							$sql_ary['forum_' . $fieldname] = (string) $row[$fieldname];
d6e8d8
						}
d6e8d8
						else
d6e8d8
						{
d6e8d8
							$sql_ary['forum_' . $fieldname] = (int) $row[$fieldname];
d6e8d8
						}
d6e8d8
					}
d6e8d8
				}
d6e8d8
d6e8d8
				if (sizeof($sql_ary))
d6e8d8
				{
d6e8d8
					$sql = 'UPDATE ' . FORUMS_TABLE . '
d6e8d8
						SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
d6e8d8
						WHERE forum_id = ' . $forum_id;
d6e8d8
					$db->sql_query($sql);
d6e8d8
				}
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'topic':
d6e8d8
			$topic_data = $post_ids = $approved_unapproved_ids = $resync_forums = $delete_topics = $delete_posts = $moved_topics = array();
d6e8d8
d6e8d8
			$sql = 'SELECT t.topic_id, t.forum_id, t.topic_moved_id, t.topic_approved, ' . (($sync_extra) ? 't.topic_attachment, t.topic_reported, ' : '') . 't.topic_poster, t.topic_time, t.topic_replies, t.topic_replies_real, t.topic_first_post_id, t.topic_first_poster_name, t.topic_first_poster_colour, t.topic_last_post_id, t.topic_last_post_subject, t.topic_last_poster_id, t.topic_last_poster_name, t.topic_last_poster_colour, t.topic_last_post_time
d6e8d8
				FROM ' . TOPICS_TABLE . " t
d6e8d8
				$where_sql";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				if ($row['topic_moved_id'])
d6e8d8
				{
d6e8d8
					$moved_topics[] = $row['topic_id'];
d6e8d8
					continue;
d6e8d8
				}
d6e8d8
d6e8d8
				$topic_id = (int) $row['topic_id'];
d6e8d8
				$topic_data[$topic_id] = $row;
d6e8d8
				$topic_data[$topic_id]['replies_real'] = -1;
d6e8d8
				$topic_data[$topic_id]['replies'] = 0;
d6e8d8
				$topic_data[$topic_id]['first_post_id'] = 0;
d6e8d8
				$topic_data[$topic_id]['last_post_id'] = 0;
d6e8d8
				unset($topic_data[$topic_id]['topic_id']);
d6e8d8
d6e8d8
				// This array holds all topic_ids
d6e8d8
				$delete_topics[$topic_id] = '';
d6e8d8
d6e8d8
				if ($sync_extra)
d6e8d8
				{
d6e8d8
					$topic_data[$topic_id]['reported'] = 0;
d6e8d8
					$topic_data[$topic_id]['attachment'] = 0;
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			// Use "t" as table alias because of the $where_sql clause
d6e8d8
			// NOTE: 't.post_approved' in the GROUP BY is causing a major slowdown.
d6e8d8
			$sql = 'SELECT t.topic_id, t.post_approved, COUNT(t.post_id) AS total_posts, MIN(t.post_id) AS first_post_id, MAX(t.post_id) AS last_post_id
d6e8d8
				FROM ' . POSTS_TABLE . " t
d6e8d8
				$where_sql
d6e8d8
				GROUP BY t.topic_id, t.post_approved";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$topic_id = (int) $row['topic_id'];
d6e8d8
d6e8d8
				$row['first_post_id'] = (int) $row['first_post_id'];
d6e8d8
				$row['last_post_id'] = (int) $row['last_post_id'];
d6e8d8
d6e8d8
				if (!isset($topic_data[$topic_id]))
d6e8d8
				{
d6e8d8
					// Hey, these posts come from a topic that does not exist
d6e8d8
					$delete_posts[$topic_id] = '';
d6e8d8
				}
d6e8d8
				else
d6e8d8
				{
d6e8d8
					// Unset the corresponding entry in $delete_topics
d6e8d8
					// When we'll be done, only topics with no posts will remain
d6e8d8
					unset($delete_topics[$topic_id]);
d6e8d8
d6e8d8
					$topic_data[$topic_id]['replies_real'] += $row['total_posts'];
d6e8d8
					$topic_data[$topic_id]['first_post_id'] = (!$topic_data[$topic_id]['first_post_id']) ? $row['first_post_id'] : min($topic_data[$topic_id]['first_post_id'], $row['first_post_id']);
d6e8d8
d6e8d8
					if ($row['post_approved'] || !$topic_data[$topic_id]['last_post_id'])
d6e8d8
					{
d6e8d8
						$topic_data[$topic_id]['replies'] = $row['total_posts'] - 1;
d6e8d8
						$topic_data[$topic_id]['last_post_id'] = $row['last_post_id'];
d6e8d8
					}
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			foreach ($topic_data as $topic_id => $row)
d6e8d8
			{
d6e8d8
				$post_ids[] = $row['first_post_id'];
d6e8d8
				if ($row['first_post_id'] != $row['last_post_id'])
d6e8d8
				{
d6e8d8
					$post_ids[] = $row['last_post_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
d6e8d8
			// Now we delete empty topics and orphan posts
d6e8d8
			if (sizeof($delete_posts))
d6e8d8
			{
d6e8d8
				delete_posts('topic_id', array_keys($delete_posts), false);
d6e8d8
				unset($delete_posts);
d6e8d8
			}
d6e8d8
d6e8d8
			if (!sizeof($topic_data))
d6e8d8
			{
d6e8d8
				// If we get there, topic ids were invalid or topics did not contain any posts
d6e8d8
				delete_topics($where_type, $where_ids, true);
d6e8d8
				return;
d6e8d8
			}
d6e8d8
d6e8d8
			if (sizeof($delete_topics))
d6e8d8
			{
d6e8d8
				$delete_topic_ids = array();
d6e8d8
				foreach ($delete_topics as $topic_id => $void)
d6e8d8
				{
d6e8d8
					unset($topic_data[$topic_id]);
d6e8d8
					$delete_topic_ids[] = $topic_id;
d6e8d8
				}
d6e8d8
d6e8d8
				delete_topics('topic_id', $delete_topic_ids, false);
d6e8d8
				unset($delete_topics, $delete_topic_ids);
d6e8d8
			}
d6e8d8
d6e8d8
			$sql = 'SELECT p.post_id, p.topic_id, p.post_approved, p.poster_id, p.post_subject, p.post_username, p.post_time, u.username, u.user_colour
d6e8d8
				FROM ' . POSTS_TABLE . ' p, ' . USERS_TABLE . ' u
d6e8d8
				WHERE ' . $db->sql_in_set('p.post_id', $post_ids) . '
d6e8d8
					AND u.user_id = p.poster_id';
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$post_ids = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$topic_id = intval($row['topic_id']);
d6e8d8
d6e8d8
				if ($row['post_id'] == $topic_data[$topic_id]['first_post_id'])
d6e8d8
				{
d6e8d8
					if ($topic_data[$topic_id]['topic_approved'] != $row['post_approved'])
d6e8d8
					{
d6e8d8
						$approved_unapproved_ids[] = $topic_id;
d6e8d8
					}
d6e8d8
					$topic_data[$topic_id]['time'] = $row['post_time'];
d6e8d8
					$topic_data[$topic_id]['poster'] = $row['poster_id'];
d6e8d8
					$topic_data[$topic_id]['first_poster_name'] = ($row['poster_id'] == ANONYMOUS) ? $row['post_username'] : $row['username'];
d6e8d8
					$topic_data[$topic_id]['first_poster_colour'] = $row['user_colour'];
d6e8d8
				}
d6e8d8
d6e8d8
				if ($row['post_id'] == $topic_data[$topic_id]['last_post_id'])
d6e8d8
				{
d6e8d8
					$topic_data[$topic_id]['last_poster_id'] = $row['poster_id'];
d6e8d8
					$topic_data[$topic_id]['last_post_subject'] = $row['post_subject'];
d6e8d8
					$topic_data[$topic_id]['last_post_time'] = $row['post_time'];
d6e8d8
					$topic_data[$topic_id]['last_poster_name'] = ($row['poster_id'] == ANONYMOUS) ? $row['post_username'] : $row['username'];
d6e8d8
					$topic_data[$topic_id]['last_poster_colour'] = $row['user_colour'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			// Make sure shadow topics do link to existing topics
d6e8d8
			if (sizeof($moved_topics))
d6e8d8
			{
d6e8d8
				$delete_topics = array();
d6e8d8
d6e8d8
				$sql = 'SELECT t1.topic_id, t1.topic_moved_id
d6e8d8
					FROM ' . TOPICS_TABLE . ' t1
d6e8d8
					LEFT JOIN ' . TOPICS_TABLE . ' t2 ON (t2.topic_id = t1.topic_moved_id)
d6e8d8
					WHERE ' . $db->sql_in_set('t1.topic_id', $moved_topics) . '
d6e8d8
						AND t2.topic_id IS NULL';
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$delete_topics[] = $row['topic_id'];
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				if (sizeof($delete_topics))
d6e8d8
				{
d6e8d8
					delete_topics('topic_id', $delete_topics, false);
d6e8d8
				}
d6e8d8
				unset($delete_topics);
d6e8d8
d6e8d8
				// Make sure shadow topics having no last post data being updated (this only rarely happens...)
d6e8d8
				$sql = 'SELECT topic_id, topic_moved_id, topic_last_post_id, topic_first_post_id
d6e8d8
					FROM ' . TOPICS_TABLE . '
d6e8d8
					WHERE ' . $db->sql_in_set('topic_id', $moved_topics) . '
d6e8d8
						AND topic_last_post_time = 0';
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				$shadow_topic_data = $post_ids = array();
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$shadow_topic_data[$row['topic_moved_id']] = $row;
d6e8d8
					$post_ids[] = $row['topic_last_post_id'];
d6e8d8
					$post_ids[] = $row['topic_first_post_id'];
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				$sync_shadow_topics = array();
d6e8d8
				if (sizeof($post_ids))
d6e8d8
				{
d6e8d8
					$sql = 'SELECT p.post_id, p.topic_id, p.post_approved, p.poster_id, p.post_subject, p.post_username, p.post_time, u.username, u.user_colour
d6e8d8
						FROM ' . POSTS_TABLE . ' p, ' . USERS_TABLE . ' u
d6e8d8
						WHERE ' . $db->sql_in_set('p.post_id', $post_ids) . '
d6e8d8
							AND u.user_id = p.poster_id';
d6e8d8
					$result = $db->sql_query($sql);
d6e8d8
d6e8d8
					$post_ids = array();
d6e8d8
					while ($row = $db->sql_fetchrow($result))
d6e8d8
					{
d6e8d8
						$topic_id = (int) $row['topic_id'];
d6e8d8
d6e8d8
						// Ok, there should be a shadow topic. If there isn't, then there's something wrong with the db.
d6e8d8
						// However, there's not much we can do about it.
d6e8d8
						if (!empty($shadow_topic_data[$topic_id]))
d6e8d8
						{
d6e8d8
							if ($row['post_id'] == $shadow_topic_data[$topic_id]['topic_first_post_id'])
d6e8d8
							{
d6e8d8
								$orig_topic_id = $shadow_topic_data[$topic_id]['topic_id'];
d6e8d8
d6e8d8
								if (!isset($sync_shadow_topics[$orig_topic_id]))
d6e8d8
								{
d6e8d8
									$sync_shadow_topics[$orig_topic_id] = array();
d6e8d8
								}
d6e8d8
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_time'] = $row['post_time'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_poster'] = $row['poster_id'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_first_poster_name'] = ($row['poster_id'] == ANONYMOUS) ? $row['post_username'] : $row['username'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_first_poster_colour'] = $row['user_colour'];
d6e8d8
							}
d6e8d8
d6e8d8
							if ($row['post_id'] == $shadow_topic_data[$topic_id]['topic_last_post_id'])
d6e8d8
							{
d6e8d8
								$orig_topic_id = $shadow_topic_data[$topic_id]['topic_id'];
d6e8d8
d6e8d8
								if (!isset($sync_shadow_topics[$orig_topic_id]))
d6e8d8
								{
d6e8d8
									$sync_shadow_topics[$orig_topic_id] = array();
d6e8d8
								}
d6e8d8
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_last_poster_id'] = $row['poster_id'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_last_post_subject'] = $row['post_subject'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_last_post_time'] = $row['post_time'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_last_poster_name'] = ($row['poster_id'] == ANONYMOUS) ? $row['post_username'] : $row['username'];
d6e8d8
								$sync_shadow_topics[$orig_topic_id]['topic_last_poster_colour'] = $row['user_colour'];
d6e8d8
							}
d6e8d8
						}
d6e8d8
					}
d6e8d8
					$db->sql_freeresult($result);
d6e8d8
d6e8d8
					$shadow_topic_data = array();
d6e8d8
d6e8d8
					// Update the information we collected
d6e8d8
					if (sizeof($sync_shadow_topics))
d6e8d8
					{
d6e8d8
						foreach ($sync_shadow_topics as $sync_topic_id => $sql_ary)
d6e8d8
						{
d6e8d8
							$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
								SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
d6e8d8
								WHERE topic_id = ' . $sync_topic_id;
d6e8d8
							$db->sql_query($sql);
d6e8d8
						}
d6e8d8
					}
d6e8d8
				}
d6e8d8
d6e8d8
				unset($sync_shadow_topics, $shadow_topic_data);
d6e8d8
			}
d6e8d8
d6e8d8
			// approved becomes unapproved, and vice-versa
d6e8d8
			if (sizeof($approved_unapproved_ids))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
					SET topic_approved = 1 - topic_approved
d6e8d8
					WHERE ' . $db->sql_in_set('topic_id', $approved_unapproved_ids);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
			unset($approved_unapproved_ids);
d6e8d8
d6e8d8
			// These are fields that will be synchronised
d6e8d8
			$fieldnames = array('time', 'replies', 'replies_real', 'poster', 'first_post_id', 'first_poster_name', 'first_poster_colour', 'last_post_id', 'last_post_subject', 'last_post_time', 'last_poster_id', 'last_poster_name', 'last_poster_colour');
d6e8d8
d6e8d8
			if ($sync_extra)
d6e8d8
			{
d6e8d8
				// This routine assumes that post_reported values are correct
d6e8d8
				// if they are not, use sync('post_reported') first
d6e8d8
				$sql = 'SELECT t.topic_id, p.post_id
d6e8d8
					FROM ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . " p
d6e8d8
					$where_sql_and p.topic_id = t.topic_id
d6e8d8
						AND p.post_reported = 1
d6e8d8
					GROUP BY t.topic_id, p.post_id";
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				$fieldnames[] = 'reported';
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$topic_data[intval($row['topic_id'])]['reported'] = 1;
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				// This routine assumes that post_attachment values are correct
d6e8d8
				// if they are not, use sync('post_attachment') first
d6e8d8
				$sql = 'SELECT t.topic_id, p.post_id
d6e8d8
					FROM ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . " p
d6e8d8
					$where_sql_and p.topic_id = t.topic_id
d6e8d8
						AND p.post_attachment = 1
d6e8d8
					GROUP BY t.topic_id, p.post_id";
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				$fieldnames[] = 'attachment';
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$topic_data[intval($row['topic_id'])]['attachment'] = 1;
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
			}
d6e8d8
d6e8d8
			foreach ($topic_data as $topic_id => $row)
d6e8d8
			{
d6e8d8
				$sql_ary = array();
d6e8d8
d6e8d8
				foreach ($fieldnames as $fieldname)
d6e8d8
				{
d6e8d8
					if (isset($row[$fieldname]) && isset($row['topic_' . $fieldname]) && $row['topic_' . $fieldname] != $row[$fieldname])
d6e8d8
					{
d6e8d8
						$sql_ary['topic_' . $fieldname] = $row[$fieldname];
d6e8d8
					}
d6e8d8
				}
d6e8d8
d6e8d8
				if (sizeof($sql_ary))
d6e8d8
				{
d6e8d8
					$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
						SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
d6e8d8
						WHERE topic_id = ' . $topic_id;
d6e8d8
					$db->sql_query($sql);
d6e8d8
d6e8d8
					$resync_forums[$row['forum_id']] = $row['forum_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
			unset($topic_data);
d6e8d8
d6e8d8
			// if some topics have been resync'ed then resync parent forums
d6e8d8
			// except when we're only syncing a range, we don't want to sync forums during
d6e8d8
			// batch processing.
d6e8d8
			if ($resync_parents && sizeof($resync_forums) && $where_type != 'range')
d6e8d8
			{
d6e8d8
				sync('forum', 'forum_id', array_values($resync_forums), true, true);
d6e8d8
			}
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	return;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Prune function
d6e8d8
*/
d6e8d8
function prune($forum_id, $prune_mode, $prune_date, $prune_flags = 0, $auto_sync = true)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	if (!is_array($forum_id))
d6e8d8
	{
d6e8d8
		$forum_id = array($forum_id);
d6e8d8
	}
d6e8d8
d6e8d8
	if (!sizeof($forum_id))
d6e8d8
	{
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	$sql_and = '';
d6e8d8
d6e8d8
	if (!($prune_flags & FORUM_FLAG_PRUNE_ANNOUNCE))
d6e8d8
	{
d6e8d8
		$sql_and .= ' AND topic_type <> ' . POST_ANNOUNCE;
d6e8d8
	}
d6e8d8
d6e8d8
	if (!($prune_flags & FORUM_FLAG_PRUNE_STICKY))
d6e8d8
	{
d6e8d8
		$sql_and .= ' AND topic_type <> ' . POST_STICKY;
d6e8d8
	}
d6e8d8
d6e8d8
	if ($prune_mode == 'posted')
d6e8d8
	{
d6e8d8
		$sql_and .= " AND topic_last_post_time < $prune_date";
d6e8d8
	}
d6e8d8
d6e8d8
	if ($prune_mode == 'viewed')
d6e8d8
	{
d6e8d8
		$sql_and .= " AND topic_last_view_time < $prune_date";
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = 'SELECT topic_id
d6e8d8
		FROM ' . TOPICS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('forum_id', $forum_id) . "
d6e8d8
			AND poll_start = 0
d6e8d8
			$sql_and";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$topic_list = array();
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$topic_list[] = $row['topic_id'];
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if ($prune_flags & FORUM_FLAG_PRUNE_POLL)
d6e8d8
	{
d6e8d8
		$sql = 'SELECT topic_id
d6e8d8
			FROM ' . TOPICS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('forum_id', $forum_id) . "
d6e8d8
				AND poll_start > 0
d6e8d8
				AND poll_last_vote < $prune_date
d6e8d8
				$sql_and";
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$topic_list[] = $row['topic_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		$topic_list = array_unique($topic_list);
d6e8d8
	}
d6e8d8
d6e8d8
	return delete_topics('topic_id', $topic_list, $auto_sync, false);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Function auto_prune(), this function now relies on passed vars
d6e8d8
*/
d6e8d8
function auto_prune($forum_id, $prune_mode, $prune_flags, $prune_days, $prune_freq)
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	$sql = 'SELECT forum_name
d6e8d8
		FROM ' . FORUMS_TABLE . "
d6e8d8
		WHERE forum_id = $forum_id";
d6e8d8
	$result = $db->sql_query($sql, 3600);
d6e8d8
	$row = $db->sql_fetchrow($result);
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if ($row)
d6e8d8
	{
d6e8d8
		$prune_date = time() - ($prune_days * 86400);
d6e8d8
		$next_prune = time() + ($prune_freq * 86400);
d6e8d8
d6e8d8
		prune($forum_id, $prune_mode, $prune_date, $prune_flags, true);
d6e8d8
d6e8d8
		$sql = 'UPDATE ' . FORUMS_TABLE . "
d6e8d8
			SET prune_next = $next_prune
d6e8d8
			WHERE forum_id = $forum_id";
d6e8d8
		$db->sql_query($sql);
d6e8d8
d6e8d8
		add_log('admin', 'LOG_AUTO_PRUNE', $row['forum_name']);
d6e8d8
	}
d6e8d8
d6e8d8
	return;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* remove_comments will strip the sql comment lines out of an uploaded sql file
d6e8d8
* specifically for mssql and postgres type files in the install....
d6e8d8
*/
d6e8d8
function remove_comments(&$output)
d6e8d8
{
d6e8d8
	$lines = explode("\n", $output);
d6e8d8
	$output = '';
d6e8d8
d6e8d8
	// try to keep mem. use down
d6e8d8
	$linecount = sizeof($lines);
d6e8d8
d6e8d8
	$in_comment = false;
d6e8d8
	for ($i = 0; $i < $linecount; $i++)
d6e8d8
	{
d6e8d8
		if (trim($lines[$i]) == '/*')
d6e8d8
		{
d6e8d8
			$in_comment = true;
d6e8d8
		}
d6e8d8
d6e8d8
		if (!$in_comment)
d6e8d8
		{
d6e8d8
			$output .= $lines[$i] . "\n";
d6e8d8
		}
d6e8d8
d6e8d8
		if (trim($lines[$i]) == '*/')
d6e8d8
		{
d6e8d8
			$in_comment = false;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	unset($lines);
d6e8d8
	return $output;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Cache moderators, called whenever permissions are changed via admin_permissions. Changes of username
d6e8d8
* and group names must be carried through for the moderators table
d6e8d8
*/
d6e8d8
function cache_moderators()
d6e8d8
{
d6e8d8
	global $db, $cache, $auth, $phpbb_root_path, $phpEx;
d6e8d8
d6e8d8
	// Remove cached sql results
d6e8d8
	$cache->destroy('sql', MODERATOR_CACHE_TABLE);
d6e8d8
d6e8d8
	// Clear table
d6e8d8
	switch ($db->sql_layer)
d6e8d8
	{
d6e8d8
		case 'sqlite':
d6e8d8
		case 'firebird':
d6e8d8
			$db->sql_query('DELETE FROM ' . MODERATOR_CACHE_TABLE);
d6e8d8
		break;
d6e8d8
d6e8d8
		default:
d6e8d8
			$db->sql_query('TRUNCATE TABLE ' . MODERATOR_CACHE_TABLE);
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	// We add moderators who have forum moderator permissions without an explicit ACL_NEVER setting
d6e8d8
	$hold_ary = $ug_id_ary = $sql_ary = array();
d6e8d8
d6e8d8
	// Grab all users having moderative options...
d6e8d8
	$hold_ary = $auth->acl_user_raw_data(false, 'm_%', false);
d6e8d8
d6e8d8
	// Add users?
d6e8d8
	if (sizeof($hold_ary))
d6e8d8
	{
d6e8d8
		// At least one moderative option warrants a display
d6e8d8
		$ug_id_ary = array_keys($hold_ary);
d6e8d8
d6e8d8
		// Remove users who have group memberships with DENY moderator permissions
d6e8d8
		$sql = $db->sql_build_query('SELECT', array(
d6e8d8
			'SELECT'	=> 'a.forum_id, ug.user_id',
d6e8d8
d6e8d8
			'FROM'		=> array(
d6e8d8
				ACL_OPTIONS_TABLE	=> 'o',
d6e8d8
				USER_GROUP_TABLE	=> 'ug',
d6e8d8
				ACL_GROUPS_TABLE	=> 'a'
d6e8d8
			),
d6e8d8
d6e8d8
			'LEFT_JOIN'	=> array(
d6e8d8
				array(
d6e8d8
					'FROM'	=> array(ACL_ROLES_DATA_TABLE => 'r'),
d6e8d8
					'ON'	=> 'a.auth_role_id = r.role_id'
d6e8d8
				)
d6e8d8
			),
d6e8d8
d6e8d8
			'WHERE'		=> '(o.auth_option_id = a.auth_option_id OR o.auth_option_id = r.auth_option_id)
d6e8d8
				AND ((a.auth_setting = ' . ACL_NEVER . ' AND r.auth_setting IS NULL)
d6e8d8
					OR r.auth_setting = ' . ACL_NEVER . ')
d6e8d8
				AND a.group_id = ug.group_id
d6e8d8
				AND ' . $db->sql_in_set('ug.user_id', $ug_id_ary) . "
d6e8d8
				AND ug.user_pending = 0
d6e8d8
				AND o.auth_option " . $db->sql_like_expression('m_' . $db->any_char),
d6e8d8
		));
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			if (isset($hold_ary[$row['user_id']][$row['forum_id']]))
d6e8d8
			{
d6e8d8
				unset($hold_ary[$row['user_id']][$row['forum_id']]);
d6e8d8
			}
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		if (sizeof($hold_ary))
d6e8d8
		{
d6e8d8
			// Get usernames...
d6e8d8
			$sql = 'SELECT user_id, username
d6e8d8
				FROM ' . USERS_TABLE . '
d6e8d8
				WHERE ' . $db->sql_in_set('user_id', array_keys($hold_ary));
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
d6e8d8
			$usernames_ary = array();
d6e8d8
			while ($row = $db->sql_fetchrow($result))
d6e8d8
			{
d6e8d8
				$usernames_ary[$row['user_id']] = $row['username'];
d6e8d8
			}
d6e8d8
d6e8d8
			foreach ($hold_ary as $user_id => $forum_id_ary)
d6e8d8
			{
d6e8d8
				// Do not continue if user does not exist
d6e8d8
				if (!isset($usernames_ary[$user_id]))
d6e8d8
				{
d6e8d8
					continue;
d6e8d8
				}
d6e8d8
d6e8d8
				foreach ($forum_id_ary as $forum_id => $auth_ary)
d6e8d8
				{
d6e8d8
					$sql_ary[] = array(
d6e8d8
						'forum_id'		=> (int) $forum_id,
d6e8d8
						'user_id'		=> (int) $user_id,
d6e8d8
						'username'		=> (string) $usernames_ary[$user_id],
d6e8d8
						'group_id'		=> 0,
d6e8d8
						'group_name'	=> ''
d6e8d8
					);
d6e8d8
				}
d6e8d8
			}
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	// Now to the groups...
d6e8d8
	$hold_ary = $auth->acl_group_raw_data(false, 'm_%', false);
d6e8d8
d6e8d8
	if (sizeof($hold_ary))
d6e8d8
	{
d6e8d8
		$ug_id_ary = array_keys($hold_ary);
d6e8d8
d6e8d8
		// Make sure not hidden or special groups are involved...
d6e8d8
		$sql = 'SELECT group_name, group_id, group_type
d6e8d8
			FROM ' . GROUPS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('group_id', $ug_id_ary);
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		$groupnames_ary = array();
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			if ($row['group_type'] == GROUP_HIDDEN || $row['group_type'] == GROUP_SPECIAL)
d6e8d8
			{
d6e8d8
				unset($hold_ary[$row['group_id']]);
d6e8d8
			}
d6e8d8
d6e8d8
			$groupnames_ary[$row['group_id']] = $row['group_name'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		foreach ($hold_ary as $group_id => $forum_id_ary)
d6e8d8
		{
d6e8d8
			// If there is no group, we do not assign it...
d6e8d8
			if (!isset($groupnames_ary[$group_id]))
d6e8d8
			{
d6e8d8
				continue;
d6e8d8
			}
d6e8d8
d6e8d8
			foreach ($forum_id_ary as $forum_id => $auth_ary)
d6e8d8
			{
d6e8d8
				$flag = false;
d6e8d8
				foreach ($auth_ary as $auth_option => $setting)
d6e8d8
				{
d6e8d8
					// Make sure at least one ACL_YES option is set...
d6e8d8
					if ($setting == ACL_YES)
d6e8d8
					{
d6e8d8
						$flag = true;
d6e8d8
						break;
d6e8d8
					}
d6e8d8
				}
d6e8d8
d6e8d8
				if (!$flag)
d6e8d8
				{
d6e8d8
					continue;
d6e8d8
				}
d6e8d8
d6e8d8
				$sql_ary[] = array(
d6e8d8
					'forum_id'		=> (int) $forum_id,
d6e8d8
					'user_id'		=> 0,
d6e8d8
					'username'		=> '',
d6e8d8
					'group_id'		=> (int) $group_id,
d6e8d8
					'group_name'	=> (string) $groupnames_ary[$group_id]
d6e8d8
				);
d6e8d8
			}
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$db->sql_multi_insert(MODERATOR_CACHE_TABLE, $sql_ary);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* View log
d6e8d8
*/
d6e8d8
function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id = 0, $topic_id = 0, $user_id = 0, $limit_days = 0, $sort_by = 'l.log_time DESC')
d6e8d8
{
d6e8d8
	global $db, $user, $auth, $phpEx, $phpbb_root_path, $phpbb_admin_path;
d6e8d8
d6e8d8
	$topic_id_list = $reportee_id_list = $is_auth = $is_mod = array();
d6e8d8
d6e8d8
	$profile_url = (defined('IN_ADMIN')) ? append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview') : append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=viewprofile');
d6e8d8
d6e8d8
	switch ($mode)
d6e8d8
	{
d6e8d8
		case 'admin':
d6e8d8
			$log_type = LOG_ADMIN;
d6e8d8
			$sql_forum = '';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'mod':
d6e8d8
			$log_type = LOG_MOD;
d6e8d8
d6e8d8
			if ($topic_id)
d6e8d8
			{
d6e8d8
				$sql_forum = 'AND l.topic_id = ' . intval($topic_id);
d6e8d8
			}
d6e8d8
			else if (is_array($forum_id))
d6e8d8
			{
d6e8d8
				$sql_forum = 'AND ' . $db->sql_in_set('l.forum_id', array_map('intval', $forum_id));
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$sql_forum = ($forum_id) ? 'AND l.forum_id = ' . intval($forum_id) : '';
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'user':
d6e8d8
			$log_type = LOG_USERS;
d6e8d8
			$sql_forum = 'AND l.reportee_id = ' . (int) $user_id;
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'users':
d6e8d8
			$log_type = LOG_USERS;
d6e8d8
			$sql_forum = '';
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'critical':
d6e8d8
			$log_type = LOG_CRITICAL;
d6e8d8
			$sql_forum = '';
d6e8d8
		break;
d6e8d8
d6e8d8
		default:
d6e8d8
			return;
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = "SELECT l.*, u.username, u.username_clean, u.user_colour
d6e8d8
		FROM " . LOG_TABLE . " l, " . USERS_TABLE . " u
d6e8d8
		WHERE l.log_type = $log_type
d6e8d8
			AND u.user_id = l.user_id
d6e8d8
			" . (($limit_days) ? "AND l.log_time >= $limit_days" : '') . "
d6e8d8
			$sql_forum
d6e8d8
		ORDER BY $sort_by";
d6e8d8
	$result = $db->sql_query_limit($sql, $limit, $offset);
d6e8d8
d6e8d8
	$i = 0;
d6e8d8
	$log = array();
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		if ($row['topic_id'])
d6e8d8
		{
d6e8d8
			$topic_id_list[] = $row['topic_id'];
d6e8d8
		}
d6e8d8
d6e8d8
		if ($row['reportee_id'])
d6e8d8
		{
d6e8d8
			$reportee_id_list[] = $row['reportee_id'];
d6e8d8
		}
d6e8d8
d6e8d8
		$log[$i] = array(
d6e8d8
			'id'				=> $row['log_id'],
d6e8d8
d6e8d8
			'reportee_id'			=> $row['reportee_id'],
d6e8d8
			'reportee_username'		=> '',
d6e8d8
			'reportee_username_full'=> '',
d6e8d8
d6e8d8
			'user_id'			=> $row['user_id'],
d6e8d8
			'username'			=> $row['username'],
d6e8d8
			'username_full'		=> get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], false, $profile_url),
d6e8d8
d6e8d8
			'ip'				=> $row['log_ip'],
d6e8d8
			'time'				=> $row['log_time'],
d6e8d8
			'forum_id'			=> $row['forum_id'],
d6e8d8
			'topic_id'			=> $row['topic_id'],
d6e8d8
d6e8d8
			'viewforum'			=> ($row['forum_id'] && $auth->acl_get('f_read', $row['forum_id'])) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) : false,
d6e8d8
			'action'			=> (isset($user->lang[$row['log_operation']])) ? $user->lang[$row['log_operation']] : '{' . ucfirst(str_replace('_', ' ', $row['log_operation'])) . '}',
d6e8d8
		);
d6e8d8
d6e8d8
		if (!empty($row['log_data']))
d6e8d8
		{
d6e8d8
			$log_data_ary = unserialize($row['log_data']);
d6e8d8
d6e8d8
			if (isset($user->lang[$row['log_operation']]))
d6e8d8
			{
d6e8d8
				// Check if there are more occurrences of % than arguments, if there are we fill out the arguments array
d6e8d8
				// It doesn't matter if we add more arguments than placeholders
d6e8d8
				if ((substr_count($log[$i]['action'], '%') - sizeof($log_data_ary)) > 0)
d6e8d8
				{
d6e8d8
					$log_data_ary = array_merge($log_data_ary, array_fill(0, substr_count($log[$i]['action'], '%') - sizeof($log_data_ary), ''));
d6e8d8
				}
d6e8d8
d6e8d8
				$log[$i]['action'] = vsprintf($log[$i]['action'], $log_data_ary);
d6e8d8
d6e8d8
				// If within the admin panel we do not censor text out
d6e8d8
				if (defined('IN_ADMIN'))
d6e8d8
				{
d6e8d8
					$log[$i]['action'] = bbcode_nl2br($log[$i]['action']);
d6e8d8
				}
d6e8d8
				else
d6e8d8
				{
d6e8d8
					$log[$i]['action'] = bbcode_nl2br(censor_text($log[$i]['action']));
d6e8d8
				}
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$log[$i]['action'] .= '
' . implode('', $log_data_ary);
d6e8d8
			}
d6e8d8
d6e8d8
			/* Apply make_clickable... has to be seen if it is for good. :/
d6e8d8
			// Seems to be not for the moment, reconsider later...
d6e8d8
			$log[$i]['action'] = make_clickable($log[$i]['action']);
d6e8d8
			*/
d6e8d8
		}
d6e8d8
d6e8d8
		$i++;
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if (sizeof($topic_id_list))
d6e8d8
	{
d6e8d8
		$topic_id_list = array_unique($topic_id_list);
d6e8d8
d6e8d8
		// This query is not really needed if move_topics() updates the forum_id field,
d6e8d8
		// although it's also used to determine if the topic still exists in the database
d6e8d8
		$sql = 'SELECT topic_id, forum_id
d6e8d8
			FROM ' . TOPICS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('topic_id', array_map('intval', $topic_id_list));
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		$default_forum_id = 0;
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			if (!$row['forum_id'])
d6e8d8
			{
d6e8d8
				if ($auth->acl_getf_global('f_read'))
d6e8d8
				{
d6e8d8
					if (!$default_forum_id)
d6e8d8
					{
d6e8d8
						$sql = 'SELECT forum_id
d6e8d8
							FROM ' . FORUMS_TABLE . '
d6e8d8
							WHERE forum_type = ' . FORUM_POST;
d6e8d8
						$f_result = $db->sql_query_limit($sql, 1);
d6e8d8
						$default_forum_id = (int) $db->sql_fetchfield('forum_id', false, $f_result);
d6e8d8
						$db->sql_freeresult($f_result);
d6e8d8
					}
d6e8d8
d6e8d8
					$is_auth[$row['topic_id']] = $default_forum_id;
d6e8d8
				}
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				if ($auth->acl_get('f_read', $row['forum_id']))
d6e8d8
				{
d6e8d8
					$is_auth[$row['topic_id']] = $row['forum_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
d6e8d8
			if ($auth->acl_gets('a_', 'm_', $row['forum_id']))
d6e8d8
			{
d6e8d8
				$is_mod[$row['topic_id']] = $row['forum_id'];
d6e8d8
			}
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		foreach ($log as $key => $row)
d6e8d8
		{
d6e8d8
			$log[$key]['viewtopic'] = (isset($is_auth[$row['topic_id']])) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $is_auth[$row['topic_id']] . '&t=' . $row['topic_id']) : false;
d6e8d8
			$log[$key]['viewlogs'] = (isset($is_mod[$row['topic_id']])) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=logs&mode=topic_logs&t=' . $row['topic_id'], true, $user->session_id) : false;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	if (sizeof($reportee_id_list))
d6e8d8
	{
d6e8d8
		$reportee_id_list = array_unique($reportee_id_list);
d6e8d8
		$reportee_names_list = array();
d6e8d8
d6e8d8
		$sql = 'SELECT user_id, username, user_colour
d6e8d8
			FROM ' . USERS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('user_id', $reportee_id_list);
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$reportee_names_list[$row['user_id']] = $row;
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		foreach ($log as $key => $row)
d6e8d8
		{
d6e8d8
			if (!isset($reportee_names_list[$row['reportee_id']]))
d6e8d8
			{
d6e8d8
				continue;
d6e8d8
			}
d6e8d8
d6e8d8
			$log[$key]['reportee_username'] = $reportee_names_list[$row['reportee_id']]['username'];
d6e8d8
			$log[$key]['reportee_username_full'] = get_username_string('full', $row['reportee_id'], $reportee_names_list[$row['reportee_id']]['username'], $reportee_names_list[$row['reportee_id']]['user_colour'], false, $profile_url);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = 'SELECT COUNT(l.log_id) AS total_entries
d6e8d8
		FROM ' . LOG_TABLE . " l
d6e8d8
		WHERE l.log_type = $log_type
d6e8d8
			AND l.log_time >= $limit_days
d6e8d8
			$sql_forum";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$log_count = (int) $db->sql_fetchfield('total_entries');
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	return;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Update foes - remove moderators and administrators from foe lists...
d6e8d8
*/
d6e8d8
function update_foes($group_id = false, $user_id = false)
d6e8d8
{
d6e8d8
	global $db, $auth;
d6e8d8
d6e8d8
	// update foes for some user
d6e8d8
	if (is_array($user_id) && sizeof($user_id))
d6e8d8
	{
d6e8d8
		$sql = 'DELETE FROM ' . ZEBRA_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('zebra_id', $user_id) . '
d6e8d8
				AND foe = 1';
d6e8d8
		$db->sql_query($sql);
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	// update foes for some group
d6e8d8
	if (is_array($group_id) && sizeof($group_id))
d6e8d8
	{
d6e8d8
		// Grab group settings...
d6e8d8
		$sql = $db->sql_build_query('SELECT', array(
d6e8d8
			'SELECT'	=> 'a.group_id',
d6e8d8
d6e8d8
			'FROM'		=> array(
d6e8d8
				ACL_OPTIONS_TABLE	=> 'ao',
d6e8d8
				ACL_GROUPS_TABLE	=> 'a'
d6e8d8
			),
d6e8d8
d6e8d8
			'LEFT_JOIN'	=> array(
d6e8d8
				array(
d6e8d8
					'FROM'	=> array(ACL_ROLES_DATA_TABLE => 'r'),
d6e8d8
					'ON'	=> 'a.auth_role_id = r.role_id'
d6e8d8
				),
d6e8d8
			),
d6e8d8
d6e8d8
			'WHERE'		=> '(ao.auth_option_id = a.auth_option_id OR ao.auth_option_id = r.auth_option_id)
d6e8d8
				AND ' . $db->sql_in_set('a.group_id', $group_id) . "
d6e8d8
				AND ao.auth_option IN ('a_', 'm_')",
d6e8d8
d6e8d8
			'GROUP_BY'	=> 'a.group_id'
d6e8d8
		));
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		$groups = array();
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$groups[] = (int) $row['group_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		if (!sizeof($groups))
d6e8d8
		{
d6e8d8
			return;
d6e8d8
		}
d6e8d8
d6e8d8
		switch ($db->sql_layer)
d6e8d8
		{
d6e8d8
			case 'mysqli':
d6e8d8
			case 'mysql4':
d6e8d8
				$sql = 'DELETE ' . (($db->sql_layer === 'mysqli' || version_compare($db->sql_server_info(true), '4.1', '>=')) ? 'z.*' : ZEBRA_TABLE) . '
d6e8d8
					FROM ' . ZEBRA_TABLE . ' z, ' . USER_GROUP_TABLE . ' ug
d6e8d8
					WHERE z.zebra_id = ug.user_id
d6e8d8
						AND z.foe = 1
d6e8d8
						AND ' . $db->sql_in_set('ug.group_id', $groups);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			break;
d6e8d8
d6e8d8
			default:
d6e8d8
				$sql = 'SELECT user_id
d6e8d8
					FROM ' . USER_GROUP_TABLE . '
d6e8d8
					WHERE ' . $db->sql_in_set('group_id', $groups);
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
d6e8d8
				$users = array();
d6e8d8
				while ($row = $db->sql_fetchrow($result))
d6e8d8
				{
d6e8d8
					$users[] = (int) $row['user_id'];
d6e8d8
				}
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				if (sizeof($users))
d6e8d8
				{
d6e8d8
					$sql = 'DELETE FROM ' . ZEBRA_TABLE . '
d6e8d8
						WHERE ' . $db->sql_in_set('zebra_id', $users) . '
d6e8d8
							AND foe = 1';
d6e8d8
					$db->sql_query($sql);
d6e8d8
				}
d6e8d8
			break;
d6e8d8
		}
d6e8d8
d6e8d8
		return;
d6e8d8
	}
d6e8d8
d6e8d8
	// update foes for everyone
d6e8d8
	$perms = array();
d6e8d8
	foreach ($auth->acl_get_list(false, array('a_', 'm_'), false) as $forum_id => $forum_ary)
d6e8d8
	{
d6e8d8
		foreach ($forum_ary as $auth_option => $user_ary)
d6e8d8
		{
d6e8d8
			$perms = array_merge($perms, $user_ary);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	if (sizeof($perms))
d6e8d8
	{
d6e8d8
		$sql = 'DELETE FROM ' . ZEBRA_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('zebra_id', array_unique($perms)) . '
d6e8d8
				AND foe = 1';
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
	unset($perms);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Lists inactive users
d6e8d8
*/
d6e8d8
function view_inactive_users(&$users, &$user_count, $limit = 0, $offset = 0, $limit_days = 0, $sort_by = 'user_inactive_time DESC')
d6e8d8
{
d6e8d8
	global $db, $user;
d6e8d8
d6e8d8
	$sql = 'SELECT COUNT(user_id) AS user_count
d6e8d8
		FROM ' . USERS_TABLE . '
d6e8d8
		WHERE user_type = ' . USER_INACTIVE .
d6e8d8
		(($limit_days) ? " AND user_inactive_time >= $limit_days" : '');
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$user_count = (int) $db->sql_fetchfield('user_count');
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if ($offset >= $user_count)
d6e8d8
	{
d6e8d8
		$offset = ($offset - $limit < 0) ? 0 : $offset - $limit;
d6e8d8
	}
d6e8d8
d6e8d8
	$sql = 'SELECT user_id, username, user_regdate, user_lastvisit, user_inactive_time, user_inactive_reason
d6e8d8
		FROM ' . USERS_TABLE . '
d6e8d8
		WHERE user_type = ' . USER_INACTIVE .
d6e8d8
		(($limit_days) ? " AND user_inactive_time >= $limit_days" : '') . "
d6e8d8
		ORDER BY $sort_by";
d6e8d8
	$result = $db->sql_query_limit($sql, $limit, $offset);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$row['inactive_reason'] = $user->lang['INACTIVE_REASON_UNKNOWN'];
d6e8d8
		switch ($row['user_inactive_reason'])
d6e8d8
		{
d6e8d8
			case INACTIVE_REGISTER:
d6e8d8
				$row['inactive_reason'] = $user->lang['INACTIVE_REASON_REGISTER'];
d6e8d8
			break;
d6e8d8
d6e8d8
			case INACTIVE_PROFILE:
d6e8d8
				$row['inactive_reason'] = $user->lang['INACTIVE_REASON_PROFILE'];
d6e8d8
			break;
d6e8d8
d6e8d8
			case INACTIVE_MANUAL:
d6e8d8
				$row['inactive_reason'] = $user->lang['INACTIVE_REASON_MANUAL'];
d6e8d8
			break;
d6e8d8
d6e8d8
			case INACTIVE_REMIND:
d6e8d8
				$row['inactive_reason'] = $user->lang['INACTIVE_REASON_REMIND'];
d6e8d8
			break;
d6e8d8
		}
d6e8d8
d6e8d8
		$users[] = $row;
d6e8d8
	}
d6e8d8
d6e8d8
	return $offset;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Lists warned users
d6e8d8
*/
d6e8d8
function view_warned_users(&$users, &$user_count, $limit = 0, $offset = 0, $limit_days = 0, $sort_by = 'user_warnings DESC')
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	$sql = 'SELECT user_id, username, user_colour, user_warnings, user_last_warning
d6e8d8
		FROM ' . USERS_TABLE . '
d6e8d8
		WHERE user_warnings > 0
d6e8d8
		' . (($limit_days) ? "AND user_last_warning >= $limit_days" : '') . "
d6e8d8
		ORDER BY $sort_by";
d6e8d8
	$result = $db->sql_query_limit($sql, $limit, $offset);
d6e8d8
	$users = $db->sql_fetchrowset($result);
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$sql = 'SELECT count(user_id) AS user_count
d6e8d8
		FROM ' . USERS_TABLE . '
d6e8d8
		WHERE user_warnings > 0
d6e8d8
		' . (($limit_days) ? "AND user_last_warning >= $limit_days" : '');
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$user_count = (int) $db->sql_fetchfield('user_count');
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	return;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Get database size
d6e8d8
* Currently only mysql and mssql are supported
d6e8d8
*/
d6e8d8
function get_database_size()
d6e8d8
{
d6e8d8
	global $db, $user, $table_prefix;
d6e8d8
d6e8d8
	$database_size = false;
d6e8d8
d6e8d8
	// This code is heavily influenced by a similar routine in phpMyAdmin 2.2.0
d6e8d8
	switch ($db->sql_layer)
d6e8d8
	{
d6e8d8
		case 'mysql':
d6e8d8
		case 'mysql4':
d6e8d8
		case 'mysqli':
d6e8d8
			$sql = 'SELECT VERSION() AS mysql_version';
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
			$row = $db->sql_fetchrow($result);
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if ($row)
d6e8d8
			{
d6e8d8
				$version = $row['mysql_version'];
d6e8d8
d6e8d8
				if (preg_match('#(3\.23|[45]\.)#', $version))
d6e8d8
				{
d6e8d8
					$db_name = (preg_match('#^(?:3\.23\.(?:[6-9]|[1-9]{2}))|[45]\.#', $version)) ? "`{$db->dbname}`" : $db->dbname;
d6e8d8
d6e8d8
					$sql = 'SHOW TABLE STATUS
d6e8d8
						FROM ' . $db_name;
d6e8d8
					$result = $db->sql_query($sql, 7200);
d6e8d8
d6e8d8
					$database_size = 0;
d6e8d8
					while ($row = $db->sql_fetchrow($result))
d6e8d8
					{
d6e8d8
						if ((isset($row['Type']) && $row['Type'] != 'MRG_MyISAM') || (isset($row['Engine']) && ($row['Engine'] == 'MyISAM' || $row['Engine'] == 'InnoDB')))
d6e8d8
						{
d6e8d8
							if ($table_prefix != '')
d6e8d8
							{
d6e8d8
								if (strpos($row['Name'], $table_prefix) !== false)
d6e8d8
								{
d6e8d8
									$database_size += $row['Data_length'] + $row['Index_length'];
d6e8d8
								}
d6e8d8
							}
d6e8d8
							else
d6e8d8
							{
d6e8d8
								$database_size += $row['Data_length'] + $row['Index_length'];
d6e8d8
							}
d6e8d8
						}
d6e8d8
					}
d6e8d8
					$db->sql_freeresult($result);
d6e8d8
				}
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'firebird':
d6e8d8
			global $dbname;
d6e8d8
d6e8d8
			// if it on the local machine, we can get lucky
d6e8d8
			if (file_exists($dbname))
d6e8d8
			{
d6e8d8
				$database_size = filesize($dbname);
d6e8d8
			}
d6e8d8
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'sqlite':
d6e8d8
			global $dbhost;
d6e8d8
d6e8d8
			if (file_exists($dbhost))
d6e8d8
			{
d6e8d8
				$database_size = filesize($dbhost);
d6e8d8
			}
d6e8d8
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'mssql':
d6e8d8
		case 'mssql_odbc':
d6e8d8
			$sql = 'SELECT ((SUM(size) * 8.0) * 1024.0) as dbsize
d6e8d8
				FROM sysfiles';
d6e8d8
			$result = $db->sql_query($sql, 7200);
d6e8d8
			$database_size = ($row = $db->sql_fetchrow($result)) ? $row['dbsize'] : false;
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'postgres':
d6e8d8
			$sql = "SELECT proname
d6e8d8
				FROM pg_proc
d6e8d8
				WHERE proname = 'pg_database_size'";
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
			$row = $db->sql_fetchrow($result);
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if ($row['proname'] == 'pg_database_size')
d6e8d8
			{
d6e8d8
				$database = $db->dbname;
d6e8d8
				if (strpos($database, '.') !== false)
d6e8d8
				{
d6e8d8
					list($database, ) = explode('.', $database);
d6e8d8
				}
d6e8d8
d6e8d8
				$sql = "SELECT oid
d6e8d8
					FROM pg_database
d6e8d8
					WHERE datname = '$database'";
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
				$row = $db->sql_fetchrow($result);
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				$oid = $row['oid'];
d6e8d8
d6e8d8
				$sql = 'SELECT pg_database_size(' . $oid . ') as size';
d6e8d8
				$result = $db->sql_query($sql);
d6e8d8
				$row = $db->sql_fetchrow($result);
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				$database_size = $row['size'];
d6e8d8
			}
d6e8d8
		break;
d6e8d8
d6e8d8
		case 'oracle':
d6e8d8
			$sql = 'SELECT SUM(bytes) as dbsize
d6e8d8
				FROM user_segments';
d6e8d8
			$result = $db->sql_query($sql, 7200);
d6e8d8
			$database_size = ($row = $db->sql_fetchrow($result)) ? $row['dbsize'] : false;
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
		break;
d6e8d8
	}
d6e8d8
d6e8d8
	$database_size = ($database_size !== false) ? get_formatted_filesize($database_size) : $user->lang['NOT_AVAILABLE'];
d6e8d8
d6e8d8
	return $database_size;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Retrieve contents from remotely stored file
d6e8d8
*/
d6e8d8
function get_remote_file($host, $directory, $filename, &$errstr, &$errno, $port = 80, $timeout = 10)
d6e8d8
{
d6e8d8
	global $user;
d6e8d8
d6e8d8
	if ($fsock = @fsockopen($host, $port, $errno, $errstr, $timeout))
d6e8d8
	{
d6e8d8
		@fputs($fsock, "GET $directory/$filename HTTP/1.1\r\n");
d6e8d8
		@fputs($fsock, "HOST: $host\r\n");
d6e8d8
		@fputs($fsock, "Connection: close\r\n\r\n");
d6e8d8
d6e8d8
		$file_info = '';
d6e8d8
		$get_info = false;
d6e8d8
d6e8d8
		while (!@feof($fsock))
d6e8d8
		{
d6e8d8
			if ($get_info)
d6e8d8
			{
d6e8d8
				$file_info .= @fread($fsock, 1024);
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$line = @fgets($fsock, 1024);
d6e8d8
				if ($line == "\r\n")
d6e8d8
				{
d6e8d8
					$get_info = true;
d6e8d8
				}
d6e8d8
				else if (stripos($line, '404 not found') !== false)
d6e8d8
				{
d6e8d8
					$errstr = $user->lang['FILE_NOT_FOUND'] . ': ' . $filename;
d6e8d8
					return false;
d6e8d8
				}
d6e8d8
			}
d6e8d8
		}
d6e8d8
		@fclose($fsock);
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		if ($errstr)
d6e8d8
		{
d6e8d8
			$errstr = utf8_convert_message($errstr);
d6e8d8
			return false;
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$errstr = $user->lang['FSOCK_DISABLED'];
d6e8d8
			return false;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	return $file_info;
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Tidy Warnings
d6e8d8
* Remove all warnings which have now expired from the database
d6e8d8
* The duration of a warning can be defined by the administrator
d6e8d8
* This only removes the warning and reduces the associated count,
d6e8d8
* it does not remove the user note recording the contents of the warning
d6e8d8
*/
d6e8d8
function tidy_warnings()
d6e8d8
{
d6e8d8
	global $db, $config;
d6e8d8
d6e8d8
	$expire_date = time() - ($config['warnings_expire_days'] * 86400);
d6e8d8
	$warning_list = $user_list = array();
d6e8d8
d6e8d8
	$sql = 'SELECT * FROM ' . WARNINGS_TABLE . "
d6e8d8
		WHERE warning_time < $expire_date";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$warning_list[] = $row['warning_id'];
d6e8d8
		$user_list[$row['user_id']] = isset($user_list[$row['user_id']]) ? ++$user_list[$row['user_id']] : 1;
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	if (sizeof($warning_list))
d6e8d8
	{
d6e8d8
		$db->sql_transaction('begin');
d6e8d8
d6e8d8
		$sql = 'DELETE FROM ' . WARNINGS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('warning_id', $warning_list);
d6e8d8
		$db->sql_query($sql);
d6e8d8
d6e8d8
		foreach ($user_list as $user_id => $value)
d6e8d8
		{
d6e8d8
			$sql = 'UPDATE ' . USERS_TABLE . " SET user_warnings = user_warnings - $value
d6e8d8
				WHERE user_id = $user_id";
d6e8d8
			$db->sql_query($sql);
d6e8d8
		}
d6e8d8
d6e8d8
		$db->sql_transaction('commit');
d6e8d8
	}
d6e8d8
d6e8d8
	set_config('warnings_last_gc', time(), true);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Tidy database, doing some maintanance tasks
d6e8d8
*/
d6e8d8
function tidy_database()
d6e8d8
{
d6e8d8
	global $db;
d6e8d8
d6e8d8
	// Here we check permission consistency
d6e8d8
d6e8d8
	// Sometimes, it can happen permission tables having forums listed which do not exist
d6e8d8
	$sql = 'SELECT forum_id
d6e8d8
		FROM ' . FORUMS_TABLE;
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$forum_ids = array(0);
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$forum_ids[] = $row['forum_id'];
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	// Delete those rows from the acl tables not having listed the forums above
d6e8d8
	$sql = 'DELETE FROM ' . ACL_GROUPS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('forum_id', $forum_ids, true);
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	$sql = 'DELETE FROM ' . ACL_USERS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('forum_id', $forum_ids, true);
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	set_config('database_last_gc', time(), true);
d6e8d8
}
d6e8d8
d6e8d8
/**
d6e8d8
* Add permission language - this will make sure custom files will be included
d6e8d8
*/
d6e8d8
function add_permission_language()
d6e8d8
{
d6e8d8
	global $user, $phpEx;
d6e8d8
d6e8d8
	// First of all, our own file. We need to include it as the first file because it presets all relevant variables.
d6e8d8
	$user->add_lang('acp/permissions_phpbb');
d6e8d8
d6e8d8
	$files_to_add = array();
d6e8d8
d6e8d8
	// Now search in acp and mods folder for permissions_ files.
d6e8d8
	foreach (array('acp/', 'mods/') as $path)
d6e8d8
	{
d6e8d8
		$dh = @opendir($user->lang_path . $user->lang_name . '/' . $path);
d6e8d8
d6e8d8
		if ($dh)
d6e8d8
		{
d6e8d8
			while (($file = readdir($dh)) !== false)
d6e8d8
			{
d6e8d8
				if ($file !== 'permissions_phpbb.' . $phpEx && strpos($file, 'permissions_') === 0 && substr($file, -(strlen($phpEx) + 1)) === '.' . $phpEx)
d6e8d8
				{
d6e8d8
					$files_to_add[] = $path . substr($file, 0, -(strlen($phpEx) + 1));
d6e8d8
				}
d6e8d8
			}
d6e8d8
			closedir($dh);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	if (!sizeof($files_to_add))
d6e8d8
	{
d6e8d8
		return false;
d6e8d8
	}
d6e8d8
d6e8d8
	$user->add_lang($files_to_add);
d6e8d8
	return true;
d6e8d8
}
d6e8d8
d6e8d8
?>