ManageMembergroups.php 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100
  1. <?php
  2. /**
  3. * This file is concerned with anything in the Manage Membergroups admin screen.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  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('Hacking attempt...');
  16. /**
  17. * Main dispatcher, the entrance point for all 'Manage Membergroup' actions.
  18. * It forwards to a function based on the given subaction, default being subaction 'index', or, without manage_membergroup
  19. * permissions, then 'settings'.
  20. * Called by ?action=admin;area=membergroups.
  21. * Requires the manage_membergroups or the admin_forum permission.
  22. *
  23. * @uses ManageMembergroups template.
  24. * @uses ManageMembers language file.
  25. */
  26. function ModifyMembergroups()
  27. {
  28. global $context, $txt, $scripturl, $sourcedir;
  29. $subActions = array(
  30. 'add' => array('AddMembergroup', 'manage_membergroups'),
  31. 'delete' => array('DeleteMembergroup', 'manage_membergroups'),
  32. 'edit' => array('EditMembergroup', 'manage_membergroups'),
  33. 'index' => array('MembergroupIndex', 'manage_membergroups'),
  34. 'members' => array('MembergroupMembers', 'manage_membergroups', 'Groups.php'),
  35. 'settings' => array('ModifyMembergroupsettings', 'admin_forum'),
  36. );
  37. call_integration_hook('integrate_manage_membergroups', array(&$subActions));
  38. // Default to sub action 'index' or 'settings' depending on permissions.
  39. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (allowedTo('manage_membergroups') ? 'index' : 'settings');
  40. // Is it elsewhere?
  41. if (isset($subActions[$_REQUEST['sa']][2]))
  42. require_once($sourcedir . '/' . $subActions[$_REQUEST['sa']][2]);
  43. // Do the permission check, you might not be allowed her.
  44. isAllowedTo($subActions[$_REQUEST['sa']][1]);
  45. // Language and template stuff, the usual.
  46. loadLanguage('ManageMembers');
  47. loadTemplate('ManageMembergroups');
  48. // Setup the admin tabs.
  49. $context[$context['admin_menu_name']]['tab_data'] = array(
  50. 'title' => $txt['membergroups_title'],
  51. 'help' => 'membergroups',
  52. 'description' => $txt['membergroups_description'],
  53. );
  54. // Call the right function.
  55. $subActions[$_REQUEST['sa']][0]();
  56. }
  57. /**
  58. * Shows an overview of the current membergroups.
  59. * Called by ?action=admin;area=membergroups.
  60. * Requires the manage_membergroups permission.
  61. * Splits the membergroups in regular ones and post count based groups.
  62. * It also counts the number of members part of each membergroup.
  63. *
  64. * @uses ManageMembergroups template, main.
  65. */
  66. function MembergroupIndex()
  67. {
  68. global $txt, $scripturl, $context, $settings, $smcFunc, $sourcedir;
  69. $context['page_title'] = $txt['membergroups_title'];
  70. // The first list shows the regular membergroups.
  71. $listOptions = array(
  72. 'id' => 'regular_membergroups_list',
  73. 'title' => $txt['membergroups_regular'],
  74. 'base_href' => $scripturl . '?action=admin;area=membergroups' . (isset($_REQUEST['sort2']) ? ';sort2=' . urlencode($_REQUEST['sort2']) : ''),
  75. 'default_sort_col' => 'name',
  76. 'get_items' => array(
  77. 'file' => $sourcedir . '/Subs-Membergroups.php',
  78. 'function' => 'list_getMembergroups',
  79. 'params' => array(
  80. 'regular',
  81. ),
  82. ),
  83. 'columns' => array(
  84. 'name' => array(
  85. 'header' => array(
  86. 'value' => $txt['membergroups_name'],
  87. ),
  88. 'data' => array(
  89. 'function' => create_function('$rowData', '
  90. global $scripturl;
  91. // Since the moderator group has no explicit members, no link is needed.
  92. if ($rowData[\'id_group\'] == 3)
  93. $group_name = $rowData[\'group_name\'];
  94. else
  95. {
  96. $color_style = empty($rowData[\'online_color\']) ? \'\' : sprintf(\' style="color: %1$s;"\', $rowData[\'online_color\']);
  97. $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\']);
  98. }
  99. // Add a help option for moderator and administrator.
  100. if ($rowData[\'id_group\'] == 1)
  101. $group_name .= sprintf(\' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqWin(this.href);">?</a>)\', $scripturl);
  102. elseif ($rowData[\'id_group\'] == 3)
  103. $group_name .= sprintf(\' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqWin(this.href);">?</a>)\', $scripturl);
  104. return $group_name;
  105. '),
  106. ),
  107. 'sort' => array(
  108. 'default' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, group_name',
  109. 'reverse' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, group_name DESC',
  110. ),
  111. ),
  112. 'stars' => array(
  113. 'header' => array(
  114. 'value' => $txt['membergroups_stars'],
  115. ),
  116. 'data' => array(
  117. 'function' => create_function('$rowData', '
  118. global $settings;
  119. $stars = explode(\'#\', $rowData[\'stars\']);
  120. // In case no stars are setup, return with nothing
  121. if (empty($stars[0]) || empty($stars[1]))
  122. return \'\';
  123. // Otherwise repeat the image a given number of times.
  124. else
  125. {
  126. $image = sprintf(\'<img src="%1$s/%2$s" alt="*" />\', $settings[\'images_url\'], $stars[1]);
  127. return str_repeat($image, $stars[0]);
  128. }
  129. '),
  130. ),
  131. 'sort' => array(
  132. 'default' => 'stars',
  133. 'reverse' => 'stars DESC',
  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\'] : $rowData[\'num_members\'];
  145. '),
  146. 'style' => 'text-align: center',
  147. ),
  148. 'sort' => array(
  149. 'default' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, 1',
  150. 'reverse' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, 1 DESC',
  151. ),
  152. ),
  153. 'modify' => array(
  154. 'header' => array(
  155. 'value' => $txt['modify'],
  156. ),
  157. 'data' => array(
  158. 'sprintf' => array(
  159. 'format' => '<a href="' . $scripturl . '?action=admin;area=membergroups;sa=edit;group=%1$d">' . $txt['membergroups_modify'] . '</a>',
  160. 'params' => array(
  161. 'id_group' => false,
  162. ),
  163. ),
  164. 'style' => 'text-align: center',
  165. ),
  166. ),
  167. ),
  168. 'additional_rows' => array(
  169. array(
  170. 'position' => 'below_table_data',
  171. 'value' => '[<a href="' . $scripturl . '?action=admin;area=membergroups;sa=add;generalgroup">' . $txt['membergroups_add_group'] . '</a>]',
  172. ),
  173. ),
  174. );
  175. call_integration_hook('integrate_modify_regular_groups', array(&$listOptions));
  176. require_once($sourcedir . '/Subs-List.php');
  177. createList($listOptions);
  178. // The second list shows the post count based groups.
  179. $listOptions = array(
  180. 'id' => 'post_count_membergroups_list',
  181. 'title' => $txt['membergroups_post'],
  182. 'base_href' => $scripturl . '?action=admin;area=membergroups' . (isset($_REQUEST['sort']) ? ';sort=' . urlencode($_REQUEST['sort']) : ''),
  183. 'default_sort_col' => 'required_posts',
  184. 'request_vars' => array(
  185. 'sort' => 'sort2',
  186. 'desc' => 'desc2',
  187. ),
  188. 'get_items' => array(
  189. 'file' => $sourcedir . '/Subs-Membergroups.php',
  190. 'function' => 'list_getMembergroups',
  191. 'params' => array(
  192. 'post_count',
  193. ),
  194. ),
  195. 'columns' => array(
  196. 'name' => array(
  197. 'header' => array(
  198. 'value' => $txt['membergroups_name'],
  199. ),
  200. 'data' => array(
  201. 'function' => create_function('$rowData', '
  202. global $scripturl;
  203. $colorStyle = empty($rowData[\'online_color\']) ? \'\' : sprintf(\' style="color: %1$s;"\', $rowData[\'online_color\']);
  204. return sprintf(\'<a href="%1$s?action=moderate;area=viewgroups;sa=members;group=%2$d"%3$s>%4$s</a>\', $scripturl, $rowData[\'id_group\'], $colorStyle, $rowData[\'group_name\']);
  205. '),
  206. ),
  207. 'sort' => array(
  208. 'default' => 'group_name',
  209. 'reverse' => 'group_name DESC',
  210. ),
  211. ),
  212. 'stars' => array(
  213. 'header' => array(
  214. 'value' => $txt['membergroups_stars'],
  215. ),
  216. 'data' => array(
  217. 'function' => create_function('$rowData', '
  218. global $settings;
  219. $stars = explode(\'#\', $rowData[\'stars\']);
  220. if (empty($stars[0]) || empty($stars[1]))
  221. return \'\';
  222. else
  223. {
  224. $star_image = sprintf(\'<img src="%1$s/%2$s" alt="*" />\', $settings[\'images_url\'], $stars[1]);
  225. return str_repeat($star_image, $stars[0]);
  226. }
  227. '),
  228. ),
  229. 'sort' => array(
  230. 'default' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, stars',
  231. 'reverse' => 'CASE WHEN id_group < 4 THEN id_group ELSE 4 END, stars DESC',
  232. )
  233. ),
  234. 'members' => array(
  235. 'header' => array(
  236. 'value' => $txt['membergroups_members_top'],
  237. ),
  238. 'data' => array(
  239. 'db' => 'num_members',
  240. 'style' => 'text-align: center',
  241. ),
  242. 'sort' => array(
  243. 'default' => '1 DESC',
  244. 'reverse' => '1',
  245. ),
  246. ),
  247. 'required_posts' => array(
  248. 'header' => array(
  249. 'value' => $txt['membergroups_min_posts'],
  250. ),
  251. 'data' => array(
  252. 'db' => 'min_posts',
  253. 'style' => 'text-align: center',
  254. ),
  255. 'sort' => array(
  256. 'default' => 'min_posts',
  257. 'reverse' => 'min_posts DESC',
  258. ),
  259. ),
  260. 'modify' => array(
  261. 'header' => array(
  262. 'value' => $txt['modify'],
  263. ),
  264. 'data' => array(
  265. 'sprintf' => array(
  266. 'format' => '<a href="' . $scripturl . '?action=admin;area=membergroups;sa=edit;group=%1$d">' . $txt['membergroups_modify'] . '</a>',
  267. 'params' => array(
  268. 'id_group' => false,
  269. ),
  270. ),
  271. 'style' => 'text-align: center',
  272. ),
  273. ),
  274. ),
  275. 'additional_rows' => array(
  276. array(
  277. 'position' => 'below_table_data',
  278. 'value' => '[<a href="' . $scripturl . '?action=admin;area=membergroups;sa=add;postgroup">' . $txt['membergroups_add_group'] . '</a>]',
  279. ),
  280. ),
  281. );
  282. call_integration_hook('integrate_modify_post_groups', array(&$listOptions));
  283. createList($listOptions);
  284. }
  285. /**
  286. * This function handles adding a membergroup and setting some initial properties.
  287. * Called by ?action=admin;area=membergroups;sa=add.
  288. * It requires the manage_membergroups permission.
  289. * Allows to use a predefined permission profile or copy one from another group.
  290. * Redirects to action=admin;area=membergroups;sa=edit;group=x.
  291. *
  292. * @uses the new_group sub template of ManageMembergroups.
  293. */
  294. function AddMembergroup()
  295. {
  296. global $context, $txt, $sourcedir, $modSettings, $smcFunc;
  297. // A form was submitted, we can start adding.
  298. if (!empty($_POST['group_name']))
  299. {
  300. checkSession();
  301. validateToken('admin-mmg');
  302. $postCountBasedGroup = isset($_POST['min_posts']) && (!isset($_POST['postgroup_based']) || !empty($_POST['postgroup_based']));
  303. $_POST['group_type'] = !isset($_POST['group_type']) || $_POST['group_type'] < 0 || $_POST['group_type'] > 3 || ($_POST['group_type'] == 1 && !allowedTo('admin_forum')) ? 0 : (int) $_POST['group_type'];
  304. // @todo Check for members with same name too?
  305. $request = $smcFunc['db_query']('', '
  306. SELECT MAX(id_group)
  307. FROM {db_prefix}membergroups',
  308. array(
  309. )
  310. );
  311. list ($id_group) = $smcFunc['db_fetch_row']($request);
  312. $smcFunc['db_free_result']($request);
  313. $id_group++;
  314. $smcFunc['db_insert']('',
  315. '{db_prefix}membergroups',
  316. array(
  317. 'id_group' => 'int', 'description' => 'string', 'group_name' => 'string-80', 'min_posts' => 'int',
  318. 'stars' => 'string', 'online_color' => 'string', 'group_type' => 'int',
  319. ),
  320. array(
  321. $id_group, '', $_POST['group_name'], ($postCountBasedGroup ? (int) $_POST['min_posts'] : '-1'),
  322. '1#star.gif', '', $_POST['group_type'],
  323. ),
  324. array('id_group')
  325. );
  326. call_integration_hook('integrate_add_membergroup', array($id_group, $postCountBasedGroup));
  327. // Update the post groups now, if this is a post group!
  328. if (isset($_POST['min_posts']))
  329. updateStats('postgroups');
  330. // You cannot set permissions for post groups if they are disabled.
  331. if ($postCountBasedGroup && empty($modSettings['permission_enable_postgroups']))
  332. $_POST['perm_type'] = '';
  333. if ($_POST['perm_type'] == 'predefined')
  334. {
  335. // Set default permission level.
  336. require_once($sourcedir . '/ManagePermissions.php');
  337. setPermissionLevel($_POST['level'], $id_group, 'null');
  338. }
  339. // Copy or inherit the permissions!
  340. elseif ($_POST['perm_type'] == 'copy' || $_POST['perm_type'] == 'inherit')
  341. {
  342. $copy_id = $_POST['perm_type'] == 'copy' ? (int) $_POST['copyperm'] : (int) $_POST['inheritperm'];
  343. // Are you a powerful admin?
  344. if (!allowedTo('admin_forum'))
  345. {
  346. $request = $smcFunc['db_query']('', '
  347. SELECT group_type
  348. FROM {db_prefix}membergroups
  349. WHERE id_group = {int:copy_from}
  350. LIMIT {int:limit}',
  351. array(
  352. 'copy_from' => $copy_id,
  353. 'limit' => 1,
  354. )
  355. );
  356. list ($copy_type) = $smcFunc['db_fetch_row']($request);
  357. $smcFunc['db_free_result']($request);
  358. // Protected groups are... well, protected!
  359. if ($copy_type == 1)
  360. fatal_lang_error('membergroup_does_not_exist');
  361. }
  362. // Don't allow copying of a real priviledged person!
  363. require_once($sourcedir . '/ManagePermissions.php');
  364. loadIllegalPermissions();
  365. $request = $smcFunc['db_query']('', '
  366. SELECT permission, add_deny
  367. FROM {db_prefix}permissions
  368. WHERE id_group = {int:copy_from}',
  369. array(
  370. 'copy_from' => $copy_id,
  371. )
  372. );
  373. $inserts = array();
  374. while ($row = $smcFunc['db_fetch_assoc']($request))
  375. {
  376. if (empty($context['illegal_permissions']) || !in_array($row['permission'], $context['illegal_permissions']))
  377. $inserts[] = array($id_group, $row['permission'], $row['add_deny']);
  378. }
  379. $smcFunc['db_free_result']($request);
  380. if (!empty($inserts))
  381. $smcFunc['db_insert']('insert',
  382. '{db_prefix}permissions',
  383. array('id_group' => 'int', 'permission' => 'string', 'add_deny' => 'int'),
  384. $inserts,
  385. array('id_group', 'permission')
  386. );
  387. $request = $smcFunc['db_query']('', '
  388. SELECT id_profile, permission, add_deny
  389. FROM {db_prefix}board_permissions
  390. WHERE id_group = {int:copy_from}',
  391. array(
  392. 'copy_from' => $copy_id,
  393. )
  394. );
  395. $inserts = array();
  396. while ($row = $smcFunc['db_fetch_assoc']($request))
  397. $inserts[] = array($id_group, $row['id_profile'], $row['permission'], $row['add_deny']);
  398. $smcFunc['db_free_result']($request);
  399. if (!empty($inserts))
  400. $smcFunc['db_insert']('insert',
  401. '{db_prefix}board_permissions',
  402. array('id_group' => 'int', 'id_profile' => 'int', 'permission' => 'string', 'add_deny' => 'int'),
  403. $inserts,
  404. array('id_group', 'id_profile', 'permission')
  405. );
  406. // Also get some membergroup information if we're copying and not copying from guests...
  407. if ($copy_id > 0 && $_POST['perm_type'] == 'copy')
  408. {
  409. $request = $smcFunc['db_query']('', '
  410. SELECT online_color, max_messages, stars
  411. FROM {db_prefix}membergroups
  412. WHERE id_group = {int:copy_from}
  413. LIMIT 1',
  414. array(
  415. 'copy_from' => $copy_id,
  416. )
  417. );
  418. $group_info = $smcFunc['db_fetch_assoc']($request);
  419. $smcFunc['db_free_result']($request);
  420. // ...and update the new membergroup with it.
  421. $smcFunc['db_query']('', '
  422. UPDATE {db_prefix}membergroups
  423. SET
  424. online_color = {string:online_color},
  425. max_messages = {int:max_messages},
  426. stars = {string:stars}
  427. WHERE id_group = {int:current_group}',
  428. array(
  429. 'max_messages' => $group_info['max_messages'],
  430. 'current_group' => $id_group,
  431. 'online_color' => $group_info['online_color'],
  432. 'stars' => $group_info['stars'],
  433. )
  434. );
  435. }
  436. // If inheriting say so...
  437. elseif ($_POST['perm_type'] == 'inherit')
  438. {
  439. $smcFunc['db_query']('', '
  440. UPDATE {db_prefix}membergroups
  441. SET id_parent = {int:copy_from}
  442. WHERE id_group = {int:current_group}',
  443. array(
  444. 'copy_from' => $copy_id,
  445. 'current_group' => $id_group,
  446. )
  447. );
  448. }
  449. }
  450. // Make sure all boards selected are stored in a proper array.
  451. $_POST['boardaccess'] = empty($_POST['boardaccess']) || !is_array($_POST['boardaccess']) ? array() : $_POST['boardaccess'];
  452. foreach ($_POST['boardaccess'] as $key => $value)
  453. $_POST['boardaccess'][$key] = (int) $value;
  454. // Only do this if they have special access requirements.
  455. if (!empty($_POST['boardaccess']))
  456. $smcFunc['db_query']('', '
  457. UPDATE {db_prefix}boards
  458. SET member_groups = CASE WHEN member_groups = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT(member_groups, {string:comma_group}) END
  459. WHERE id_board IN ({array_int:board_list})',
  460. array(
  461. 'board_list' => $_POST['boardaccess'],
  462. 'blank_string' => '',
  463. 'group_id_string' => (string) $id_group,
  464. 'comma_group' => ',' . $id_group,
  465. )
  466. );
  467. // If this is joinable then set it to show group membership in people's profiles.
  468. if (empty($modSettings['show_group_membership']) && $_POST['group_type'] > 1)
  469. updateSettings(array('show_group_membership' => 1));
  470. // Rebuild the group cache.
  471. updateSettings(array(
  472. 'settings_updated' => time(),
  473. ));
  474. // We did it.
  475. logAction('add_group', array('group' => $_POST['group_name']), 'admin');
  476. // Go change some more settings.
  477. redirectexit('action=admin;area=membergroups;sa=edit;group=' . $id_group);
  478. }
  479. // Just show the 'add membergroup' screen.
  480. $context['page_title'] = $txt['membergroups_new_group'];
  481. $context['sub_template'] = 'new_group';
  482. $context['post_group'] = isset($_REQUEST['postgroup']);
  483. $context['undefined_group'] = !isset($_REQUEST['postgroup']) && !isset($_REQUEST['generalgroup']);
  484. $context['allow_protected'] = allowedTo('admin_forum');
  485. $result = $smcFunc['db_query']('', '
  486. SELECT id_group, group_name
  487. FROM {db_prefix}membergroups
  488. WHERE (id_group > {int:moderator_group} OR id_group = {int:global_mod_group})' . (empty($modSettings['permission_enable_postgroups']) ? '
  489. AND min_posts = {int:min_posts}' : '') . (allowedTo('admin_forum') ? '' : '
  490. AND group_type != {int:is_protected}') . '
  491. ORDER BY min_posts, id_group != {int:global_mod_group}, group_name',
  492. array(
  493. 'moderator_group' => 3,
  494. 'global_mod_group' => 2,
  495. 'min_posts' => -1,
  496. 'is_protected' => 1,
  497. )
  498. );
  499. $context['groups'] = array();
  500. while ($row = $smcFunc['db_fetch_assoc']($result))
  501. $context['groups'][] = array(
  502. 'id' => $row['id_group'],
  503. 'name' => $row['group_name']
  504. );
  505. $smcFunc['db_free_result']($result);
  506. $result = $smcFunc['db_query']('', '
  507. SELECT id_board, name, child_level
  508. FROM {db_prefix}boards
  509. ORDER BY board_order',
  510. array(
  511. )
  512. );
  513. $context['boards'] = array();
  514. while ($row = $smcFunc['db_fetch_assoc']($result))
  515. $context['boards'][] = array(
  516. 'id' => $row['id_board'],
  517. 'name' => $row['name'],
  518. 'child_level' => $row['child_level'],
  519. 'selected' => false
  520. );
  521. $smcFunc['db_free_result']($result);
  522. createToken('admin-mmg');
  523. }
  524. /**
  525. * Deleting a membergroup by URL (not implemented).
  526. * Called by ?action=admin;area=membergroups;sa=delete;group=x;session_var=y.
  527. * Requires the manage_membergroups permission.
  528. * Redirects to ?action=admin;area=membergroups.
  529. *
  530. * @todo look at this
  531. */
  532. function DeleteMembergroup()
  533. {
  534. global $sourcedir;
  535. checkSession('get');
  536. require_once($sourcedir . '/Subs-Membergroups.php');
  537. deleteMembergroups((int) $_REQUEST['group']);
  538. // Go back to the membergroup index.
  539. redirectexit('action=admin;area=membergroups;');
  540. }
  541. /**
  542. * Editing a membergroup.
  543. * Screen to edit a specific membergroup.
  544. * Called by ?action=admin;area=membergroups;sa=edit;group=x.
  545. * It requires the manage_membergroups permission.
  546. * Also handles the delete button of the edit form.
  547. * Redirects to ?action=admin;area=membergroups.
  548. *
  549. * @uses the edit_group sub template of ManageMembergroups.
  550. */
  551. function EditMembergroup()
  552. {
  553. global $context, $txt, $sourcedir, $modSettings, $smcFunc;
  554. $_REQUEST['group'] = isset($_REQUEST['group']) && $_REQUEST['group'] > 0 ? (int) $_REQUEST['group'] : 0;
  555. // Make sure this group is editable.
  556. if (!empty($_REQUEST['group']))
  557. {
  558. $request = $smcFunc['db_query']('', '
  559. SELECT id_group
  560. FROM {db_prefix}membergroups
  561. WHERE id_group = {int:current_group}' . (allowedTo('admin_forum') ? '' : '
  562. AND group_type != {int:is_protected}') . '
  563. LIMIT {int:limit}',
  564. array(
  565. 'current_group' => $_REQUEST['group'],
  566. 'is_protected' => 1,
  567. 'limit' => 1,
  568. )
  569. );
  570. list ($_REQUEST['group']) = $smcFunc['db_fetch_row']($request);
  571. $smcFunc['db_free_result']($request);
  572. }
  573. // Now, do we have a valid id?
  574. if (empty($_REQUEST['group']))
  575. fatal_lang_error('membergroup_does_not_exist', false);
  576. // The delete this membergroup button was pressed.
  577. if (isset($_POST['delete']))
  578. {
  579. checkSession();
  580. validateToken('admin-mmg');
  581. require_once($sourcedir . '/Subs-Membergroups.php');
  582. deleteMembergroups($_REQUEST['group']);
  583. redirectexit('action=admin;area=membergroups;');
  584. }
  585. // A form was submitted with the new membergroup settings.
  586. elseif (isset($_POST['submit']))
  587. {
  588. // Validate the session.
  589. checkSession();
  590. validateToken('admin-mmg');
  591. // Can they really inherit from this group?
  592. if (isset($_POST['group_inherit']) && $_POST['group_inherit'] != -2 && !allowedTo('admin_forum'))
  593. {
  594. $request = $smcFunc['db_query']('', '
  595. SELECT group_type
  596. FROM {db_prefix}membergroups
  597. WHERE id_group = {int:inherit_from}
  598. LIMIT {int:limit}',
  599. array(
  600. 'inherit_from' => $_POST['group_inherit'],
  601. 'limit' => 1,
  602. )
  603. );
  604. list ($inherit_type) = $smcFunc['db_fetch_row']($request);
  605. $smcFunc['db_free_result']($request);
  606. }
  607. // Set variables to their proper value.
  608. $_POST['max_messages'] = isset($_POST['max_messages']) ? (int) $_POST['max_messages'] : 0;
  609. $_POST['min_posts'] = isset($_POST['min_posts']) && isset($_POST['group_type']) && $_POST['group_type'] == -1 && $_REQUEST['group'] > 3 ? abs($_POST['min_posts']) : ($_REQUEST['group'] == 4 ? 0 : -1);
  610. $_POST['stars'] = (empty($_POST['star_count']) || $_POST['star_count'] < 0) ? '' : min((int) $_POST['star_count'], 99) . '#' . $_POST['star_image'];
  611. $_POST['group_desc'] = isset($_POST['group_desc']) && ($_REQUEST['group'] == 1 || (isset($_POST['group_type']) && $_POST['group_type'] != -1)) ? trim($_POST['group_desc']) : '';
  612. $_POST['group_type'] = !isset($_POST['group_type']) || $_POST['group_type'] < 0 || $_POST['group_type'] > 3 || ($_POST['group_type'] == 1 && !allowedTo('admin_forum')) ? 0 : (int) $_POST['group_type'];
  613. $_POST['group_hidden'] = empty($_POST['group_hidden']) || $_POST['min_posts'] != -1 || $_REQUEST['group'] == 3 ? 0 : (int) $_POST['group_hidden'];
  614. $_POST['group_inherit'] = $_REQUEST['group'] > 1 && $_REQUEST['group'] != 3 && (empty($inherit_type) || $inherit_type != 1) ? (int) $_POST['group_inherit'] : -2;
  615. /**
  616. * @todo Don't set online_color for the Moderators group?
  617. */
  618. // Do the update of the membergroup settings.
  619. $smcFunc['db_query']('', '
  620. UPDATE {db_prefix}membergroups
  621. SET group_name = {string:group_name}, online_color = {string:online_color},
  622. max_messages = {int:max_messages}, min_posts = {int:min_posts}, stars = {string:stars},
  623. description = {string:group_desc}, group_type = {int:group_type}, hidden = {int:group_hidden},
  624. id_parent = {int:group_inherit}
  625. WHERE id_group = {int:current_group}',
  626. array(
  627. 'max_messages' => $_POST['max_messages'],
  628. 'min_posts' => $_POST['min_posts'],
  629. 'group_type' => $_POST['group_type'],
  630. 'group_hidden' => $_POST['group_hidden'],
  631. 'group_inherit' => $_POST['group_inherit'],
  632. 'current_group' => (int) $_REQUEST['group'],
  633. 'group_name' => $_POST['group_name'],
  634. 'online_color' => $_POST['online_color'],
  635. 'stars' => $_POST['stars'],
  636. 'group_desc' => $_POST['group_desc'],
  637. )
  638. );
  639. call_integration_hook('integrate_save_membergroup', array((int) $_REQUEST['group']));
  640. // Time to update the boards this membergroup has access to.
  641. if ($_REQUEST['group'] == 2 || $_REQUEST['group'] > 3)
  642. {
  643. $_POST['boardaccess'] = empty($_POST['boardaccess']) || !is_array($_POST['boardaccess']) ? array() : $_POST['boardaccess'];
  644. foreach ($_POST['boardaccess'] as $key => $value)
  645. $_POST['boardaccess'][$key] = (int) $value;
  646. // Find all board this group is in, but shouldn't be in.
  647. $request = $smcFunc['db_query']('', '
  648. SELECT id_board, member_groups
  649. FROM {db_prefix}boards
  650. WHERE FIND_IN_SET({string:current_group}, member_groups) != 0' . (empty($_POST['boardaccess']) ? '' : '
  651. AND id_board NOT IN ({array_int:board_access_list})'),
  652. array(
  653. 'current_group' => (int) $_REQUEST['group'],
  654. 'board_access_list' => $_POST['boardaccess'],
  655. )
  656. );
  657. while ($row = $smcFunc['db_fetch_assoc']($request))
  658. $smcFunc['db_query']('', '
  659. UPDATE {db_prefix}boards
  660. SET member_groups = {string:member_group_access}
  661. WHERE id_board = {int:current_board}',
  662. array(
  663. 'current_board' => $row['id_board'],
  664. 'member_group_access' => implode(',', array_diff(explode(',', $row['member_groups']), array($_REQUEST['group']))),
  665. )
  666. );
  667. $smcFunc['db_free_result']($request);
  668. // Add the membergroup to all boards that hadn't been set yet.
  669. if (!empty($_POST['boardaccess']))
  670. $smcFunc['db_query']('', '
  671. UPDATE {db_prefix}boards
  672. SET member_groups = CASE WHEN member_groups = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT(member_groups, {string:comma_group}) END
  673. WHERE id_board IN ({array_int:board_list})
  674. AND FIND_IN_SET({int:current_group}, member_groups) = 0',
  675. array(
  676. 'board_list' => $_POST['boardaccess'],
  677. 'blank_string' => '',
  678. 'current_group' => (int) $_REQUEST['group'],
  679. 'group_id_string' => (string) (int) $_REQUEST['group'],
  680. 'comma_group' => ',' . $_REQUEST['group'],
  681. )
  682. );
  683. }
  684. // Remove everyone from this group!
  685. if ($_POST['min_posts'] != -1)
  686. {
  687. $smcFunc['db_query']('', '
  688. UPDATE {db_prefix}members
  689. SET id_group = {int:regular_member}
  690. WHERE id_group = {int:current_group}',
  691. array(
  692. 'regular_member' => 0,
  693. 'current_group' => (int) $_REQUEST['group'],
  694. )
  695. );
  696. $request = $smcFunc['db_query']('', '
  697. SELECT id_member, additional_groups
  698. FROM {db_prefix}members
  699. WHERE FIND_IN_SET({string:current_group}, additional_groups) != 0',
  700. array(
  701. 'current_group' => (int) $_REQUEST['group'],
  702. )
  703. );
  704. $updates = array();
  705. while ($row = $smcFunc['db_fetch_assoc']($request))
  706. $updates[$row['additional_groups']][] = $row['id_member'];
  707. $smcFunc['db_free_result']($request);
  708. foreach ($updates as $additional_groups => $memberArray)
  709. updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), array((int) $_REQUEST['group'])))));
  710. }
  711. elseif ($_REQUEST['group'] != 3)
  712. {
  713. // Making it a hidden group? If so remove everyone with it as primary group (Actually, just make them additional).
  714. if ($_POST['group_hidden'] == 2)
  715. {
  716. $request = $smcFunc['db_query']('', '
  717. SELECT id_member, additional_groups
  718. FROM {db_prefix}members
  719. WHERE id_group = {int:current_group}
  720. AND FIND_IN_SET({int:current_group}, additional_groups) = 0',
  721. array(
  722. 'current_group' => (int) $_REQUEST['group'],
  723. )
  724. );
  725. $updates = array();
  726. while ($row = $smcFunc['db_fetch_assoc']($request))
  727. $updates[$row['additional_groups']][] = $row['id_member'];
  728. $smcFunc['db_free_result']($request);
  729. foreach ($updates as $additional_groups => $memberArray)
  730. updateMemberData($memberArray, array('additional_groups' => implode(',', array_merge(explode(',', $additional_groups), array((int) $_REQUEST['group'])))));
  731. $smcFunc['db_query']('', '
  732. UPDATE {db_prefix}members
  733. SET id_group = {int:regular_member}
  734. WHERE id_group = {int:current_group}',
  735. array(
  736. 'regular_member' => 0,
  737. 'current_group' => $_REQUEST['group'],
  738. )
  739. );
  740. }
  741. // Either way, let's check our "show group membership" setting is correct.
  742. $request = $smcFunc['db_query']('', '
  743. SELECT COUNT(*)
  744. FROM {db_prefix}membergroups
  745. WHERE group_type > {int:non_joinable}',
  746. array(
  747. 'non_joinable' => 1,
  748. )
  749. );
  750. list ($have_joinable) = $smcFunc['db_fetch_row']($request);
  751. $smcFunc['db_free_result']($request);
  752. // Do we need to update the setting?
  753. if ((empty($modSettings['show_group_membership']) && $have_joinable) || (!empty($modSettings['show_group_membership']) && !$have_joinable))
  754. updateSettings(array('show_group_membership' => $have_joinable ? 1 : 0));
  755. }
  756. // Do we need to set inherited permissions?
  757. if ($_POST['group_inherit'] != -2 && $_POST['group_inherit'] != $_POST['old_inherit'])
  758. {
  759. require_once($sourcedir . '/ManagePermissions.php');
  760. updateChildPermissions($_POST['group_inherit']);
  761. }
  762. // Finally, moderators!
  763. $moderator_string = isset($_POST['group_moderators']) ? trim($_POST['group_moderators']) : '';
  764. $smcFunc['db_query']('', '
  765. DELETE FROM {db_prefix}group_moderators
  766. WHERE id_group = {int:current_group}',
  767. array(
  768. 'current_group' => $_REQUEST['group'],
  769. )
  770. );
  771. if ((!empty($moderator_string) || !empty($_POST['moderator_list'])) && $_POST['min_posts'] == -1 && $_REQUEST['group'] != 3)
  772. {
  773. // Get all the usernames from the string
  774. if (!empty($moderator_string))
  775. {
  776. $moderator_string = strtr(preg_replace('~&amp;#(\d{4,5}|[2-9]\d{2,4}|1[2-9]\d);~', '&#$1;', htmlspecialchars($moderator_string), ENT_QUOTES), array('&quot;' => '"'));
  777. preg_match_all('~"([^"]+)"~', $moderator_string, $matches);
  778. $moderators = array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $moderator_string)));
  779. for ($k = 0, $n = count($moderators); $k < $n; $k++)
  780. {
  781. $moderators[$k] = trim($moderators[$k]);
  782. if (strlen($moderators[$k]) == 0)
  783. unset($moderators[$k]);
  784. }
  785. // Find all the id_member's for the member_name's in the list.
  786. $group_moderators = array();
  787. if (!empty($moderators))
  788. {
  789. $request = $smcFunc['db_query']('', '
  790. SELECT id_member
  791. FROM {db_prefix}members
  792. WHERE member_name IN ({array_string:moderators}) OR real_name IN ({array_string:moderators})
  793. LIMIT ' . count($moderators),
  794. array(
  795. 'moderators' => $moderators,
  796. )
  797. );
  798. while ($row = $smcFunc['db_fetch_assoc']($request))
  799. $group_moderators[] = $row['id_member'];
  800. $smcFunc['db_free_result']($request);
  801. }
  802. }
  803. else
  804. {
  805. $moderators = array();
  806. foreach ($_POST['moderator_list'] as $moderator)
  807. $moderators[] = (int) $moderator;
  808. $group_moderators = array();
  809. if (!empty($moderators))
  810. {
  811. $request = $smcFunc['db_query']('', '
  812. SELECT id_member
  813. FROM {db_prefix}members
  814. WHERE id_member IN ({array_int:moderators})
  815. LIMIT {int:num_moderators}',
  816. array(
  817. 'moderators' => $moderators,
  818. 'num_moderators' => count($moderators),
  819. )
  820. );
  821. while ($row = $smcFunc['db_fetch_assoc']($request))
  822. $group_moderators[] = $row['id_member'];
  823. $smcFunc['db_free_result']($request);
  824. }
  825. }
  826. // Found some?
  827. if (!empty($group_moderators))
  828. {
  829. $mod_insert = array();
  830. foreach ($group_moderators as $moderator)
  831. $mod_insert[] = array($_REQUEST['group'], $moderator);
  832. $smcFunc['db_insert']('insert',
  833. '{db_prefix}group_moderators',
  834. array('id_group' => 'int', 'id_member' => 'int'),
  835. $mod_insert,
  836. array('id_group', 'id_member')
  837. );
  838. }
  839. }
  840. // There might have been some post group changes.
  841. updateStats('postgroups');
  842. // We've definitely changed some group stuff.
  843. updateSettings(array(
  844. 'settings_updated' => time(),
  845. ));
  846. // Log the edit.
  847. logAction('edited_group', array('group' => $_POST['group_name']), 'admin');
  848. redirectexit('action=admin;area=membergroups');
  849. }
  850. // Fetch the current group information.
  851. $request = $smcFunc['db_query']('', '
  852. SELECT group_name, description, min_posts, online_color, max_messages, stars, group_type, hidden, id_parent
  853. FROM {db_prefix}membergroups
  854. WHERE id_group = {int:current_group}
  855. LIMIT 1',
  856. array(
  857. 'current_group' => (int) $_REQUEST['group'],
  858. )
  859. );
  860. if ($smcFunc['db_num_rows']($request) == 0)
  861. fatal_lang_error('membergroup_does_not_exist', false);
  862. $row = $smcFunc['db_fetch_assoc']($request);
  863. $smcFunc['db_free_result']($request);
  864. $row['stars'] = explode('#', $row['stars']);
  865. $context['group'] = array(
  866. 'id' => $_REQUEST['group'],
  867. 'name' => $row['group_name'],
  868. 'description' => htmlspecialchars($row['description']),
  869. 'editable_name' => htmlspecialchars($row['group_name']),
  870. 'color' => $row['online_color'],
  871. 'min_posts' => $row['min_posts'],
  872. 'max_messages' => $row['max_messages'],
  873. 'star_count' => (int) $row['stars'][0],
  874. 'star_image' => isset($row['stars'][1]) ? $row['stars'][1] : '',
  875. 'is_post_group' => $row['min_posts'] != -1,
  876. 'type' => $row['min_posts'] != -1 ? 0 : $row['group_type'],
  877. 'hidden' => $row['min_posts'] == -1 ? $row['hidden'] : 0,
  878. 'inherited_from' => $row['id_parent'],
  879. 'allow_post_group' => $_REQUEST['group'] == 2 || $_REQUEST['group'] > 4,
  880. 'allow_delete' => $_REQUEST['group'] == 2 || $_REQUEST['group'] > 4,
  881. 'allow_protected' => allowedTo('admin_forum'),
  882. );
  883. // Get any moderators for this group
  884. $request = $smcFunc['db_query']('', '
  885. SELECT mem.id_member, mem.real_name
  886. FROM {db_prefix}group_moderators AS mods
  887. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = mods.id_member)
  888. WHERE mods.id_group = {int:current_group}',
  889. array(
  890. 'current_group' => $_REQUEST['group'],
  891. )
  892. );
  893. $context['group']['moderators'] = array();
  894. while ($row = $smcFunc['db_fetch_assoc']($request))
  895. $context['group']['moderators'][$row['id_member']] = $row['real_name'];
  896. $smcFunc['db_free_result']($request);
  897. $context['group']['moderator_list'] = empty($context['group']['moderators']) ? '' : '&quot;' . implode('&quot;, &quot;', $context['group']['moderators']) . '&quot;';
  898. if (!empty($context['group']['moderators']))
  899. list ($context['group']['last_moderator_id']) = array_slice(array_keys($context['group']['moderators']), -1);
  900. // Get a list of boards this membergroup is allowed to see.
  901. $context['boards'] = array();
  902. if ($_REQUEST['group'] == 2 || $_REQUEST['group'] > 3)
  903. {
  904. $result = $smcFunc['db_query']('', '
  905. SELECT id_board, name, child_level, FIND_IN_SET({string:current_group}, member_groups) != 0 AS can_access
  906. FROM {db_prefix}boards
  907. ORDER BY board_order',
  908. array(
  909. 'current_group' => (int) $_REQUEST['group'],
  910. )
  911. );
  912. while ($row = $smcFunc['db_fetch_assoc']($result))
  913. $context['boards'][] = array(
  914. 'id' => $row['id_board'],
  915. 'name' => $row['name'],
  916. 'child_level' => $row['child_level'],
  917. 'selected' => !(empty($row['can_access']) || $row['can_access'] == 'f'),
  918. );
  919. $smcFunc['db_free_result']($result);
  920. }
  921. // Finally, get all the groups this could be inherited off.
  922. $request = $smcFunc['db_query']('', '
  923. SELECT id_group, group_name
  924. FROM {db_prefix}membergroups
  925. WHERE id_group != {int:current_group}' .
  926. (empty($modSettings['permission_enable_postgroups']) ? '
  927. AND min_posts = {int:min_posts}' : '') . (allowedTo('admin_forum') ? '' : '
  928. AND group_type != {int:is_protected}') . '
  929. AND id_group NOT IN (1, 3)
  930. AND id_parent = {int:not_inherited}',
  931. array(
  932. 'current_group' => (int) $_REQUEST['group'],
  933. 'min_posts' => -1,
  934. 'not_inherited' => -2,
  935. 'is_protected' => 1,
  936. )
  937. );
  938. $context['inheritable_groups'] = array();
  939. while ($row = $smcFunc['db_fetch_assoc']($request))
  940. $context['inheritable_groups'][$row['id_group']] = $row['group_name'];
  941. $smcFunc['db_free_result']($request);
  942. call_integration_hook('integrate_view_membergroup');
  943. $context['sub_template'] = 'edit_group';
  944. $context['page_title'] = $txt['membergroups_edit_group'];
  945. createToken('admin-mmg');
  946. }
  947. /**
  948. * Set some general membergroup settings and permissions.
  949. * Called by ?action=admin;area=membergroups;sa=settings
  950. * Requires the admin_forum permission (and manage_permissions for changing permissions)
  951. * Redirects to itself.
  952. *
  953. * @uses membergroup_settings sub template of ManageMembergroups.
  954. */
  955. function ModifyMembergroupsettings()
  956. {
  957. global $context, $sourcedir, $scripturl, $modSettings, $txt;
  958. $context['sub_template'] = 'show_settings';
  959. $context['page_title'] = $txt['membergroups_settings'];
  960. // Needed for the settings functions.
  961. require_once($sourcedir . '/ManageServer.php');
  962. // Don't allow assignment of guests.
  963. $context['permissions_excluded'] = array(-1);
  964. // Only one thing here!
  965. $config_vars = array(
  966. array('permissions', 'manage_membergroups'),
  967. );
  968. call_integration_hook('integrate_modify_membergroup_settings', array(&$config_vars));
  969. if (isset($_REQUEST['save']))
  970. {
  971. checkSession();
  972. call_integration_hook('integrate_save_membergroup_settings');
  973. // Yeppers, saving this...
  974. saveDBSettings($config_vars);
  975. redirectexit('action=admin;area=membergroups;sa=settings');
  976. }
  977. // Some simple context.
  978. $context['post_url'] = $scripturl . '?action=admin;area=membergroups;save;sa=settings';
  979. $context['settings_title'] = $txt['membergroups_settings'];
  980. prepareDBSettingContext($config_vars);
  981. }
  982. ?>