Register.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. <?php
  2. /**
  3. * This file has two main jobs, but they really are one. It registers new
  4. * members, and it helps the administrator moderate member registrations.
  5. * Similarly, it handles account activation as well.
  6. *
  7. * Simple Machines Forum (SMF)
  8. *
  9. * @package SMF
  10. * @author Simple Machines http://www.simplemachines.org
  11. * @copyright 2011 Simple Machines
  12. * @license http://www.simplemachines.org/about/smf/license.php BSD
  13. *
  14. * @version 2.1 Alpha 1
  15. */
  16. if (!defined('SMF'))
  17. die('Hacking attempt...');
  18. /**
  19. * Begin the registration process.
  20. *
  21. * @param array $reg_errors = array()
  22. */
  23. function Register($reg_errors = array())
  24. {
  25. global $txt, $boarddir, $context, $settings, $modSettings, $user_info;
  26. global $language, $scripturl, $smcFunc, $sourcedir, $smcFunc, $cur_profile;
  27. // Is this an incoming AJAX check?
  28. if (isset($_GET['sa']) && $_GET['sa'] === 'usernamecheck')
  29. return RegisterCheckUsername();
  30. // Check if the administrator has it disabled.
  31. if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == '3')
  32. fatal_lang_error('registration_disabled', false);
  33. // If this user is an admin - redirect them to the admin registration page.
  34. if (allowedTo('moderate_forum') && !$user_info['is_guest'])
  35. redirectexit('action=admin;area=regcenter;sa=register');
  36. // You are not a guest, so you are a member - and members don't get to register twice!
  37. elseif (empty($user_info['is_guest']))
  38. redirectexit();
  39. loadLanguage('Login');
  40. loadTemplate('Register');
  41. // Do we need them to agree to the registration agreement, first?
  42. $context['require_agreement'] = !empty($modSettings['requireAgreement']);
  43. $context['registration_passed_agreement'] = !empty($_SESSION['registration_agreed']);
  44. $context['show_coppa'] = !empty($modSettings['coppaAge']);
  45. // Under age restrictions?
  46. if ($context['show_coppa'])
  47. {
  48. $context['skip_coppa'] = false;
  49. $context['coppa_agree_above'] = sprintf($txt['agreement_agree_coppa_above'], $modSettings['coppaAge']);
  50. $context['coppa_agree_below'] = sprintf($txt['agreement_agree_coppa_below'], $modSettings['coppaAge']);
  51. }
  52. // What step are we at?
  53. $current_step = isset($_REQUEST['step']) ? (int) $_REQUEST['step'] : ($context['require_agreement'] ? 1 : 2);
  54. // Does this user agree to the registation agreement?
  55. if ($current_step == 1 && (isset($_POST['accept_agreement']) || isset($_POST['accept_agreement_coppa'])))
  56. {
  57. $context['registration_passed_agreement'] = $_SESSION['registration_agreed'] = true;
  58. $current_step = 2;
  59. // Skip the coppa procedure if the user says he's old enough.
  60. if ($context['show_coppa'])
  61. {
  62. $_SESSION['skip_coppa'] = !empty($_POST['accept_agreement']);
  63. // Are they saying they're under age, while under age registration is disabled?
  64. if (empty($modSettings['coppaType']) && empty($_SESSION['skip_coppa']))
  65. {
  66. loadLanguage('Login');
  67. fatal_lang_error('under_age_registration_prohibited', false, array($modSettings['coppaAge']));
  68. }
  69. }
  70. }
  71. // Make sure they don't squeeze through without agreeing.
  72. elseif ($current_step > 1 && $context['require_agreement'] && !$context['registration_passed_agreement'])
  73. $current_step = 1;
  74. // Show the user the right form.
  75. $context['sub_template'] = $current_step == 1 ? 'registration_agreement' : 'registration_form';
  76. $context['page_title'] = $current_step == 1 ? $txt['registration_agreement'] : $txt['registration_form'];
  77. // Add the register chain to the link tree.
  78. $context['linktree'][] = array(
  79. 'url' => $scripturl . '?action=register',
  80. 'name' => $txt['register'],
  81. );
  82. // If you have to agree to the agreement, it needs to be fetched from the file.
  83. if ($context['require_agreement'])
  84. {
  85. // Have we got a localized one?
  86. if (file_exists($boarddir . '/agreement.' . $user_info['language'] . '.txt'))
  87. $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.' . $user_info['language'] . '.txt'), true, 'agreement_' . $user_info['language']);
  88. elseif (file_exists($boarddir . '/agreement.txt'))
  89. $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.txt'), true, 'agreement');
  90. else
  91. $context['agreement'] = '';
  92. }
  93. if (!empty($modSettings['userLanguage']))
  94. {
  95. $selectedLanguage = empty($_SESSION['language']) ? $language : $_SESSION['language'];
  96. // Do we have any languages?
  97. if (empty($context['languages']))
  98. getLanguages();
  99. // Try to find our selected language.
  100. foreach ($context['languages'] as $key => $lang)
  101. {
  102. $context['languages'][$key]['name'] = strtr($lang['name'], array('-utf8' => ''));
  103. // Found it!
  104. if ($selectedLanguage == $lang['filename'])
  105. $context['languages'][$key]['selected'] = true;
  106. }
  107. }
  108. // Any custom fields we want filled in?
  109. require_once($sourcedir . '/Profile.php');
  110. loadCustomFields(0, 'register');
  111. // Or any standard ones?
  112. if (!empty($modSettings['registration_fields']))
  113. {
  114. require_once($sourcedir . '/Profile-Modify.php');
  115. // Setup some important context.
  116. loadLanguage('Profile');
  117. loadTemplate('Profile');
  118. $context['user']['is_owner'] = true;
  119. // Here, and here only, emulate the permissions the user would have to do this.
  120. $user_info['permissions'] = array_merge($user_info['permissions'], array('profile_account_own', 'profile_extra_own'));
  121. $reg_fields = explode(',', $modSettings['registration_fields']);
  122. // We might have had some submissions on this front - go check.
  123. foreach ($reg_fields as $field)
  124. if (isset($_POST[$field]))
  125. $cur_profile[$field] = $smcFunc['htmlspecialchars']($_POST[$field]);
  126. // Load all the fields in question.
  127. setupProfileContext($reg_fields);
  128. }
  129. // Generate a visual verification code to make sure the user is no bot.
  130. if (!empty($modSettings['reg_verification']))
  131. {
  132. require_once($sourcedir . '/Subs-Editor.php');
  133. $verificationOptions = array(
  134. 'id' => 'register',
  135. );
  136. $context['visual_verification'] = create_control_verification($verificationOptions);
  137. $context['visual_verification_id'] = $verificationOptions['id'];
  138. }
  139. // Otherwise we have nothing to show.
  140. else
  141. $context['visual_verification'] = false;
  142. // Are they coming from an OpenID login attempt?
  143. if (!empty($_SESSION['openid']['verified']) && !empty($_SESSION['openid']['openid_uri']))
  144. {
  145. $context['openid'] = $_SESSION['openid']['openid_uri'];
  146. $context['username'] = $smcFunc['htmlspecialchars'](!empty($_POST['user']) ? $_POST['user'] : $_SESSION['openid']['nickname']);
  147. $context['email'] = $smcFunc['htmlspecialchars'](!empty($_POST['email']) ? $_POST['email'] : $_SESSION['openid']['email']);
  148. }
  149. // See whether we have some prefiled values.
  150. else
  151. {
  152. $context += array(
  153. 'openid' => isset($_POST['openid_identifier']) ? $_POST['openid_identifier'] : '',
  154. 'username' => isset($_POST['user']) ? $smcFunc['htmlspecialchars']($_POST['user']) : '',
  155. 'email' => isset($_POST['email']) ? $smcFunc['htmlspecialchars']($_POST['email']) : '',
  156. );
  157. }
  158. // @todo Why isn't this a simple set operation?
  159. // Were there any errors?
  160. $context['registration_errors'] = array();
  161. if (!empty($reg_errors))
  162. foreach ($reg_errors as $error)
  163. $context['registration_errors'][] = $error;
  164. createToken('register');
  165. }
  166. /**
  167. * Actually register the member.
  168. *
  169. * @param bool $verifiedOpenID = false
  170. */
  171. function Register2($verifiedOpenID = false)
  172. {
  173. global $scripturl, $txt, $modSettings, $context, $sourcedir;
  174. global $user_info, $options, $settings, $smcFunc;
  175. checkSession();
  176. validateToken('register');
  177. // Start collecting together any errors.
  178. $reg_errors = array();
  179. // Did we save some open ID fields?
  180. if ($verifiedOpenID && !empty($context['openid_save_fields']))
  181. {
  182. foreach ($context['openid_save_fields'] as $id => $value)
  183. $_POST[$id] = $value;
  184. }
  185. // You can't register if it's disabled.
  186. if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == 3)
  187. fatal_lang_error('registration_disabled', false);
  188. // Things we don't do for people who have already confirmed their OpenID allegances via register.
  189. if (!$verifiedOpenID)
  190. {
  191. // Well, if you don't agree, you can't register.
  192. if (!empty($modSettings['requireAgreement']) && empty($_SESSION['registration_agreed']))
  193. redirectexit();
  194. // Make sure they came from *somewhere*, have a session.
  195. if (!isset($_SESSION['old_url']))
  196. redirectexit('action=register');
  197. // Are they under age, and under age users are banned?
  198. if (!empty($modSettings['coppaAge']) && empty($modSettings['coppaType']) && empty($_SESSION['skip_coppa']))
  199. {
  200. // @todo This should be put in Errors, imho.
  201. loadLanguage('Login');
  202. fatal_lang_error('under_age_registration_prohibited', false, array($modSettings['coppaAge']));
  203. }
  204. // Check whether the visual verification code was entered correctly.
  205. if (!empty($modSettings['reg_verification']))
  206. {
  207. require_once($sourcedir . '/Subs-Editor.php');
  208. $verificationOptions = array(
  209. 'id' => 'register',
  210. );
  211. $context['visual_verification'] = create_control_verification($verificationOptions, true);
  212. if (is_array($context['visual_verification']))
  213. {
  214. loadLanguage('Errors');
  215. foreach ($context['visual_verification'] as $error)
  216. $reg_errors[] = $txt['error_' . $error];
  217. }
  218. }
  219. }
  220. foreach ($_POST as $key => $value)
  221. {
  222. if (!is_array($_POST[$key]))
  223. $_POST[$key] = htmltrim__recursive(str_replace(array("\n", "\r"), '', $_POST[$key]));
  224. }
  225. // Collect all extra registration fields someone might have filled in.
  226. $possible_strings = array(
  227. 'website_url', 'website_title',
  228. 'aim', 'yim',
  229. 'location', 'birthdate',
  230. 'time_format',
  231. 'buddy_list',
  232. 'pm_ignore_list',
  233. 'smiley_set',
  234. 'signature', 'personal_text', 'avatar',
  235. 'lngfile',
  236. 'secret_question', 'secret_answer',
  237. );
  238. $possible_ints = array(
  239. 'pm_email_notify',
  240. 'notify_types',
  241. 'icq',
  242. 'gender',
  243. 'id_theme',
  244. );
  245. $possible_floats = array(
  246. 'time_offset',
  247. );
  248. $possible_bools = array(
  249. 'notify_announcements', 'notify_regularity', 'notify_send_body',
  250. 'hide_email', 'show_online',
  251. );
  252. if (isset($_POST['secret_answer']) && $_POST['secret_answer'] != '')
  253. $_POST['secret_answer'] = md5($_POST['secret_answer']);
  254. // Needed for isReservedName() and registerMember().
  255. require_once($sourcedir . '/Subs-Members.php');
  256. // Validation... even if we're not a mall.
  257. if (isset($_POST['real_name']) && (!empty($modSettings['allow_editDisplayName']) || allowedTo('moderate_forum')))
  258. {
  259. $_POST['real_name'] = trim(preg_replace('~[\s]~' . ($context['utf8'] ? 'u' : ''), ' ', $_POST['real_name']));
  260. if (trim($_POST['real_name']) != '' && !isReservedName($_POST['real_name']) && $smcFunc['strlen']($_POST['real_name']) < 60)
  261. $possible_strings[] = 'real_name';
  262. }
  263. if (isset($_POST['msn']) && preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $_POST['msn']) != 0)
  264. $profile_strings[] = 'msn';
  265. // Handle a string as a birthdate...
  266. if (isset($_POST['birthdate']) && $_POST['birthdate'] != '')
  267. $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST['birthdate']));
  268. // Or birthdate parts...
  269. elseif (!empty($_POST['bday1']) && !empty($_POST['bday2']))
  270. $_POST['birthdate'] = sprintf('%04d-%02d-%02d', empty($_POST['bday3']) ? 0 : (int) $_POST['bday3'], (int) $_POST['bday1'], (int) $_POST['bday2']);
  271. // By default assume email is hidden, only show it if we tell it to.
  272. $_POST['hide_email'] = !empty($_POST['allow_email']) ? 0 : 1;
  273. // Validate the passed language file.
  274. if (isset($_POST['lngfile']) && !empty($modSettings['userLanguage']))
  275. {
  276. // Do we have any languages?
  277. if (empty($context['languages']))
  278. getLanguages();
  279. // Did we find it?
  280. if (isset($context['languages'][$_POST['lngfile']]))
  281. $_SESSION['language'] = $_POST['lngfile'];
  282. else
  283. unset($_POST['lngfile']);
  284. }
  285. else
  286. unset($_POST['lngfile']);
  287. // Set the options needed for registration.
  288. $regOptions = array(
  289. 'interface' => 'guest',
  290. 'username' => !empty($_POST['user']) ? $_POST['user'] : '',
  291. 'email' => !empty($_POST['email']) ? $_POST['email'] : '',
  292. 'password' => !empty($_POST['passwrd1']) ? $_POST['passwrd1'] : '',
  293. 'password_check' => !empty($_POST['passwrd2']) ? $_POST['passwrd2'] : '',
  294. 'openid' => !empty($_POST['openid_identifier']) ? $_POST['openid_identifier'] : '',
  295. 'auth_method' => !empty($_POST['authenticate']) ? $_POST['authenticate'] : '',
  296. 'check_reserved_name' => true,
  297. 'check_password_strength' => true,
  298. 'check_email_ban' => true,
  299. 'send_welcome_email' => !empty($modSettings['send_welcomeEmail']),
  300. 'require' => !empty($modSettings['coppaAge']) && !$verifiedOpenID && empty($_SESSION['skip_coppa']) ? 'coppa' : (empty($modSettings['registration_method']) ? 'nothing' : ($modSettings['registration_method'] == 1 ? 'activation' : 'approval')),
  301. 'extra_register_vars' => array(),
  302. 'theme_vars' => array(),
  303. );
  304. // Include the additional options that might have been filled in.
  305. foreach ($possible_strings as $var)
  306. if (isset($_POST[$var]))
  307. $regOptions['extra_register_vars'][$var] = $smcFunc['htmlspecialchars']($_POST[$var], ENT_QUOTES);
  308. foreach ($possible_ints as $var)
  309. if (isset($_POST[$var]))
  310. $regOptions['extra_register_vars'][$var] = (int) $_POST[$var];
  311. foreach ($possible_floats as $var)
  312. if (isset($_POST[$var]))
  313. $regOptions['extra_register_vars'][$var] = (float) $_POST[$var];
  314. foreach ($possible_bools as $var)
  315. if (isset($_POST[$var]))
  316. $regOptions['extra_register_vars'][$var] = empty($_POST[$var]) ? 0 : 1;
  317. // Registration options are always default options...
  318. if (isset($_POST['default_options']))
  319. $_POST['options'] = isset($_POST['options']) ? $_POST['options'] + $_POST['default_options'] : $_POST['default_options'];
  320. $regOptions['theme_vars'] = isset($_POST['options']) && is_array($_POST['options']) ? $_POST['options'] : array();
  321. // Make sure they are clean, dammit!
  322. $regOptions['theme_vars'] = htmlspecialchars__recursive($regOptions['theme_vars']);
  323. // If Quick Reply hasn't been set then set it to be shown but collapsed.
  324. if (!isset($regOptions['theme_vars']['display_quick_reply']))
  325. $regOptions['theme_vars']['display_quick_reply'] = 1;
  326. // Check whether we have fields that simply MUST be displayed?
  327. $request = $smcFunc['db_query']('', '
  328. SELECT col_name, field_name, field_type, field_length, mask, show_reg
  329. FROM {db_prefix}custom_fields
  330. WHERE active = {int:is_active}',
  331. array(
  332. 'is_active' => 1,
  333. )
  334. );
  335. $custom_field_errors = array();
  336. while ($row = $smcFunc['db_fetch_assoc']($request))
  337. {
  338. // Don't allow overriding of the theme variables.
  339. if (isset($regOptions['theme_vars'][$row['col_name']]))
  340. unset($regOptions['theme_vars'][$row['col_name']]);
  341. // Not actually showing it then?
  342. if (!$row['show_reg'])
  343. continue;
  344. // Prepare the value!
  345. $value = isset($_POST['customfield'][$row['col_name']]) ? trim($_POST['customfield'][$row['col_name']]) : '';
  346. // We only care for text fields as the others are valid to be empty.
  347. if (!in_array($row['field_type'], array('check', 'select', 'radio')))
  348. {
  349. // Is it too long?
  350. if ($row['field_length'] && $row['field_length'] < $smcFunc['strlen']($value))
  351. $custom_field_errors[] = array('custom_field_too_long', array($row['field_name'], $row['field_length']));
  352. // Any masks to apply?
  353. if ($row['field_type'] == 'text' && !empty($row['mask']) && $row['mask'] != 'none')
  354. {
  355. // @todo We never error on this - just ignore it at the moment...
  356. if ($row['mask'] == 'email' && (preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $value) === 0 || strlen($value) > 255))
  357. $custom_field_errors[] = array('custom_field_invalid_email', array($row['field_name']));
  358. elseif ($row['mask'] == 'number' && preg_match('~[^\d]~', $value))
  359. $custom_field_errors[] = array('custom_field_not_number', array($row['field_name']));
  360. elseif (substr($row['mask'], 0, 5) == 'regex' && preg_match(substr($row['mask'], 5), $value) === 0)
  361. $custom_field_errors[] = array('custom_field_inproper_format', array($row['field_name']));
  362. }
  363. }
  364. // Is this required but not there?
  365. if (trim($value) == '' && $row['show_reg'] > 1)
  366. $custom_field_errors[] = array('custom_field_empty', array($row['field_name']));
  367. }
  368. $smcFunc['db_free_result']($request);
  369. // Process any errors.
  370. if (!empty($custom_field_errors))
  371. {
  372. loadLanguage('Errors');
  373. foreach ($custom_field_errors as $error)
  374. $reg_errors[] = vsprintf($txt['error_' . $error[0]], $error[1]);
  375. }
  376. // Lets check for other errors before trying to register the member.
  377. if (!empty($reg_errors))
  378. {
  379. $_REQUEST['step'] = 2;
  380. return Register($reg_errors);
  381. }
  382. // If they're wanting to use OpenID we need to validate them first.
  383. if (empty($_SESSION['openid']['verified']) && !empty($_POST['authenticate']) && $_POST['authenticate'] == 'openid')
  384. {
  385. // What do we need to save?
  386. $save_variables = array();
  387. foreach ($_POST as $k => $v)
  388. if (!in_array($k, array('sc', 'sesc', $context['session_var'], 'passwrd1', 'passwrd2', 'regSubmit')))
  389. $save_variables[$k] = $v;
  390. require_once($sourcedir . '/Subs-OpenID.php');
  391. smf_openID_validate($_POST['openid_identifier'], false, $save_variables);
  392. }
  393. // If we've come from OpenID set up some default stuff.
  394. elseif ($verifiedOpenID || (!empty($_POST['openid_identifier']) && $_POST['authenticate'] == 'openid'))
  395. {
  396. $regOptions['username'] = !empty($_POST['user']) && trim($_POST['user']) != '' ? $_POST['user'] : $_SESSION['openid']['nickname'];
  397. $regOptions['email'] = !empty($_POST['email']) && trim($_POST['email']) != '' ? $_POST['email'] : $_SESSION['openid']['email'];
  398. $regOptions['auth_method'] = 'openid';
  399. $regOptions['openid'] = !empty($_POST['openid_identifier']) ? $_POST['openid_identifier'] : $_SESSION['openid']['openid_uri'];
  400. }
  401. $memberID = registerMember($regOptions, true);
  402. // What there actually an error of some kind dear boy?
  403. if (is_array($memberID))
  404. {
  405. $reg_errors = array_merge($reg_errors, $memberID);
  406. $_REQUEST['step'] = 2;
  407. return Register($reg_errors);
  408. }
  409. // Do our spam protection now.
  410. spamProtection('register');
  411. // We'll do custom fields after as then we get to use the helper function!
  412. if (!empty($_POST['customfield']))
  413. {
  414. require_once($sourcedir . '/Profile.php');
  415. require_once($sourcedir . '/Profile-Modify.php');
  416. makeCustomFieldChanges($memberID, 'register');
  417. }
  418. // If COPPA has been selected then things get complicated, setup the template.
  419. if (!empty($modSettings['coppaAge']) && empty($_SESSION['skip_coppa']))
  420. redirectexit('action=coppa;member=' . $memberID);
  421. // Basic template variable setup.
  422. elseif (!empty($modSettings['registration_method']))
  423. {
  424. loadTemplate('Register');
  425. $context += array(
  426. 'page_title' => $txt['register'],
  427. 'title' => $txt['registration_successful'],
  428. 'sub_template' => 'after',
  429. 'description' => $modSettings['registration_method'] == 2 ? $txt['approval_after_registration'] : $txt['activate_after_registration']
  430. );
  431. }
  432. else
  433. {
  434. call_integration_hook('integrate_activate', array($row['member_name']));
  435. setLoginCookie(60 * $modSettings['cookieTime'], $memberID, sha1(sha1(strtolower($regOptions['username']) . $regOptions['password']) . $regOptions['register_vars']['password_salt']));
  436. redirectexit('action=login2;sa=check;member=' . $memberID, $context['server']['needs_login_fix']);
  437. }
  438. }
  439. /**
  440. * @todo needs description
  441. */
  442. function Activate()
  443. {
  444. global $context, $txt, $modSettings, $scripturl, $sourcedir, $smcFunc, $language;
  445. loadLanguage('Login');
  446. loadTemplate('Login');
  447. if (empty($_REQUEST['u']) && empty($_POST['user']))
  448. {
  449. if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == '3')
  450. fatal_lang_error('no_access', false);
  451. $context['member_id'] = 0;
  452. $context['sub_template'] = 'resend';
  453. $context['page_title'] = $txt['invalid_activation_resend'];
  454. $context['can_activate'] = empty($modSettings['registration_method']) || $modSettings['registration_method'] == '1';
  455. $context['default_username'] = isset($_GET['user']) ? $_GET['user'] : '';
  456. return;
  457. }
  458. // Get the code from the database...
  459. $request = $smcFunc['db_query']('', '
  460. SELECT id_member, validation_code, member_name, real_name, email_address, is_activated, passwd, lngfile
  461. FROM {db_prefix}members' . (empty($_REQUEST['u']) ? '
  462. WHERE member_name = {string:email_address} OR email_address = {string:email_address}' : '
  463. WHERE id_member = {int:id_member}') . '
  464. LIMIT 1',
  465. array(
  466. 'id_member' => isset($_REQUEST['u']) ? (int) $_REQUEST['u'] : 0,
  467. 'email_address' => isset($_POST['user']) ? $_POST['user'] : '',
  468. )
  469. );
  470. // Does this user exist at all?
  471. if ($smcFunc['db_num_rows']($request) == 0)
  472. {
  473. $context['sub_template'] = 'retry_activate';
  474. $context['page_title'] = $txt['invalid_userid'];
  475. $context['member_id'] = 0;
  476. return;
  477. }
  478. $row = $smcFunc['db_fetch_assoc']($request);
  479. $smcFunc['db_free_result']($request);
  480. // Change their email address? (they probably tried a fake one first :P.)
  481. if (isset($_POST['new_email'], $_REQUEST['passwd']) && sha1(strtolower($row['member_name']) . $_REQUEST['passwd']) == $row['passwd'])
  482. {
  483. if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == 3)
  484. fatal_lang_error('no_access', false);
  485. // @todo Separate the sprintf?
  486. if (preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $_POST['new_email']) == 0)
  487. fatal_error(sprintf($txt['valid_email_needed'], htmlspecialchars($_POST['new_email'])), false);
  488. // Make sure their email isn't banned.
  489. isBannedEmail($_POST['new_email'], 'cannot_register', $txt['ban_register_prohibited']);
  490. // Ummm... don't even dare try to take someone else's email!!
  491. $request = $smcFunc['db_query']('', '
  492. SELECT id_member
  493. FROM {db_prefix}members
  494. WHERE email_address = {string:email_address}
  495. LIMIT 1',
  496. array(
  497. 'email_address' => $_POST['new_email'],
  498. )
  499. );
  500. // @todo Separate the sprintf?
  501. if ($smcFunc['db_num_rows']($request) != 0)
  502. fatal_lang_error('email_in_use', false, array(htmlspecialchars($_POST['new_email'])));
  503. $smcFunc['db_free_result']($request);
  504. updateMemberData($row['id_member'], array('email_address' => $_POST['new_email']));
  505. $row['email_address'] = $_POST['new_email'];
  506. $email_change = true;
  507. }
  508. // Resend the password, but only if the account wasn't activated yet.
  509. if (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'resend' && ($row['is_activated'] == 0 || $row['is_activated'] == 2) && (!isset($_REQUEST['code']) || $_REQUEST['code'] == ''))
  510. {
  511. require_once($sourcedir . '/Subs-Post.php');
  512. $replacements = array(
  513. 'REALNAME' => $row['real_name'],
  514. 'USERNAME' => $row['member_name'],
  515. 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $row['id_member'] . ';code=' . $row['validation_code'],
  516. 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $row['id_member'],
  517. 'ACTIVATIONCODE' => $row['validation_code'],
  518. 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',
  519. );
  520. $emaildata = loadEmailTemplate('resend_activate_message', $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
  521. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  522. $context['page_title'] = $txt['invalid_activation_resend'];
  523. // This will ensure we don't actually get an error message if it works!
  524. $context['error_title'] = '';
  525. fatal_lang_error(!empty($email_change) ? 'change_email_success' : 'resend_email_success', false);
  526. }
  527. // Quit if this code is not right.
  528. if (empty($_REQUEST['code']) || $row['validation_code'] != $_REQUEST['code'])
  529. {
  530. if (!empty($row['is_activated']))
  531. fatal_lang_error('already_activated', false);
  532. elseif ($row['validation_code'] == '')
  533. {
  534. loadLanguage('Profile');
  535. fatal_error($txt['registration_not_approved'] . ' <a href="' . $scripturl . '?action=activate;user=' . $row['member_name'] . '">' . $txt['here'] . '</a>.', false);
  536. }
  537. $context['sub_template'] = 'retry_activate';
  538. $context['page_title'] = $txt['invalid_activation_code'];
  539. $context['member_id'] = $row['id_member'];
  540. return;
  541. }
  542. // Let the integration know that they've been activated!
  543. call_integration_hook('integrate_activate', array($row['member_name']));
  544. // Validation complete - update the database!
  545. updateMemberData($row['id_member'], array('is_activated' => 1, 'validation_code' => ''));
  546. // Also do a proper member stat re-evaluation.
  547. updateStats('member', false);
  548. if (!isset($_POST['new_email']))
  549. {
  550. require_once($sourcedir . '/Subs-Post.php');
  551. adminNotify('activation', $row['id_member'], $row['member_name']);
  552. }
  553. $context += array(
  554. 'page_title' => $txt['registration_successful'],
  555. 'sub_template' => 'login',
  556. 'default_username' => $row['member_name'],
  557. 'default_password' => '',
  558. 'never_expire' => false,
  559. 'description' => $txt['activate_success']
  560. );
  561. }
  562. /**
  563. * This function will display the contact information for the forum, as well a form to fill in.
  564. */
  565. function CoppaForm()
  566. {
  567. global $context, $modSettings, $txt, $smcFunc;
  568. loadLanguage('Login');
  569. loadTemplate('Register');
  570. // No User ID??
  571. if (!isset($_GET['member']))
  572. fatal_lang_error('no_access', false);
  573. // Get the user details...
  574. $request = $smcFunc['db_query']('', '
  575. SELECT member_name
  576. FROM {db_prefix}members
  577. WHERE id_member = {int:id_member}
  578. AND is_activated = {int:is_coppa}',
  579. array(
  580. 'id_member' => (int) $_GET['member'],
  581. 'is_coppa' => 5,
  582. )
  583. );
  584. if ($smcFunc['db_num_rows']($request) == 0)
  585. fatal_lang_error('no_access', false);
  586. list ($username) = $smcFunc['db_fetch_row']($request);
  587. $smcFunc['db_free_result']($request);
  588. if (isset($_GET['form']))
  589. {
  590. // Some simple contact stuff for the forum.
  591. $context['forum_contacts'] = (!empty($modSettings['coppaPost']) ? $modSettings['coppaPost'] . '<br /><br />' : '') . (!empty($modSettings['coppaFax']) ? $modSettings['coppaFax'] . '<br />' : '');
  592. $context['forum_contacts'] = !empty($context['forum_contacts']) ? $context['forum_name_html_safe'] . '<br />' . $context['forum_contacts'] : '';
  593. // Showing template?
  594. if (!isset($_GET['dl']))
  595. {
  596. // Shortcut for producing underlines.
  597. $context['ul'] = '<u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</u>';
  598. $context['template_layers'] = array();
  599. $context['sub_template'] = 'coppa_form';
  600. $context['page_title'] = $txt['coppa_form_title'];
  601. $context['coppa_body'] = str_replace(array('{PARENT_NAME}', '{CHILD_NAME}', '{USER_NAME}'), array($context['ul'], $context['ul'], $username), $txt['coppa_form_body']);
  602. }
  603. // Downloading.
  604. else
  605. {
  606. // The data.
  607. $ul = ' ';
  608. $crlf = "\r\n";
  609. $data = $context['forum_contacts'] . $crlf . $txt['coppa_form_address'] . ':' . $crlf . $txt['coppa_form_date'] . ':' . $crlf . $crlf . $crlf . $txt['coppa_form_body'];
  610. $data = str_replace(array('{PARENT_NAME}', '{CHILD_NAME}', '{USER_NAME}', '<br>', '<br />'), array($ul, $ul, $username, $crlf, $crlf), $data);
  611. // Send the headers.
  612. header('Connection: close');
  613. header('Content-Disposition: attachment; filename="approval.txt"');
  614. header('Content-Type: ' . ($context['browser']['is_ie'] || $context['browser']['is_opera'] ? 'application/octetstream' : 'application/octet-stream'));
  615. header('Content-Length: ' . count($data));
  616. echo $data;
  617. obExit(false);
  618. }
  619. }
  620. else
  621. {
  622. $context += array(
  623. 'page_title' => $txt['coppa_title'],
  624. 'sub_template' => 'coppa',
  625. );
  626. $context['coppa'] = array(
  627. 'body' => str_replace('{MINIMUM_AGE}', $modSettings['coppaAge'], $txt['coppa_after_registration']),
  628. 'many_options' => !empty($modSettings['coppaPost']) && !empty($modSettings['coppaFax']),
  629. 'post' => empty($modSettings['coppaPost']) ? '' : $modSettings['coppaPost'],
  630. 'fax' => empty($modSettings['coppaFax']) ? '' : $modSettings['coppaFax'],
  631. 'phone' => empty($modSettings['coppaPhone']) ? '' : str_replace('{PHONE_NUMBER}', $modSettings['coppaPhone'], $txt['coppa_send_by_phone']),
  632. 'id' => $_GET['member'],
  633. );
  634. }
  635. }
  636. /**
  637. * Show the verification code or let it hear.
  638. */
  639. function VerificationCode()
  640. {
  641. global $sourcedir, $modSettings, $context, $scripturl;
  642. $verification_id = isset($_GET['vid']) ? $_GET['vid'] : '';
  643. $code = $verification_id && isset($_SESSION[$verification_id . '_vv']) ? $_SESSION[$verification_id . '_vv']['code'] : (isset($_SESSION['visual_verification_code']) ? $_SESSION['visual_verification_code'] : '');
  644. // Somehow no code was generated or the session was lost.
  645. if (empty($code))
  646. {
  647. header('Content-Type: image/gif');
  648. die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
  649. }
  650. // Show a window that will play the verification code.
  651. elseif (isset($_REQUEST['sound']))
  652. {
  653. loadLanguage('Login');
  654. loadTemplate('Register');
  655. $context['verification_sound_href'] = $scripturl . '?action=verificationcode;rand=' . md5(mt_rand()) . ($verification_id ? ';vid=' . $verification_id : '') . ';format=.wav';
  656. $context['sub_template'] = 'verification_sound';
  657. $context['template_layers'] = array();
  658. obExit();
  659. }
  660. // If we have GD, try the nice code.
  661. elseif (empty($_REQUEST['format']))
  662. {
  663. require_once($sourcedir . '/Subs-Graphics.php');
  664. if (in_array('gd', get_loaded_extensions()) && !showCodeImage($code))
  665. header('HTTP/1.1 400 Bad Request');
  666. // Otherwise just show a pre-defined letter.
  667. elseif (isset($_REQUEST['letter']))
  668. {
  669. $_REQUEST['letter'] = (int) $_REQUEST['letter'];
  670. if ($_REQUEST['letter'] > 0 && $_REQUEST['letter'] <= strlen($code) && !showLetterImage(strtolower($code{$_REQUEST['letter'] - 1})))
  671. {
  672. header('Content-Type: image/gif');
  673. die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
  674. }
  675. }
  676. // You must be up to no good.
  677. else
  678. {
  679. header('Content-Type: image/gif');
  680. die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
  681. }
  682. }
  683. elseif ($_REQUEST['format'] === '.wav')
  684. {
  685. require_once($sourcedir . '/Subs-Sound.php');
  686. if (!createWaveFile($code))
  687. header('HTTP/1.1 400 Bad Request');
  688. }
  689. // We all die one day...
  690. die();
  691. }
  692. /**
  693. * See if a username already exists.
  694. */
  695. function RegisterCheckUsername()
  696. {
  697. global $sourcedir, $smcFunc, $context, $txt;
  698. // This is XML!
  699. loadTemplate('Xml');
  700. $context['sub_template'] = 'check_username';
  701. $context['checked_username'] = isset($_GET['username']) ? $_GET['username'] : '';
  702. $context['valid_username'] = true;
  703. // Clean it up like mother would.
  704. $context['checked_username'] = preg_replace('~[\t\n\r\x0B\0' . ($context['utf8'] ? ($context['server']['complex_preg_chars'] ? '\x{A0}' : "\xC2\xA0") : '\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $context['checked_username']);
  705. if ($smcFunc['strlen']($context['checked_username']) > 25)
  706. $context['checked_username'] = $smcFunc['htmltrim']($smcFunc['substr']($context['checked_username'], 0, 25));
  707. // Only these characters are permitted.
  708. if (preg_match('~[<>&"\'=\\\]~', preg_replace('~&#(?:\\d{1,7}|x[0-9a-fA-F]{1,6});~', '', $context['checked_username'])) != 0 || $context['checked_username'] == '_' || $context['checked_username'] == '|' || strpos($context['checked_username'], '[code') !== false || strpos($context['checked_username'], '[/code') !== false)
  709. $context['valid_username'] = false;
  710. if (stristr($context['checked_username'], $txt['guest_title']) !== false)
  711. $context['valid_username'] = false;
  712. if (trim($context['checked_username']) == '')
  713. $context['valid_username'] = false;
  714. else
  715. {
  716. require_once($sourcedir . '/Subs-Members.php');
  717. $context['valid_username'] &= isReservedName($context['checked_username'], 0, false, false) ? 0 : 1;
  718. }
  719. }
  720. ?>