Subs-Auth.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. <?php
  2. /**
  3. * This file has functions in it to do with authentication, user handling, and the like.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2013 Simple Machines and individual contributors
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('No direct access...');
  16. /**
  17. * Sets the SMF-style login cookie and session based on the id_member and password passed.
  18. * - password should be already encrypted with the cookie salt.
  19. * - logs the user out if id_member is zero.
  20. * - sets the cookie and session to last the number of seconds specified by cookie_length.
  21. * - when logging out, if the globalCookies setting is enabled, attempts to clear the subdomain's cookie too.
  22. *
  23. * @param int $cookie_length
  24. * @param int $id The id of the member
  25. * @param string $password = ''
  26. */
  27. function setLoginCookie($cookie_length, $id, $password = '')
  28. {
  29. global $cookiename, $boardurl, $modSettings, $sourcedir;
  30. // If changing state force them to re-address some permission caching.
  31. $_SESSION['mc']['time'] = 0;
  32. // The cookie may already exist, and have been set with different options.
  33. $cookie_state = (empty($modSettings['localCookies']) ? 0 : 1) | (empty($modSettings['globalCookies']) ? 0 : 2);
  34. if (isset($_COOKIE[$cookiename]) && preg_match('~^a:[34]:\{i:0;(i:\d{1,6}|s:[1-8]:"\d{1,8}");i:1;s:(0|40):"([a-fA-F0-9]{40})?";i:2;[id]:\d{1,14};(i:3;i:\d;)?\}$~', $_COOKIE[$cookiename]) === 1)
  35. {
  36. $array = @unserialize($_COOKIE[$cookiename]);
  37. // Out with the old, in with the new!
  38. if (isset($array[3]) && $array[3] != $cookie_state)
  39. {
  40. $cookie_url = url_parts($array[3] & 1 > 0, $array[3] & 2 > 0);
  41. smf_setcookie($cookiename, serialize(array(0, '', 0)), time() - 3600, $cookie_url[1], $cookie_url[0]);
  42. }
  43. }
  44. // Get the data and path to set it on.
  45. $data = serialize(empty($id) ? array(0, '', 0) : array($id, $password, time() + $cookie_length, $cookie_state));
  46. $cookie_url = url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies']));
  47. // Set the cookie, $_COOKIE, and session variable.
  48. smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], $cookie_url[0]);
  49. // If subdomain-independent cookies are on, unset the subdomain-dependent cookie too.
  50. if (empty($id) && !empty($modSettings['globalCookies']))
  51. smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], '');
  52. // Any alias URLs? This is mainly for use with frames, etc.
  53. if (!empty($modSettings['forum_alias_urls']))
  54. {
  55. $aliases = explode(',', $modSettings['forum_alias_urls']);
  56. $temp = $boardurl;
  57. foreach ($aliases as $alias)
  58. {
  59. // Fake the $boardurl so we can set a different cookie.
  60. $alias = strtr(trim($alias), array('http://' => '', 'https://' => ''));
  61. $boardurl = 'http://' . $alias;
  62. $cookie_url = url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies']));
  63. if ($cookie_url[0] == '')
  64. $cookie_url[0] = strtok($alias, '/');
  65. smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], $cookie_url[0]);
  66. }
  67. $boardurl = $temp;
  68. }
  69. $_COOKIE[$cookiename] = $data;
  70. // Make sure the user logs in with a new session ID.
  71. if (!isset($_SESSION['login_' . $cookiename]) || $_SESSION['login_' . $cookiename] !== $data)
  72. {
  73. // We need to meddle with the session.
  74. require_once($sourcedir . '/Session.php');
  75. // Backup and remove the old session.
  76. $oldSessionData = $_SESSION;
  77. $_SESSION = array();
  78. session_destroy();
  79. // Recreate and restore the new session.
  80. loadSession();
  81. // @todo should we use session_regenerate_id(true); now that we are 5.1+
  82. session_regenerate_id();
  83. $_SESSION = $oldSessionData;
  84. $_SESSION['login_' . $cookiename] = $data;
  85. }
  86. }
  87. /**
  88. * Get the domain and path for the cookie
  89. * - normally, local and global should be the localCookies and globalCookies settings, respectively.
  90. * - uses boardurl to determine these two things.
  91. *
  92. * @param bool $local
  93. * @param bool $global
  94. * @return array an array to set the cookie on with domain and path in it, in that order
  95. */
  96. function url_parts($local, $global)
  97. {
  98. global $boardurl, $modSettings;
  99. // Parse the URL with PHP to make life easier.
  100. $parsed_url = parse_url($boardurl);
  101. // Is local cookies off?
  102. if (empty($parsed_url['path']) || !$local)
  103. $parsed_url['path'] = '';
  104. if (!empty($modSettings['globalCookiesDomain']) && strpos($boardurl, $modSettings['globalCookiesDomain']) !== false)
  105. $parsed_url['host'] = $modSettings['globalCookiesDomain'];
  106. // Globalize cookies across domains (filter out IP-addresses)?
  107. elseif ($global && preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1)
  108. $parsed_url['host'] = '.' . $parts[1];
  109. // We shouldn't use a host at all if both options are off.
  110. elseif (!$local && !$global)
  111. $parsed_url['host'] = '';
  112. // The host also shouldn't be set if there aren't any dots in it.
  113. elseif (!isset($parsed_url['host']) || strpos($parsed_url['host'], '.') === false)
  114. $parsed_url['host'] = '';
  115. return array($parsed_url['host'], $parsed_url['path'] . '/');
  116. }
  117. /**
  118. * Throws guests out to the login screen when guest access is off.
  119. * - sets $_SESSION['login_url'] to $_SERVER['REQUEST_URL'].
  120. * - uses the 'kick_guest' sub template found in Login.template.php.
  121. */
  122. function KickGuest()
  123. {
  124. global $txt, $context;
  125. loadLanguage('Login');
  126. loadTemplate('Login');
  127. createToken('login');
  128. // Never redirect to an attachment
  129. if (strpos($_SERVER['REQUEST_URL'], 'dlattach') === false)
  130. $_SESSION['login_url'] = $_SERVER['REQUEST_URL'];
  131. $context['sub_template'] = 'kick_guest';
  132. $context['page_title'] = $txt['login'];
  133. }
  134. /**
  135. * Display a message about the forum being in maintenance mode.
  136. * - display a login screen with sub template 'maintenance'.
  137. * - sends a 503 header, so search engines don't bother indexing while we're in maintenance mode.
  138. */
  139. function InMaintenance()
  140. {
  141. global $txt, $mtitle, $mmessage, $context;
  142. loadLanguage('Login');
  143. loadTemplate('Login');
  144. createToken('login');
  145. // Send a 503 header, so search engines don't bother indexing while we're in maintenance mode.
  146. header('HTTP/1.1 503 Service Temporarily Unavailable');
  147. // Basic template stuff..
  148. $context['sub_template'] = 'maintenance';
  149. $context['title'] = &$mtitle;
  150. $context['description'] = &$mmessage;
  151. $context['page_title'] = $txt['maintain_mode'];
  152. }
  153. /**
  154. * Question the verity of the admin by asking for his or her password.
  155. * - loads Login.template.php and uses the admin_login sub template.
  156. * - sends data to template so the admin is sent on to the page they
  157. * wanted if their password is correct, otherwise they can try again.
  158. *
  159. * @param string $type = 'admin'
  160. */
  161. function adminLogin($type = 'admin')
  162. {
  163. global $context, $scripturl, $txt, $user_info, $user_settings;
  164. loadLanguage('Admin');
  165. loadTemplate('Login');
  166. // Validate what type of session check this is.
  167. $types = array();
  168. call_integration_hook('integrate_validateSession', array(&$types));
  169. $type = in_array($type, $types) || $type == 'moderate' ? $type : 'admin';
  170. // They used a wrong password, log it and unset that.
  171. if (isset($_POST[$type . '_hash_pass']) || isset($_POST[$type . '_pass']))
  172. {
  173. $txt['security_wrong'] = sprintf($txt['security_wrong'], isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $txt['unknown'], $_SERVER['HTTP_USER_AGENT'], $user_info['ip']);
  174. log_error($txt['security_wrong'], 'critical');
  175. if (isset($_POST[$type . '_hash_pass']))
  176. unset($_POST[$type . '_hash_pass']);
  177. if (isset($_POST[$type . '_pass']))
  178. unset($_POST[$type . '_pass']);
  179. $context['incorrect_password'] = true;
  180. }
  181. createToken('admin-login');
  182. // Figure out the get data and post data.
  183. $context['get_data'] = '?' . construct_query_string($_GET);
  184. $context['post_data'] = '';
  185. // Now go through $_POST. Make sure the session hash is sent.
  186. $_POST[$context['session_var']] = $context['session_id'];
  187. foreach ($_POST as $k => $v)
  188. $context['post_data'] .= adminLogin_outputPostVars($k, $v);
  189. // Now we'll use the admin_login sub template of the Login template.
  190. $context['sub_template'] = 'admin_login';
  191. // And title the page something like "Login".
  192. if (!isset($context['page_title']))
  193. $context['page_title'] = $txt['login'];
  194. // The type of action.
  195. $context['sessionCheckType'] = $type;
  196. obExit();
  197. // We MUST exit at this point, because otherwise we CANNOT KNOW that the user is privileged.
  198. trigger_error('Hacking attempt...', E_USER_ERROR);
  199. }
  200. /**
  201. * Used by the adminLogin() function.
  202. * if 'value' is an array, the function is called recursively.
  203. *
  204. * @param string $k key
  205. * @param string $v value
  206. * @return string 'hidden' HTML form fields, containing key-value-pairs
  207. */
  208. function adminLogin_outputPostVars($k, $v)
  209. {
  210. global $smcFunc;
  211. if (!is_array($v))
  212. return '
  213. <input type="hidden" name="' . htmlspecialchars($k) . '" value="' . strtr($v, array('"' => '&quot;', '<' => '&lt;', '>' => '&gt;')) . '" />';
  214. else
  215. {
  216. $ret = '';
  217. foreach ($v as $k2 => $v2)
  218. $ret .= adminLogin_outputPostVars($k . '[' . $k2 . ']', $v2);
  219. return $ret;
  220. }
  221. }
  222. /**
  223. * Properly urlencodes a string to be used in a query
  224. *
  225. * @global type $scripturl
  226. * @param type $get
  227. * @return our query string
  228. */
  229. function construct_query_string($get)
  230. {
  231. global $scripturl;
  232. $query_string = '';
  233. // Awww, darn. The $scripturl contains GET stuff!
  234. $q = strpos($scripturl, '?');
  235. if ($q !== false)
  236. {
  237. parse_str(preg_replace('/&(\w+)(?=&|$)/', '&$1=', strtr(substr($scripturl, $q + 1), ';', '&')), $temp);
  238. foreach ($get as $k => $v)
  239. {
  240. // Only if it's not already in the $scripturl!
  241. if (!isset($temp[$k]))
  242. $query_string .= urlencode($k) . '=' . urlencode($v) . ';';
  243. // If it changed, put it out there, but with an ampersand.
  244. elseif ($temp[$k] != $get[$k])
  245. $query_string .= urlencode($k) . '=' . urlencode($v) . '&amp;';
  246. }
  247. }
  248. else
  249. {
  250. // Add up all the data from $_GET into get_data.
  251. foreach ($get as $k => $v)
  252. $query_string .= urlencode($k) . '=' . urlencode($v) . ';';
  253. }
  254. $query_string = substr($query_string, 0, -1);
  255. return $query_string;
  256. }
  257. /**
  258. * Finds members by email address, username, or real name.
  259. * - searches for members whose username, display name, or e-mail address match the given pattern of array names.
  260. * - searches only buddies if buddies_only is set.
  261. *
  262. * @param array $names
  263. * @param bool $use_wildcards = false, accepts wildcards ? and * in the patern if true
  264. * @param bool $buddies_only = false,
  265. * @param int $max = 500 retrieves a maximum of max members, if passed
  266. * @return array containing information about the matching members
  267. */
  268. function findMembers($names, $use_wildcards = false, $buddies_only = false, $max = 500)
  269. {
  270. global $scripturl, $user_info, $modSettings, $smcFunc;
  271. // If it's not already an array, make it one.
  272. if (!is_array($names))
  273. $names = explode(',', $names);
  274. $maybe_email = false;
  275. foreach ($names as $i => $name)
  276. {
  277. // Trim, and fix wildcards for each name.
  278. $names[$i] = trim($smcFunc['strtolower']($name));
  279. $maybe_email |= strpos($name, '@') !== false;
  280. // Make it so standard wildcards will work. (* and ?)
  281. if ($use_wildcards)
  282. $names[$i] = strtr($names[$i], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '\'' => '&#039;'));
  283. else
  284. $names[$i] = strtr($names[$i], array('\'' => '&#039;'));
  285. }
  286. // What are we using to compare?
  287. $comparison = $use_wildcards ? 'LIKE' : '=';
  288. // Nothing found yet.
  289. $results = array();
  290. // This ensures you can't search someones email address if you can't see it.
  291. $email_condition = allowedTo('moderate_forum') ? '' : 'hide_email = 0 AND ';
  292. if ($use_wildcards || $maybe_email)
  293. $email_condition = '
  294. OR (' . $email_condition . 'email_address ' . $comparison . ' \'' . implode( '\') OR (' . $email_condition . ' email_address ' . $comparison . ' \'', $names) . '\')';
  295. else
  296. $email_condition = '';
  297. // Get the case of the columns right - but only if we need to as things like MySQL will go slow needlessly otherwise.
  298. $member_name = $smcFunc['db_case_sensitive'] ? 'LOWER(member_name)' : 'member_name';
  299. $real_name = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name';
  300. // Search by username, display name, and email address.
  301. $request = $smcFunc['db_query']('', '
  302. SELECT id_member, member_name, real_name, email_address, hide_email
  303. FROM {db_prefix}members
  304. WHERE ({raw:member_name_search}
  305. OR {raw:real_name_search} {raw:email_condition})
  306. ' . ($buddies_only ? 'AND id_member IN ({array_int:buddy_list})' : '') . '
  307. AND is_activated IN (1, 11)
  308. LIMIT {int:limit}',
  309. array(
  310. 'buddy_list' => $user_info['buddies'],
  311. 'member_name_search' => $member_name . ' ' . $comparison . ' \'' . implode( '\' OR ' . $member_name . ' ' . $comparison . ' \'', $names) . '\'',
  312. 'real_name_search' => $real_name . ' ' . $comparison . ' \'' . implode( '\' OR ' . $real_name . ' ' . $comparison . ' \'', $names) . '\'',
  313. 'email_condition' => $email_condition,
  314. 'limit' => $max,
  315. )
  316. );
  317. while ($row = $smcFunc['db_fetch_assoc']($request))
  318. {
  319. $results[$row['id_member']] = array(
  320. 'id' => $row['id_member'],
  321. 'name' => $row['real_name'],
  322. 'username' => $row['member_name'],
  323. 'email' => in_array(showEmailAddress(!empty($row['hide_email']), $row['id_member']), array('yes', 'yes_permission_override')) ? $row['email_address'] : '',
  324. 'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
  325. 'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'
  326. );
  327. }
  328. $smcFunc['db_free_result']($request);
  329. // Return all the results.
  330. return $results;
  331. }
  332. /**
  333. * Called by index.php?action=findmember.
  334. * - is used as a popup for searching members.
  335. * - uses sub template find_members of the Help template.
  336. * - also used to add members for PM's sent using wap2/imode protocol.
  337. */
  338. function JSMembers()
  339. {
  340. global $context, $scripturl, $user_info, $smcFunc;
  341. checkSession('get');
  342. if (WIRELESS)
  343. $context['sub_template'] = WIRELESS_PROTOCOL . '_pm';
  344. else
  345. {
  346. // Why is this in the Help template, you ask? Well, erm... it helps you. Does that work?
  347. loadTemplate('Help');
  348. $context['template_layers'] = array();
  349. $context['sub_template'] = 'find_members';
  350. }
  351. if (isset($_REQUEST['search']))
  352. $context['last_search'] = $smcFunc['htmlspecialchars']($_REQUEST['search'], ENT_QUOTES);
  353. else
  354. $_REQUEST['start'] = 0;
  355. // Allow the user to pass the input to be added to to the box.
  356. $context['input_box_name'] = isset($_REQUEST['input']) && preg_match('~^[\w-]+$~', $_REQUEST['input']) === 1 ? $_REQUEST['input'] : 'to';
  357. // Take the delimiter over GET in case it's \n or something.
  358. $context['delimiter'] = isset($_REQUEST['delim']) ? ($_REQUEST['delim'] == 'LB' ? "\n" : $_REQUEST['delim']) : ', ';
  359. $context['quote_results'] = !empty($_REQUEST['quote']);
  360. // List all the results.
  361. $context['results'] = array();
  362. // Some buddy related settings ;)
  363. $context['show_buddies'] = !empty($user_info['buddies']);
  364. $context['buddy_search'] = isset($_REQUEST['buddies']);
  365. // If the user has done a search, well - search.
  366. if (isset($_REQUEST['search']))
  367. {
  368. $_REQUEST['search'] = $smcFunc['htmlspecialchars']($_REQUEST['search'], ENT_QUOTES);
  369. $context['results'] = findMembers(array($_REQUEST['search']), true, $context['buddy_search']);
  370. $total_results = count($context['results']);
  371. $context['page_index'] = constructPageIndex($scripturl . '?action=findmember;search=' . $context['last_search'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';input=' . $context['input_box_name'] . ($context['quote_results'] ? ';quote=1' : '') . ($context['buddy_search'] ? ';buddies' : ''), $_REQUEST['start'], $total_results, 7);
  372. // Determine the navigation context (especially useful for the wireless template).
  373. $base_url = $scripturl . '?action=findmember;search=' . urlencode($context['last_search']) . (empty($_REQUEST['u']) ? '' : ';u=' . $_REQUEST['u']) . ';' . $context['session_var'] . '=' . $context['session_id'];
  374. $context['links'] = array(
  375. 'first' => $_REQUEST['start'] >= 7 ? $base_url . ';start=0' : '',
  376. 'prev' => $_REQUEST['start'] >= 7 ? $base_url . ';start=' . ($_REQUEST['start'] - 7) : '',
  377. 'next' => $_REQUEST['start'] + 7 < $total_results ? $base_url . ';start=' . ($_REQUEST['start'] + 7) : '',
  378. 'last' => $_REQUEST['start'] + 7 < $total_results ? $base_url . ';start=' . (floor(($total_results - 1) / 7) * 7) : '',
  379. 'up' => $scripturl . '?action=pm;sa=send' . (empty($_REQUEST['u']) ? '' : ';u=' . $_REQUEST['u']),
  380. );
  381. $context['page_info'] = array(
  382. 'current_page' => $_REQUEST['start'] / 7 + 1,
  383. 'num_pages' => floor(($total_results - 1) / 7) + 1
  384. );
  385. $context['results'] = array_slice($context['results'], $_REQUEST['start'], 7);
  386. }
  387. else
  388. $context['links']['up'] = $scripturl . '?action=pm;sa=send' . (empty($_REQUEST['u']) ? '' : ';u=' . $_REQUEST['u']);
  389. }
  390. /**
  391. * Outputs each member name on its own line.
  392. * - used by javascript to find members matching the request.
  393. */
  394. function RequestMembers()
  395. {
  396. global $user_info, $txt, $smcFunc;
  397. checkSession('get');
  398. $_REQUEST['search'] = $smcFunc['htmlspecialchars']($_REQUEST['search']) . '*';
  399. $_REQUEST['search'] = trim($smcFunc['strtolower']($_REQUEST['search']));
  400. $_REQUEST['search'] = strtr($_REQUEST['search'], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '&#038;' => '&amp;'));
  401. if (function_exists('iconv'))
  402. header('Content-Type: text/plain; charset=UTF-8');
  403. $request = $smcFunc['db_query']('', '
  404. SELECT real_name
  405. FROM {db_prefix}members
  406. WHERE real_name LIKE {string:search}' . (isset($_REQUEST['buddies']) ? '
  407. AND id_member IN ({array_int:buddy_list})' : '') . '
  408. AND is_activated IN (1, 11)
  409. LIMIT ' . ($smcFunc['strlen']($_REQUEST['search']) <= 2 ? '100' : '800'),
  410. array(
  411. 'buddy_list' => $user_info['buddies'],
  412. 'search' => $_REQUEST['search'],
  413. )
  414. );
  415. while ($row = $smcFunc['db_fetch_assoc']($request))
  416. {
  417. if (function_exists('iconv'))
  418. {
  419. $utf8 = iconv($txt['lang_character_set'], 'UTF-8', $row['real_name']);
  420. if ($utf8)
  421. $row['real_name'] = $utf8;
  422. }
  423. $row['real_name'] = strtr($row['real_name'], array('&amp;' => '&#038;', '&lt;' => '&#060;', '&gt;' => '&#062;', '&quot;' => '&#034;'));
  424. if (preg_match('~&#\d+;~', $row['real_name']) != 0)
  425. $row['real_name'] = preg_replace_callback('~&#(\d+);~', 'fixchar__callback', $row['real_name']);
  426. echo $row['real_name'], "\n";
  427. }
  428. $smcFunc['db_free_result']($request);
  429. obExit(false);
  430. }
  431. /**
  432. * Generates a random password for a user and emails it to them.
  433. * - called by Profile.php when changing someone's username.
  434. * - checks the validity of the new username.
  435. * - generates and sets a new password for the given user.
  436. * - mails the new password to the email address of the user.
  437. * - if username is not set, only a new password is generated and sent.
  438. *
  439. * @param int $memID
  440. * @param string $username = null
  441. */
  442. function resetPassword($memID, $username = null)
  443. {
  444. global $scripturl, $context, $txt, $sourcedir, $modSettings, $smcFunc, $language;
  445. // Language... and a required file.
  446. loadLanguage('Login');
  447. require_once($sourcedir . '/Subs-Post.php');
  448. // Get some important details.
  449. $request = $smcFunc['db_query']('', '
  450. SELECT member_name, email_address, lngfile
  451. FROM {db_prefix}members
  452. WHERE id_member = {int:id_member}',
  453. array(
  454. 'id_member' => $memID,
  455. )
  456. );
  457. list ($user, $email, $lngfile) = $smcFunc['db_fetch_row']($request);
  458. $smcFunc['db_free_result']($request);
  459. if ($username !== null)
  460. {
  461. $old_user = $user;
  462. $user = trim($username);
  463. }
  464. // Generate a random password.
  465. $newPassword = substr(preg_replace('/\W/', '', md5(mt_rand())), 0, 10);
  466. $newPassword_sha1 = sha1(strtolower($user) . $newPassword);
  467. // Do some checks on the username if needed.
  468. if ($username !== null)
  469. {
  470. validateUsername($memID, $user);
  471. // Update the database...
  472. updateMemberData($memID, array('member_name' => $user, 'passwd' => $newPassword_sha1));
  473. }
  474. else
  475. updateMemberData($memID, array('passwd' => $newPassword_sha1));
  476. call_integration_hook('integrate_reset_pass', array($old_user, $user, $newPassword));
  477. $replacements = array(
  478. 'USERNAME' => $user,
  479. 'PASSWORD' => $newPassword,
  480. );
  481. $emaildata = loadEmailTemplate('change_password', $replacements, empty($lngfile) || empty($modSettings['userLanguage']) ? $language : $lngfile);
  482. // Send them the email informing them of the change - then we're done!
  483. sendmail($email, $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  484. }
  485. /**
  486. * Checks a username obeys a load of rules
  487. *
  488. * @param int $memID
  489. * @param string $username
  490. * @param boolean $return_error
  491. * @param boolean $check_reserved_name
  492. * @return string Returns null if fine
  493. */
  494. function validateUsername($memID, $username, $return_error = false, $check_reserved_name = true)
  495. {
  496. global $sourcedir, $txt, $smcFunc, $user_info;
  497. $errors = array();
  498. // Don't use too long a name.
  499. if ($smcFunc['strlen']($username) > 25)
  500. $errors[] = array('lang', 'error_long_name');
  501. // No name?! How can you register with no name?
  502. if ($username == '')
  503. $errors[] = array('lang', 'need_username');
  504. // Only these characters are permitted.
  505. if (in_array($username, array('_', '|')) || preg_match('~[<>&"\'=\\\\]~', preg_replace('~&#(?:\\d{1,7}|x[0-9a-fA-F]{1,6});~', '', $username)) != 0 || strpos($username, '[code') !== false || strpos($username, '[/code') !== false)
  506. $errors[] = array('lang', 'error_invalid_characters_username');
  507. if (stristr($username, $txt['guest_title']) !== false)
  508. $errors[] = array('lang', 'username_reserved', 'general', array($txt['guest_title']));
  509. if ($check_reserved_name)
  510. {
  511. require_once($sourcedir . '/Subs-Members.php');
  512. if (isReservedName($username, $memID, false))
  513. $errors[] = array('done', '(' . htmlspecialchars($username) . ') ' . $txt['name_in_use']);
  514. }
  515. if ($return_error)
  516. return $errors;
  517. elseif (empty($errors))
  518. return null;
  519. loadLanguage('Errors');
  520. $error = $errors[0];
  521. $message = $error[0] == 'lang' ? (empty($error[3]) ? $txt[$error[1]] : vsprintf($txt[$error[1]], $error[3])) : $error[1];
  522. fatal_error($message, empty($error[2]) || $user_info['is_admin'] ? false : $error[2]);
  523. }
  524. /**
  525. * Checks whether a password meets the current forum rules
  526. * - called when registering/choosing a password.
  527. * - checks the password obeys the current forum settings for password strength.
  528. * - if password checking is enabled, will check that none of the words in restrict_in appear in the password.
  529. * - returns an error identifier if the password is invalid, or null.
  530. *
  531. * @param string $password
  532. * @param string $username
  533. * @param array $restrict_in = array()
  534. * @return string an error identifier if the password is invalid
  535. */
  536. function validatePassword($password, $username, $restrict_in = array())
  537. {
  538. global $modSettings, $smcFunc;
  539. // Perform basic requirements first.
  540. if ($smcFunc['strlen']($password) < (empty($modSettings['password_strength']) ? 4 : 8))
  541. return 'short';
  542. // Is this enough?
  543. if (empty($modSettings['password_strength']))
  544. return null;
  545. // Otherwise, perform the medium strength test - checking if password appears in the restricted string.
  546. if (preg_match('~\b' . preg_quote($password, '~') . '\b~', implode(' ', $restrict_in)) != 0)
  547. return 'restricted_words';
  548. elseif ($smcFunc['strpos']($password, $username) !== false)
  549. return 'restricted_words';
  550. // If just medium, we're done.
  551. if ($modSettings['password_strength'] == 1)
  552. return null;
  553. // Otherwise, hard test next, check for numbers and letters, uppercase too.
  554. $good = preg_match('~(\D\d|\d\D)~', $password) != 0;
  555. $good &= $smcFunc['strtolower']($password) != $password;
  556. return $good ? null : 'chars';
  557. }
  558. /**
  559. * Quickly find out what moderation authority this user has
  560. * - builds the moderator, group and board level querys for the user
  561. * - stores the information on the current users moderation powers in $user_info['mod_cache'] and $_SESSION['mc']
  562. */
  563. function rebuildModCache()
  564. {
  565. global $user_info, $smcFunc;
  566. // What groups can they moderate?
  567. $group_query = allowedTo('manage_membergroups') ? '1=1' : '0=1';
  568. if ($group_query == '0=1')
  569. {
  570. $request = $smcFunc['db_query']('', '
  571. SELECT id_group
  572. FROM {db_prefix}group_moderators
  573. WHERE id_member = {int:current_member}',
  574. array(
  575. 'current_member' => $user_info['id'],
  576. )
  577. );
  578. $groups = array();
  579. while ($row = $smcFunc['db_fetch_assoc']($request))
  580. $groups[] = $row['id_group'];
  581. $smcFunc['db_free_result']($request);
  582. if (empty($groups))
  583. $group_query = '0=1';
  584. else
  585. $group_query = 'id_group IN (' . implode(',', $groups) . ')';
  586. }
  587. // Then, same again, just the boards this time!
  588. $board_query = allowedTo('moderate_forum') ? '1=1' : '0=1';
  589. if ($board_query == '0=1')
  590. {
  591. $boards = boardsAllowedTo('moderate_board', true);
  592. if (empty($boards))
  593. $board_query = '0=1';
  594. else
  595. $board_query = 'id_board IN (' . implode(',', $boards) . ')';
  596. }
  597. // What boards are they the moderator of?
  598. $boards_mod = array();
  599. if (!$user_info['is_guest'])
  600. {
  601. $request = $smcFunc['db_query']('', '
  602. SELECT id_board
  603. FROM {db_prefix}moderators
  604. WHERE id_member = {int:current_member}',
  605. array(
  606. 'current_member' => $user_info['id'],
  607. )
  608. );
  609. while ($row = $smcFunc['db_fetch_assoc']($request))
  610. $boards_mod[] = $row['id_board'];
  611. $smcFunc['db_free_result']($request);
  612. // Can any of the groups they're in moderate any of the boards?
  613. $request = $smcFunc['db_query']('', '
  614. SELECT id_board
  615. FROM {db_prefix}moderator_groups
  616. WHERE id_group IN({array_int:groups})',
  617. array(
  618. 'groups' => $user_info['groups'],
  619. )
  620. );
  621. while ($row = $smcFunc['db_fetch_assoc']($request))
  622. $boards_mod[] = $row['id_board'];
  623. $smcFunc['db_free_result']($request);
  624. // Just in case we've got duplicates here...
  625. $boards_mod = array_unique($boards_mod);
  626. }
  627. $mod_query = empty($boards_mod) ? '0=1' : 'b.id_board IN (' . implode(',', $boards_mod) . ')';
  628. $_SESSION['mc'] = array(
  629. 'time' => time(),
  630. // This looks a bit funny but protects against the login redirect.
  631. 'id' => $user_info['id'] && $user_info['name'] ? $user_info['id'] : 0,
  632. // If you change the format of 'gq' and/or 'bq' make sure to adjust 'can_mod' in Load.php.
  633. 'gq' => $group_query,
  634. 'bq' => $board_query,
  635. 'ap' => boardsAllowedTo('approve_posts'),
  636. 'mb' => $boards_mod,
  637. 'mq' => $mod_query,
  638. );
  639. call_integration_hook('integrate_mod_cache');
  640. $user_info['mod_cache'] = $_SESSION['mc'];
  641. // Might as well clean up some tokens while we are at it.
  642. cleanTokens();
  643. }
  644. /**
  645. * The same thing as setcookie but gives support for HTTP-Only cookies in PHP < 5.2
  646. *
  647. * @param string $name
  648. * @param string $value = ''
  649. * @param int $expire = 0
  650. * @param string $path = ''
  651. * @param string $domain = ''
  652. * @param bool $secure = false
  653. * @param bool $httponly = null
  654. */
  655. function smf_setcookie($name, $value = '', $expire = 0, $path = '', $domain = '', $secure = null, $httponly = null)
  656. {
  657. global $modSettings;
  658. // In case a customization wants to override the default settings
  659. if ($httponly === null)
  660. $httponly = !empty($modSettings['httponlyCookies']);
  661. if ($secure === null)
  662. $secure = !empty($modSettings['secureCookies']);
  663. // Intercept cookie?
  664. call_integration_hook('integrate_cookie', array($name, $value, $expire, $path, $domain, $secure, $httponly));
  665. // This function is pointless if we have PHP >= 5.2.
  666. if (version_compare(PHP_VERSION, '5.2', '>='))
  667. return setcookie($name, $value, $expire, $path, $domain, $secure, $httponly);
  668. // $httponly is the only reason I made this function. If it's not being used, use setcookie().
  669. if (!$httponly)
  670. return setcookie($name, $value, $expire, $path, $domain, $secure);
  671. // Ugh, looks like we have to resort to using a manual process.
  672. header('Set-Cookie: '.rawurlencode($name).'='.rawurlencode($value)
  673. .(empty($domain) ? '' : '; Domain='.$domain)
  674. .(empty($expire) ? '' : '; Max-Age='.$expire)
  675. .(empty($path) ? '' : '; Path='.$path)
  676. .(!$secure ? '' : '; Secure')
  677. .(!$httponly ? '' : '; HttpOnly'), false);
  678. }
  679. ?>