auth->allowPassChange() && isset($_POST['new_pwd']) && isset($_POST['new_pwd_c']) && isset($_POST['login_data']); $login_data = !empty($_POST['login_data']) ? $_POST['login_data'] : null; $recover = $core->auth->allowPassChange() && !empty($_REQUEST['recover']); $safe_mode = !empty($_REQUEST['safe_mode']); $akey = $core->auth->allowPassChange() && !empty($_GET['akey']) ? $_GET['akey'] : null; $user_id = $user_pwd = $user_key = $user_email = null; $err = $msg = null; # Auto upgrade if (empty($_GET) && empty($_POST)) { require dirname(__FILE__).'/../inc/dbschema/upgrade.php'; try { if (($changes = dotclearUpgrade($core)) !== false) { $msg = __('Dotclear has been upgraded.').''; } } catch (Exception $e) { $err = $e->getMessage(); } } # If we have POST login informations, go throug auth process if (!empty($_POST['user_id']) && !empty($_POST['user_pwd'])) { $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null; $user_pwd = !empty($_POST['user_pwd']) ? $_POST['user_pwd'] : null; } # If we have COOKIE login informations, go throug auth process elseif (isset($_COOKIE['dc_admin']) && strlen($_COOKIE['dc_admin']) == 104) { # If we have a remember cookie, go through auth process with user_key $user_id = substr($_COOKIE['dc_admin'],40); $user_id = @unpack('a32',@pack('H*',$user_id)); if (is_array($user_id)) { $user_id = $user_id[1]; $user_key = substr($_COOKIE['dc_admin'],0,40); $user_pwd = null; } else { $user_id = null; } } # Recover password if ($recover && !empty($_POST['user_id']) && !empty($_POST['user_email'])) { $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null; $user_email = !empty($_POST['user_email']) ? $_POST['user_email'] : ''; try { $recover_key = $core->auth->setRecoverKey($user_id,$user_email); $subject = mail::B64Header('DotClear '.__('Password reset')); $message = __('Someone has requested to reset the password for the following site and username.')."\n\n". $page_url."\n".__('Username:').' '.$user_id."\n\n". __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.')."\n". $page_url.'?akey='.$recover_key; $headers[] = 'From: dotclear@'.$_SERVER['HTTP_HOST']; $headers[] = 'Content-Type: text/plain; charset=UTF-8;'; mail::sendMail($user_email,$subject,$message,$headers); $msg = sprintf(__('The e-mail was sent successfully to %s.'),$user_email); } catch (Exception $e) { $err = $e->getMessage(); } } # Send new password elseif ($akey) { try { $recover_res = $core->auth->recoverUserPassword($akey); $subject = mb_encode_mimeheader('DotClear '.__('Your new password'),'UTF-8','B'); $message = __('Username:').' '.$recover_res['user_id']."\n". __('Password:').' '.$recover_res['new_pass']."\n\n". preg_replace('/\?(.*)$/','',$page_url); $headers[] = 'From: dotclear@'.$_SERVER['HTTP_HOST']; $headers[] = 'Content-Type: text/plain; charset=UTF-8;'; mail::sendMail($recover_res['user_email'],$subject,$message,$headers); $msg = __('Your new password is in your mailbox.'); } catch (Exception $e) { $err = $e->getMessage(); } } # Change password and retry to log elseif ($change_pwd and $data = unserialize(base64_decode($_POST['login_data']))) { # Check login informations $check_user = false; if (isset($data['cookie_admin']) && strlen($data['cookie_admin']) == 104) { $user_id = substr($data['cookie_admin'],40); $user_id = @unpack('a32',@pack('H*',$user_id)); if (is_array($user_id)) { $user_id = $user_id[1]; $user_key = substr($data['cookie_admin'],0,40); $check_user = $core->auth->checkUser($user_id,null,$user_key) === true; } } try { if (!$core->auth->allowPassChange() || !$check_user) { $change_pwd = false; throw new Exception(); } if ($_POST['new_pwd'] != $_POST['new_pwd_c']) { throw new Exception(__("Passwords don't match")); } if ($core->auth->checkUser($user_id,$_POST['new_pwd']) === true) { throw new Exception(__("You didn't change your password.")); } $cur = $core->con->openCursor($core->prefix.'user'); $cur->user_change_pwd = 0; $cur->user_pwd = $_POST['new_pwd']; $core->updUser($core->auth->userID(),$cur); $core->session->start(); $_SESSION['sess_user_id'] = $user_id; $_SESSION['sess_browser_uid'] = http::browserUID(DC_MASTER_KEY); if (!empty($data['blog_id'])) { $_SESSION['sess_blog_id'] = $data['blog_id']; } if (!empty($data['user_remember'])) { setcookie('dc_admin',$data['cookie_admin'],strtotime('+15 days'),'','',DC_ADMIN_SSL); } http::redirect('index.php'); } catch (Exception $e) { $err = $e->getMessage(); } } # Try to log elseif ($user_id !== null && ($user_pwd !== null || $user_key !== null)) { # We check the user $check_user = $core->auth->checkUser($user_id,$user_pwd,$user_key) === true; $cookie_admin = http::browserUID(DC_MASTER_KEY.$user_id. crypt::hmac(DC_MASTER_KEY,$user_pwd)).bin2hex(pack('a32',$user_id)); if ($check_user && $core->auth->mustChangePassword()) { $login_data = base64_encode(serialize(array( 'user_id'=>$user_id, 'cookie_admin'=>$cookie_admin, 'blog_id'=>(!empty($_POST['blog']) ? $_POST['blog'] : ''), 'user_remember'=>!empty($_POST['user_remember']) ))); if (!$core->auth->allowPassChange()) { $err = __('You have to change your password before you can login.'); } else { $err = __('In order to login, you have to change your password now.'); $change_pwd = true; } } elseif ($check_user && !empty($_POST['safe_mode']) && !$core->auth->isSuperAdmin()) { $err = __('Safe Mode can only be used for super administrators.'); } elseif ($check_user) { $core->session->start(); $_SESSION['sess_user_id'] = $user_id; $_SESSION['sess_browser_uid'] = http::browserUID(DC_MASTER_KEY); if (!empty($_POST['blog'])) { $_SESSION['sess_blog_id'] = $_POST['blog']; } if (!empty($_POST['safe_mode']) && $core->auth->isSuperAdmin()) { $_SESSION['sess_safe_mode'] = true; } if (!empty($_POST['user_remember'])) { setcookie('dc_admin',$cookie_admin,strtotime('+15 days'),'','',DC_ADMIN_SSL); } http::redirect('index.php'); } else { if (isset($_COOKIE['dc_admin'])) { unset($_COOKIE['dc_admin']); setcookie('dc_admin',false,-600,'','',DC_ADMIN_SSL); } $err = __('Wrong username or password'); } } if (isset($_GET['user'])) { $user_id = $_GET['user']; } header('Content-Type: text/html; charset=UTF-8'); ?>