PageRenderTime 55ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 1ms

/Sources/Subs-Members.php

https://github.com/smf-portal/SMF2.1
PHP | 1426 lines | 1023 code | 161 blank | 242 comment | 168 complexity | a477f76cd5c150bac43053e86edaa4e0 MD5 | raw file
  1. <?php
  2. /**
  3. * This file contains some useful functions for members and membergroups.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2012 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. * Delete one or more members.
  18. * Requires profile_remove_own or profile_remove_any permission for
  19. * respectively removing your own account or any account.
  20. * Non-admins cannot delete admins.
  21. * The function:
  22. * - changes author of messages, topics and polls to guest authors.
  23. * - removes all log entries concerning the deleted members, except the
  24. * error logs, ban logs and moderation logs.
  25. * - removes these members' personal messages (only the inbox), avatars,
  26. * ban entries, theme settings, moderator positions, poll votes, and
  27. * karma votes.
  28. * - updates member statistics afterwards.
  29. *
  30. * @param array $users
  31. * @param bool $check_not_admin = false
  32. */
  33. function deleteMembers($users, $check_not_admin = false)
  34. {
  35. global $sourcedir, $modSettings, $user_info, $smcFunc;
  36. // Try give us a while to sort this out...
  37. @set_time_limit(600);
  38. // Try to get some more memory.
  39. setMemoryLimit('128M');
  40. // If it's not an array, make it so!
  41. if (!is_array($users))
  42. $users = array($users);
  43. else
  44. $users = array_unique($users);
  45. // Make sure there's no void user in here.
  46. $users = array_diff($users, array(0));
  47. // How many are they deleting?
  48. if (empty($users))
  49. return;
  50. elseif (count($users) == 1)
  51. {
  52. list ($user) = $users;
  53. if ($user == $user_info['id'])
  54. isAllowedTo('profile_remove_own');
  55. else
  56. isAllowedTo('profile_remove_any');
  57. }
  58. else
  59. {
  60. foreach ($users as $k => $v)
  61. $users[$k] = (int) $v;
  62. // Deleting more than one? You can't have more than one account...
  63. isAllowedTo('profile_remove_any');
  64. }
  65. // Get their names for logging purposes.
  66. $request = $smcFunc['db_query']('', '
  67. SELECT id_member, member_name, CASE WHEN id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0 THEN 1 ELSE 0 END AS is_admin
  68. FROM {db_prefix}members
  69. WHERE id_member IN ({array_int:user_list})
  70. LIMIT ' . count($users),
  71. array(
  72. 'user_list' => $users,
  73. 'admin_group' => 1,
  74. )
  75. );
  76. $admins = array();
  77. $user_log_details = array();
  78. while ($row = $smcFunc['db_fetch_assoc']($request))
  79. {
  80. if ($row['is_admin'])
  81. $admins[] = $row['id_member'];
  82. $user_log_details[$row['id_member']] = array($row['id_member'], $row['member_name']);
  83. }
  84. $smcFunc['db_free_result']($request);
  85. if (empty($user_log_details))
  86. return;
  87. // Make sure they aren't trying to delete administrators if they aren't one. But don't bother checking if it's just themself.
  88. if (!empty($admins) && ($check_not_admin || (!allowedTo('admin_forum') && (count($users) != 1 || $users[0] != $user_info['id']))))
  89. {
  90. $users = array_diff($users, $admins);
  91. foreach ($admins as $id)
  92. unset($user_log_details[$id]);
  93. }
  94. // No one left?
  95. if (empty($users))
  96. return;
  97. // Log the action - regardless of who is deleting it.
  98. $log_changes = array();
  99. foreach ($user_log_details as $user)
  100. {
  101. $log_changes[] = array(
  102. 'action' => 'delete_member',
  103. 'log_type' => 'admin',
  104. 'extra' => array(
  105. 'member' => $user[0],
  106. 'name' => $user[1],
  107. 'member_acted' => $user_info['name'],
  108. ),
  109. );
  110. // Remove any cached data if enabled.
  111. if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
  112. cache_put_data('user_settings-' . $user[0], null, 60);
  113. }
  114. // Make these peoples' posts guest posts.
  115. $smcFunc['db_query']('', '
  116. UPDATE {db_prefix}messages
  117. SET id_member = {int:guest_id}' . (!empty($modSettings['deleteMembersRemovesEmail']) ? ',
  118. poster_email = {string:blank_email}' : '') . '
  119. WHERE id_member IN ({array_int:users})',
  120. array(
  121. 'guest_id' => 0,
  122. 'blank_email' => '',
  123. 'users' => $users,
  124. )
  125. );
  126. $smcFunc['db_query']('', '
  127. UPDATE {db_prefix}polls
  128. SET id_member = {int:guest_id}
  129. WHERE id_member IN ({array_int:users})',
  130. array(
  131. 'guest_id' => 0,
  132. 'users' => $users,
  133. )
  134. );
  135. // Make these peoples' posts guest first posts and last posts.
  136. $smcFunc['db_query']('', '
  137. UPDATE {db_prefix}topics
  138. SET id_member_started = {int:guest_id}
  139. WHERE id_member_started IN ({array_int:users})',
  140. array(
  141. 'guest_id' => 0,
  142. 'users' => $users,
  143. )
  144. );
  145. $smcFunc['db_query']('', '
  146. UPDATE {db_prefix}topics
  147. SET id_member_updated = {int:guest_id}
  148. WHERE id_member_updated IN ({array_int:users})',
  149. array(
  150. 'guest_id' => 0,
  151. 'users' => $users,
  152. )
  153. );
  154. $smcFunc['db_query']('', '
  155. UPDATE {db_prefix}log_actions
  156. SET id_member = {int:guest_id}
  157. WHERE id_member IN ({array_int:users})',
  158. array(
  159. 'guest_id' => 0,
  160. 'users' => $users,
  161. )
  162. );
  163. $smcFunc['db_query']('', '
  164. UPDATE {db_prefix}log_banned
  165. SET id_member = {int:guest_id}
  166. WHERE id_member IN ({array_int:users})',
  167. array(
  168. 'guest_id' => 0,
  169. 'users' => $users,
  170. )
  171. );
  172. $smcFunc['db_query']('', '
  173. UPDATE {db_prefix}log_errors
  174. SET id_member = {int:guest_id}
  175. WHERE id_member IN ({array_int:users})',
  176. array(
  177. 'guest_id' => 0,
  178. 'users' => $users,
  179. )
  180. );
  181. // Delete the member.
  182. $smcFunc['db_query']('', '
  183. DELETE FROM {db_prefix}members
  184. WHERE id_member IN ({array_int:users})',
  185. array(
  186. 'users' => $users,
  187. )
  188. );
  189. // Delete any drafts...
  190. $smcFunc['db_query']('', '
  191. DELETE FROM {db_prefix}user_drafts
  192. WHERE id_member IN ({array_int:users})',
  193. array(
  194. 'users' => $users,
  195. )
  196. );
  197. // Delete the logs...
  198. $smcFunc['db_query']('', '
  199. DELETE FROM {db_prefix}log_actions
  200. WHERE id_log = {int:log_type}
  201. AND id_member IN ({array_int:users})',
  202. array(
  203. 'log_type' => 2,
  204. 'users' => $users,
  205. )
  206. );
  207. $smcFunc['db_query']('', '
  208. DELETE FROM {db_prefix}log_boards
  209. WHERE id_member IN ({array_int:users})',
  210. array(
  211. 'users' => $users,
  212. )
  213. );
  214. $smcFunc['db_query']('', '
  215. DELETE FROM {db_prefix}log_comments
  216. WHERE id_recipient IN ({array_int:users})
  217. AND comment_type = {string:warntpl}',
  218. array(
  219. 'users' => $users,
  220. 'warntpl' => 'warntpl',
  221. )
  222. );
  223. $smcFunc['db_query']('', '
  224. DELETE FROM {db_prefix}log_group_requests
  225. WHERE id_member IN ({array_int:users})',
  226. array(
  227. 'users' => $users,
  228. )
  229. );
  230. $smcFunc['db_query']('', '
  231. DELETE FROM {db_prefix}log_karma
  232. WHERE id_target IN ({array_int:users})
  233. OR id_executor IN ({array_int:users})',
  234. array(
  235. 'users' => $users,
  236. )
  237. );
  238. $smcFunc['db_query']('', '
  239. DELETE FROM {db_prefix}log_mark_read
  240. WHERE id_member IN ({array_int:users})',
  241. array(
  242. 'users' => $users,
  243. )
  244. );
  245. $smcFunc['db_query']('', '
  246. DELETE FROM {db_prefix}log_notify
  247. WHERE id_member IN ({array_int:users})',
  248. array(
  249. 'users' => $users,
  250. )
  251. );
  252. $smcFunc['db_query']('', '
  253. DELETE FROM {db_prefix}log_online
  254. WHERE id_member IN ({array_int:users})',
  255. array(
  256. 'users' => $users,
  257. )
  258. );
  259. $smcFunc['db_query']('', '
  260. DELETE FROM {db_prefix}log_subscribed
  261. WHERE id_member IN ({array_int:users})',
  262. array(
  263. 'users' => $users,
  264. )
  265. );
  266. $smcFunc['db_query']('', '
  267. DELETE FROM {db_prefix}log_topics
  268. WHERE id_member IN ({array_int:users})',
  269. array(
  270. 'users' => $users,
  271. )
  272. );
  273. $smcFunc['db_query']('', '
  274. DELETE FROM {db_prefix}collapsed_categories
  275. WHERE id_member IN ({array_int:users})',
  276. array(
  277. 'users' => $users,
  278. )
  279. );
  280. // Make their votes appear as guest votes - at least it keeps the totals right.
  281. // @todo Consider adding back in cookie protection.
  282. $smcFunc['db_query']('', '
  283. UPDATE {db_prefix}log_polls
  284. SET id_member = {int:guest_id}
  285. WHERE id_member IN ({array_int:users})',
  286. array(
  287. 'guest_id' => 0,
  288. 'users' => $users,
  289. )
  290. );
  291. // Delete personal messages.
  292. require_once($sourcedir . '/PersonalMessage.php');
  293. deleteMessages(null, null, $users);
  294. $smcFunc['db_query']('', '
  295. UPDATE {db_prefix}personal_messages
  296. SET id_member_from = {int:guest_id}
  297. WHERE id_member_from IN ({array_int:users})',
  298. array(
  299. 'guest_id' => 0,
  300. 'users' => $users,
  301. )
  302. );
  303. // They no longer exist, so we don't know who it was sent to.
  304. $smcFunc['db_query']('', '
  305. DELETE FROM {db_prefix}pm_recipients
  306. WHERE id_member IN ({array_int:users})',
  307. array(
  308. 'users' => $users,
  309. )
  310. );
  311. // Delete avatar.
  312. require_once($sourcedir . '/ManageAttachments.php');
  313. removeAttachments(array('id_member' => $users));
  314. // It's over, no more moderation for you.
  315. $smcFunc['db_query']('', '
  316. DELETE FROM {db_prefix}moderators
  317. WHERE id_member IN ({array_int:users})',
  318. array(
  319. 'users' => $users,
  320. )
  321. );
  322. $smcFunc['db_query']('', '
  323. DELETE FROM {db_prefix}group_moderators
  324. WHERE id_member IN ({array_int:users})',
  325. array(
  326. 'users' => $users,
  327. )
  328. );
  329. // If you don't exist we can't ban you.
  330. $smcFunc['db_query']('', '
  331. DELETE FROM {db_prefix}ban_items
  332. WHERE id_member IN ({array_int:users})',
  333. array(
  334. 'users' => $users,
  335. )
  336. );
  337. // Remove individual theme settings.
  338. $smcFunc['db_query']('', '
  339. DELETE FROM {db_prefix}themes
  340. WHERE id_member IN ({array_int:users})',
  341. array(
  342. 'users' => $users,
  343. )
  344. );
  345. // These users are nobody's buddy nomore.
  346. $request = $smcFunc['db_query']('', '
  347. SELECT id_member, pm_ignore_list, buddy_list
  348. FROM {db_prefix}members
  349. WHERE FIND_IN_SET({raw:pm_ignore_list}, pm_ignore_list) != 0 OR FIND_IN_SET({raw:buddy_list}, buddy_list) != 0',
  350. array(
  351. 'pm_ignore_list' => implode(', pm_ignore_list) != 0 OR FIND_IN_SET(', $users),
  352. 'buddy_list' => implode(', buddy_list) != 0 OR FIND_IN_SET(', $users),
  353. )
  354. );
  355. while ($row = $smcFunc['db_fetch_assoc']($request))
  356. $smcFunc['db_query']('', '
  357. UPDATE {db_prefix}members
  358. SET
  359. pm_ignore_list = {string:pm_ignore_list},
  360. buddy_list = {string:buddy_list}
  361. WHERE id_member = {int:id_member}',
  362. array(
  363. 'id_member' => $row['id_member'],
  364. 'pm_ignore_list' => implode(',', array_diff(explode(',', $row['pm_ignore_list']), $users)),
  365. 'buddy_list' => implode(',', array_diff(explode(',', $row['buddy_list']), $users)),
  366. )
  367. );
  368. $smcFunc['db_free_result']($request);
  369. // Make sure no member's birthday is still sticking in the calendar...
  370. updateSettings(array(
  371. 'calendar_updated' => time(),
  372. ));
  373. // Integration rocks!
  374. call_integration_hook('integrate_delete_members', array($users));
  375. updateStats('member');
  376. require_once($sourcedir . '/Logging.php');
  377. logActions($log_changes);
  378. }
  379. /**
  380. * Registers a member to the forum.
  381. * Allows two types of interface: 'guest' and 'admin'. The first
  382. * includes hammering protection, the latter can perform the
  383. * registration silently.
  384. * The strings used in the options array are assumed to be escaped.
  385. * Allows to perform several checks on the input, e.g. reserved names.
  386. * The function will adjust member statistics.
  387. * If an error is detected will fatal error on all errors unless return_errors is true.
  388. *
  389. * @param array $regOptions
  390. * @param bool $return_errors - specify whether to return the errors
  391. * @return int, the ID of the newly created member
  392. */
  393. function registerMember(&$regOptions, $return_errors = false)
  394. {
  395. global $scripturl, $txt, $modSettings, $context, $sourcedir;
  396. global $user_info, $options, $settings, $smcFunc;
  397. loadLanguage('Login');
  398. // We'll need some external functions.
  399. require_once($sourcedir . '/Subs-Auth.php');
  400. require_once($sourcedir . '/Subs-Post.php');
  401. // Put any errors in here.
  402. $reg_errors = array();
  403. // Registration from the admin center, let them sweat a little more.
  404. if ($regOptions['interface'] == 'admin')
  405. {
  406. is_not_guest();
  407. isAllowedTo('moderate_forum');
  408. }
  409. // If you're an admin, you're special ;).
  410. elseif ($regOptions['interface'] == 'guest')
  411. {
  412. // You cannot register twice...
  413. if (empty($user_info['is_guest']))
  414. redirectexit();
  415. // Make sure they didn't just register with this session.
  416. if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck']))
  417. fatal_lang_error('register_only_once', false);
  418. }
  419. // What method of authorization are we going to use?
  420. if (empty($regOptions['auth_method']) || !in_array($regOptions['auth_method'], array('password', 'openid')))
  421. {
  422. if (!empty($regOptions['openid']))
  423. $regOptions['auth_method'] = 'openid';
  424. else
  425. $regOptions['auth_method'] = 'password';
  426. }
  427. // Spaces and other odd characters are evil...
  428. $regOptions['username'] = preg_replace('~[\t\n\r\x0B\0' . ($context['utf8'] ? '\x{A0}' : '\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $regOptions['username']);
  429. // @todo Separate the sprintf?
  430. if (empty($regOptions['email']) || preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $regOptions['email']) === 0 || strlen($regOptions['email']) > 255)
  431. $reg_errors[] = array('done', sprintf($txt['valid_email_needed'], $smcFunc['htmlspecialchars']($regOptions['username'])));
  432. $username_validation_errors = validateUsername(0, $regOptions['username'], true, !empty($regOptions['check_reserved_name']));
  433. if (!empty($username_validation_errors))
  434. $reg_errors = array_merge($reg_errors, $username_validation_errors);
  435. // Generate a validation code if it's supposed to be emailed.
  436. $validation_code = '';
  437. if ($regOptions['require'] == 'activation')
  438. $validation_code = generateValidationCode();
  439. // If you haven't put in a password generate one.
  440. if ($regOptions['interface'] == 'admin' && $regOptions['password'] == '' && $regOptions['auth_method'] == 'password')
  441. {
  442. mt_srand(time() + 1277);
  443. $regOptions['password'] = generateValidationCode();
  444. $regOptions['password_check'] = $regOptions['password'];
  445. }
  446. // Does the first password match the second?
  447. elseif ($regOptions['password'] != $regOptions['password_check'] && $regOptions['auth_method'] == 'password')
  448. $reg_errors[] = array('lang', 'passwords_dont_match');
  449. // That's kind of easy to guess...
  450. if ($regOptions['password'] == '')
  451. {
  452. if ($regOptions['auth_method'] == 'password')
  453. $reg_errors[] = array('lang', 'no_password');
  454. else
  455. $regOptions['password'] = sha1(mt_rand());
  456. }
  457. // Now perform hard password validation as required.
  458. if (!empty($regOptions['check_password_strength']))
  459. {
  460. $passwordError = validatePassword($regOptions['password'], $regOptions['username'], array($regOptions['email']));
  461. // Password isn't legal?
  462. if ($passwordError != null)
  463. $reg_errors[] = array('lang', 'profile_error_password_' . $passwordError);
  464. }
  465. // If they are using an OpenID that hasn't been verified yet error out.
  466. // @todo Change this so they can register without having to attempt a login first
  467. if ($regOptions['auth_method'] == 'openid' && (empty($_SESSION['openid']['verified']) || $_SESSION['openid']['openid_uri'] != $regOptions['openid']))
  468. $reg_errors[] = array('lang', 'openid_not_verified');
  469. // You may not be allowed to register this email.
  470. if (!empty($regOptions['check_email_ban']))
  471. isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']);
  472. // Check if the email address is in use.
  473. $request = $smcFunc['db_query']('', '
  474. SELECT id_member
  475. FROM {db_prefix}members
  476. WHERE email_address = {string:email_address}
  477. OR email_address = {string:username}
  478. LIMIT 1',
  479. array(
  480. 'email_address' => $regOptions['email'],
  481. 'username' => $regOptions['username'],
  482. )
  483. );
  484. // @todo Separate the sprintf?
  485. if ($smcFunc['db_num_rows']($request) != 0)
  486. $reg_errors[] = array('lang', 'email_in_use', false, array(htmlspecialchars($regOptions['email'])));
  487. $smcFunc['db_free_result']($request);
  488. // If we found any errors we need to do something about it right away!
  489. foreach ($reg_errors as $key => $error)
  490. {
  491. /* Note for each error:
  492. 0 = 'lang' if it's an index, 'done' if it's clear text.
  493. 1 = The text/index.
  494. 2 = Whether to log.
  495. 3 = sprintf data if necessary. */
  496. if ($error[0] == 'lang')
  497. loadLanguage('Errors');
  498. $message = $error[0] == 'lang' ? (empty($error[3]) ? $txt[$error[1]] : vsprintf($txt[$error[1]], $error[3])) : $error[1];
  499. // What to do, what to do, what to do.
  500. if ($return_errors)
  501. {
  502. if (!empty($error[2]))
  503. log_error($message, $error[2]);
  504. $reg_errors[$key] = $message;
  505. }
  506. else
  507. fatal_error($message, empty($error[2]) ? false : $error[2]);
  508. }
  509. // If there's any errors left return them at once!
  510. if (!empty($reg_errors))
  511. return $reg_errors;
  512. $reservedVars = array(
  513. 'actual_theme_url',
  514. 'actual_images_url',
  515. 'base_theme_dir',
  516. 'base_theme_url',
  517. 'default_images_url',
  518. 'default_theme_dir',
  519. 'default_theme_url',
  520. 'default_template',
  521. 'images_url',
  522. 'number_recent_posts',
  523. 'smiley_sets_default',
  524. 'theme_dir',
  525. 'theme_id',
  526. 'theme_layers',
  527. 'theme_templates',
  528. 'theme_url',
  529. );
  530. // Can't change reserved vars.
  531. if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0)
  532. fatal_lang_error('no_theme');
  533. // Some of these might be overwritten. (the lower ones that are in the arrays below.)
  534. $regOptions['register_vars'] = array(
  535. 'member_name' => $regOptions['username'],
  536. 'email_address' => $regOptions['email'],
  537. 'passwd' => sha1(strtolower($regOptions['username']) . $regOptions['password']),
  538. 'password_salt' => substr(md5(mt_rand()), 0, 4) ,
  539. 'posts' => 0,
  540. 'date_registered' => time(),
  541. 'member_ip' => $regOptions['interface'] == 'admin' ? '127.0.0.1' : $user_info['ip'],
  542. 'member_ip2' => $regOptions['interface'] == 'admin' ? '127.0.0.1' : $_SERVER['BAN_CHECK_IP'],
  543. 'validation_code' => $validation_code,
  544. 'real_name' => $regOptions['username'],
  545. 'personal_text' => $modSettings['default_personal_text'],
  546. 'pm_email_notify' => 1,
  547. 'id_theme' => 0,
  548. 'id_post_group' => 4,
  549. 'lngfile' => '',
  550. 'buddy_list' => '',
  551. 'pm_ignore_list' => '',
  552. 'message_labels' => '',
  553. 'website_title' => '',
  554. 'website_url' => '',
  555. 'location' => '',
  556. 'icq' => '',
  557. 'aim' => '',
  558. 'yim' => '',
  559. 'msn' => '',
  560. 'time_format' => '',
  561. 'signature' => '',
  562. 'avatar' => '',
  563. 'usertitle' => '',
  564. 'secret_question' => '',
  565. 'secret_answer' => '',
  566. 'additional_groups' => '',
  567. 'ignore_boards' => '',
  568. 'smiley_set' => '',
  569. 'openid_uri' => (!empty($regOptions['openid']) ? $regOptions['openid'] : ''),
  570. );
  571. // Setup the activation status on this new account so it is correct - firstly is it an under age account?
  572. if ($regOptions['require'] == 'coppa')
  573. {
  574. $regOptions['register_vars']['is_activated'] = 5;
  575. // @todo This should be changed. To what should be it be changed??
  576. $regOptions['register_vars']['validation_code'] = '';
  577. }
  578. // Maybe it can be activated right away?
  579. elseif ($regOptions['require'] == 'nothing')
  580. $regOptions['register_vars']['is_activated'] = 1;
  581. // Maybe it must be activated by email?
  582. elseif ($regOptions['require'] == 'activation')
  583. $regOptions['register_vars']['is_activated'] = 0;
  584. // Otherwise it must be awaiting approval!
  585. else
  586. $regOptions['register_vars']['is_activated'] = 3;
  587. if (isset($regOptions['memberGroup']))
  588. {
  589. // Make sure the id_group will be valid, if this is an administator.
  590. $regOptions['register_vars']['id_group'] = $regOptions['memberGroup'] == 1 && !allowedTo('admin_forum') ? 0 : $regOptions['memberGroup'];
  591. // Check if this group is assignable.
  592. $unassignableGroups = array(-1, 3);
  593. $request = $smcFunc['db_query']('', '
  594. SELECT id_group
  595. FROM {db_prefix}membergroups
  596. WHERE min_posts != {int:min_posts}' . (allowedTo('admin_forum') ? '' : '
  597. OR group_type = {int:is_protected}'),
  598. array(
  599. 'min_posts' => -1,
  600. 'is_protected' => 1,
  601. )
  602. );
  603. while ($row = $smcFunc['db_fetch_assoc']($request))
  604. $unassignableGroups[] = $row['id_group'];
  605. $smcFunc['db_free_result']($request);
  606. if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups))
  607. $regOptions['register_vars']['id_group'] = 0;
  608. }
  609. // ICQ cannot be zero.
  610. if (isset($regOptions['extra_register_vars']['icq']) && empty($regOptions['extra_register_vars']['icq']))
  611. $regOptions['extra_register_vars']['icq'] = '';
  612. // Integrate optional member settings to be set.
  613. if (!empty($regOptions['extra_register_vars']))
  614. foreach ($regOptions['extra_register_vars'] as $var => $value)
  615. $regOptions['register_vars'][$var] = $value;
  616. // Integrate optional user theme options to be set.
  617. $theme_vars = array();
  618. if (!empty($regOptions['theme_vars']))
  619. foreach ($regOptions['theme_vars'] as $var => $value)
  620. $theme_vars[$var] = $value;
  621. // Right, now let's prepare for insertion.
  622. $knownInts = array(
  623. 'date_registered', 'posts', 'id_group', 'last_login', 'instant_messages', 'unread_messages',
  624. 'new_pm', 'pm_prefs', 'gender', 'hide_email', 'show_online', 'pm_email_notify', 'karma_good', 'karma_bad',
  625. 'notify_announcements', 'notify_send_body', 'notify_regularity', 'notify_types',
  626. 'id_theme', 'is_activated', 'id_msg_last_visit', 'id_post_group', 'total_time_logged_in', 'warning',
  627. );
  628. $knownFloats = array(
  629. 'time_offset',
  630. );
  631. // Call an optional function to validate the users' input.
  632. call_integration_hook('integrate_register', array(&$regOptions, &$theme_vars, $knownInts, $knownFloats));
  633. $column_names = array();
  634. $values = array();
  635. foreach ($regOptions['register_vars'] as $var => $val)
  636. {
  637. $type = 'string';
  638. if (in_array($var, $knownInts))
  639. $type = 'int';
  640. elseif (in_array($var, $knownFloats))
  641. $type = 'float';
  642. elseif ($var == 'birthdate')
  643. $type = 'date';
  644. $column_names[$var] = $type;
  645. $values[$var] = $val;
  646. }
  647. // Register them into the database.
  648. $smcFunc['db_insert']('',
  649. '{db_prefix}members',
  650. $column_names,
  651. $values,
  652. array('id_member')
  653. );
  654. $memberID = $smcFunc['db_insert_id']('{db_prefix}members', 'id_member');
  655. // Update the number of members and latest member's info - and pass the name, but remove the 's.
  656. if ($regOptions['register_vars']['is_activated'] == 1)
  657. updateStats('member', $memberID, $regOptions['register_vars']['real_name']);
  658. else
  659. updateStats('member');
  660. // Theme variables too?
  661. if (!empty($theme_vars))
  662. {
  663. $inserts = array();
  664. foreach ($theme_vars as $var => $val)
  665. $inserts[] = array($memberID, $var, $val);
  666. $smcFunc['db_insert']('insert',
  667. '{db_prefix}themes',
  668. array('id_member' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'),
  669. $inserts,
  670. array('id_member', 'variable')
  671. );
  672. }
  673. // If it's enabled, increase the registrations for today.
  674. trackStats(array('registers' => '+'));
  675. // Administrative registrations are a bit different...
  676. if ($regOptions['interface'] == 'admin')
  677. {
  678. if ($regOptions['require'] == 'activation')
  679. $email_message = 'admin_register_activate';
  680. elseif (!empty($regOptions['send_welcome_email']))
  681. $email_message = 'admin_register_immediate';
  682. if (isset($email_message))
  683. {
  684. $replacements = array(
  685. 'REALNAME' => $regOptions['register_vars']['real_name'],
  686. 'USERNAME' => $regOptions['username'],
  687. 'PASSWORD' => $regOptions['password'],
  688. 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',
  689. 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $memberID . ';code=' . $validation_code,
  690. 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $memberID,
  691. 'ACTIVATIONCODE' => $validation_code,
  692. );
  693. $emaildata = loadEmailTemplate($email_message, $replacements);
  694. sendmail($regOptions['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  695. }
  696. // All admins are finished here.
  697. return $memberID;
  698. }
  699. // Can post straight away - welcome them to your fantastic community...
  700. if ($regOptions['require'] == 'nothing')
  701. {
  702. if (!empty($regOptions['send_welcome_email']))
  703. {
  704. $replacements = array(
  705. 'REALNAME' => $regOptions['register_vars']['real_name'],
  706. 'USERNAME' => $regOptions['username'],
  707. 'PASSWORD' => $regOptions['password'],
  708. 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',
  709. 'OPENID' => !empty($regOptions['openid']) ? $regOptions['openid'] : '',
  710. );
  711. $emaildata = loadEmailTemplate('register_' . ($regOptions['auth_method'] == 'openid' ? 'openid_' : '') . 'immediate', $replacements);
  712. sendmail($regOptions['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  713. }
  714. // Send admin their notification.
  715. adminNotify('standard', $memberID, $regOptions['username']);
  716. }
  717. // Need to activate their account - or fall under COPPA.
  718. elseif ($regOptions['require'] == 'activation' || $regOptions['require'] == 'coppa')
  719. {
  720. $replacements = array(
  721. 'REALNAME' => $regOptions['register_vars']['real_name'],
  722. 'USERNAME' => $regOptions['username'],
  723. 'PASSWORD' => $regOptions['password'],
  724. 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',
  725. 'OPENID' => !empty($regOptions['openid']) ? $regOptions['openid'] : '',
  726. );
  727. if ($regOptions['require'] == 'activation')
  728. $replacements += array(
  729. 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $memberID . ';code=' . $validation_code,
  730. 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $memberID,
  731. 'ACTIVATIONCODE' => $validation_code,
  732. );
  733. else
  734. $replacements += array(
  735. 'COPPALINK' => $scripturl . '?action=coppa;u=' . $memberID,
  736. );
  737. $emaildata = loadEmailTemplate('register_' . ($regOptions['auth_method'] == 'openid' ? 'openid_' : '') . ($regOptions['require'] == 'activation' ? 'activate' : 'coppa'), $replacements);
  738. sendmail($regOptions['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  739. }
  740. // Must be awaiting approval.
  741. else
  742. {
  743. $replacements = array(
  744. 'REALNAME' => $regOptions['register_vars']['real_name'],
  745. 'USERNAME' => $regOptions['username'],
  746. 'PASSWORD' => $regOptions['password'],
  747. 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',
  748. 'OPENID' => !empty($regOptions['openid']) ? $regOptions['openid'] : '',
  749. );
  750. $emaildata = loadEmailTemplate('register_' . ($regOptions['auth_method'] == 'openid' ? 'openid_' : '') . 'pending', $replacements);
  751. sendmail($regOptions['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  752. // Admin gets informed here...
  753. adminNotify('approval', $memberID, $regOptions['username']);
  754. }
  755. // Okay, they're for sure registered... make sure the session is aware of this for security. (Just married :P!)
  756. $_SESSION['just_registered'] = 1;
  757. return $memberID;
  758. }
  759. /**
  760. * Check if a name is in the reserved words list.
  761. * (name, current member id, name/username?.)
  762. * - checks if name is a reserved name or username.
  763. * - if is_name is false, the name is assumed to be a username.
  764. * - the id_member variable is used to ignore duplicate matches with the
  765. * current member.
  766. *
  767. * @param string $name
  768. * @param int $current_ID_MEMBER
  769. * @param bool $is_name
  770. * @param bool $fatal
  771. */
  772. function isReservedName($name, $current_ID_MEMBER = 0, $is_name = true, $fatal = true)
  773. {
  774. global $user_info, $modSettings, $smcFunc, $context;
  775. $name = preg_replace_callback('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'replaceEntities__callback', $name);
  776. $checkName = $smcFunc['strtolower']($name);
  777. // Administrators are never restricted ;).
  778. if (!allowedTo('moderate_forum') && ((!empty($modSettings['reserveName']) && $is_name) || !empty($modSettings['reserveUser']) && !$is_name))
  779. {
  780. $reservedNames = explode("\n", $modSettings['reserveNames']);
  781. // Case sensitive check?
  782. $checkMe = empty($modSettings['reserveCase']) ? $checkName : $name;
  783. // Check each name in the list...
  784. foreach ($reservedNames as $reserved)
  785. {
  786. if ($reserved == '')
  787. continue;
  788. // The admin might've used entities too, level the playing field.
  789. $reservedCheck = preg_replace('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'replaceEntities__callback', $reserved);
  790. // Case sensitive name?
  791. if (empty($modSettings['reserveCase']))
  792. $reservedCheck = $smcFunc['strtolower']($reservedCheck);
  793. // If it's not just entire word, check for it in there somewhere...
  794. if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord'])))
  795. if ($fatal)
  796. fatal_lang_error('username_reserved', 'password', array($reserved));
  797. else
  798. return true;
  799. }
  800. $censor_name = $name;
  801. if (censorText($censor_name) != $name)
  802. if ($fatal)
  803. fatal_lang_error('name_censored', 'password', array($name));
  804. else
  805. return true;
  806. }
  807. // Characters we just shouldn't allow, regardless.
  808. foreach (array('*') as $char)
  809. if (strpos($checkName, $char) !== false)
  810. if ($fatal)
  811. fatal_lang_error('username_reserved', 'password', array($char));
  812. else
  813. return true;
  814. // Get rid of any SQL parts of the reserved name...
  815. $checkName = strtr($name, array('_' => '\\_', '%' => '\\%'));
  816. // Make sure they don't want someone else's name.
  817. $request = $smcFunc['db_query']('', '
  818. SELECT id_member
  819. FROM {db_prefix}members
  820. WHERE ' . (empty($current_ID_MEMBER) ? '' : 'id_member != {int:current_member}
  821. AND ') . '(real_name LIKE {string:check_name} OR member_name LIKE {string:check_name})
  822. LIMIT 1',
  823. array(
  824. 'current_member' => $current_ID_MEMBER,
  825. 'check_name' => $checkName,
  826. )
  827. );
  828. if ($smcFunc['db_num_rows']($request) > 0)
  829. {
  830. $smcFunc['db_free_result']($request);
  831. return true;
  832. }
  833. // Does name case insensitive match a member group name?
  834. $request = $smcFunc['db_query']('', '
  835. SELECT id_group
  836. FROM {db_prefix}membergroups
  837. WHERE group_name LIKE {string:check_name}
  838. LIMIT 1',
  839. array(
  840. 'check_name' => $checkName,
  841. )
  842. );
  843. if ($smcFunc['db_num_rows']($request) > 0)
  844. {
  845. $smcFunc['db_free_result']($request);
  846. return true;
  847. }
  848. // Okay, they passed.
  849. return false;
  850. }
  851. // Get a list of groups that have a given permission (on a given board).
  852. /**
  853. * Retrieves a list of membergroups that are allowed to do the given
  854. * permission. (on the given board)
  855. * If board_id is not null, a board permission is assumed.
  856. * The function takes different permission settings into account.
  857. *
  858. * @param string $permission
  859. * @param int $board_id = null
  860. * @return an array containing an array for the allowed membergroup ID's
  861. * and an array for the denied membergroup ID's.
  862. */
  863. function groupsAllowedTo($permission, $board_id = null)
  864. {
  865. global $modSettings, $board_info, $smcFunc;
  866. // Admins are allowed to do anything.
  867. $member_groups = array(
  868. 'allowed' => array(1),
  869. 'denied' => array(),
  870. );
  871. // Assume we're dealing with regular permissions (like profile_view_own).
  872. if ($board_id === null)
  873. {
  874. $request = $smcFunc['db_query']('', '
  875. SELECT id_group, add_deny
  876. FROM {db_prefix}permissions
  877. WHERE permission = {string:permission}',
  878. array(
  879. 'permission' => $permission,
  880. )
  881. );
  882. while ($row = $smcFunc['db_fetch_assoc']($request))
  883. $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];
  884. $smcFunc['db_free_result']($request);
  885. }
  886. // Otherwise it's time to look at the board.
  887. else
  888. {
  889. // First get the profile of the given board.
  890. if (isset($board_info['id']) && $board_info['id'] == $board_id)
  891. $profile_id = $board_info['profile'];
  892. elseif ($board_id !== 0)
  893. {
  894. $request = $smcFunc['db_query']('', '
  895. SELECT id_profile
  896. FROM {db_prefix}boards
  897. WHERE id_board = {int:id_board}
  898. LIMIT 1',
  899. array(
  900. 'id_board' => $board_id,
  901. )
  902. );
  903. if ($smcFunc['db_num_rows']($request) == 0)
  904. fatal_lang_error('no_board');
  905. list ($profile_id) = $smcFunc['db_fetch_row']($request);
  906. $smcFunc['db_free_result']($request);
  907. }
  908. else
  909. $profile_id = 1;
  910. $request = $smcFunc['db_query']('', '
  911. SELECT bp.id_group, bp.add_deny
  912. FROM {db_prefix}board_permissions AS bp
  913. WHERE bp.permission = {string:permission}
  914. AND bp.id_profile = {int:profile_id}',
  915. array(
  916. 'profile_id' => $profile_id,
  917. 'permission' => $permission,
  918. )
  919. );
  920. while ($row = $smcFunc['db_fetch_assoc']($request))
  921. $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];
  922. $smcFunc['db_free_result']($request);
  923. }
  924. // Denied is never allowed.
  925. $member_groups['allowed'] = array_diff($member_groups['allowed'], $member_groups['denied']);
  926. return $member_groups;
  927. }
  928. /**
  929. * Retrieves a list of members that have a given permission
  930. * (on a given board).
  931. * If board_id is not null, a board permission is assumed.
  932. * Takes different permission settings into account.
  933. * Takes possible moderators (on board 'board_id') into account.
  934. *
  935. * @param string $permission
  936. * @param int $board_id = null
  937. * @return an array containing member ID's.
  938. */
  939. function membersAllowedTo($permission, $board_id = null)
  940. {
  941. global $smcFunc;
  942. $member_groups = groupsAllowedTo($permission, $board_id);
  943. $include_moderators = in_array(3, $member_groups['allowed']) && $board_id !== null;
  944. $member_groups['allowed'] = array_diff($member_groups['allowed'], array(3));
  945. $exclude_moderators = in_array(3, $member_groups['denied']) && $board_id !== null;
  946. $member_groups['denied'] = array_diff($member_groups['denied'], array(3));
  947. $request = $smcFunc['db_query']('', '
  948. SELECT mem.id_member
  949. FROM {db_prefix}members AS mem' . ($include_moderators || $exclude_moderators ? '
  950. LEFT JOIN {db_prefix}moderators AS mods ON (mods.id_member = mem.id_member AND mods.id_board = {int:board_id})' : '') . '
  951. WHERE (' . ($include_moderators ? 'mods.id_member IS NOT NULL OR ' : '') . 'mem.id_group IN ({array_int:member_groups_allowed}) OR FIND_IN_SET({raw:member_group_allowed_implode}, mem.additional_groups) != 0 OR mem.id_post_group IN ({array_int:member_groups_allowed}))' . (empty($member_groups['denied']) ? '' : '
  952. AND NOT (' . ($exclude_moderators ? 'mods.id_member IS NOT NULL OR ' : '') . 'mem.id_group IN ({array_int:member_groups_denied}) OR FIND_IN_SET({raw:member_group_denied_implode}, mem.additional_groups) != 0 OR mem.id_post_group IN ({array_int:member_groups_denied}))'),
  953. array(
  954. 'member_groups_allowed' => $member_groups['allowed'],
  955. 'member_groups_denied' => $member_groups['denied'],
  956. 'board_id' => $board_id,
  957. 'member_group_allowed_implode' => implode(', mem.additional_groups) != 0 OR FIND_IN_SET(', $member_groups['allowed']),
  958. 'member_group_denied_implode' => implode(', mem.additional_groups) != 0 OR FIND_IN_SET(', $member_groups['denied']),
  959. )
  960. );
  961. $members = array();
  962. while ($row = $smcFunc['db_fetch_assoc']($request))
  963. $members[] = $row['id_member'];
  964. $smcFunc['db_free_result']($request);
  965. return $members;
  966. }
  967. /**
  968. * This function is used to reassociate members with relevant posts.
  969. * Reattribute guest posts to a specified member.
  970. * Does not check for any permissions.
  971. * If add_to_post_count is set, the member's post count is increased.
  972. *
  973. * @param int $memID
  974. * @param string $email = false
  975. * @param string $membername = false
  976. * @param bool $post_count = false
  977. * @return nothing
  978. */
  979. function reattributePosts($memID, $email = false, $membername = false, $post_count = false)
  980. {
  981. global $smcFunc;
  982. // Firstly, if email and username aren't passed find out the members email address and name.
  983. if ($email === false && $membername === false)
  984. {
  985. $request = $smcFunc['db_query']('', '
  986. SELECT email_address, member_name
  987. FROM {db_prefix}members
  988. WHERE id_member = {int:memID}
  989. LIMIT 1',
  990. array(
  991. 'memID' => $memID,
  992. )
  993. );
  994. list ($email, $membername) = $smcFunc['db_fetch_row']($request);
  995. $smcFunc['db_free_result']($request);
  996. }
  997. // If they want the post count restored then we need to do some research.
  998. if ($post_count)
  999. {
  1000. $request = $smcFunc['db_query']('', '
  1001. SELECT COUNT(*)
  1002. FROM {db_prefix}messages AS m
  1003. INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board AND b.count_posts = {int:count_posts})
  1004. WHERE m.id_member = {int:guest_id}
  1005. AND m.approved = {int:is_approved}
  1006. AND m.icon != {string:recycled_icon}' . (empty($email) ? '' : '
  1007. AND m.poster_email = {string:email_address}') . (empty($membername) ? '' : '
  1008. AND m.poster_name = {string:member_name}'),
  1009. array(
  1010. 'count_posts' => 0,
  1011. 'guest_id' => 0,
  1012. 'email_address' => $email,
  1013. 'member_name' => $membername,
  1014. 'is_approved' => 1,
  1015. 'recycled_icon' => 'recycled',
  1016. )
  1017. );
  1018. list ($messageCount) = $smcFunc['db_fetch_row']($request);
  1019. $smcFunc['db_free_result']($request);
  1020. updateMemberData($memID, array('posts' => 'posts + ' . $messageCount));
  1021. }
  1022. $query_parts = array();
  1023. if (!empty($email))
  1024. $query_parts[] = 'poster_email = {string:email_address}';
  1025. if (!empty($membername))
  1026. $query_parts[] = 'poster_name = {string:member_name}';
  1027. $query = implode(' AND ', $query_parts);
  1028. // Finally, update the posts themselves!
  1029. $smcFunc['db_query']('', '
  1030. UPDATE {db_prefix}messages
  1031. SET id_member = {int:memID}
  1032. WHERE ' . $query,
  1033. array(
  1034. 'memID' => $memID,
  1035. 'email_address' => $email,
  1036. 'member_name' => $membername,
  1037. )
  1038. );
  1039. // ...and the topics too!
  1040. $smcFunc['db_query']('', '
  1041. UPDATE {db_prefix}topics as t, {db_prefix}messages as m
  1042. SET t.id_member_started = {int:memID}
  1043. WHERE m.id_member = {int:memID}
  1044. AND t.id_first_msg = m.id_msg',
  1045. array(
  1046. 'memID' => $memID,
  1047. )
  1048. );
  1049. // Allow mods with their own post tables to reattribute posts as well :)
  1050. call_integration_hook('integrate_reattribute_posts', array($memID, $email, $membername, $post_count));
  1051. }
  1052. /**
  1053. * This simple function adds/removes the passed user from the current users buddy list.
  1054. * Requires profile_identity_own permission.
  1055. * Called by ?action=buddy;u=x;session_id=y.
  1056. * Redirects to ?action=profile;u=x.
  1057. */
  1058. function BuddyListToggle()
  1059. {
  1060. global $user_info;
  1061. checkSession('get');
  1062. isAllowedTo('profile_identity_own');
  1063. is_not_guest();
  1064. if (empty($_REQUEST['u']))
  1065. fatal_lang_error('no_access', false);
  1066. $_REQUEST['u'] = (int) $_REQUEST['u'];
  1067. // Remove if it's already there...
  1068. if (in_array($_REQUEST['u'], $user_info['buddies']))
  1069. $user_info['buddies'] = array_diff($user_info['buddies'], array($_REQUEST['u']));
  1070. // ...or add if it's not and if it's not you.
  1071. elseif ($user_info['id'] != $_REQUEST['u'])
  1072. $user_info['buddies'][] = (int) $_REQUEST['u'];
  1073. // Update the settings.
  1074. updateMemberData($user_info['id'], array('buddy_list' => implode(',', $user_info['buddies'])));
  1075. // Redirect back to the profile
  1076. redirectexit('action=profile;u=' . $_REQUEST['u']);
  1077. }
  1078. /**
  1079. * Callback for createList().
  1080. *
  1081. * @param $start
  1082. * @param $items_per_page
  1083. * @param $sort
  1084. * @param $where
  1085. * @param $where_params
  1086. * @param $get_duplicates
  1087. */
  1088. function list_getMembers($start, $items_per_page, $sort, $where, $where_params = array(), $get_duplicates = false)
  1089. {
  1090. global $smcFunc;
  1091. $request = $smcFunc['db_query']('', '
  1092. SELECT
  1093. mem.id_member, mem.member_name, mem.real_name, mem.email_address, mem.icq, mem.aim, mem.yim, mem.msn, mem.member_ip, mem.member_ip2, mem.last_login,
  1094. mem.posts, mem.is_activated, mem.date_registered, mem.id_group, mem.additional_groups, mg.group_name
  1095. FROM {db_prefix}members AS mem
  1096. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = mem.id_group)
  1097. WHERE ' . ($where == '1' ? '1=1' : $where) . '
  1098. ORDER BY {raw:sort}
  1099. LIMIT {int:start}, {int:per_page}',
  1100. array_merge($where_params, array(
  1101. 'sort' => $sort,
  1102. 'start' => $start,
  1103. 'per_page' => $items_per_page,
  1104. ))
  1105. );
  1106. $members = array();
  1107. while ($row = $smcFunc['db_fetch_assoc']($request))
  1108. $members[] = $row;
  1109. $smcFunc['db_free_result']($request);
  1110. // If we want duplicates pass the members array off.
  1111. if ($get_duplicates)
  1112. populateDuplicateMembers($members);
  1113. return $members;
  1114. }
  1115. /**
  1116. * Callback for createList().
  1117. *
  1118. * @param $where
  1119. * @param $where_params
  1120. */
  1121. function list_getNumMembers($where, $where_params = array())
  1122. {
  1123. global $smcFunc, $modSettings;
  1124. // We know how many members there are in total.
  1125. if (empty($where) || $where == '1')
  1126. $num_members = $modSettings['totalMembers'];
  1127. // The database knows the amount when there are extra conditions.
  1128. else
  1129. {
  1130. $request = $smcFunc['db_query']('', '
  1131. SELECT COUNT(*)
  1132. FROM {db_prefix}members AS mem
  1133. WHERE ' . $where,
  1134. array_merge($where_params, array(
  1135. ))
  1136. );
  1137. list ($num_members) = $smcFunc['db_fetch_row']($request);
  1138. $smcFunc['db_free_result']($request);
  1139. }
  1140. return $num_members;
  1141. }
  1142. /**
  1143. * Find potential duplicate registation members based on the same IP address
  1144. *
  1145. * @param $members
  1146. */
  1147. function populateDuplicateMembers(&$members)
  1148. {
  1149. global $smcFunc;
  1150. // This will hold all the ip addresses.
  1151. $ips = array();
  1152. foreach ($members as $key => $member)
  1153. {
  1154. // Create the duplicate_members element.
  1155. $members[$key]['duplicate_members'] = array();
  1156. // Store the IPs.
  1157. if (!empty($member['member_ip']))
  1158. $ips[] = $member['member_ip'];
  1159. if (!empty($member['member_ip2']))
  1160. $ips[] = $member['member_ip2'];
  1161. }
  1162. $ips = array_unique($ips);
  1163. if (empty($ips))
  1164. return false;
  1165. // Fetch all members with this IP address, we'll filter out the current ones in a sec.
  1166. $request = $smcFunc['db_query']('', '
  1167. SELECT
  1168. id_member, member_name, email_address, member_ip, member_ip2, is_activated
  1169. FROM {db_prefix}members
  1170. WHERE member_ip IN ({array_string:ips})
  1171. OR member_ip2 IN ({array_string:ips})',
  1172. array(
  1173. 'ips' => $ips,
  1174. )
  1175. );
  1176. $duplicate_members = array();
  1177. $duplicate_ids = array();
  1178. while ($row = $smcFunc['db_fetch_assoc']($request))
  1179. {
  1180. //$duplicate_ids[] = $row['id_member'];
  1181. $member_context = array(
  1182. 'id' => $row['id_member'],
  1183. 'name' => $row['member_name'],
  1184. 'email' => $row['email_address'],
  1185. 'is_banned' => $row['is_activated'] > 10,
  1186. 'ip' => $row['member_ip'],
  1187. 'ip2' => $row['member_ip2'],
  1188. );
  1189. if (in_array($row['member_ip'], $ips))
  1190. $duplicate_members[$row['member_ip']][] = $member_context;
  1191. if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips))
  1192. $duplicate_members[$row['member_ip2']][] = $member_context;
  1193. }
  1194. $smcFunc['db_free_result']($request);
  1195. // Also try to get a list of messages using these ips.
  1196. $request = $smcFunc['db_query']('', '
  1197. SELECT
  1198. m.poster_ip, mem.id_member, mem.member_name, mem.email_address, mem.is_activated
  1199. FROM {db_prefix}messages AS m
  1200. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
  1201. WHERE m.id_member != 0
  1202. ' . (!empty($duplicate_ids) ? 'AND m.id_member NOT IN ({array_int:duplicate_ids})' : '') . '
  1203. AND m.poster_ip IN ({array_string:ips})',
  1204. array(
  1205. 'duplicate_ids' => $duplicate_ids,
  1206. 'ips' => $ips,
  1207. )
  1208. );
  1209. $had_ips = array();
  1210. while ($row = $smcFunc['db_fetch_assoc']($request))
  1211. {
  1212. // Don't collect lots of the same.
  1213. if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']]))
  1214. continue;
  1215. $had_ips[$row['poster_ip']][] = $row['id_member'];
  1216. $duplicate_members[$row['poster_ip']][] = array(
  1217. 'id' => $row['id_member'],
  1218. 'name' => $row['member_name'],
  1219. 'email' => $row['email_address'],
  1220. 'is_banned' => $row['is_activated'] > 10,
  1221. 'ip' => $row['poster_ip'],
  1222. 'ip2' => $row['poster_ip'],
  1223. );
  1224. }
  1225. $smcFunc['db_free_result']($request);
  1226. // Now we have all the duplicate members, stick them with their respective member in the list.
  1227. if (!empty($duplicate_members))
  1228. foreach ($members as $key => $member)
  1229. {
  1230. if (isset($duplicate_members[$member['member_ip']]))
  1231. $members[$key]['duplicate_members'] = $duplicate_members[$member['member_ip']];
  1232. if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']]))
  1233. $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]);
  1234. // Check we don't have lots of the same member.
  1235. $member_track = array($member['id_member']);
  1236. foreach ($members[$key]['duplicate_members'] as $duplicate_id_member => $duplicate_member)
  1237. {
  1238. if (in_array($duplicate_member['id'], $member_track))
  1239. {
  1240. unset($members[$key]['duplicate_members'][$duplicate_id_member]);
  1241. continue;
  1242. }
  1243. $member_track[] = $duplicate_member['id'];
  1244. }
  1245. }
  1246. }
  1247. /**
  1248. * Generate a random validation code.
  1249. * @todo Err. Whatcha doin' here.
  1250. *
  1251. * @return type
  1252. */
  1253. function generateValidationCode()
  1254. {
  1255. global $smcFunc, $modSettings;
  1256. $request = $smcFunc['db_query']('get_random_number', '
  1257. SELECT RAND()',
  1258. array(
  1259. )
  1260. );
  1261. list ($dbRand) = $smcFunc['db_fetch_row']($request);
  1262. $smcFunc['db_free_result']($request);
  1263. return substr(preg_replace('/\W/', '', sha1(microtime() . mt_rand() . $dbRand . $modSettings['rand_seed'])), 0, 10);
  1264. }
  1265. ?>