Dotclear

source: admin/auth.php @ 2852:86651202b279

Revision 2852:86651202b279, 13.0 KB checked in by Dsls, 11 years ago (diff)

Tuned redirections and admin urls management, should work with media & attachments now
Added adminurl->redirect to avoid confusion in "when to use & and when not to"

RevLine 
[0]1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
[1179]6# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
[0]7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12
13require dirname(__FILE__).'/../inc/admin/prepend.php';
14
15# If we have a session cookie, go to index.php
16if (isset($_SESSION['sess_user_id']))
17{
[2852]18     $core->adminurl->redirect('admin.home');
[0]19}
20
21# Loading locales for detected language
22# That's a tricky hack but it works ;)
23$dlang = http::getAcceptLanguage();
[364]24$dlang = ($dlang == '' ? 'en' : $dlang);
[366]25if ($dlang != 'en' && preg_match('/^[a-z]{2}(-[a-z]{2})?$/',$dlang))
[0]26{
[1949]27     l10n::lang($dlang);
[0]28     l10n::set(dirname(__FILE__).'/../locales/'.$dlang.'/main');
29}
30
31$page_url = http::getHost().$_SERVER['REQUEST_URI'];
32
33$change_pwd = $core->auth->allowPassChange() && isset($_POST['new_pwd']) && isset($_POST['new_pwd_c']) && isset($_POST['login_data']);
[794]34$login_data = !empty($_POST['login_data']) ? html::escapeHTML($_POST['login_data']) : null;
[0]35$recover = $core->auth->allowPassChange() && !empty($_REQUEST['recover']);
36$safe_mode = !empty($_REQUEST['safe_mode']);
37$akey = $core->auth->allowPassChange() && !empty($_GET['akey']) ? $_GET['akey'] : null;
38$user_id = $user_pwd = $user_key = $user_email = null;
39$err = $msg = null;
40
41# Auto upgrade
42if (empty($_GET) && empty($_POST)) {
43     require dirname(__FILE__).'/../inc/dbschema/upgrade.php';
44     try {
45          if (($changes = dotclearUpgrade($core)) !== false) {
46               $msg = __('Dotclear has been upgraded.').'<!-- '.$changes.' -->';
47          }
48     } catch (Exception $e) {
49          $err = $e->getMessage();
50     }
51}
52
53# If we have POST login informations, go throug auth process
54if (!empty($_POST['user_id']) && !empty($_POST['user_pwd']))
55{
56     $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null;
57     $user_pwd = !empty($_POST['user_pwd']) ? $_POST['user_pwd'] : null;
58}
59# If we have COOKIE login informations, go throug auth process
60elseif (isset($_COOKIE['dc_admin']) && strlen($_COOKIE['dc_admin']) == 104)
61{
62     # If we have a remember cookie, go through auth process with user_key
63     $user_id = substr($_COOKIE['dc_admin'],40);
64     $user_id = @unpack('a32',@pack('H*',$user_id));
65     if (is_array($user_id))
66     {
67          $user_id = $user_id[1];
68          $user_key = substr($_COOKIE['dc_admin'],0,40);
69          $user_pwd = null;
70     }
71     else
72     {
73          $user_id = null;
74     }
75}
76
77# Recover password
78if ($recover && !empty($_POST['user_id']) && !empty($_POST['user_email']))
79{
80     $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null;
81     $user_email = !empty($_POST['user_email']) ? $_POST['user_email'] : '';
82     try
83     {
84          $recover_key = $core->auth->setRecoverKey($user_id,$user_email);
[2566]85
[0]86          $subject = mail::B64Header('DotClear '.__('Password reset'));
87          $message =
88          __('Someone has requested to reset the password for the following site and username.')."\n\n".
89          $page_url."\n".__('Username:').' '.$user_id."\n\n".
90          __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.')."\n".
91          $page_url.'?akey='.$recover_key;
[2566]92
[362]93          $headers[] = 'From: '.(defined('DC_ADMIN_MAILFROM') && DC_ADMIN_MAILFROM ? DC_ADMIN_MAILFROM : 'dotclear@local');
[0]94          $headers[] = 'Content-Type: text/plain; charset=UTF-8;';
[2566]95
[0]96          mail::sendMail($user_email,$subject,$message,$headers);
97          $msg = sprintf(__('The e-mail was sent successfully to %s.'),$user_email);
98     }
99     catch (Exception $e)
100     {
101          $err = $e->getMessage();
102     }
103}
104# Send new password
105elseif ($akey)
106{
107     try
108     {
109          $recover_res = $core->auth->recoverUserPassword($akey);
[2566]110
[0]111          $subject = mb_encode_mimeheader('DotClear '.__('Your new password'),'UTF-8','B');
112          $message =
113          __('Username:').' '.$recover_res['user_id']."\n".
114          __('Password:').' '.$recover_res['new_pass']."\n\n".
115          preg_replace('/\?(.*)$/','',$page_url);
[2566]116
[0]117          $headers[] = 'From: dotclear@'.$_SERVER['HTTP_HOST'];
118          $headers[] = 'Content-Type: text/plain; charset=UTF-8;';
[2566]119
[0]120          mail::sendMail($recover_res['user_email'],$subject,$message,$headers);
121          $msg = __('Your new password is in your mailbox.');
122     }
123     catch (Exception $e)
124     {
125          $err = $e->getMessage();
126     }
127}
128# Change password and retry to log
[365]129elseif ($change_pwd)
[0]130{
131     try
132     {
[365]133          $tmp_data = explode('/',$_POST['login_data']);
134          if (count($tmp_data) != 3) {
135               throw new Exception();
136          }
137          $data = array(
138               'user_id'=>base64_decode($tmp_data[0]),
139               'cookie_admin'=>$tmp_data[1],
140               'user_remember'=>$tmp_data[2]=='1'
141          );
142          if ($data['user_id'] === false) {
143               throw new Exception();
144          }
[2566]145
[314]146     # Check login informations
147     $check_user = false;
148     if (isset($data['cookie_admin']) && strlen($data['cookie_admin']) == 104)
149     {
150          $user_id = substr($data['cookie_admin'],40);
151          $user_id = @unpack('a32',@pack('H*',$user_id));
152          if (is_array($user_id))
[365]153          {
[314]154               $user_id = $user_id[1];
155               $user_key = substr($data['cookie_admin'],0,40);
156               $check_user = $core->auth->checkUser($user_id,null,$user_key) === true;
[365]157          }
[314]158     }
[2566]159
[0]160          if (!$core->auth->allowPassChange() || !$check_user) {
161               $change_pwd = false;
162               throw new Exception();
163          }
[2566]164
[0]165          if ($_POST['new_pwd'] != $_POST['new_pwd_c']) {
166               throw new Exception(__("Passwords don't match"));
167          }
[2566]168
[0]169          if ($core->auth->checkUser($user_id,$_POST['new_pwd']) === true) {
170               throw new Exception(__("You didn't change your password."));
171          }
[2566]172
[0]173          $cur = $core->con->openCursor($core->prefix.'user');
174          $cur->user_change_pwd = 0;
175          $cur->user_pwd = $_POST['new_pwd'];
176          $core->updUser($core->auth->userID(),$cur);
[2566]177
[0]178          $core->session->start();
179          $_SESSION['sess_user_id'] = $user_id;
180          $_SESSION['sess_browser_uid'] = http::browserUID(DC_MASTER_KEY);
[2566]181
[365]182          if ($data['user_remember'])
[0]183          {
184               setcookie('dc_admin',$data['cookie_admin'],strtotime('+15 days'),'','',DC_ADMIN_SSL);
185          }
[2566]186
[2852]187          $core->adminurl->redirect('admin.home');
[0]188     }
189     catch (Exception $e)
190     {
191          $err = $e->getMessage();
192     }
193}
194# Try to log
195elseif ($user_id !== null && ($user_pwd !== null || $user_key !== null))
196{
197     # We check the user
[2311]198     $check_user = $core->auth->checkUser($user_id,$user_pwd,$user_key,false) === true;
199     if ($check_user) {
200          $check_perms = $core->auth->findUserBlog() !== false;
201     } else {
202          $check_perms = false;
203     }
[2566]204
[0]205     $cookie_admin = http::browserUID(DC_MASTER_KEY.$user_id.
206          crypt::hmac(DC_MASTER_KEY,$user_pwd)).bin2hex(pack('a32',$user_id));
[2566]207
[2311]208     if ($check_perms && $core->auth->mustChangePassword())
[0]209     {
[365]210          $login_data = join('/',array(
211               base64_encode($user_id),
212               $cookie_admin,
213               empty($_POST['user_remember'])?'0':'1'
214          ));
[2566]215
[0]216          if (!$core->auth->allowPassChange()) {
217               $err = __('You have to change your password before you can login.');
218          } else {
219               $err = __('In order to login, you have to change your password now.');
220               $change_pwd = true;
221          }
222     }
[2566]223     elseif ($check_perms && !empty($_POST['safe_mode']) && !$core->auth->isSuperAdmin())
[0]224     {
225          $err = __('Safe Mode can only be used for super administrators.');
226     }
[2311]227     elseif ($check_perms)
[0]228     {
229          $core->session->start();
230          $_SESSION['sess_user_id'] = $user_id;
231          $_SESSION['sess_browser_uid'] = http::browserUID(DC_MASTER_KEY);
[2566]232
[0]233          if (!empty($_POST['blog'])) {
234               $_SESSION['sess_blog_id'] = $_POST['blog'];
235          }
[2566]236
[0]237          if (!empty($_POST['safe_mode']) && $core->auth->isSuperAdmin()) {
238               $_SESSION['sess_safe_mode'] = true;
239          }
[2566]240
[0]241          if (!empty($_POST['user_remember'])) {
242               setcookie('dc_admin',$cookie_admin,strtotime('+15 days'),'','',DC_ADMIN_SSL);
243          }
[2566]244
[2852]245          $core->adminurl->redirect('admin.home');
[0]246     }
247     else
248     {
249          if (isset($_COOKIE['dc_admin'])) {
250               unset($_COOKIE['dc_admin']);
251               setcookie('dc_admin',false,-600,'','',DC_ADMIN_SSL);
252          }
[2311]253          if ($check_user) {
254               $err = __('Insufficient permissions');
255          } else {
256               $err = __('Wrong username or password');
257          }
[0]258     }
259}
260
261if (isset($_GET['user'])) {
262     $user_id = $_GET['user'];
263}
264
265header('Content-Type: text/html; charset=UTF-8');
[2792]266
267// Prevents Clickjacking as far as possible
268header('X-Frame-Options: SAMEORIGIN'); // FF 3.6.9+ Chrome 4.1+ IE 8+ Safari 4+ Opera 10.5+
269
[0]270?>
[2760]271<!DOCTYPE html>
272<html lang="<?php echo $dlang; ?>">
[0]273<head>
[2760]274  <meta charset="UTF-8" />
[0]275  <meta http-equiv="Content-Script-Type" content="text/javascript" />
276  <meta http-equiv="Content-Style-Type" content="text/css" />
[364]277  <meta http-equiv="Content-Language" content="<?php echo $dlang; ?>" />
[0]278  <meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" />
279  <meta name="GOOGLEBOT" content="NOSNIPPET" />
[1310]280  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
[0]281  <title><?php echo html::escapeHTML(DC_VENDOR_NAME); ?></title>
[2160]282  <link rel="icon" type="image/png" href="images/favicon96-logout.png" />
[2780]283  <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
[2160]284
[2566]285
[0]286<?php
287echo dcPage::jsLoadIE7();
288echo dcPage::jsCommon();
289?>
[2566]290
[473]291     <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" />
[2566]292
[0]293  <?php
294  # --BEHAVIOR-- loginPageHTMLHead
295  $core->callBehavior('loginPageHTMLHead');
296  ?>
[2566]297
[0]298  <script type="text/javascript">
299  //<![CDATA[
300  $(window).load(function() {
301    var uid = $('input[name=user_id]');
302    var upw = $('input[name=user_pwd]');
303    uid.focus();
[2566]304
[0]305    if (upw.length == 0) { return; }
[2566]306
[1781]307    uid.keypress(processKey);
308
[0]309    function processKey(evt) {
[1781]310      if (evt.which == 13 && upw.val() == '') {
[0]311         upw.focus();
312         return false;
313      }
314      return true;
315    };
[259]316    $.cookie('dc_admin_test_cookie',true);
317    if ($.cookie('dc_admin_test_cookie')) {
[47]318      $('#cookie_help').hide();
[314]319      $.cookie('dc_admin_test_cookie', '', {'expires': -1});
[47]320    } else {
321      $('#cookie_help').show();
322    }
[73]323    $('#issue #more').toggleWithLegend($('#issue').children().not('#more'));
[0]324  });
325  //]]>
326  </script>
327</head>
328
329<body id="dotclear-admin" class="auth">
330
[2720]331<form action="<?php echo $core->adminurl->get('admin.auth'); ?>" method="post" id="login-screen">
[2784]332<h1 role="banner"><?php echo html::escapeHTML(DC_VENDOR_NAME); ?></h1>
[0]333
334<?php
335if ($err) {
[2787]336     echo '<div class="error" role="alert">'.$err.'</div>';
[0]337}
338if ($msg) {
[2787]339     echo '<p class="success" role="alert">'.$msg.'</p>';
[0]340}
341
342if ($akey)
343{
[2720]344     echo '<p><a href="'.$core->adminurl->get('admin.auth').'">'.__('Back to login screen').'</a></p>';
[0]345}
346elseif ($recover)
347{
348     echo
[2784]349     '<div class="fieldset" role="main"><h2>'.__('Request a new password').'</h2>'.
[550]350     '<p><label for="user_id">'.__('Username:').'</label> '.
351     form::field(array('user_id','user_id'),20,32,html::escapeHTML($user_id)).'</p>'.
[2566]352
[550]353     '<p><label for="user_email">'.__('Email:').'</label> '.
354     form::field(array('user_email','user_email'),20,255,html::escapeHTML($user_email)).'</p>'.
[2566]355
[454]356     '<p><input type="submit" value="'.__('recover').'" />'.
[0]357     form::hidden(array('recover'),1).'</p>'.
[1484]358     '</div>'.
[2566]359
[262]360     '<div id="issue">'.
[2720]361     '<p><a href="'.$core->adminurl->get('admin.auth').'">'.__('Back to login screen').'</a></p>'.
[1484]362     '</div>';
[0]363}
364elseif ($change_pwd)
365{
366     echo
[1484]367     '<div class="fieldset"><h2>'.__('Change your password').'</h2>'.
[550]368     '<p><label for="new_pwd">'.__('New password:').'</label> '.
369     form::password(array('new_pwd','new_pwd'),20,255).'</p>'.
[2566]370
[550]371     '<p><label for="new_pwd_c">'.__('Confirm password:').'</label> '.
372     form::password(array('new_pwd_c','new_pwd_c'),20,255).'</p>'.
[1484]373     '</div>'.
[2566]374
[0]375     '<p><input type="submit" value="'.__('change').'" />'.
376     form::hidden('login_data',$login_data).'</p>';
377}
378else
379{
380     if (is_callable(array($core->auth,'authForm')))
381     {
382          echo $core->auth->authForm($user_id);
383     }
384     else
385     {
386          if ($safe_mode) {
[2784]387               echo '<div class="fieldset" role="main">';
[1484]388               echo '<h2>'.__('Safe mode login').'</h2>';
[2566]389               echo
[1484]390                    '<p class="form-note">'.
391                    __('This mode allows you to login without activating any of your plugins. This may be useful to solve compatibility problems').'&nbsp;</p>'.
392                    '<p class="form-note">'.__('Disable or delete any plugin suspected to cause trouble, then log out and log back in normally.').
[73]393                    '</p>';
[0]394          }
[536]395          else {
[2784]396               echo '<div class="fieldset" role="main">';
[536]397          }
398
[0]399          echo
[550]400          '<p><label for="user_id">'.__('Username:').'</label> '.
401          form::field(array('user_id','user_id'),20,32,html::escapeHTML($user_id)).'</p>'.
[2566]402
[550]403          '<p><label for="user_pwd">'.__('Password:').'</label> '.
404          form::password(array('user_pwd','user_pwd'),20,255).'</p>'.
[2566]405
[550]406          '<p>'.
407          form::checkbox(array('user_remember','user_remember'),1).
408          '<label for="user_remember" class="classic">'.
[0]409          __('Remember my ID on this computer').'</label></p>'.
[2566]410
[1558]411          '<p><input type="submit" value="'.__('log in').'" class="login" /></p>';
[2566]412
[0]413          if (!empty($_REQUEST['blog'])) {
414               echo form::hidden('blog',html::escapeHTML($_REQUEST['blog']));
415          }
416          if($safe_mode) {
[2566]417               echo
[550]418               form::hidden('safe_mode',1).
[1484]419               '</div>';
[0]420          }
[550]421          else {
422               echo '</div>';
423          }
[0]424          echo
[262]425          '<p id="cookie_help" class="error">'.__('You must accept cookies in order to use the private area.').'</p>';
[72]426
427          echo '<div id="issue">';
[2566]428
[0]429          if ($safe_mode) {
430               echo
[2720]431               '<p><a href="'.$core->adminurl->get('admin.auth').'" id="normal_mode_link">'.__('Get back to normal authentication').'</a></p>';
[0]432          } else {
[72]433               echo '<p id="more"><strong>'.__('Connection issue?').'</strong></p>';
434               if ($core->auth->allowPassChange()) {
[2720]435                    echo '<p><a href="'.$core->adminurl->get('admin.auth',array('recover' => 1)).'">'.__('I forgot my password').'</a></p>';
[72]436               }
[2720]437               echo '<p><a href="'.$core->adminurl->get('admin.auth',array('safe_mode' => 1)).'" id="safe_mode_link">'.__('I want to log in in safe mode').'</a></p>';
[0]438          }
[2566]439
[72]440          echo '</div>';
[0]441     }
442}
443?>
444</form>
445</body>
[794]446</html>
Note: See TracBrowser for help on using the repository browser.

Sites map