source: trunk/services/login.php @ 468

Last change on this file since 468 was 468, checked in by anonymous, 10 years ago

Completed integrating /branches/eli_branch into /trunk. Changes include:

  • Removed closing ?> from end of files
  • Upgrade old-style contructor methods to use construct() instead.
  • Class properties and methods defined as public, private, static or protected
  • Ensure code runs under E_ALL with only mysql_* deprecated warnings
  • Search for the '@' symbol anywhere it might be used to supress runtime errors, then replace with proper error recovery.
  • Run the php cli -l option to check files for syntax errors.
  • Bring tests up-to-date with latest version and methods of PHPUnit
File size: 2.6 KB
Line 
1<?php
2/**
3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
5 * Copyright 2001-2012 Strangecode, LLC
6 *
7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
24 * login.php
25 */
26
27// We may want to use the add/edit interface from another script, so this
28// allows us to remember which page we came from so we can go back there.
29if (getFormData('boomerang', false) && isset($_SERVER['HTTP_REFERER'])) {
30    $app->setBoomerangURL($_SERVER['HTTP_REFERER'], 'login');
31}
32$app->sslOn();
33
34require_once 'codebase/lib/Prefs.inc.php';
35$login_prefs = new Prefs('login');
36$login_prefs->setDefaults(array('username' => ''));
37
38$frm['username'] = getFormdata('username', $login_prefs->get('username'));
39$frm['password'] = getFormdata('password');
40$frm['remember_me'] = ('' != $login_prefs->get('username')) ? '1' : '';
41
42if (getFormdata('username', false)) {
43    // Form has been submitted, check if the user login information is correct.
44
45    if ($auth->login($frm['username'], $frm['password'])) {
46        if (getFormData('remember_me')) {
47            $login_prefs->set('username', getFormData('username'));
48        } else {
49            $login_prefs->set('username', '');
50        }
51        $app->raiseMsg(_("You are now logged in."), MSG_SUCCESS, __FILE__, __LINE__);
52        $app->dieBoomerangURL('login');
53        $app->logMsg(sprintf('User %s successfully logged-in.', $frm['username']), LOG_INFO, __FILE__, __LINE__);
54    } else {
55        $app->raiseMsg(_("Login failed, please try again."), MSG_NOTICE, __FILE__, __LINE__);
56        $app->logMsg(sprintf('User %s failed login (encrypted password: %s)', $frm['username'], $auth->encryptPassword($frm['password'])), LOG_NOTICE, __FILE__, __LINE__);
57    }
58}
59
60// Titles and navigation header.
61$nav->add(_("Login"));
62
63// Templates.
64include 'header.ihtml';
65include 'codebase/services/templates/login_form.ihtml';
66include 'footer.ihtml';
67
Note: See TracBrowser for help on using the repository browser.