Groups.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. <?php
  2. /**
  3. * This file currently just shows group info, and allows certain priviledged members to add/remove members.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2014 Simple Machines and individual contributors
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('No direct access...');
  16. /**
  17. * Entry point function, permission checks, admin bars, etc.
  18. * It allows moderators and users to access the group showing functions.
  19. * It handles permission checks, and puts the moderation bar on as required.
  20. */
  21. function Groups()
  22. {
  23. global $context, $txt, $scripturl, $sourcedir, $user_info;
  24. // The sub-actions that we can do. Format "Function Name, Mod Bar Index if appropriate".
  25. $subActions = array(
  26. 'index' => array('GroupList', 'view_groups'),
  27. 'members' => array('MembergroupMembers', 'view_groups'),
  28. 'requests' => array('GroupRequests', 'group_requests'),
  29. );
  30. // Default to sub action 'index' or 'settings' depending on permissions.
  31. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'index';
  32. // Get the template stuff up and running.
  33. loadLanguage('ManageMembers');
  34. loadLanguage('ModerationCenter');
  35. loadTemplate('ManageMembergroups');
  36. // If we can see the moderation center, and this has a mod bar entry, add the mod center bar.
  37. if (allowedTo('access_mod_center') || $user_info['mod_cache']['bq'] != '0=1' || $user_info['mod_cache']['gq'] != '0=1' || allowedTo('manage_membergroups'))
  38. {
  39. require_once($sourcedir . '/ModerationCenter.php');
  40. $_GET['area'] = $_REQUEST['sa'] == 'requests' ? 'groups' : 'viewgroups';
  41. ModerationMain(true);
  42. }
  43. // Otherwise add something to the link tree, for normal people.
  44. else
  45. {
  46. isAllowedTo('view_mlist');
  47. $context['linktree'][] = array(
  48. 'url' => $scripturl . '?action=groups',
  49. 'name' => $txt['groups'],
  50. );
  51. }
  52. // Call the actual function.
  53. $subActions[$_REQUEST['sa']][0]();
  54. }
  55. /**
  56. * This very simply lists the groups, nothing snazy.
  57. */
  58. function GroupList()
  59. {
  60. global $txt, $context, $sourcedir, $scripturl;
  61. $context['page_title'] = $txt['viewing_groups'];
  62. // Making a list is not hard with this beauty.
  63. require_once($sourcedir . '/Subs-List.php');
  64. // Use the standard templates for showing this.
  65. $listOptions = array(
  66. 'id' => 'group_lists',
  67. 'title' => $context['page_title'],
  68. 'base_href' => $scripturl . '?action=moderate;area=viewgroups;sa=view',
  69. 'default_sort_col' => 'group',
  70. 'get_items' => array(
  71. 'file' => $sourcedir . '/Subs-Membergroups.php',
  72. 'function' => 'list_getMembergroups',
  73. 'params' => array(
  74. 'regular',
  75. ),
  76. ),
  77. 'columns' => array(
  78. 'group' => array(
  79. 'header' => array(
  80. 'value' => $txt['name'],
  81. ),
  82. 'data' => array(
  83. 'function' => create_function('$rowData', '
  84. global $scripturl;
  85. // Since the moderator group has no explicit members, no link is needed.
  86. if ($rowData[\'id_group\'] == 3)
  87. $group_name = $rowData[\'group_name\'];
  88. else
  89. {
  90. $color_style = empty($rowData[\'online_color\']) ? \'\' : sprintf(\' style="color: %1$s;"\', $rowData[\'online_color\']);
  91. if (allowedTo(\'manage_membergroups\'))
  92. {
  93. $group_name = sprintf(\'<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>\', $scripturl, $rowData[\'id_group\'], $color_style, $rowData[\'group_name\']);
  94. }
  95. else
  96. {
  97. $group_name = sprintf(\'<a href="%1$s?action=groups;sa=members;group=%2$d"%3$s>%4$s</a>\', $scripturl, $rowData[\'id_group\'], $color_style, $rowData[\'group_name\']);
  98. }
  99. }
  100. // Add a help option for moderator and administrator.
  101. if ($rowData[\'id_group\'] == 1)
  102. $group_name .= sprintf(\' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)\', $scripturl);
  103. elseif ($rowData[\'id_group\'] == 3)
  104. $group_name .= sprintf(\' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)\', $scripturl);
  105. return $group_name;
  106. '),
  107. ),
  108. 'sort' => array(
  109. 'default' => 'CASE WHEN mg.id_group < 4 THEN mg.id_group ELSE 4 END, mg.group_name',
  110. 'reverse' => 'CASE WHEN mg.id_group < 4 THEN mg.id_group ELSE 4 END, mg.group_name DESC',
  111. ),
  112. ),
  113. 'icons' => array(
  114. 'header' => array(
  115. 'value' => $txt['membergroups_icons'],
  116. ),
  117. 'data' => array(
  118. 'db' => 'icons',
  119. ),
  120. 'sort' => array(
  121. 'default' => 'mg.icons',
  122. 'reverse' => 'mg.icons DESC',
  123. )
  124. ),
  125. 'moderators' => array(
  126. 'header' => array(
  127. 'value' => $txt['moderators'],
  128. ),
  129. 'data' => array(
  130. 'function' => create_function('$group', '
  131. global $txt;
  132. return empty($group[\'moderators\']) ? \'<em>\' . $txt[\'membergroups_new_copy_none\'] . \'</em>\' : implode(\', \', $group[\'moderators\']);
  133. '),
  134. ),
  135. ),
  136. 'members' => array(
  137. 'header' => array(
  138. 'value' => $txt['membergroups_members_top'],
  139. ),
  140. 'data' => array(
  141. 'function' => create_function('$rowData', '
  142. global $txt;
  143. // No explicit members for the moderator group.
  144. return $rowData[\'id_group\'] == 3 ? $txt[\'membergroups_guests_na\'] : comma_format($rowData[\'num_members\']);
  145. '),
  146. 'class' => 'centercol',
  147. ),
  148. 'sort' => array(
  149. 'default' => 'CASE WHEN mg.id_group < 4 THEN mg.id_group ELSE 4 END, 1',
  150. 'reverse' => 'CASE WHEN mg.id_group < 4 THEN mg.id_group ELSE 4 END, 1 DESC',
  151. ),
  152. ),
  153. ),
  154. );
  155. // Create the request list.
  156. createList($listOptions);
  157. $context['sub_template'] = 'show_list';
  158. $context['default_list'] = 'group_lists';
  159. }
  160. /**
  161. * Display members of a group, and allow adding of members to a group. Silly function name though ;)
  162. * It can be called from ManageMembergroups if it needs templating within the admin environment.
  163. * It shows a list of members that are part of a given membergroup.
  164. * It is called by ?action=moderate;area=viewgroups;sa=members;group=x
  165. * It requires the manage_membergroups permission.
  166. * It allows to add and remove members from the selected membergroup.
  167. * It allows sorting on several columns.
  168. * It redirects to itself.
  169. * @uses ManageMembergroups template, group_members sub template.
  170. * @todo: use createList
  171. */
  172. function MembergroupMembers()
  173. {
  174. global $txt, $scripturl, $context, $modSettings, $sourcedir, $user_info, $settings, $smcFunc;
  175. $_REQUEST['group'] = isset($_REQUEST['group']) ? (int) $_REQUEST['group'] : 0;
  176. // No browsing of guests, membergroup 0 or moderators.
  177. if (in_array($_REQUEST['group'], array(-1, 0, 3)))
  178. fatal_lang_error('membergroup_does_not_exist', false);
  179. // Load up the group details.
  180. $request = $smcFunc['db_query']('', '
  181. SELECT id_group AS id, group_name AS name, CASE WHEN min_posts = {int:min_posts} THEN 1 ELSE 0 END AS assignable, hidden, online_color,
  182. icons, description, CASE WHEN min_posts != {int:min_posts} THEN 1 ELSE 0 END AS is_post_group, group_type
  183. FROM {db_prefix}membergroups
  184. WHERE id_group = {int:id_group}
  185. LIMIT 1',
  186. array(
  187. 'min_posts' => -1,
  188. 'id_group' => $_REQUEST['group'],
  189. )
  190. );
  191. // Doesn't exist?
  192. if ($smcFunc['db_num_rows']($request) == 0)
  193. fatal_lang_error('membergroup_does_not_exist', false);
  194. $context['group'] = $smcFunc['db_fetch_assoc']($request);
  195. $smcFunc['db_free_result']($request);
  196. // Fix the membergroup icons.
  197. $context['group']['icons'] = explode('#', $context['group']['icons']);
  198. $context['group']['icons'] = !empty($context['group']['icons'][0]) && !empty($context['group']['icons'][1]) ? str_repeat('<img src="' . $settings['images_url'] . '/membericons/' . $context['group']['icons'][1] . '" alt="*" />', $context['group']['icons'][0]) : '';
  199. $context['group']['can_moderate'] = allowedTo('manage_membergroups') && (allowedTo('admin_forum') || $context['group']['group_type'] != 1);
  200. $context['linktree'][] = array(
  201. 'url' => $scripturl . '?action=groups;sa=members;group=' . $context['group']['id'],
  202. 'name' => $context['group']['name'],
  203. );
  204. $context['can_send_email'] = allowedTo('send_email_to_members');
  205. // Load all the group moderators, for fun.
  206. $request = $smcFunc['db_query']('', '
  207. SELECT mem.id_member, mem.real_name
  208. FROM {db_prefix}group_moderators AS mods
  209. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = mods.id_member)
  210. WHERE mods.id_group = {int:id_group}',
  211. array(
  212. 'id_group' => $_REQUEST['group'],
  213. )
  214. );
  215. $context['group']['moderators'] = array();
  216. while ($row = $smcFunc['db_fetch_assoc']($request))
  217. {
  218. $context['group']['moderators'][] = array(
  219. 'id' => $row['id_member'],
  220. 'name' => $row['real_name']
  221. );
  222. if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1)
  223. $context['group']['can_moderate'] = true;
  224. }
  225. $smcFunc['db_free_result']($request);
  226. // If this group is hidden then it can only "exists" if the user can moderate it!
  227. if ($context['group']['hidden'] && !$context['group']['can_moderate'])
  228. fatal_lang_error('membergroup_does_not_exist', false);
  229. // You can only assign membership if you are the moderator and/or can manage groups!
  230. if (!$context['group']['can_moderate'])
  231. $context['group']['assignable'] = 0;
  232. // Non-admins cannot assign admins.
  233. elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum'))
  234. $context['group']['assignable'] = 0;
  235. // Removing member from group?
  236. if (isset($_POST['remove']) && !empty($_REQUEST['rem']) && is_array($_REQUEST['rem']) && $context['group']['assignable'])
  237. {
  238. checkSession();
  239. validateToken('mod-mgm');
  240. // Make sure we're dealing with integers only.
  241. foreach ($_REQUEST['rem'] as $key => $group)
  242. $_REQUEST['rem'][$key] = (int) $group;
  243. require_once($sourcedir . '/Subs-Membergroups.php');
  244. removeMembersFromGroups($_REQUEST['rem'], $_REQUEST['group'], true);
  245. }
  246. // Must be adding new members to the group...
  247. elseif (isset($_REQUEST['add']) && (!empty($_REQUEST['toAdd']) || !empty($_REQUEST['member_add'])) && $context['group']['assignable'])
  248. {
  249. checkSession();
  250. validateToken('mod-mgm');
  251. $member_query = array();
  252. $member_parameters = array();
  253. // Get all the members to be added... taking into account names can be quoted ;)
  254. $_REQUEST['toAdd'] = strtr($smcFunc['htmlspecialchars']($_REQUEST['toAdd'], ENT_QUOTES), array('&quot;' => '"'));
  255. preg_match_all('~"([^"]+)"~', $_REQUEST['toAdd'], $matches);
  256. $member_names = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_REQUEST['toAdd']))));
  257. foreach ($member_names as $index => $member_name)
  258. {
  259. $member_names[$index] = trim($smcFunc['strtolower']($member_names[$index]));
  260. if (strlen($member_names[$index]) == 0)
  261. unset($member_names[$index]);
  262. }
  263. // Any passed by ID?
  264. $member_ids = array();
  265. if (!empty($_REQUEST['member_add']))
  266. foreach ($_REQUEST['member_add'] as $id)
  267. if ($id > 0)
  268. $member_ids[] = (int) $id;
  269. // Construct the query pelements.
  270. if (!empty($member_ids))
  271. {
  272. $member_query[] = 'id_member IN ({array_int:member_ids})';
  273. $member_parameters['member_ids'] = $member_ids;
  274. }
  275. if (!empty($member_names))
  276. {
  277. $member_query[] = 'LOWER(member_name) IN ({array_string:member_names})';
  278. $member_query[] = 'LOWER(real_name) IN ({array_string:member_names})';
  279. $member_parameters['member_names'] = $member_names;
  280. }
  281. $members = array();
  282. if (!empty($member_query))
  283. {
  284. $request = $smcFunc['db_query']('', '
  285. SELECT id_member
  286. FROM {db_prefix}members
  287. WHERE (' . implode(' OR ', $member_query) . ')
  288. AND id_group != {int:id_group}
  289. AND FIND_IN_SET({int:id_group}, additional_groups) = 0',
  290. array_merge($member_parameters, array(
  291. 'id_group' => $_REQUEST['group'],
  292. ))
  293. );
  294. while ($row = $smcFunc['db_fetch_assoc']($request))
  295. $members[] = $row['id_member'];
  296. $smcFunc['db_free_result']($request);
  297. }
  298. // @todo Add $_POST['additional'] to templates!
  299. // Do the updates...
  300. if (!empty($members))
  301. {
  302. require_once($sourcedir . '/Subs-Membergroups.php');
  303. addMembersToGroup($members, $_REQUEST['group'], isset($_POST['additional']) || $context['group']['hidden'] ? 'only_additional' : 'auto', true);
  304. }
  305. }
  306. // Sort out the sorting!
  307. $sort_methods = array(
  308. 'name' => 'real_name',
  309. 'email' => allowedTo('moderate_forum') ? 'email_address' : 'hide_email ' . (isset($_REQUEST['desc']) ? 'DESC' : 'ASC') . ', email_address',
  310. 'active' => 'last_login',
  311. 'registered' => 'date_registered',
  312. 'posts' => 'posts',
  313. );
  314. // They didn't pick one, default to by name..
  315. if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
  316. {
  317. $context['sort_by'] = 'name';
  318. $querySort = 'real_name';
  319. }
  320. // Otherwise default to ascending.
  321. else
  322. {
  323. $context['sort_by'] = $_REQUEST['sort'];
  324. $querySort = $sort_methods[$_REQUEST['sort']];
  325. }
  326. $context['sort_direction'] = isset($_REQUEST['desc']) ? 'down' : 'up';
  327. // The where on the query is interesting. Non-moderators should only see people who are in this group as primary.
  328. if ($context['group']['can_moderate'])
  329. $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0';
  330. else
  331. $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}';
  332. // Count members of the group.
  333. $request = $smcFunc['db_query']('', '
  334. SELECT COUNT(*)
  335. FROM {db_prefix}members
  336. WHERE ' . $where,
  337. array(
  338. 'group' => $_REQUEST['group'],
  339. )
  340. );
  341. list ($context['total_members']) = $smcFunc['db_fetch_row']($request);
  342. $smcFunc['db_free_result']($request);
  343. $context['total_members'] = comma_format($context['total_members']);
  344. // Create the page index.
  345. $context['page_index'] = constructPageIndex($scripturl . '?action=' . ($context['group']['can_moderate'] ? 'moderate;area=viewgroups' : 'groups') . ';sa=members;group=' . $_REQUEST['group'] . ';sort=' . $context['sort_by'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $context['total_members'], $modSettings['defaultMaxMembers']);
  346. $context['start'] = $_REQUEST['start'];
  347. $context['can_moderate_forum'] = allowedTo('moderate_forum');
  348. // Load up all members of this group.
  349. $request = $smcFunc['db_query']('', '
  350. SELECT id_member, member_name, real_name, email_address, member_ip, date_registered, last_login,
  351. hide_email, posts, is_activated, real_name
  352. FROM {db_prefix}members
  353. WHERE ' . $where . '
  354. ORDER BY ' . $querySort . ' ' . ($context['sort_direction'] == 'down' ? 'DESC' : 'ASC') . '
  355. LIMIT ' . $context['start'] . ', ' . $modSettings['defaultMaxMembers'],
  356. array(
  357. 'group' => $_REQUEST['group'],
  358. )
  359. );
  360. $context['members'] = array();
  361. while ($row = $smcFunc['db_fetch_assoc']($request))
  362. {
  363. $last_online = empty($row['last_login']) ? $txt['never'] : timeformat($row['last_login']);
  364. // Italicize the online note if they aren't activated.
  365. if ($row['is_activated'] % 10 != 1)
  366. $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>';
  367. $context['members'][] = array(
  368. 'id' => $row['id_member'],
  369. 'name' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
  370. 'email' => $row['email_address'],
  371. 'show_email' => showEmailAddress(!empty($row['hide_email']), $row['id_member']),
  372. 'ip' => '<a href="' . $scripturl . '?action=trackip;searchip=' . $row['member_ip'] . '">' . $row['member_ip'] . '</a>',
  373. 'registered' => timeformat($row['date_registered']),
  374. 'last_online' => $last_online,
  375. 'posts' => comma_format($row['posts']),
  376. 'is_activated' => $row['is_activated'] % 10 == 1,
  377. );
  378. }
  379. $smcFunc['db_free_result']($request);
  380. // Select the template.
  381. $context['sub_template'] = 'group_members';
  382. $context['page_title'] = $txt['membergroups_members_title'] . ': ' . $context['group']['name'];
  383. createToken('mod-mgm');
  384. }
  385. /**
  386. * Show and manage all group requests.
  387. */
  388. function GroupRequests()
  389. {
  390. global $txt, $context, $scripturl, $user_info, $sourcedir, $smcFunc, $modSettings, $language;
  391. // Set up the template stuff...
  392. $context['page_title'] = $txt['mc_group_requests'];
  393. $context['sub_template'] = 'show_list';
  394. // Verify we can be here.
  395. if ($user_info['mod_cache']['gq'] == '0=1')
  396. isAllowedTo('manage_membergroups');
  397. // Normally, we act normally...
  398. $where = ($user_info['mod_cache']['gq'] == '1=1' || $user_info['mod_cache']['gq'] == '0=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']) . ' AND lgr.status = {int:status_open}';
  399. $where_parameters = array(
  400. 'status_open' => 0,
  401. );
  402. // We've submitted?
  403. if (isset($_POST[$context['session_var']]) && !empty($_POST['groupr']) && !empty($_POST['req_action']))
  404. {
  405. checkSession('post');
  406. validateToken('mod-gr');
  407. // Clean the values.
  408. foreach ($_POST['groupr'] as $k => $request)
  409. $_POST['groupr'][$k] = (int) $request;
  410. $log_changes = array();
  411. // If we are giving a reason (And why shouldn't we?), then we don't actually do much.
  412. if ($_POST['req_action'] == 'reason')
  413. {
  414. // Different sub template...
  415. $context['sub_template'] = 'group_request_reason';
  416. // And a limitation. We don't care that the page number bit makes no sense, as we don't need it!
  417. $where .= ' AND lgr.id_request IN ({array_int:request_ids})';
  418. $where_parameters['request_ids'] = $_POST['groupr'];
  419. $context['group_requests'] = list_getGroupRequests(0, $modSettings['defaultMaxMessages'], 'lgr.id_request', $where, $where_parameters);
  420. // Need to make another token for this.
  421. createToken('mod-gr');
  422. // Let obExit etc sort things out.
  423. obExit();
  424. }
  425. // Otherwise we do something!
  426. else
  427. {
  428. // Get the details of all the members concerned...
  429. $request = $smcFunc['db_query']('', '
  430. SELECT lgr.id_request, lgr.id_member, lgr.id_group, mem.email_address, mem.id_group AS primary_group,
  431. mem.additional_groups AS additional_groups, mem.lngfile, mem.member_name, mem.notify_types,
  432. mg.hidden, mg.group_name
  433. FROM {db_prefix}log_group_requests AS lgr
  434. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = lgr.id_member)
  435. INNER JOIN {db_prefix}membergroups AS mg ON (mg.id_group = lgr.id_group)
  436. WHERE ' . $where . '
  437. AND lgr.id_request IN ({array_int:request_list})
  438. ORDER BY mem.lngfile',
  439. array(
  440. 'request_list' => $_POST['groupr'],
  441. 'status_open' => 0,
  442. )
  443. );
  444. $email_details = array();
  445. $group_changes = array();
  446. while ($row = $smcFunc['db_fetch_assoc']($request))
  447. {
  448. $row['lngfile'] = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  449. if (!isset($log_changes[$row['id_request']]))
  450. $log_changes[$row['id_request']] = array(
  451. 'id_request' => $row['id_request'],
  452. 'status' => $_POST['req_action'] == 'approve' ? 1 : 2, // 1 = approved, 2 = rejected
  453. 'id_member_acted' => $user_info['id'],
  454. 'member_name_acted' => $user_info['name'],
  455. 'time_acted' => time(),
  456. 'act_reason' => $_POST['req_action'] != 'approve' && !empty($_POST['groupreason']) && !empty($_POST['groupreason'][$row['id_request']]) ? $smcFunc['htmlspecialchars']($_POST['groupreason'][$row['id_request']], ENT_QUOTES) : '',
  457. );
  458. // If we are approving work out what their new group is.
  459. if ($_POST['req_action'] == 'approve')
  460. {
  461. // For people with more than one request at once.
  462. if (isset($group_changes[$row['id_member']]))
  463. {
  464. $row['additional_groups'] = $group_changes[$row['id_member']]['add'];
  465. $row['primary_group'] = $group_changes[$row['id_member']]['primary'];
  466. }
  467. else
  468. $row['additional_groups'] = explode(',', $row['additional_groups']);
  469. // Don't have it already?
  470. if ($row['primary_group'] == $row['id_group'] || in_array($row['id_group'], $row['additional_groups']))
  471. continue;
  472. // Should it become their primary?
  473. if ($row['primary_group'] == 0 && $row['hidden'] == 0)
  474. $row['primary_group'] = $row['id_group'];
  475. else
  476. $row['additional_groups'][] = $row['id_group'];
  477. // Add them to the group master list.
  478. $group_changes[$row['id_member']] = array(
  479. 'primary' => $row['primary_group'],
  480. 'add' => $row['additional_groups'],
  481. );
  482. }
  483. // Add required information to email them.
  484. if ($row['notify_types'] != 4)
  485. $email_details[] = array(
  486. 'rid' => $row['id_request'],
  487. 'member_id' => $row['id_member'],
  488. 'member_name' => $row['member_name'],
  489. 'group_id' => $row['id_group'],
  490. 'group_name' => $row['group_name'],
  491. 'email' => $row['email_address'],
  492. 'language' => $row['lngfile'],
  493. );
  494. }
  495. $smcFunc['db_free_result']($request);
  496. // Ensure everyone who is online gets their changes right away.
  497. updateSettings(array('settings_updated' => time()));
  498. if (!empty($email_details))
  499. {
  500. require_once($sourcedir . '/Subs-Post.php');
  501. // They are being approved?
  502. if ($_POST['req_action'] == 'approve')
  503. {
  504. // Make the group changes.
  505. foreach ($group_changes as $id => $groups)
  506. {
  507. // Sanity check!
  508. foreach ($groups['add'] as $key => $value)
  509. if ($value == 0 || trim($value) == '')
  510. unset($groups['add'][$key]);
  511. $smcFunc['db_query']('', '
  512. UPDATE {db_prefix}members
  513. SET id_group = {int:primary_group}, additional_groups = {string:additional_groups}
  514. WHERE id_member = {int:selected_member}',
  515. array(
  516. 'primary_group' => $groups['primary'],
  517. 'selected_member' => $id,
  518. 'additional_groups' => implode(',', $groups['add']),
  519. )
  520. );
  521. }
  522. $lastLng = $user_info['language'];
  523. foreach ($email_details as $email)
  524. {
  525. $replacements = array(
  526. 'USERNAME' => $email['member_name'],
  527. 'GROUPNAME' => $email['group_name'],
  528. );
  529. $emaildata = loadEmailTemplate('mc_group_approve', $replacements, $email['language']);
  530. sendmail($email['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 2);
  531. }
  532. }
  533. // Otherwise, they are getting rejected (With or without a reason).
  534. else
  535. {
  536. // Same as for approving, kind of.
  537. $lastLng = $user_info['language'];
  538. foreach ($email_details as $email)
  539. {
  540. $custom_reason = isset($_POST['groupreason']) && isset($_POST['groupreason'][$email['rid']]) ? $_POST['groupreason'][$email['rid']] : '';
  541. $replacements = array(
  542. 'USERNAME' => $email['member_name'],
  543. 'GROUPNAME' => $email['group_name'],
  544. );
  545. if (!empty($custom_reason))
  546. $replacements['REASON'] = $custom_reason;
  547. $emaildata = loadEmailTemplate(empty($custom_reason) ? 'mc_group_reject' : 'mc_group_reject_reason', $replacements, $email['language']);
  548. sendmail($email['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 2);
  549. }
  550. }
  551. }
  552. // Some changes to log?
  553. if (!empty($log_changes))
  554. {
  555. foreach ($log_changes as $id_request => $details)
  556. {
  557. $smcFunc['db_query']('', '
  558. UPDATE {db_prefix}log_group_requests
  559. SET status = {int:status},
  560. id_member_acted = {int:id_member_acted},
  561. member_name_acted = {string:member_name_acted},
  562. time_acted = {int:time_acted},
  563. act_reason = {string:act_reason}
  564. WHERE id_request = {int:id_request}',
  565. $details
  566. );
  567. }
  568. }
  569. // Restore the current language.
  570. loadLanguage('ModerationCenter');
  571. }
  572. }
  573. // We're going to want this for making our list.
  574. require_once($sourcedir . '/Subs-List.php');
  575. // This is all the information required for a group listing.
  576. $listOptions = array(
  577. 'id' => 'group_request_list',
  578. 'width' => '100%',
  579. 'items_per_page' => $modSettings['defaultMaxMessages'],
  580. 'no_items_label' => $txt['mc_groupr_none_found'],
  581. 'base_href' => $scripturl . '?action=groups;sa=requests',
  582. 'default_sort_col' => 'member',
  583. 'get_items' => array(
  584. 'function' => 'list_getGroupRequests',
  585. 'params' => array(
  586. $where,
  587. $where_parameters,
  588. ),
  589. ),
  590. 'get_count' => array(
  591. 'function' => 'list_getGroupRequestCount',
  592. 'params' => array(
  593. $where,
  594. $where_parameters,
  595. ),
  596. ),
  597. 'columns' => array(
  598. 'member' => array(
  599. 'header' => array(
  600. 'value' => $txt['mc_groupr_member'],
  601. ),
  602. 'data' => array(
  603. 'db' => 'member_link',
  604. ),
  605. 'sort' => array(
  606. 'default' => 'mem.member_name',
  607. 'reverse' => 'mem.member_name DESC',
  608. ),
  609. ),
  610. 'group' => array(
  611. 'header' => array(
  612. 'value' => $txt['mc_groupr_group'],
  613. ),
  614. 'data' => array(
  615. 'db' => 'group_link',
  616. ),
  617. 'sort' => array(
  618. 'default' => 'mg.group_name',
  619. 'reverse' => 'mg.group_name DESC',
  620. ),
  621. ),
  622. 'reason' => array(
  623. 'header' => array(
  624. 'value' => $txt['mc_groupr_reason'],
  625. ),
  626. 'data' => array(
  627. 'db' => 'reason',
  628. ),
  629. ),
  630. 'date' => array(
  631. 'header' => array(
  632. 'value' => $txt['date'],
  633. 'style' => 'width: 18%; white-space:nowrap;',
  634. ),
  635. 'data' => array(
  636. 'db' => 'time_submitted',
  637. ),
  638. ),
  639. 'action' => array(
  640. 'header' => array(
  641. 'value' => '<input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />',
  642. 'style' => 'width: 4%;',
  643. 'class' => 'centercol',
  644. ),
  645. 'data' => array(
  646. 'sprintf' => array(
  647. 'format' => '<input type="checkbox" name="groupr[]" value="%1$d" class="input_check" />',
  648. 'params' => array(
  649. 'id' => false,
  650. ),
  651. ),
  652. 'class' => 'centercol',
  653. ),
  654. ),
  655. ),
  656. 'form' => array(
  657. 'href' => $scripturl . '?action=groups;sa=requests',
  658. 'include_sort' => true,
  659. 'include_start' => true,
  660. 'hidden_fields' => array(
  661. $context['session_var'] => $context['session_id'],
  662. ),
  663. 'token' => 'mod-gr',
  664. ),
  665. 'additional_rows' => array(
  666. array(
  667. 'position' => 'bottom_of_list',
  668. 'value' => '
  669. <select name="req_action" onchange="if (this.value != 0 &amp;&amp; (this.value == \'reason\' || confirm(\'' . $txt['mc_groupr_warning'] . '\'))) this.form.submit();">
  670. <option value="0">' . $txt['with_selected'] . ':</option>
  671. <option value="0">---------------------</option>
  672. <option value="approve">' . $txt['mc_groupr_approve'] . '</option>
  673. <option value="reject">' . $txt['mc_groupr_reject'] . '</option>
  674. <option value="reason">' . $txt['mc_groupr_reject_w_reason'] . '</option>
  675. </select>
  676. <input type="submit" name="go" value="' . $txt['go'] . '" onclick="var sel = document.getElementById(\'req_action\'); if (sel.value != 0 &amp;&amp; sel.value != \'reason\' &amp;&amp; !confirm(\'' . $txt['mc_groupr_warning'] . '\')) return false;" class="button_submit" />',
  677. 'class' => 'floatright',
  678. ),
  679. ),
  680. );
  681. // Create the request list.
  682. createToken('mod-gr');
  683. createList($listOptions);
  684. $context['default_list'] = 'group_request_list';
  685. $context[$context['moderation_menu_name']]['tab_data'] = array(
  686. 'title' => $txt['mc_group_requests'],
  687. );
  688. }
  689. /**
  690. * Callback function for createList().
  691. *
  692. * @param $where
  693. * @param $where_parameters
  694. * @return int, the count of group requests
  695. */
  696. function list_getGroupRequestCount($where, $where_parameters)
  697. {
  698. global $smcFunc;
  699. $request = $smcFunc['db_query']('', '
  700. SELECT COUNT(*)
  701. FROM {db_prefix}log_group_requests AS lgr
  702. WHERE ' . $where,
  703. array_merge($where_parameters, array(
  704. ))
  705. );
  706. list ($totalRequests) = $smcFunc['db_fetch_row']($request);
  707. $smcFunc['db_free_result']($request);
  708. return $totalRequests;
  709. }
  710. /**
  711. * Callback function for createList()
  712. *
  713. * @param int $start The result to start with
  714. * @param int $items_per_page The number of items per page
  715. * @param string $sort An SQL sort expression (column/direction)
  716. * @param string $where Data for the WHERE clause
  717. * @param string $where_parameters Parameter values to be inerted into the WHERE clause
  718. * @return array An array of group requests
  719. * Each group request has:
  720. * 'id'
  721. * 'member_link'
  722. * 'group_link'
  723. * 'reason'
  724. * 'time_submitted'
  725. */
  726. function list_getGroupRequests($start, $items_per_page, $sort, $where, $where_parameters)
  727. {
  728. global $smcFunc, $scripturl;
  729. $request = $smcFunc['db_query']('', '
  730. SELECT lgr.id_request, lgr.id_member, lgr.id_group, lgr.time_applied, lgr.reason,
  731. mem.member_name, mg.group_name, mg.online_color, mem.real_name
  732. FROM {db_prefix}log_group_requests AS lgr
  733. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = lgr.id_member)
  734. INNER JOIN {db_prefix}membergroups AS mg ON (mg.id_group = lgr.id_group)
  735. WHERE ' . $where . '
  736. ORDER BY {raw:sort}
  737. LIMIT ' . $start . ', ' . $items_per_page,
  738. array_merge($where_parameters, array(
  739. 'sort' => $sort,
  740. ))
  741. );
  742. $group_requests = array();
  743. while ($row = $smcFunc['db_fetch_assoc']($request))
  744. {
  745. $group_requests[] = array(
  746. 'id' => $row['id_request'],
  747. 'member_link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
  748. 'group_link' => '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>',
  749. 'reason' => censorText($row['reason']),
  750. 'time_submitted' => timeformat($row['time_applied']),
  751. );
  752. }
  753. $smcFunc['db_free_result']($request);
  754. return $group_requests;
  755. }
  756. ?>