Memberlist.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. <?php
  2. /**
  3. * This file contains the functions for displaying and searching in the
  4. * members list.
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2011 Simple Machines
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('Hacking attempt...');
  17. /**
  18. * Shows a listing of registered members.
  19. * - If a subaction is not specified, lists all registered members.
  20. * - It allows searching for members with the 'search' sub action.
  21. * - It calls MLAll or MLSearch depending on the sub action.
  22. * - Requires the view_mlist permission.
  23. * - Accessed via ?action=mlist.
  24. *
  25. * @uses Memberlist template, main sub template.
  26. */
  27. function Memberlist()
  28. {
  29. global $scripturl, $txt, $modSettings, $context, $settings, $modSettings;
  30. // Make sure they can view the memberlist.
  31. isAllowedTo('view_mlist');
  32. loadTemplate('Memberlist');
  33. $context['listing_by'] = !empty($_GET['sa']) ? $_GET['sa'] : 'all';
  34. // $subActions array format:
  35. // 'subaction' => array('label', 'function', 'is_selected')
  36. $subActions = array(
  37. 'all' => array($txt['view_all_members'], 'MLAll', $context['listing_by'] == 'all'),
  38. 'search' => array($txt['mlist_search'], 'MLSearch', $context['listing_by'] == 'search'),
  39. );
  40. // Set up the sort links.
  41. $context['sort_links'] = array();
  42. foreach ($subActions as $act => $text)
  43. {
  44. $context['sort_links'][] = array(
  45. 'label' => $text[0],
  46. 'action' => $act,
  47. 'selected' => $text[2],
  48. );
  49. }
  50. $context['num_members'] = $modSettings['totalMembers'];
  51. // Set up the columns...
  52. $context['columns'] = array(
  53. 'is_online' => array(
  54. 'label' => $txt['status'],
  55. 'width' => 60,
  56. 'class' => 'first_th',
  57. 'sort' => array(
  58. 'down' => allowedTo('moderate_forum') ? 'IFNULL(lo.log_time, 1) ASC, real_name ASC' : 'CASE WHEN mem.show_online THEN IFNULL(lo.log_time, 1) ELSE 1 END ASC, real_name ASC',
  59. 'up' => allowedTo('moderate_forum') ? 'IFNULL(lo.log_time, 1) DESC, real_name DESC' : 'CASE WHEN mem.show_online THEN IFNULL(lo.log_time, 1) ELSE 1 END DESC, real_name DESC'
  60. ),
  61. ),
  62. 'real_name' => array(
  63. 'label' => $txt['username'],
  64. 'sort' => array(
  65. 'down' => 'mem.real_name DESC',
  66. 'up' => 'mem.real_name ASC'
  67. ),
  68. ),
  69. 'email_address' => array(
  70. 'label' => $txt['email'],
  71. 'width' => 25,
  72. 'sort' => array(
  73. 'down' => allowedTo('moderate_forum') ? 'mem.email_address DESC' : 'mem.hide_email DESC, mem.email_address DESC',
  74. 'up' => allowedTo('moderate_forum') ? 'mem.email_address ASC' : 'mem.hide_email ASC, mem.email_address ASC'
  75. ),
  76. ),
  77. 'website_url' => array(
  78. 'label' => $txt['website'],
  79. 'width' => 70,
  80. 'link_with' => 'website',
  81. 'sort' => array(
  82. 'down' => 'LENGTH(mem.website_url) > 0 ASC, IFNULL(mem.website_url, 1=1) DESC, mem.website_url DESC',
  83. 'up' => 'LENGTH(mem.website_url) > 0 DESC, IFNULL(mem.website_url, 1=1) ASC, mem.website_url ASC'
  84. ),
  85. ),
  86. 'icq' => array(
  87. 'label' => $txt['icq'],
  88. 'width' => 30,
  89. 'sort' => array(
  90. 'down' => 'LENGTH(mem.icq) > 0 ASC, mem.icq = 0 DESC, mem.icq DESC',
  91. 'up' => 'LENGTH(mem.icq) > 0 DESC, mem.icq = 0 ASC, mem.icq ASC'
  92. ),
  93. ),
  94. 'aim' => array(
  95. 'label' => $txt['aim'],
  96. 'width' => 30,
  97. 'sort' => array(
  98. 'down' => 'LENGTH(mem.aim) > 0 ASC, IFNULL(mem.aim, 1=1) DESC, mem.aim DESC',
  99. 'up' => 'LENGTH(mem.aim) > 0 DESC, IFNULL(mem.aim, 1=1) ASC, mem.aim ASC'
  100. ),
  101. ),
  102. 'yim' => array(
  103. 'label' => $txt['yim'],
  104. 'width' => 30,
  105. 'sort' => array(
  106. 'down' => 'LENGTH(mem.yim) > 0 ASC, IFNULL(mem.yim, 1=1) DESC, mem.yim DESC',
  107. 'up' => 'LENGTH(mem.yim) > 0 DESC, IFNULL(mem.yim, 1=1) ASC, mem.yim ASC'
  108. ),
  109. ),
  110. 'msn' => array(
  111. 'label' => $txt['msn'],
  112. 'width' => 30,
  113. 'sort' => array(
  114. 'down' => 'LENGTH(mem.msn) > 0 ASC, IFNULL(mem.msn, 1=1) DESC, mem.msn DESC',
  115. 'up' => 'LENGTH(mem.msn) > 0 DESC, IFNULL(mem.msn, 1=1) ASC, mem.msn ASC'
  116. ),
  117. ),
  118. 'id_group' => array(
  119. 'label' => $txt['position'],
  120. 'sort' => array(
  121. 'down' => 'IFNULL(mg.group_name, 1=1) DESC, mg.group_name DESC',
  122. 'up' => 'IFNULL(mg.group_name, 1=1) ASC, mg.group_name ASC'
  123. ),
  124. ),
  125. 'registered' => array(
  126. 'label' => $txt['date_registered'],
  127. 'sort' => array(
  128. 'down' => 'mem.date_registered DESC',
  129. 'up' => 'mem.date_registered ASC'
  130. ),
  131. ),
  132. 'posts' => array(
  133. 'label' => $txt['posts'],
  134. 'width' => 115,
  135. 'colspan' => 2,
  136. 'default_sort_rev' => true,
  137. 'sort' => array(
  138. 'down' => 'mem.posts DESC',
  139. 'up' => 'mem.posts ASC'
  140. ),
  141. )
  142. );
  143. $context['colspan'] = 0;
  144. $context['disabled_fields'] = isset($modSettings['disabled_profile_fields']) ? array_flip(explode(',', $modSettings['disabled_profile_fields'])) : array();
  145. foreach ($context['columns'] as $key => $column)
  146. {
  147. if (isset($context['disabled_fields'][$key]) || (isset($column['link_with']) && isset($context['disabled_fields'][$column['link_with']])))
  148. {
  149. unset($context['columns'][$key]);
  150. continue;
  151. }
  152. $context['colspan'] += isset($column['colspan']) ? $column['colspan'] : 1;
  153. }
  154. // Aesthetic stuff.
  155. end($context['columns']);
  156. $context['columns'][key($context['columns'])]['class'] = 'last_th';
  157. $context['linktree'][] = array(
  158. 'url' => $scripturl . '?action=mlist',
  159. 'name' => $txt['members_list']
  160. );
  161. $context['can_send_pm'] = allowedTo('pm_send');
  162. $context['can_send_email'] = allowedTo('send_email_to_members');
  163. // Jump to the sub action.
  164. if (isset($subActions[$context['listing_by']]))
  165. $subActions[$context['listing_by']][1]();
  166. else
  167. $subActions['all'][1]();
  168. }
  169. /**
  170. * List all members, page by page, with sorting.
  171. * Called from MemberList().
  172. * Can be passed a sort parameter, to order the display of members.
  173. * Calls printMemberListRows to retrieve the results of the query.
  174. */
  175. function MLAll()
  176. {
  177. global $txt, $scripturl, $user_info;
  178. global $modSettings, $context, $smcFunc;
  179. // The chunk size for the cached index.
  180. $cache_step_size = 500;
  181. // Only use caching if:
  182. // 1. there are at least 2k members,
  183. // 2. the default sorting method (real_name) is being used,
  184. // 3. the page shown is high enough to make a DB filesort unprofitable.
  185. $use_cache = $modSettings['totalMembers'] > 2000 && (!isset($_REQUEST['sort']) || $_REQUEST['sort'] === 'real_name') && isset($_REQUEST['start']) && $_REQUEST['start'] > $cache_step_size;
  186. if ($use_cache)
  187. {
  188. // Maybe there's something cached already.
  189. if (!empty($modSettings['memberlist_cache']))
  190. $memberlist_cache = @unserialize($modSettings['memberlist_cache']);
  191. // The chunk size for the cached index.
  192. $cache_step_size = 500;
  193. // Only update the cache if something changed or no cache existed yet.
  194. if (empty($memberlist_cache) || empty($modSettings['memberlist_updated']) || $memberlist_cache['last_update'] < $modSettings['memberlist_updated'])
  195. {
  196. $request = $smcFunc['db_query']('', '
  197. SELECT real_name
  198. FROM {db_prefix}members
  199. WHERE is_activated = {int:is_activated}
  200. ORDER BY real_name',
  201. array(
  202. 'is_activated' => 1,
  203. )
  204. );
  205. $memberlist_cache = array(
  206. 'last_update' => time(),
  207. 'num_members' => $smcFunc['db_num_rows']($request),
  208. 'index' => array(),
  209. );
  210. for ($i = 0, $n = $smcFunc['db_num_rows']($request); $i < $n; $i += $cache_step_size)
  211. {
  212. $smcFunc['db_data_seek']($request, $i);
  213. list($memberlist_cache['index'][$i]) = $smcFunc['db_fetch_row']($request);
  214. }
  215. $smcFunc['db_data_seek']($request, $memberlist_cache['num_members'] - 1);
  216. list ($memberlist_cache['index'][$i]) = $smcFunc['db_fetch_row']($request);
  217. $smcFunc['db_free_result']($request);
  218. // Now we've got the cache...store it.
  219. updateSettings(array('memberlist_cache' => serialize($memberlist_cache)));
  220. }
  221. $context['num_members'] = $memberlist_cache['num_members'];
  222. }
  223. // Without cache we need an extra query to get the amount of members.
  224. else
  225. {
  226. $request = $smcFunc['db_query']('', '
  227. SELECT COUNT(*)
  228. FROM {db_prefix}members
  229. WHERE is_activated = {int:is_activated}',
  230. array(
  231. 'is_activated' => 1,
  232. )
  233. );
  234. list ($context['num_members']) = $smcFunc['db_fetch_row']($request);
  235. $smcFunc['db_free_result']($request);
  236. }
  237. // Set defaults for sort (real_name) and start. (0)
  238. if (!isset($_REQUEST['sort']) || !isset($context['columns'][$_REQUEST['sort']]))
  239. $_REQUEST['sort'] = 'real_name';
  240. if (!is_numeric($_REQUEST['start']))
  241. {
  242. if (preg_match('~^[^\'\\\\/]~' . ($context['utf8'] ? 'u' : ''), $smcFunc['strtolower']($_REQUEST['start']), $match) === 0)
  243. fatal_error('Hacker?', false);
  244. $_REQUEST['start'] = $match[0];
  245. $request = $smcFunc['db_query']('substring', '
  246. SELECT COUNT(*)
  247. FROM {db_prefix}members
  248. WHERE LOWER(SUBSTRING(real_name, 1, 1)) < {string:first_letter}
  249. AND is_activated = {int:is_activated}',
  250. array(
  251. 'is_activated' => 1,
  252. 'first_letter' => $_REQUEST['start'],
  253. )
  254. );
  255. list ($_REQUEST['start']) = $smcFunc['db_fetch_row']($request);
  256. $smcFunc['db_free_result']($request);
  257. }
  258. $context['letter_links'] = '';
  259. for ($i = 97; $i < 123; $i++)
  260. $context['letter_links'] .= '<a href="' . $scripturl . '?action=mlist;sa=all;start=' . chr($i) . '#letter' . chr($i) . '">' . strtoupper(chr($i)) . '</a> ';
  261. // Sort out the column information.
  262. foreach ($context['columns'] as $col => $column_details)
  263. {
  264. $context['columns'][$col]['href'] = $scripturl . '?action=mlist;sort=' . $col . ';start=0';
  265. if ((!isset($_REQUEST['desc']) && $col == $_REQUEST['sort']) || ($col != $_REQUEST['sort'] && !empty($column_details['default_sort_rev'])))
  266. $context['columns'][$col]['href'] .= ';desc';
  267. $context['columns'][$col]['link'] = '<a href="' . $context['columns'][$col]['href'] . '" rel="nofollow">' . $context['columns'][$col]['label'] . '</a>';
  268. $context['columns'][$col]['selected'] = $_REQUEST['sort'] == $col;
  269. }
  270. // Are we sorting the results
  271. $context['sort_by'] = $_REQUEST['sort'];
  272. $context['sort_direction'] = !isset($_REQUEST['desc']) ? 'up' : 'down';
  273. // Construct the page index.
  274. $context['page_index'] = constructPageIndex($scripturl . '?action=mlist;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $context['num_members'], $modSettings['defaultMaxMembers']);
  275. // Send the data to the template.
  276. $context['start'] = $_REQUEST['start'] + 1;
  277. $context['end'] = min($_REQUEST['start'] + $modSettings['defaultMaxMembers'], $context['num_members']);
  278. $context['can_moderate_forum'] = allowedTo('moderate_forum');
  279. $context['page_title'] = sprintf($txt['viewing_members'], $context['start'], $context['end']);
  280. $context['linktree'][] = array(
  281. 'url' => $scripturl . '?action=mlist;sort=' . $_REQUEST['sort'] . ';start=' . $_REQUEST['start'],
  282. 'name' => &$context['page_title'],
  283. 'extra_after' => ' (' . sprintf($txt['of_total_members'], $context['num_members']) . ')'
  284. );
  285. $limit = $_REQUEST['start'];
  286. $query_parameters = array(
  287. 'regular_id_group' => 0,
  288. 'is_activated' => 1,
  289. 'sort' => $context['columns'][$_REQUEST['sort']]['sort'][$context['sort_direction']],
  290. );
  291. // Using cache allows to narrow down the list to be retrieved.
  292. if ($use_cache && $_REQUEST['sort'] === 'real_name' && !isset($_REQUEST['desc']))
  293. {
  294. $first_offset = $_REQUEST['start'] - ($_REQUEST['start'] % $cache_step_size);
  295. $second_offset = ceil(($_REQUEST['start'] + $modSettings['defaultMaxMembers']) / $cache_step_size) * $cache_step_size;
  296. $where = 'mem.real_name BETWEEN {string:real_name_low} AND {string:real_name_high}';
  297. $query_parameters['real_name_low'] = $memberlist_cache['index'][$first_offset];
  298. $query_parameters['real_name_high'] = $memberlist_cache['index'][$second_offset];
  299. $limit -= $first_offset;
  300. }
  301. // Reverse sorting is a bit more complicated...
  302. elseif ($use_cache && $_REQUEST['sort'] === 'real_name')
  303. {
  304. $first_offset = floor(($memberlist_cache['num_members'] - $modSettings['defaultMaxMembers'] - $_REQUEST['start']) / $cache_step_size) * $cache_step_size;
  305. if ($first_offset < 0)
  306. $first_offset = 0;
  307. $second_offset = ceil(($memberlist_cache['num_members'] - $_REQUEST['start']) / $cache_step_size) * $cache_step_size;
  308. $where = 'mem.real_name BETWEEN {string:real_name_low} AND {string:real_name_high}';
  309. $query_parameters['real_name_low'] = $memberlist_cache['index'][$first_offset];
  310. $query_parameters['real_name_high'] = $memberlist_cache['index'][$second_offset];
  311. $limit = $second_offset - ($memberlist_cache['num_members'] - $_REQUEST['start']) - ($second_offset > $memberlist_cache['num_members'] ? $cache_step_size - ($memberlist_cache['num_members'] % $cache_step_size) : 0);
  312. }
  313. // Select the members from the database.
  314. $request = $smcFunc['db_query']('', '
  315. SELECT mem.id_member
  316. FROM {db_prefix}members AS mem' . ($_REQUEST['sort'] === 'is_online' ? '
  317. LEFT JOIN {db_prefix}log_online AS lo ON (lo.id_member = mem.id_member)' : '') . ($_REQUEST['sort'] === 'id_group' ? '
  318. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:regular_id_group} THEN mem.id_post_group ELSE mem.id_group END)' : '') . '
  319. WHERE mem.is_activated = {int:is_activated}' . (empty($where) ? '' : '
  320. AND ' . $where) . '
  321. ORDER BY {raw:sort}
  322. LIMIT ' . $limit . ', ' . $modSettings['defaultMaxMembers'],
  323. $query_parameters
  324. );
  325. printMemberListRows($request);
  326. $smcFunc['db_free_result']($request);
  327. // Add anchors at the start of each letter.
  328. if ($_REQUEST['sort'] == 'real_name')
  329. {
  330. $last_letter = '';
  331. foreach ($context['members'] as $i => $dummy)
  332. {
  333. $this_letter = $smcFunc['strtolower']($smcFunc['substr']($context['members'][$i]['name'], 0, 1));
  334. if ($this_letter != $last_letter && preg_match('~[a-z]~', $this_letter) === 1)
  335. {
  336. $context['members'][$i]['sort_letter'] = htmlspecialchars($this_letter);
  337. $last_letter = $this_letter;
  338. }
  339. }
  340. }
  341. }
  342. /**
  343. * Search for members, or display search results.
  344. * - Called by MemberList().
  345. * - If variable 'search' is empty displays search dialog box, using the search sub template.
  346. * - Calls printMemberListRows to retrieve the results of the query.
  347. */
  348. function MLSearch()
  349. {
  350. global $txt, $scripturl, $context, $user_info, $modSettings, $smcFunc;
  351. // Can they search custom fields?
  352. $request = $smcFunc['db_query']('', '
  353. SELECT col_name, field_name, field_desc
  354. FROM {db_prefix}custom_fields
  355. WHERE active = {int:active}
  356. ' . (allowedTo('admin_forum') ? '' : ' AND private < {int:private_level}') . '
  357. AND can_search = {int:can_search}
  358. AND (field_type = {string:field_type_text} OR field_type = {string:field_type_textarea})',
  359. array(
  360. 'active' => 1,
  361. 'can_search' => 1,
  362. 'private_level' => 2,
  363. 'field_type_text' => 'text',
  364. 'field_type_textarea' => 'textarea',
  365. )
  366. );
  367. $context['custom_search_fields'] = array();
  368. while ($row = $smcFunc['db_fetch_assoc']($request))
  369. $context['custom_search_fields'][$row['col_name']] = array(
  370. 'colname' => $row['col_name'],
  371. 'name' => $row['field_name'],
  372. 'desc' => $row['field_desc'],
  373. );
  374. $smcFunc['db_free_result']($request);
  375. // They're searching..
  376. if (isset($_REQUEST['search']) && isset($_REQUEST['fields']))
  377. {
  378. $_POST['search'] = trim(isset($_GET['search']) ? $_GET['search'] : $_POST['search']);
  379. $_POST['fields'] = isset($_GET['fields']) ? explode(',', $_GET['fields']) : $_POST['fields'];
  380. $context['old_search'] = $_REQUEST['search'];
  381. $context['old_search_value'] = urlencode($_REQUEST['search']);
  382. // No fields? Use default...
  383. if (empty($_POST['fields']))
  384. $_POST['fields'] = array('name');
  385. // Set defaults for how the results are sorted
  386. if (!isset($_REQUEST['sort']) || !isset($context['columns'][$_REQUEST['sort']]))
  387. $_REQUEST['sort'] = 'real_name';
  388. // Build the column link / sort information.
  389. foreach ($context['columns'] as $col => $column_details)
  390. {
  391. $context['columns'][$col]['href'] = $scripturl . '?action=mlist;sa=search;start=0;sort=' . $col;
  392. if ((!isset($_REQUEST['desc']) && $col == $_REQUEST['sort']) || ($col != $_REQUEST['sort'] && !empty($column_details['default_sort_rev'])))
  393. $context['columns'][$col]['href'] .= ';desc';
  394. if (isset($_POST['search']) && isset($_POST['fields']))
  395. $context['columns'][$col]['href'] .= ';search=' . $_POST['search'] . ';fields=' . implode(',', $_POST['fields']);
  396. $context['columns'][$col]['link'] = '<a href="' . $context['columns'][$col]['href'] . '" rel="nofollow">' . $context['columns'][$col]['label'] . '</a>';
  397. $context['columns'][$col]['selected'] = $_REQUEST['sort'] == $col;
  398. }
  399. // set up some things for use in the template
  400. $context['page_title'] = $txt['mlist_search'];
  401. $context['can_moderate_forum'] = allowedTo('moderate_forum');
  402. $context['sort_direction'] = !isset($_REQUEST['desc']) ? 'up' : 'down';
  403. $context['sort_by'] = $_REQUEST['sort'];
  404. $query_parameters = array(
  405. 'regular_id_group' => 0,
  406. 'is_activated' => 1,
  407. 'blank_string' => '',
  408. 'search' => '%' . strtr($smcFunc['htmlspecialchars']($_POST['search'], ENT_QUOTES), array('_' => '\\_', '%' => '\\%', '*' => '%')) . '%',
  409. 'sort' => $context['columns'][$_REQUEST['sort']]['sort'][$context['sort_direction']],
  410. );
  411. // Search for a name
  412. if (in_array('name', $_POST['fields']))
  413. $fields = allowedTo('moderate_forum') ? array('member_name', 'real_name') : array('real_name');
  414. else
  415. $fields = array();
  416. // Search for messengers...
  417. if (in_array('messenger', $_POST['fields']) && (!$user_info['is_guest'] || empty($modSettings['guest_hideContacts'])))
  418. $fields += array(3 => 'msn', 'aim', 'icq', 'yim');
  419. // Search for websites.
  420. if (in_array('website', $_POST['fields']))
  421. $fields += array(7 => 'website_title', 'website_url');
  422. // Search for groups.
  423. if (in_array('group', $_POST['fields']))
  424. $fields += array(9 => 'IFNULL(group_name, {string:blank_string})');
  425. // Search for an email address?
  426. if (in_array('email', $_POST['fields']))
  427. {
  428. $fields += array(2 => allowedTo('moderate_forum') ? 'email_address' : '(hide_email = 0 AND email_address');
  429. $condition = allowedTo('moderate_forum') ? '' : ')';
  430. }
  431. else
  432. $condition = '';
  433. $customJoin = array();
  434. $customCount = 10;
  435. // Any custom fields to search for - these being tricky?
  436. foreach ($_POST['fields'] as $field)
  437. {
  438. $curField = substr($field, 5);
  439. if (substr($field, 0, 5) == 'cust_' && isset($context['custom_search_fields'][$curField]))
  440. {
  441. $customJoin[] = 'LEFT JOIN {db_prefix}themes AS t' . $curField . ' ON (t' . $curField . '.variable = {string:t' . $curField . '} AND t' . $curField . '.id_theme = 1 AND t' . $curField . '.id_member = mem.id_member)';
  442. $query_parameters['t' . $curField] = $curField;
  443. $fields += array($customCount++ => 'IFNULL(t' . $curField . '.value, {string:blank_string})');
  444. }
  445. }
  446. $query = $_POST['search'] == '' ? '= {string:blank_string}' : 'LIKE {string:search}';
  447. $request = $smcFunc['db_query']('', '
  448. SELECT COUNT(*)
  449. FROM {db_prefix}members AS mem
  450. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:regular_id_group} THEN mem.id_post_group ELSE mem.id_group END)' .
  451. (empty($customJoin) ? '' : implode('
  452. ', $customJoin)) . '
  453. WHERE (' . implode( ' ' . $query . ' OR ', $fields) . ' ' . $query . $condition . ')
  454. AND mem.is_activated = {int:is_activated}',
  455. $query_parameters
  456. );
  457. list ($numResults) = $smcFunc['db_fetch_row']($request);
  458. $smcFunc['db_free_result']($request);
  459. $context['page_index'] = constructPageIndex($scripturl . '?action=mlist;sa=search;search=' . $_POST['search'] . ';fields=' . implode(',', $_POST['fields']), $_REQUEST['start'], $numResults, $modSettings['defaultMaxMembers']);
  460. // Find the members from the database.
  461. $request = $smcFunc['db_query']('', '
  462. SELECT mem.id_member
  463. FROM {db_prefix}members AS mem
  464. LEFT JOIN {db_prefix}log_online AS lo ON (lo.id_member = mem.id_member)
  465. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:regular_id_group} THEN mem.id_post_group ELSE mem.id_group END)' .
  466. (empty($customJoin) ? '' : implode('
  467. ', $customJoin)) . '
  468. WHERE (' . implode( ' ' . $query . ' OR ', $fields) . ' ' . $query . $condition . ')
  469. AND mem.is_activated = {int:is_activated}
  470. ORDER BY {raw:sort}
  471. LIMIT ' . $_REQUEST['start'] . ', ' . $modSettings['defaultMaxMembers'],
  472. $query_parameters
  473. );
  474. printMemberListRows($request);
  475. $smcFunc['db_free_result']($request);
  476. }
  477. else
  478. {
  479. // These are all the possible fields.
  480. $context['search_fields'] = array(
  481. 'name' => $txt['mlist_search_name'],
  482. 'email' => $txt['mlist_search_email'],
  483. 'messenger' => $txt['mlist_search_messenger'],
  484. 'website' => $txt['mlist_search_website'],
  485. 'group' => $txt['mlist_search_group'],
  486. );
  487. foreach ($context['custom_search_fields'] as $field)
  488. $context['search_fields']['cust_' . $field['colname']] = sprintf($txt['mlist_search_by'], $field['name']);
  489. // What do we search for by default?
  490. $context['search_defaults'] = array('name', 'email');
  491. $context['sub_template'] = 'search';
  492. $context['old_search'] = isset($_GET['search']) ? $_GET['search'] : (isset($_POST['search']) ? htmlspecialchars($_POST['search']) : '');
  493. }
  494. $context['linktree'][] = array(
  495. 'url' => $scripturl . '?action=mlist;sa=search',
  496. 'name' => &$context['page_title']
  497. );
  498. }
  499. /**
  500. * Retrieves results of the request passed to it
  501. * Puts results of request into the context for the sub template.
  502. *
  503. * @param resource $request
  504. */
  505. function printMemberListRows($request)
  506. {
  507. global $scripturl, $txt, $user_info, $modSettings;
  508. global $context, $settings, $memberContext, $smcFunc;
  509. // Get the most posts.
  510. $result = $smcFunc['db_query']('', '
  511. SELECT MAX(posts)
  512. FROM {db_prefix}members',
  513. array(
  514. )
  515. );
  516. list ($MOST_POSTS) = $smcFunc['db_fetch_row']($result);
  517. $smcFunc['db_free_result']($result);
  518. // Avoid division by zero...
  519. if ($MOST_POSTS == 0)
  520. $MOST_POSTS = 1;
  521. $members = array();
  522. while ($row = $smcFunc['db_fetch_assoc']($request))
  523. $members[] = $row['id_member'];
  524. // Load all the members for display.
  525. loadMemberData($members);
  526. $context['members'] = array();
  527. foreach ($members as $member)
  528. {
  529. if (!loadMemberContext($member))
  530. continue;
  531. $context['members'][$member] = $memberContext[$member];
  532. $context['members'][$member]['post_percent'] = round(($context['members'][$member]['real_posts'] * 100) / $MOST_POSTS);
  533. $context['members'][$member]['registered_date'] = strftime('%Y-%m-%d', $context['members'][$member]['registered_timestamp']);
  534. }
  535. }
  536. ?>