Register.php 31 KB

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