PageRenderTime 31ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 1ms

/wp-login.php

https://gitlab.com/endomorphosis/reservationtelco
PHP | 654 lines | 463 code | 112 blank | 79 comment | 130 complexity | f2c1af78eb9a8353ab77da3c7cb54291 MD5 | raw file
  1. <?php
  2. /**
  3. * WordPress User Page
  4. *
  5. * Handles authentication, registering, resetting passwords, forgot password,
  6. * and other user handling.
  7. *
  8. * @package WordPress
  9. */
  10. /** Make sure that the WordPress bootstrap has run before continuing. */
  11. require( dirname(__FILE__) . '/wp-load.php' );
  12. // Redirect to https login if forced to use SSL
  13. if ( force_ssl_admin() && !is_ssl() ) {
  14. if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {
  15. wp_redirect(preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI']));
  16. exit();
  17. } else {
  18. wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
  19. exit();
  20. }
  21. }
  22. update_option('siteurl', 'http://reservation.barberb.net' );
  23. update_option('home', 'http://reservation.barberb.net' );
  24. /**
  25. * Outputs the header for the login page.
  26. *
  27. * @uses do_action() Calls the 'login_head' for outputting HTML in the Log In
  28. * header.
  29. * @uses apply_filters() Calls 'login_headerurl' for the top login link.
  30. * @uses apply_filters() Calls 'login_headertitle' for the top login title.
  31. * @uses apply_filters() Calls 'login_message' on the message to display in the
  32. * header.
  33. * @uses $error The error global, which is checked for displaying errors.
  34. *
  35. * @param string $title Optional. WordPress Log In Page title to display in
  36. * <title/> element.
  37. * @param string $message Optional. Message to display in header.
  38. * @param WP_Error $wp_error Optional. WordPress Error Object
  39. */
  40. function login_header($title = 'Log In', $message = '', $wp_error = '') {
  41. global $error, $is_iphone, $interim_login, $current_site;
  42. // Don't index any of these forms
  43. add_filter( 'pre_option_blog_public', '__return_zero' );
  44. add_action( 'login_head', 'noindex' );
  45. if ( empty($wp_error) )
  46. $wp_error = new WP_Error();
  47. // Shake it!
  48. $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' );
  49. $shake_error_codes = apply_filters( 'shake_error_codes', $shake_error_codes );
  50. if ( $shake_error_codes && $wp_error->get_error_code() && in_array( $wp_error->get_error_code(), $shake_error_codes ) )
  51. add_action( 'login_head', 'wp_shake_js', 12 );
  52. ?>
  53. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  54. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  55. <head>
  56. <title><?php bloginfo('name'); ?> &rsaquo; <?php echo $title; ?></title>
  57. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  58. <?php
  59. wp_admin_css( 'login', true );
  60. wp_admin_css( 'colors-fresh', true );
  61. if ( $is_iphone ) { ?>
  62. <meta name="viewport" content="width=320; initial-scale=0.9; maximum-scale=1.0; user-scalable=0;" />
  63. <style type="text/css" media="screen">
  64. form { margin-left: 0px; }
  65. #login { margin-top: 20px; }
  66. </style>
  67. <?php
  68. } elseif ( isset($interim_login) && $interim_login ) { ?>
  69. <style type="text/css" media="all">
  70. .login #login { margin: 20px auto; }
  71. </style>
  72. <?php
  73. }
  74. do_action('login_head'); ?>
  75. </head>
  76. <body class="login">
  77. <?php if ( !is_multisite() ) { ?>
  78. <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', 'http://wordpress.org/'); ?>" title="<?php echo apply_filters('login_headertitle', __('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1>
  79. <?php } else { ?>
  80. <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', network_home_url() ); ?>" title="<?php echo apply_filters('login_headertitle', $current_site->site_name ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
  81. <?php }
  82. $message = apply_filters('login_message', $message);
  83. if ( !empty( $message ) ) echo $message . "\n";
  84. // Incase a plugin uses $error rather than the $errors object
  85. if ( !empty( $error ) ) {
  86. $wp_error->add('error', $error);
  87. unset($error);
  88. }
  89. if ( $wp_error->get_error_code() ) {
  90. $errors = '';
  91. $messages = '';
  92. foreach ( $wp_error->get_error_codes() as $code ) {
  93. $severity = $wp_error->get_error_data($code);
  94. foreach ( $wp_error->get_error_messages($code) as $error ) {
  95. if ( 'message' == $severity )
  96. $messages .= ' ' . $error . "<br />\n";
  97. else
  98. $errors .= ' ' . $error . "<br />\n";
  99. }
  100. }
  101. if ( !empty($errors) )
  102. echo '<div id="login_error">' . apply_filters('login_errors', $errors) . "</div>\n";
  103. if ( !empty($messages) )
  104. echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n";
  105. }
  106. } // End of login_header()
  107. function wp_shake_js() {
  108. global $is_iphone;
  109. if ( $is_iphone )
  110. return;
  111. ?>
  112. <script type="text/javascript">
  113. addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
  114. function s(id,pos){g(id).left=pos+'px';}
  115. function g(id){return document.getElementById(id).style;}
  116. function shake(id,a,d){c=a.shift();s(id,c);if(a.length>0){setTimeout(function(){shake(id,a,d);},d);}else{try{g(id).position='static';wp_attempt_focus();}catch(e){}}}
  117. addLoadEvent(function(){ var p=new Array(15,30,15,0,-15,-30,-15,0);p=p.concat(p.concat(p));var i=document.forms[0].id;g(i).position='relative';shake(i,p,20);});
  118. </script>
  119. <?php
  120. }
  121. /**
  122. * Handles sending password retrieval email to user.
  123. *
  124. * @uses $wpdb WordPress Database object
  125. *
  126. * @return bool|WP_Error True: when finish. WP_Error on error
  127. */
  128. function retrieve_password() {
  129. global $wpdb, $current_site;
  130. $errors = new WP_Error();
  131. if ( empty( $_POST['user_login'] ) && empty( $_POST['user_email'] ) )
  132. $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or e-mail address.'));
  133. if ( strpos($_POST['user_login'], '@') ) {
  134. $user_data = get_user_by_email(trim($_POST['user_login']));
  135. if ( empty($user_data) )
  136. $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
  137. } else {
  138. $login = trim($_POST['user_login']);
  139. $user_data = get_userdatabylogin($login);
  140. }
  141. do_action('lostpassword_post');
  142. if ( $errors->get_error_code() )
  143. return $errors;
  144. if ( !$user_data ) {
  145. $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or e-mail.'));
  146. return $errors;
  147. }
  148. // redefining user_login ensures we return the right case in the email
  149. $user_login = $user_data->user_login;
  150. $user_email = $user_data->user_email;
  151. do_action('retreive_password', $user_login); // Misspelled and deprecated
  152. do_action('retrieve_password', $user_login);
  153. $allow = apply_filters('allow_password_reset', true, $user_data->ID);
  154. if ( ! $allow )
  155. return new WP_Error('no_password_reset', __('Password reset is not allowed for this user'));
  156. else if ( is_wp_error($allow) )
  157. return $allow;
  158. $key = $wpdb->get_var($wpdb->prepare("SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $user_login));
  159. if ( empty($key) ) {
  160. // Generate something random for a key...
  161. $key = wp_generate_password(20, false);
  162. do_action('retrieve_password_key', $user_login, $key);
  163. // Now insert the new md5 key into the db
  164. $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
  165. }
  166. $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
  167. $message .= network_site_url() . "\r\n\r\n";
  168. $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
  169. $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
  170. $message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n";
  171. if ( is_multisite() )
  172. $blogname = $GLOBALS['current_site']->site_name;
  173. else
  174. // The blogname option is escaped with esc_html on the way into the database in sanitize_option
  175. // we want to reverse this for the plain text arena of emails.
  176. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
  177. $title = sprintf( __('[%s] Password Reset'), $blogname );
  178. $title = apply_filters('retrieve_password_title', $title);
  179. $message = apply_filters('retrieve_password_message', $message, $key);
  180. if ( $message && !wp_mail($user_email, $title, $message) )
  181. wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') );
  182. return true;
  183. }
  184. /**
  185. * Handles resetting the user's password.
  186. *
  187. * @uses $wpdb WordPress Database object
  188. *
  189. * @param string $key Hash to validate sending user's password
  190. * @return bool|WP_Error
  191. */
  192. function reset_password($key, $login) {
  193. global $wpdb;
  194. $key = preg_replace('/[^a-z0-9]/i', '', $key);
  195. if ( empty( $key ) || !is_string( $key ) )
  196. return new WP_Error('invalid_key', __('Invalid key'));
  197. if ( empty($login) || !is_string($login) )
  198. return new WP_Error('invalid_key', __('Invalid key'));
  199. $user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login));
  200. if ( empty( $user ) )
  201. return new WP_Error('invalid_key', __('Invalid key'));
  202. // Generate something random for a password...
  203. $new_pass = wp_generate_password();
  204. do_action('password_reset', $user, $new_pass);
  205. wp_set_password($new_pass, $user->ID);
  206. update_user_option($user->ID, 'default_password_nag', true, true); //Set up the Password change nag.
  207. $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
  208. $message .= sprintf(__('Password: %s'), $new_pass) . "\r\n";
  209. $message .= site_url('wp-login.php', 'login') . "\r\n";
  210. if ( is_multisite() )
  211. $blogname = $GLOBALS['current_site']->site_name;
  212. else
  213. // The blogname option is escaped with esc_html on the way into the database in sanitize_option
  214. // we want to reverse this for the plain text arena of emails.
  215. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
  216. $title = sprintf( __('[%s] Your new password'), $blogname );
  217. $title = apply_filters('password_reset_title', $title);
  218. $message = apply_filters('password_reset_message', $message, $new_pass);
  219. if ( $message && !wp_mail($user->user_email, $title, $message) )
  220. wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') );
  221. wp_password_change_notification($user);
  222. return true;
  223. }
  224. /**
  225. * Handles registering a new user.
  226. *
  227. * @param string $user_login User's username for logging in
  228. * @param string $user_email User's email address to send password and add
  229. * @return int|WP_Error Either user's ID or error on failure.
  230. */
  231. function register_new_user( $user_login, $user_email ) {
  232. $errors = new WP_Error();
  233. $sanitized_user_login = sanitize_user( $user_login );
  234. $user_email = apply_filters( 'user_registration_email', $user_email );
  235. // Check the username
  236. if ( $sanitized_user_login == '' ) {
  237. $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Please enter a username.' ) );
  238. } elseif ( ! validate_username( $user_login ) ) {
  239. $errors->add( 'invalid_username', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.' ) );
  240. $sanitized_user_login = '';
  241. } elseif ( username_exists( $sanitized_user_login ) ) {
  242. $errors->add( 'username_exists', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.' ) );
  243. }
  244. // Check the e-mail address
  245. if ( $user_email == '' ) {
  246. $errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.' ) );
  247. } elseif ( ! is_email( $user_email ) ) {
  248. $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn&#8217;t correct.' ) );
  249. $user_email = '';
  250. } elseif ( email_exists( $user_email ) ) {
  251. $errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.' ) );
  252. }
  253. do_action( 'register_post', $sanitized_user_login, $user_email, $errors );
  254. $errors = apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email );
  255. if ( $errors->get_error_code() )
  256. return $errors;
  257. $user_pass = wp_generate_password();
  258. $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email );
  259. if ( ! $user_id ) {
  260. $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
  261. return $errors;
  262. }
  263. update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
  264. wp_new_user_notification( $user_id, $user_pass );
  265. return $user_id;
  266. }
  267. //
  268. // Main
  269. //
  270. $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
  271. $errors = new WP_Error();
  272. if ( isset($_GET['key']) )
  273. $action = 'resetpass';
  274. // validate action so as to default to the login screen
  275. if ( !in_array($action, array('logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login'), true) && false === has_filter('login_form_' . $action) )
  276. $action = 'login';
  277. nocache_headers();
  278. header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
  279. if ( defined('RELOCATE') ) { // Move flag is set
  280. if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
  281. $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
  282. $schema = is_ssl() ? 'https://' : 'http://';
  283. if ( dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_option('siteurl') )
  284. update_option('siteurl', dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) );
  285. }
  286. //Set a cookie now to see if they are supported by the browser.
  287. setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN);
  288. if ( SITECOOKIEPATH != COOKIEPATH )
  289. setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN);
  290. // allow plugins to override the default actions, and to add extra actions if they want
  291. do_action('login_form_' . $action);
  292. $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
  293. switch ($action) {
  294. case 'logout' :
  295. check_admin_referer('log-out');
  296. wp_logout();
  297. $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?loggedout=true';
  298. wp_safe_redirect( $redirect_to );
  299. exit();
  300. break;
  301. case 'lostpassword' :
  302. case 'retrievepassword' :
  303. if ( $http_post ) {
  304. $errors = retrieve_password();
  305. if ( !is_wp_error($errors) ) {
  306. $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?checkemail=confirm';
  307. wp_safe_redirect( $redirect_to );
  308. exit();
  309. }
  310. }
  311. if ( isset($_GET['error']) && 'invalidkey' == $_GET['error'] ) $errors->add('invalidkey', __('Sorry, that key does not appear to be valid.'));
  312. $redirect_to = apply_filters( 'lostpassword_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' );
  313. do_action('lost_password');
  314. login_header(__('Lost Password'), '<p class="message">' . __('Please enter your username or e-mail address. You will receive a new password via e-mail.') . '</p>', $errors);
  315. $user_login = isset($_POST['user_login']) ? stripslashes($_POST['user_login']) : '';
  316. ?>
  317. <form name="lostpasswordform" id="lostpasswordform" action="<?php echo site_url('wp-login.php?action=lostpassword', 'login_post') ?>" method="post">
  318. <p>
  319. <label><?php _e('Username or E-mail:') ?><br />
  320. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
  321. </p>
  322. <?php do_action('lostpassword_form'); ?>
  323. <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  324. <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Get New Password'); ?>" tabindex="100" /></p>
  325. </form>
  326. <p id="nav">
  327. <?php if (get_option('users_can_register')) : ?>
  328. <a href="<?php echo site_url('wp-login.php', 'login') ?>"><?php _e('Log in') ?></a> |
  329. <a href="<?php echo site_url('wp-login.php?action=register', 'login') ?>"><?php _e('Register') ?></a>
  330. <?php else : ?>
  331. <a href="<?php echo site_url('wp-login.php', 'login') ?>"><?php _e('Log in') ?></a>
  332. <?php endif; ?>
  333. </p>
  334. </div>
  335. <p id="backtoblog"><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('&larr; Back to %s'), get_bloginfo('title', 'display' )); ?></a></p>
  336. <script type="text/javascript">
  337. try{document.getElementById('user_login').focus();}catch(e){}
  338. if(typeof wpOnload=='function')wpOnload();
  339. </script>
  340. </body>
  341. </html>
  342. <?php
  343. break;
  344. case 'resetpass' :
  345. case 'rp' :
  346. $errors = reset_password($_GET['key'], $_GET['login']);
  347. if ( ! is_wp_error($errors) ) {
  348. wp_redirect('wp-login.php?checkemail=newpass');
  349. exit();
  350. }
  351. wp_redirect('wp-login.php?action=lostpassword&error=invalidkey');
  352. exit();
  353. break;
  354. case 'register' :
  355. if ( is_multisite() ) {
  356. // Multisite uses wp-signup.php
  357. wp_redirect( apply_filters( 'wp_signup_location', get_bloginfo('wpurl') . '/wp-signup.php' ) );
  358. exit;
  359. }
  360. if ( !get_option('users_can_register') ) {
  361. wp_redirect('wp-login.php?registration=disabled');
  362. exit();
  363. }
  364. $user_login = '';
  365. $user_email = '';
  366. if ( $http_post ) {
  367. require_once( ABSPATH . WPINC . '/registration.php');
  368. $user_login = $_POST['user_login'];
  369. $user_email = $_POST['user_email'];
  370. $errors = register_new_user($user_login, $user_email);
  371. if ( !is_wp_error($errors) ) {
  372. $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
  373. wp_safe_redirect( $redirect_to );
  374. exit();
  375. }
  376. }
  377. $redirect_to = apply_filters( 'registration_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' );
  378. login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site') . '</p>', $errors);
  379. ?>
  380. <form name="registerform" id="registerform" action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
  381. <p>
  382. <label><?php _e('Username') ?><br />
  383. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr(stripslashes($user_login)); ?>" size="20" tabindex="10" /></label>
  384. </p>
  385. <p>
  386. <label><?php _e('E-mail') ?><br />
  387. <input type="text" name="user_email" id="user_email" class="input" value="<?php echo esc_attr(stripslashes($user_email)); ?>" size="25" tabindex="20" /></label>
  388. </p>
  389. <?php do_action('register_form'); ?>
  390. <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
  391. <br class="clear" />
  392. <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  393. <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Register'); ?>" tabindex="100" /></p>
  394. </form>
  395. <p id="nav">
  396. <a href="<?php echo site_url('wp-login.php', 'login') ?>"><?php _e('Log in') ?></a> |
  397. <a href="<?php echo site_url('wp-login.php?action=lostpassword', 'login') ?>" title="<?php _e('Password Lost and Found') ?>"><?php _e('Lost your password?') ?></a>
  398. </p>
  399. </div>
  400. <p id="backtoblog"><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('&larr; Back to %s'), get_bloginfo('title', 'display' )); ?></a></p>
  401. <script type="text/javascript">
  402. try{document.getElementById('user_login').focus();}catch(e){}
  403. if(typeof wpOnload=='function')wpOnload();
  404. </script>
  405. </body>
  406. </html>
  407. <?php
  408. break;
  409. case 'login' :
  410. default:
  411. $secure_cookie = '';
  412. $interim_login = isset($_REQUEST['interim-login']);
  413. // If the user wants ssl but the session is not ssl, force a secure cookie.
  414. if ( !empty($_POST['log']) && !force_ssl_admin() ) {
  415. $user_name = sanitize_user($_POST['log']);
  416. if ( $user = get_userdatabylogin($user_name) ) {
  417. if ( get_user_option('use_ssl', $user->ID) ) {
  418. $secure_cookie = true;
  419. force_ssl_admin(true);
  420. }
  421. }
  422. }
  423. if ( isset( $_REQUEST['redirect_to'] ) ) {
  424. $redirect_to = $_REQUEST['redirect_to'];
  425. // Redirect to https if user wants ssl
  426. if ( $secure_cookie && false !== strpos($redirect_to, 'wp-admin') )
  427. $redirect_to = preg_replace('|^http://|', 'https://', $redirect_to);
  428. } else {
  429. $redirect_to = admin_url();
  430. }
  431. $reauth = empty($_REQUEST['reauth']) ? false : true;
  432. // If the user was redirected to a secure login form from a non-secure admin page, and secure login is required but secure admin is not, then don't use a secure
  433. // cookie and redirect back to the referring non-secure admin page. This allows logins to always be POSTed over SSL while allowing the user to choose visiting
  434. // the admin via http or https.
  435. if ( !$secure_cookie && is_ssl() && force_ssl_login() && !force_ssl_admin() && ( 0 !== strpos($redirect_to, 'https') ) && ( 0 === strpos($redirect_to, 'http') ) )
  436. $secure_cookie = false;
  437. $user = wp_signon('', $secure_cookie);
  438. $redirect_to = apply_filters('login_redirect', $redirect_to, isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user);
  439. if ( !is_wp_error($user) && !$reauth ) {
  440. if ( $interim_login ) {
  441. $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
  442. login_header( '', $message ); ?>
  443. <script type="text/javascript">setTimeout( function(){window.close()}, 8000);</script>
  444. <p class="alignright">
  445. <input type="button" class="button-primary" value="<?php esc_attr_e('Close'); ?>" onclick="window.close()" /></p>
  446. </div></body></html>
  447. <?php exit;
  448. }
  449. // If the user can't edit posts, send them to their profile.
  450. if ( !$user->has_cap('edit_posts') && ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) )
  451. $redirect_to = admin_url('profile.php');
  452. wp_safe_redirect($redirect_to);
  453. exit();
  454. }
  455. $errors = $user;
  456. // Clear errors if loggedout is set.
  457. if ( !empty($_GET['loggedout']) || $reauth )
  458. $errors = new WP_Error();
  459. // If cookies are disabled we can't log in even with a valid user+pass
  460. if ( isset($_POST['testcookie']) && empty($_COOKIE[TEST_COOKIE]) )
  461. $errors->add('test_cookie', __("<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress."));
  462. // Some parts of this script use the main login form to display a message
  463. if ( isset($_GET['loggedout']) && TRUE == $_GET['loggedout'] )
  464. $errors->add('loggedout', __('You are now logged out.'), 'message');
  465. elseif ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] )
  466. $errors->add('registerdisabled', __('User registration is currently not allowed.'));
  467. elseif ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )
  468. $errors->add('confirm', __('Check your e-mail for the confirmation link.'), 'message');
  469. elseif ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )
  470. $errors->add('newpass', __('Check your e-mail for your new password.'), 'message');
  471. elseif ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )
  472. $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message');
  473. elseif ( $interim_login )
  474. $errors->add('expired', __('Your session has expired. Please log-in again.'), 'message');
  475. // Clear any stale cookies.
  476. if ( $reauth )
  477. wp_clear_auth_cookie();
  478. login_header(__('Log In'), '', $errors);
  479. if ( isset($_POST['log']) )
  480. $user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(stripslashes($_POST['log'])) : '';
  481. $rememberme = ! empty( $_POST['rememberme'] );
  482. ?>
  483. <form name="loginform" id="loginform" action="<?php echo site_url('wp-login.php', 'login_post') ?>" method="post">
  484. <p>
  485. <label><?php _e('Username') ?><br />
  486. <input type="text" name="log" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
  487. </p>
  488. <p>
  489. <label><?php _e('Password') ?><br />
  490. <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label>
  491. </p>
  492. <?php do_action('login_form'); ?>
  493. <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90"<?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p>
  494. <p class="submit">
  495. <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" />
  496. <?php if ( $interim_login ) { ?>
  497. <input type="hidden" name="interim-login" value="1" />
  498. <?php } else { ?>
  499. <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
  500. <?php } ?>
  501. <input type="hidden" name="testcookie" value="1" />
  502. </p>
  503. </form>
  504. <?php if ( !$interim_login ) { ?>
  505. <p id="nav">
  506. <?php if ( isset($_GET['checkemail']) && in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
  507. <?php elseif ( get_option('users_can_register') ) : ?>
  508. <a href="<?php echo site_url('wp-login.php?action=register', 'login') ?>"><?php _e('Register') ?></a> |
  509. <a href="<?php echo site_url('wp-login.php?action=lostpassword', 'login') ?>" title="<?php _e('Password Lost and Found') ?>"><?php _e('Lost your password?') ?></a>
  510. <?php else : ?>
  511. <a href="<?php echo site_url('wp-login.php?action=lostpassword', 'login') ?>" title="<?php _e('Password Lost and Found') ?>"><?php _e('Lost your password?') ?></a>
  512. <?php endif; ?>
  513. </p>
  514. </div>
  515. <p id="backtoblog"><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('&larr; Back to %s'), get_bloginfo('title', 'display' )); ?></a></p>
  516. <?php } else { ?>
  517. </div>
  518. <?php } ?>
  519. <script type="text/javascript">
  520. function wp_attempt_focus(){
  521. setTimeout( function(){ try{
  522. <?php if ( $user_login || $interim_login ) { ?>
  523. d = document.getElementById('user_pass');
  524. <?php } else { ?>
  525. d = document.getElementById('user_login');
  526. <?php } ?>
  527. d.value = '';
  528. d.focus();
  529. } catch(e){}
  530. }, 200);
  531. }
  532. <?php if ( !$error ) { ?>
  533. wp_attempt_focus();
  534. <?php } ?>
  535. if(typeof wpOnload=='function')wpOnload();
  536. </script>
  537. </body>
  538. </html>
  539. <?php
  540. break;
  541. } // end action switch
  542. ?>