Subs-Auth.php 28 KB

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