source: trunk/identification.php @ 1113

Last change on this file since 1113 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
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
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// +-----------------------------------------------------------------------+
27
28//--------------------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31
32//-------------------------------------------------------------- identification
33$errors = array();
34
35$redirect_to = '';
36if ( !empty($_GET['redirect']) )
37{
38  $redirect_to = urldecode($_GET['redirect']);
39  if ( $user['is_the_guest'] )
40  {
41    array_push($errors, $lang['access_forbiden']);
42  }
43}
44
45if (isset($_POST['login']))
46{
47  $redirect_to = isset($_POST['redirect']) ? $_POST['redirect'] : '';
48  $username = mysql_escape_string($_POST['username']);
49  // retrieving the encrypted password of the login submitted
50  $query = '
51SELECT '.$conf['user_fields']['id'].' AS id,
52       '.$conf['user_fields']['password'].' AS password
53  FROM '.USERS_TABLE.'
54  WHERE '.$conf['user_fields']['username'].' = \''.$username.'\'
55;';
56  $row = mysql_fetch_array(pwg_query($query));
57  if ($row['password'] == $conf['pass_convert']($_POST['password']))
58  {
59    $remember_me = false;
60    if ($conf['authorize_remembering']
61        and isset($_POST['remember_me'])
62        and $_POST['remember_me'] == 1)
63    {
64      $remember_me = true;
65    }
66    log_user( $row['id'], $remember_me);
67    redirect(empty($redirect_to) ? make_index_url() : $redirect_to);
68  }
69  else
70  {
71    array_push( $errors, $lang['invalid_pwd'] );
72  }
73}
74//----------------------------------------------------- template initialization
75//
76// Start output of page
77//
78$title = $lang['identification'];
79$page['body_id'] = 'theIdentificationPage';
80include(PHPWG_ROOT_PATH.'include/page_header.php');
81
82$template->set_filenames( array('identification'=>'identification.tpl') );
83
84$template->assign_vars(
85  array(
86    'L_TITLE' => $lang['identification'],
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'],
92    'L_FORGET' => $lang['ident_forgotten_password'],
93    'L_REMEMBER_ME'=>$lang['remember_me'],
94
95    'U_REGISTER' => PHPWG_ROOT_PATH.'register.php',
96    'U_LOST_PASSWORD' => PHPWG_ROOT_PATH.'password.php',
97    'U_HOME' => make_index_url(),
98    'U_REDIRECT' => $redirect_to,
99
100    'F_LOGIN_ACTION' => PHPWG_ROOT_PATH.'identification.php'
101    ));
102
103if ($conf['authorize_remembering'])
104{
105  $template->assign_block_vars('remember_me',array());
106}
107//-------------------------------------------------------------- errors display
108if ( sizeof( $errors ) != 0 )
109{
110  $template->assign_block_vars('errors',array());
111  for ( $i = 0; $i < sizeof( $errors ); $i++ )
112  {
113    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
114  }
115}
116//-------------------------------------------------------------- visit as guest
117$template->assign_block_vars('free_access',array());
118//----------------------------------------------------------- html code display
119$template->parse('identification');
120include(PHPWG_ROOT_PATH.'include/page_tail.php');
121?>
Note: See TracBrowser for help on using the repository browser.