source: trunk/identification.php @ 1187

Last change on this file since 1187 was 1082, checked in by plg, 18 years ago

new: cleaner URL. Instead of category.php?cat=search&search=123&start=42,
you now have category.php?/search/123/start-42. Functions make_index_url and
make_picture_url build these new URLs. Functions duplicate_picture_url and
duplicate_index_url provide shortcuts to URL creation. The current main page
page is still category.php but this can be modified easily in make_index_url
function. In this first version, no backward compatibility. Calendar
definition in URL must be discussed with rvelices.

improvement: picture.php redesigned. First actions like "set as
representative" or "delete a comment" which all lead to a redirection. Then
the page (the big mess) and includes of new sub pages to manage specific
parts of the page (metadata, user comments, rates).

new: with the cleaner URL comes a new terminology. $pagecat doesn't
exist anymore. $pagesection is among 'categories', 'tags' (TODO),
'list', 'most_seen'... And sub parameters are set : $pagecategory if
$pagesection is "categories". See URL analyse in
include/section_init.inc.php for details.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
RevLine 
[2]1<?php
[354]2// +-----------------------------------------------------------------------+
[593]3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
[675]5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
[354]6// +-----------------------------------------------------------------------+
[593]7// | branch        : BSF (Best So Far)
[354]8// | file          : $RCSfile$
9// | last update   : $Date: 2006-03-15 22:44:35 +0000 (Wed, 15 Mar 2006) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 1082 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
[2]27
[402]28//--------------------------------------------------------------------- include
[364]29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
[345]31
[2]32//-------------------------------------------------------------- identification
[45]33$errors = array();
[1052]34
35$redirect_to = '';
36if ( !empty($_GET['redirect']) )
37{
[1061]38  $redirect_to = urldecode($_GET['redirect']);
[1052]39  if ( $user['is_the_guest'] )
40  {
41    array_push($errors, $lang['access_forbiden']);
42  }
43}
44
[541]45if (isset($_POST['login']))
[2]46{
[1056]47  $redirect_to = isset($_POST['redirect']) ? $_POST['redirect'] : '';
[808]48  $username = mysql_escape_string($_POST['username']);
[2]49  // retrieving the encrypted password of the login submitted
[541]50  $query = '
[808]51SELECT '.$conf['user_fields']['id'].' AS id,
52       '.$conf['user_fields']['password'].' AS password
[541]53  FROM '.USERS_TABLE.'
[808]54  WHERE '.$conf['user_fields']['username'].' = \''.$username.'\'
[541]55;';
[587]56  $row = mysql_fetch_array(pwg_query($query));
[808]57  if ($row['password'] == $conf['pass_convert']($_POST['password']))
[2]58  {
[1068]59    $remember_me = false;
[555]60    if ($conf['authorize_remembering']
61        and isset($_POST['remember_me'])
62        and $_POST['remember_me'] == 1)
[541]63    {
[1068]64      $remember_me = true;
[541]65    }
[1068]66    log_user( $row['id'], $remember_me);
[1082]67    redirect(empty($redirect_to) ? make_index_url() : $redirect_to);
[2]68  }
69  else
70  {
[45]71    array_push( $errors, $lang['invalid_pwd'] );
[2]72  }
73}
74//----------------------------------------------------- template initialization
[345]75//
76// Start output of page
77//
[671]78$title = $lang['identification'];
[850]79$page['body_id'] = 'theIdentificationPage';
[369]80include(PHPWG_ROOT_PATH.'include/page_header.php');
[345]81
[365]82$template->set_filenames( array('identification'=>'identification.tpl') );
83
[402]84$template->assign_vars(
85  array(
[671]86    'L_TITLE' => $lang['identification'],
[402]87    'L_USERNAME' => $lang['login'],
88    'L_PASSWORD' => $lang['password'],
89    'L_LOGIN' => $lang['submit'],
90    'L_GUEST' => $lang['ident_guest_visit'],
91    'L_REGISTER' => $lang['ident_register'],
[541]92    'L_FORGET' => $lang['ident_forgotten_password'],
93    'L_REMEMBER_ME'=>$lang['remember_me'],
[854]94
[1004]95    'U_REGISTER' => PHPWG_ROOT_PATH.'register.php',
96    'U_LOST_PASSWORD' => PHPWG_ROOT_PATH.'password.php',
[1082]97    'U_HOME' => make_index_url(),
[1052]98    'U_REDIRECT' => $redirect_to,
[1061]99
[1004]100    'F_LOGIN_ACTION' => PHPWG_ROOT_PATH.'identification.php'
[402]101    ));
[555]102
103if ($conf['authorize_remembering'])
104{
105  $template->assign_block_vars('remember_me',array());
106}
[2]107//-------------------------------------------------------------- errors display
[87]108if ( sizeof( $errors ) != 0 )
[2]109{
[365]110  $template->assign_block_vars('errors',array());
111  for ( $i = 0; $i < sizeof( $errors ); $i++ )
[2]112  {
[365]113    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
[2]114  }
115}
116//-------------------------------------------------------------- visit as guest
[651]117$template->assign_block_vars('free_access',array());
[2]118//----------------------------------------------------------- html code display
[688]119$template->parse('identification');
[369]120include(PHPWG_ROOT_PATH.'include/page_tail.php');
[362]121?>
Note: See TracBrowser for help on using the repository browser.