Subs-Auth.php 27 KB

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