Register.php 33 KB

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