Subs-Members.php 46 KB

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