Blame Extras/phpBB/3.0.4/includes/functions_admin.php

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