123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.0
- */
- if (!defined('SMF'))
- die('Hacking attempt...');
- /* This file is mainly concerned with minor tasks relating to boards, such as
- marking them read, collapsing categories, or quick moderation. It defines
- the following list of functions:
- void markBoardsRead(array boards)
- // !!!
- void MarkRead()
- // !!!
- int getMsgMemberID(int id_msg)
- // !!!
- void modifyBoard(int board_id, array boardOptions)
- - general function to modify the settings and position of a board.
- - used by ManageBoards.php to change the settings of a board.
- int createBoard(array boardOptions)
- - general function to create a new board and set its position.
- - allows (almost) the same options as the modifyBoard() function.
- - with the option inherit_permissions set, the parent board permissions
- will be inherited.
- - returns the ID of the newly created board.
- void deleteBoards(array boards_to_remove, moveChildrenTo = null)
- - general function to delete one or more boards.
- - allows to move the children of the board before deleting it
- - if moveChildrenTo is set to null, the child boards will be deleted.
- - deletes all topics that are on the given boards.
- - deletes all information that's associated with the given boards.
- - updates the statistics to reflect the new situation.
- void reorderBoards()
- - updates the database to put all boards in the right order.
- - sorts the records of the boards table.
- - used by modifyBoard(), deleteBoards(), modifyCategory(), and
- deleteCategories() functions.
- void fixChildren(int parent, int newLevel, int newParent)
- - recursively updates the children of parent's child_level and
- id_parent to newLevel and newParent.
- - used when a board is deleted or moved, to affect its children.
- bool isChildOf(int child, int parent)
- - determines if child is a child of parent.
- - recurses down the tree until there are no more parents.
- - returns true if child is a child of parent.
- void getBoardTree()
- - load information regarding the boards and categories.
- - the information retrieved is stored in globals:
- - $boards properties of each board.
- - $boardList a list of boards grouped by category ID.
- - $cat_tree properties of each category.
- void recursiveBoards()
- - function used by getBoardTree to recursively get a list of boards.
- bool isChildOf(int child, int parent)
- - determine if a certain board id is a child of another board.
- - the parent might be several levels higher than the child.
- */
- // Mark a board or multiple boards read.
- function markBoardsRead($boards, $unread = false)
- {
- global $user_info, $modSettings, $smcFunc;
- // Force $boards to be an array.
- if (!is_array($boards))
- $boards = array($boards);
- else
- $boards = array_unique($boards);
- // No boards, nothing to mark as read.
- if (empty($boards))
- return;
- // Allow the user to mark a board as unread.
- if ($unread)
- {
- // Clear out all the places where this lovely info is stored.
- // !! Maybe not log_mark_read?
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_mark_read
- WHERE id_board IN ({array_int:board_list})
- AND id_member = {int:current_member}',
- array(
- 'current_member' => $user_info['id'],
- 'board_list' => $boards,
- )
- );
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_boards
- WHERE id_board IN ({array_int:board_list})
- AND id_member = {int:current_member}',
- array(
- 'current_member' => $user_info['id'],
- 'board_list' => $boards,
- )
- );
- }
- // Otherwise mark the board as read.
- else
- {
- $markRead = array();
- foreach ($boards as $board)
- $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], $board);
- // Update log_mark_read and log_boards.
- $smcFunc['db_insert']('replace',
- '{db_prefix}log_mark_read',
- array('id_msg' => 'int', 'id_member' => 'int', 'id_board' => 'int'),
- $markRead,
- array('id_board', 'id_member')
- );
- $smcFunc['db_insert']('replace',
- '{db_prefix}log_boards',
- array('id_msg' => 'int', 'id_member' => 'int', 'id_board' => 'int'),
- $markRead,
- array('id_board', 'id_member')
- );
- }
- // Get rid of useless log_topics data, because log_mark_read is better for it - even if marking unread - I think so...
- $result = $smcFunc['db_query']('', '
- SELECT MIN(id_topic)
- FROM {db_prefix}log_topics
- WHERE id_member = {int:current_member}',
- array(
- 'current_member' => $user_info['id'],
- )
- );
- list ($lowest_topic) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- if (empty($lowest_topic))
- return;
- // !!!SLOW This query seems to eat it sometimes.
- $result = $smcFunc['db_query']('', '
- SELECT lt.id_topic
- FROM {db_prefix}log_topics AS lt
- INNER JOIN {db_prefix}topics AS t /*!40000 USE INDEX (PRIMARY) */ ON (t.id_topic = lt.id_topic
- AND t.id_board IN ({array_int:board_list}))
- WHERE lt.id_member = {int:current_member}
- AND lt.id_topic >= {int:lowest_topic}',
- array(
- 'current_member' => $user_info['id'],
- 'board_list' => $boards,
- 'lowest_topic' => $lowest_topic,
- )
- );
- $topics = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- $topics[] = $row['id_topic'];
- $smcFunc['db_free_result']($result);
- if (!empty($topics))
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_topics
- WHERE id_member = {int:current_member}
- AND id_topic IN ({array_int:topic_list})',
- array(
- 'current_member' => $user_info['id'],
- 'topic_list' => $topics,
- )
- );
- }
- // Mark one or more boards as read.
- function MarkRead()
- {
- global $board, $topic, $user_info, $board_info, $modSettings, $smcFunc;
- // No Guests allowed!
- is_not_guest();
- checkSession('get');
- if (isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'all')
- {
- // Find all the boards this user can see.
- $result = $smcFunc['db_query']('', '
- SELECT b.id_board
- FROM {db_prefix}boards AS b
- WHERE {query_see_board}',
- array(
- )
- );
- $boards = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- $boards[] = $row['id_board'];
- $smcFunc['db_free_result']($result);
- if (!empty($boards))
- markBoardsRead($boards, isset($_REQUEST['unread']));
- $_SESSION['id_msg_last_visit'] = $modSettings['maxMsgID'];
- if (!empty($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'action=unread') !== false)
- redirectexit('action=unread');
- if (isset($_SESSION['topicseen_cache']))
- $_SESSION['topicseen_cache'] = array();
- redirectexit();
- }
- elseif (isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'unreadreplies')
- {
- // Make sure all the boards are integers!
- $topics = explode('-', $_REQUEST['topics']);
- $markRead = array();
- foreach ($topics as $id_topic)
- $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], (int) $id_topic);
- $smcFunc['db_insert']('replace',
- '{db_prefix}log_topics',
- array('id_msg' => 'int', 'id_member' => 'int', 'id_topic' => 'int'),
- $markRead,
- array('id_member', 'id_topic')
- );
- if (isset($_SESSION['topicseen_cache']))
- $_SESSION['topicseen_cache'] = array();
- redirectexit('action=unreadreplies');
- }
- // Special case: mark a topic unread!
- elseif (isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'topic')
- {
- // First, let's figure out what the latest message is.
- $result = $smcFunc['db_query']('', '
- SELECT id_first_msg, id_last_msg
- FROM {db_prefix}topics
- WHERE id_topic = {int:current_topic}',
- array(
- 'current_topic' => $topic,
- )
- );
- $topicinfo = $smcFunc['db_fetch_assoc']($result);
- $smcFunc['db_free_result']($result);
- if (!empty($_GET['t']))
- {
- // If they read the whole topic, go back to the beginning.
- if ($_GET['t'] >= $topicinfo['id_last_msg'])
- $earlyMsg = 0;
- // If they want to mark the whole thing read, same.
- elseif ($_GET['t'] <= $topicinfo['id_first_msg'])
- $earlyMsg = 0;
- // Otherwise, get the latest message before the named one.
- else
- {
- $result = $smcFunc['db_query']('', '
- SELECT MAX(id_msg)
- FROM {db_prefix}messages
- WHERE id_topic = {int:current_topic}
- AND id_msg >= {int:id_first_msg}
- AND id_msg < {int:topic_msg_id}',
- array(
- 'current_topic' => $topic,
- 'topic_msg_id' => (int) $_GET['t'],
- 'id_first_msg' => $topicinfo['id_first_msg'],
- )
- );
- list ($earlyMsg) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- }
- }
- // Marking read from first page? That's the whole topic.
- elseif ($_REQUEST['start'] == 0)
- $earlyMsg = 0;
- else
- {
- $result = $smcFunc['db_query']('', '
- SELECT id_msg
- FROM {db_prefix}messages
- WHERE id_topic = {int:current_topic}
- ORDER BY id_msg
- LIMIT ' . (int) $_REQUEST['start'] . ', 1',
- array(
- 'current_topic' => $topic,
- )
- );
- list ($earlyMsg) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- $earlyMsg--;
- }
- // Blam, unread!
- $smcFunc['db_insert']('replace',
- '{db_prefix}log_topics',
- array('id_msg' => 'int', 'id_member' => 'int', 'id_topic' => 'int'),
- array($earlyMsg, $user_info['id'], $topic),
- array('id_member', 'id_topic')
- );
- redirectexit('board=' . $board . '.0');
- }
- else
- {
- $categories = array();
- $boards = array();
- if (isset($_REQUEST['c']))
- {
- $_REQUEST['c'] = explode(',', $_REQUEST['c']);
- foreach ($_REQUEST['c'] as $c)
- $categories[] = (int) $c;
- }
- if (isset($_REQUEST['boards']))
- {
- $_REQUEST['boards'] = explode(',', $_REQUEST['boards']);
- foreach ($_REQUEST['boards'] as $b)
- $boards[] = (int) $b;
- }
- if (!empty($board))
- $boards[] = (int) $board;
- if (isset($_REQUEST['children']) && !empty($boards))
- {
- // They want to mark the entire tree starting with the boards specified
- // The easist thing is to just get all the boards they can see, but since we've specified the top of tree we ignore some of them
- $request = $smcFunc['db_query']('', '
- SELECT b.id_board, b.id_parent
- FROM {db_prefix}boards AS b
- WHERE {query_see_board}
- AND b.child_level > {int:no_parents}
- AND b.id_board NOT IN ({array_int:board_list})
- ORDER BY child_level ASC
- ',
- array(
- 'no_parents' => 0,
- 'board_list' => $boards,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- if (in_array($row['id_parent'], $boards))
- $boards[] = $row['id_board'];
- $smcFunc['db_free_result']($request);
- }
- $clauses = array();
- $clauseParameters = array();
- if (!empty($categories))
- {
- $clauses[] = 'id_cat IN ({array_int:category_list})';
- $clauseParameters['category_list'] = $categories;
- }
- if (!empty($boards))
- {
- $clauses[] = 'id_board IN ({array_int:board_list})';
- $clauseParameters['board_list'] = $boards;
- }
- if (empty($clauses))
- redirectexit();
- $request = $smcFunc['db_query']('', '
- SELECT b.id_board
- FROM {db_prefix}boards AS b
- WHERE {query_see_board}
- AND b.' . implode(' OR b.', $clauses),
- array_merge($clauseParameters, array(
- ))
- );
- $boards = array();
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $boards[] = $row['id_board'];
- $smcFunc['db_free_result']($request);
- if (empty($boards))
- redirectexit();
- markBoardsRead($boards, isset($_REQUEST['unread']));
- foreach ($boards as $b)
- {
- if (isset($_SESSION['topicseen_cache'][$b]))
- $_SESSION['topicseen_cache'][$b] = array();
- }
- if (!isset($_REQUEST['unread']))
- {
- // Find all the boards this user can see.
- $result = $smcFunc['db_query']('', '
- SELECT b.id_board
- FROM {db_prefix}boards AS b
- WHERE b.id_parent IN ({array_int:parent_list})
- AND {query_see_board}',
- array(
- 'parent_list' => $boards,
- )
- );
- if ($smcFunc['db_num_rows']($result) > 0)
- {
- $logBoardInserts = '';
- while ($row = $smcFunc['db_fetch_assoc']($result))
- $logBoardInserts[] = array($modSettings['maxMsgID'], $user_info['id'], $row['id_board']);
- $smcFunc['db_insert']('replace',
- '{db_prefix}log_boards',
- array('id_msg' => 'int', 'id_member' => 'int', 'id_board' => 'int'),
- $logBoardInserts,
- array('id_member', 'id_board')
- );
- }
- $smcFunc['db_free_result']($result);
- if (empty($board))
- redirectexit();
- else
- redirectexit('board=' . $board . '.0');
- }
- else
- {
- if (empty($board_info['parent']))
- redirectexit();
- else
- redirectexit('board=' . $board_info['parent'] . '.0');
- }
- }
- }
- // Get the id_member associated with the specified message.
- function getMsgMemberID($messageID)
- {
- global $smcFunc;
- // Find the topic and make sure the member still exists.
- $result = $smcFunc['db_query']('', '
- SELECT IFNULL(mem.id_member, 0)
- FROM {db_prefix}messages AS m
- LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
- WHERE m.id_msg = {int:selected_message}
- LIMIT 1',
- array(
- 'selected_message' => (int) $messageID,
- )
- );
- if ($smcFunc['db_num_rows']($result) > 0)
- list ($memberID) = $smcFunc['db_fetch_row']($result);
- // The message doesn't even exist.
- else
- $memberID = 0;
- $smcFunc['db_free_result']($result);
- return (int) $memberID;
- }
- // Modify the settings and position of a board.
- function modifyBoard($board_id, &$boardOptions)
- {
- global $sourcedir, $cat_tree, $boards, $boardList, $modSettings, $smcFunc;
- // Get some basic information about all boards and categories.
- getBoardTree();
- // Make sure given boards and categories exist.
- if (!isset($boards[$board_id]) || (isset($boardOptions['target_board']) && !isset($boards[$boardOptions['target_board']])) || (isset($boardOptions['target_category']) && !isset($cat_tree[$boardOptions['target_category']])))
- fatal_lang_error('no_board');
- // All things that will be updated in the database will be in $boardUpdates.
- $boardUpdates = array();
- $boardUpdateParameters = array();
- // In case the board has to be moved
- if (isset($boardOptions['move_to']))
- {
- // Move the board to the top of a given category.
- if ($boardOptions['move_to'] == 'top')
- {
- $id_cat = $boardOptions['target_category'];
- $child_level = 0;
- $id_parent = 0;
- $after = $cat_tree[$id_cat]['last_board_order'];
- }
- // Move the board to the bottom of a given category.
- elseif ($boardOptions['move_to'] == 'bottom')
- {
- $id_cat = $boardOptions['target_category'];
- $child_level = 0;
- $id_parent = 0;
- $after = 0;
- foreach ($cat_tree[$id_cat]['children'] as $id_board => $dummy)
- $after = max($after, $boards[$id_board]['order']);
- }
- // Make the board a child of a given board.
- elseif ($boardOptions['move_to'] == 'child')
- {
- $id_cat = $boards[$boardOptions['target_board']]['category'];
- $child_level = $boards[$boardOptions['target_board']]['level'] + 1;
- $id_parent = $boardOptions['target_board'];
- // People can be creative, in many ways...
- if (isChildOf($id_parent, $board_id))
- fatal_lang_error('mboards_parent_own_child_error', false);
- elseif ($id_parent == $board_id)
- fatal_lang_error('mboards_board_own_child_error', false);
- $after = $boards[$boardOptions['target_board']]['order'];
- // Check if there are already children and (if so) get the max board order.
- if (!empty($boards[$id_parent]['tree']['children']) && empty($boardOptions['move_first_child']))
- foreach ($boards[$id_parent]['tree']['children'] as $childBoard_id => $dummy)
- $after = max($after, $boards[$childBoard_id]['order']);
- }
- // Place a board before or after another board, on the same child level.
- elseif (in_array($boardOptions['move_to'], array('before', 'after')))
- {
- $id_cat = $boards[$boardOptions['target_board']]['category'];
- $child_level = $boards[$boardOptions['target_board']]['level'];
- $id_parent = $boards[$boardOptions['target_board']]['parent'];
- $after = $boards[$boardOptions['target_board']]['order'] - ($boardOptions['move_to'] == 'before' ? 1 : 0);
- }
- // Oops...?
- else
- trigger_error('modifyBoard(): The move_to value \'' . $boardOptions['move_to'] . '\' is incorrect', E_USER_ERROR);
- // Get a list of children of this board.
- $childList = array();
- recursiveBoards($childList, $boards[$board_id]['tree']);
- // See if there are changes that affect children.
- $childUpdates = array();
- $levelDiff = $child_level - $boards[$board_id]['level'];
- if ($levelDiff != 0)
- $childUpdates[] = 'child_level = child_level ' . ($levelDiff > 0 ? '+ ' : '') . '{int:level_diff}';
- if ($id_cat != $boards[$board_id]['category'])
- $childUpdates[] = 'id_cat = {int:category}';
- // Fix the children of this board.
- if (!empty($childList) && !empty($childUpdates))
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET ' . implode(',
- ', $childUpdates) . '
- WHERE id_board IN ({array_int:board_list})',
- array(
- 'board_list' => $childList,
- 'category' => $id_cat,
- 'level_diff' => $levelDiff,
- )
- );
- // Make some room for this spot.
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET board_order = board_order + {int:new_order}
- WHERE board_order > {int:insert_after}
- AND id_board != {int:selected_board}',
- array(
- 'insert_after' => $after,
- 'selected_board' => $board_id,
- 'new_order' => 1 + count($childList),
- )
- );
- $boardUpdates[] = 'id_cat = {int:id_cat}';
- $boardUpdates[] = 'id_parent = {int:id_parent}';
- $boardUpdates[] = 'child_level = {int:child_level}';
- $boardUpdates[] = 'board_order = {int:board_order}';
- $boardUpdateParameters += array(
- 'id_cat' => $id_cat,
- 'id_parent' => $id_parent,
- 'child_level' => $child_level,
- 'board_order' => $after + 1,
- );
- }
- // This setting is a little twisted in the database...
- if (isset($boardOptions['posts_count']))
- {
- $boardUpdates[] = 'count_posts = {int:count_posts}';
- $boardUpdateParameters['count_posts'] = $boardOptions['posts_count'] ? 0 : 1;
- }
- // Set the theme for this board.
- if (isset($boardOptions['board_theme']))
- {
- $boardUpdates[] = 'id_theme = {int:id_theme}';
- $boardUpdateParameters['id_theme'] = (int) $boardOptions['board_theme'];
- }
- // Should the board theme override the user preferred theme?
- if (isset($boardOptions['override_theme']))
- {
- $boardUpdates[] = 'override_theme = {int:override_theme}';
- $boardUpdateParameters['override_theme'] = $boardOptions['override_theme'] ? 1 : 0;
- }
- // Who's allowed to access this board.
- if (isset($boardOptions['access_groups']))
- {
- $boardUpdates[] = 'member_groups = {string:member_groups}';
- $boardUpdateParameters['member_groups'] = implode(',', $boardOptions['access_groups']);
- }
- if (isset($boardOptions['board_name']))
- {
- $boardUpdates[] = 'name = {string:board_name}';
- $boardUpdateParameters['board_name'] = $boardOptions['board_name'];
- }
- if (isset($boardOptions['board_description']))
- {
- $boardUpdates[] = 'description = {string:board_description}';
- $boardUpdateParameters['board_description'] = $boardOptions['board_description'];
- }
- if (isset($boardOptions['profile']))
- {
- $boardUpdates[] = 'id_profile = {int:profile}';
- $boardUpdateParameters['profile'] = (int) $boardOptions['profile'];
- }
- if (isset($boardOptions['redirect']))
- {
- $boardUpdates[] = 'redirect = {string:redirect}';
- $boardUpdateParameters['redirect'] = $boardOptions['redirect'];
- }
- if (isset($boardOptions['num_posts']))
- {
- $boardUpdates[] = 'num_posts = {int:num_posts}';
- $boardUpdateParameters['num_posts'] = (int) $boardOptions['num_posts'];
- }
- // Do the updates (if any).
- if (!empty($boardUpdates))
- $request = $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET
- ' . implode(',
- ', $boardUpdates) . '
- WHERE id_board = {int:selected_board}',
- array_merge($boardUpdateParameters, array(
- 'selected_board' => $board_id,
- ))
- );
- // Set moderators of this board.
- if (isset($boardOptions['moderators']) || isset($boardOptions['moderator_string']))
- {
- // Reset current moderators for this board - if there are any!
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}moderators
- WHERE id_board = {int:board_list}',
- array(
- 'board_list' => $board_id,
- )
- );
- // Validate and get the IDs of the new moderators.
- if (isset($boardOptions['moderator_string']) && trim($boardOptions['moderator_string']) != '')
- {
- // Divvy out the usernames, remove extra space.
- $moderator_string = strtr($smcFunc['htmlspecialchars']($boardOptions['moderator_string'], ENT_QUOTES), array('"' => '"'));
- preg_match_all('~"([^"]+)"~', $moderator_string, $matches);
- $moderators = array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $moderator_string)));
- for ($k = 0, $n = count($moderators); $k < $n; $k++)
- {
- $moderators[$k] = trim($moderators[$k]);
- if (strlen($moderators[$k]) == 0)
- unset($moderators[$k]);
- }
- // Find all the id_member's for the member_name's in the list.
- if (empty($boardOptions['moderators']))
- $boardOptions['moderators'] = array();
- if (!empty($moderators))
- {
- $request = $smcFunc['db_query']('', '
- SELECT id_member
- FROM {db_prefix}members
- WHERE member_name IN ({array_string:moderator_list}) OR real_name IN ({array_string:moderator_list})
- LIMIT ' . count($moderators),
- array(
- 'moderator_list' => $moderators,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $boardOptions['moderators'][] = $row['id_member'];
- $smcFunc['db_free_result']($request);
- }
- }
- // Add the moderators to the board.
- if (!empty($boardOptions['moderators']))
- {
- $inserts = array();
- foreach ($boardOptions['moderators'] as $moderator)
- $inserts[] = array($board_id, $moderator);
- $smcFunc['db_insert']('insert',
- '{db_prefix}moderators',
- array('id_board' => 'int', 'id_member' => 'int'),
- $inserts,
- array('id_board', 'id_member')
- );
- }
- // Note that caches can now be wrong!
- updateSettings(array('settings_updated' => time()));
- }
- if (isset($boardOptions['move_to']))
- reorderBoards();
- clean_cache('data');
- if (empty($boardOptions['dont_log']))
- logAction('edit_board', array('board' => $board_id), 'admin');
- }
- // Create a new board and set its properties and position.
- function createBoard($boardOptions)
- {
- global $boards, $modSettings, $smcFunc;
- // Trigger an error if one of the required values is not set.
- if (!isset($boardOptions['board_name']) || trim($boardOptions['board_name']) == '' || !isset($boardOptions['move_to']) || !isset($boardOptions['target_category']))
- trigger_error('createBoard(): One or more of the required options is not set', E_USER_ERROR);
- if (in_array($boardOptions['move_to'], array('child', 'before', 'after')) && !isset($boardOptions['target_board']))
- trigger_error('createBoard(): Target board is not set', E_USER_ERROR);
- // Set every optional value to its default value.
- $boardOptions += array(
- 'posts_count' => true,
- 'override_theme' => false,
- 'board_theme' => 0,
- 'access_groups' => array(),
- 'board_description' => '',
- 'profile' => 1,
- 'moderators' => '',
- 'inherit_permissions' => true,
- 'dont_log' => true,
- );
- // Insert a board, the settings are dealt with later.
- $smcFunc['db_insert']('',
- '{db_prefix}boards',
- array(
- 'id_cat' => 'int', 'name' => 'string-255', 'description' => 'string', 'board_order' => 'int',
- 'member_groups' => 'string', 'redirect' => 'string',
- ),
- array(
- $boardOptions['target_category'], $boardOptions['board_name'] , '', 0,
- '-1,0', '',
- ),
- array('id_board')
- );
- $board_id = $smcFunc['db_insert_id']('{db_prefix}boards', 'id_board');
- if (empty($board_id))
- return 0;
- // Change the board according to the given specifications.
- modifyBoard($board_id, $boardOptions);
- // Do we want the parent permissions to be inherited?
- if ($boardOptions['inherit_permissions'])
- {
- getBoardTree();
- if (!empty($boards[$board_id]['parent']))
- {
- $request = $smcFunc['db_query']('', '
- SELECT id_profile
- FROM {db_prefix}boards
- WHERE id_board = {int:board_parent}
- LIMIT 1',
- array(
- 'board_parent' => (int) $boards[$board_id]['parent'],
- )
- );
- list ($boardOptions['profile']) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET id_profile = {int:new_profile}
- WHERE id_board = {int:current_board}',
- array(
- 'new_profile' => $boardOptions['profile'],
- 'current_board' => $board_id,
- )
- );
- }
- }
- // Clean the data cache.
- clean_cache('data');
- // Created it.
- logAction('add_board', array('board' => $board_id), 'admin');
- // Here you are, a new board, ready to be spammed.
- return $board_id;
- }
- // Remove one or more boards.
- function deleteBoards($boards_to_remove, $moveChildrenTo = null)
- {
- global $sourcedir, $boards, $smcFunc;
- // No boards to delete? Return!
- if (empty($boards_to_remove))
- return;
- getBoardTree();
- // If $moveChildrenTo is set to null, include the children in the removal.
- if ($moveChildrenTo === null)
- {
- // Get a list of the child boards that will also be removed.
- $child_boards_to_remove = array();
- foreach ($boards_to_remove as $board_to_remove)
- recursiveBoards($child_boards_to_remove, $boards[$board_to_remove]['tree']);
- // Merge the children with their parents.
- if (!empty($child_boards_to_remove))
- $boards_to_remove = array_unique(array_merge($boards_to_remove, $child_boards_to_remove));
- }
- // Move the children to a safe home.
- else
- {
- foreach ($boards_to_remove as $id_board)
- {
- // !!! Separate category?
- if ($moveChildrenTo === 0)
- fixChildren($id_board, 0, 0);
- else
- fixChildren($id_board, $boards[$moveChildrenTo]['level'] + 1, $moveChildrenTo);
- }
- }
- // Delete ALL topics in the selected boards (done first so topics can't be marooned.)
- $request = $smcFunc['db_query']('', '
- SELECT id_topic
- FROM {db_prefix}topics
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- $topics = array();
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $topics[] = $row['id_topic'];
- $smcFunc['db_free_result']($request);
- require_once($sourcedir . '/RemoveTopic.php');
- removeTopics($topics, false);
- // Delete the board's logs.
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_mark_read
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_boards
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}log_notify
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- // Delete this board's moderators.
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}moderators
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- // Delete any extra events in the calendar.
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}calendar
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- // Delete any message icons that only appear on these boards.
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}message_icons
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- // Delete the boards.
- $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}boards
- WHERE id_board IN ({array_int:boards_to_remove})',
- array(
- 'boards_to_remove' => $boards_to_remove,
- )
- );
- // Latest message/topic might not be there anymore.
- updateStats('message');
- updateStats('topic');
- updateSettings(array(
- 'calendar_updated' => time(),
- ));
- // Plus reset the cache to stop people getting odd results.
- updateSettings(array('settings_updated' => time()));
- // Clean the cache as well.
- clean_cache('data');
- // Let's do some serious logging.
- foreach ($boards_to_remove as $id_board)
- logAction('delete_board', array('boardname' => $boards[$id_board]['name']), 'admin');
- reorderBoards();
- }
- // Put all boards in the right order.
- function reorderBoards()
- {
- global $cat_tree, $boardList, $boards, $smcFunc;
- getBoardTree();
- // Set the board order for each category.
- $board_order = 0;
- foreach ($cat_tree as $catID => $dummy)
- {
- foreach ($boardList[$catID] as $boardID)
- if ($boards[$boardID]['order'] != ++$board_order)
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET board_order = {int:new_order}
- WHERE id_board = {int:selected_board}',
- array(
- 'new_order' => $board_order,
- 'selected_board' => $boardID,
- )
- );
- }
- // Sort the records of the boards table on the board_order value.
- $smcFunc['db_query']('alter_table_boards', '
- ALTER TABLE {db_prefix}boards
- ORDER BY board_order',
- array(
- 'db_error_skip' => true,
- )
- );
- }
- // Fixes the children of a board by setting their child_levels to new values.
- function fixChildren($parent, $newLevel, $newParent)
- {
- global $smcFunc;
- // Grab all children of $parent...
- $result = $smcFunc['db_query']('', '
- SELECT id_board
- FROM {db_prefix}boards
- WHERE id_parent = {int:parent_board}',
- array(
- 'parent_board' => $parent,
- )
- );
- $children = array();
- while ($row = $smcFunc['db_fetch_assoc']($result))
- $children[] = $row['id_board'];
- $smcFunc['db_free_result']($result);
- // ...and set it to a new parent and child_level.
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET id_parent = {int:new_parent}, child_level = {int:new_child_level}
- WHERE id_parent = {int:parent_board}',
- array(
- 'new_parent' => $newParent,
- 'new_child_level' => $newLevel,
- 'parent_board' => $parent,
- )
- );
- // Recursively fix the children of the children.
- foreach ($children as $child)
- fixChildren($child, $newLevel + 1, $child);
- }
- // Load a lot of useful information regarding the boards and categories.
- function getBoardTree()
- {
- global $cat_tree, $boards, $boardList, $txt, $modSettings, $smcFunc;
- // Getting all the board and category information you'd ever wanted.
- $request = $smcFunc['db_query']('', '
- SELECT
- IFNULL(b.id_board, 0) AS id_board, b.id_parent, b.name AS board_name, b.description, b.child_level,
- b.board_order, b.count_posts, b.member_groups, b.id_theme, b.override_theme, b.id_profile, b.redirect,
- b.num_posts, b.num_topics, c.id_cat, c.name AS cat_name, c.cat_order, c.can_collapse
- FROM {db_prefix}categories AS c
- LEFT JOIN {db_prefix}boards AS b ON (b.id_cat = c.id_cat)
- ORDER BY c.cat_order, b.child_level, b.board_order',
- array(
- )
- );
- $cat_tree = array();
- $boards = array();
- $last_board_order = 0;
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- if (!isset($cat_tree[$row['id_cat']]))
- {
- $cat_tree[$row['id_cat']] = array(
- 'node' => array(
- 'id' => $row['id_cat'],
- 'name' => $row['cat_name'],
- 'order' => $row['cat_order'],
- 'can_collapse' => $row['can_collapse']
- ),
- 'is_first' => empty($cat_tree),
- 'last_board_order' => $last_board_order,
- 'children' => array()
- );
- $prevBoard = 0;
- $curLevel = 0;
- }
- if (!empty($row['id_board']))
- {
- if ($row['child_level'] != $curLevel)
- $prevBoard = 0;
- $boards[$row['id_board']] = array(
- 'id' => $row['id_board'],
- 'category' => $row['id_cat'],
- 'parent' => $row['id_parent'],
- 'level' => $row['child_level'],
- 'order' => $row['board_order'],
- 'name' => $row['board_name'],
- 'member_groups' => explode(',', $row['member_groups']),
- 'description' => $row['description'],
- 'count_posts' => empty($row['count_posts']),
- 'posts' => $row['num_posts'],
- 'topics' => $row['num_topics'],
- 'theme' => $row['id_theme'],
- 'override_theme' => $row['override_theme'],
- 'profile' => $row['id_profile'],
- 'redirect' => $row['redirect'],
- 'prev_board' => $prevBoard
- );
- $prevBoard = $row['id_board'];
- $last_board_order = $row['board_order'];
- if (empty($row['child_level']))
- {
- $cat_tree[$row['id_cat']]['children'][$row['id_board']] = array(
- 'node' => &$boards[$row['id_board']],
- 'is_first' => empty($cat_tree[$row['id_cat']]['children']),
- 'children' => array()
- );
- $boards[$row['id_board']]['tree'] = &$cat_tree[$row['id_cat']]['children'][$row['id_board']];
- }
- else
- {
- // Parent doesn't exist!
- if (!isset($boards[$row['id_parent']]['tree']))
- fatal_lang_error('no_valid_parent', false, array($row['board_name']));
- // Wrong childlevel...we can silently fix this...
- if ($boards[$row['id_parent']]['tree']['node']['level'] != $row['child_level'] - 1)
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}boards
- SET child_level = {int:new_child_level}
- WHERE id_board = {int:selected_board}',
- array(
- 'new_child_level' => $boards[$row['id_parent']]['tree']['node']['level'] + 1,
- 'selected_board' => $row['id_board'],
- )
- );
- $boards[$row['id_parent']]['tree']['children'][$row['id_board']] = array(
- 'node' => &$boards[$row['id_board']],
- 'is_first' => empty($boards[$row['id_parent']]['tree']['children']),
- 'children' => array()
- );
- $boards[$row['id_board']]['tree'] = &$boards[$row['id_parent']]['tree']['children'][$row['id_board']];
- }
- }
- }
- $smcFunc['db_free_result']($request);
- // Get a list of all the boards in each category (using recursion).
- $boardList = array();
- foreach ($cat_tree as $catID => $node)
- {
- $boardList[$catID] = array();
- recursiveBoards($boardList[$catID], $node);
- }
- }
- // Recursively get a list of boards.
- function recursiveBoards(&$_boardList, &$_tree)
- {
- if (empty($_tree['children']))
- return;
- foreach ($_tree['children'] as $id => $node)
- {
- $_boardList[] = $id;
- recursiveBoards($_boardList, $node);
- }
- }
- // Returns whether the child board id is actually a child of the parent (recursive).
- function isChildOf($child, $parent)
- {
- global $boards;
- if (empty($boards[$child]['parent']))
- return false;
- if ($boards[$child]['parent'] == $parent)
- return true;
- return isChildOf($boards[$child]['parent'], $parent);
- }
- ?>
|