2003-05-09 14:42:42 +02:00
|
|
|
<?php
|
|
|
|
/***************************************************************************
|
2003-05-13 12:02:06 +02:00
|
|
|
* identification.php *
|
|
|
|
* ------------------ *
|
2003-08-24 09:40:56 +02:00
|
|
|
* application : PhpWebGallery 1.3 <http://phpwebgallery.net> *
|
|
|
|
* author : Pierrick LE GALL <pierrick@z0rglub.com> *
|
|
|
|
* *
|
|
|
|
* $Id$
|
2003-05-09 14:42:42 +02:00
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2004-02-02 01:55:18 +01:00
|
|
|
//----------------------------------------------------------- include
|
|
|
|
$phpwg_root_path = './';
|
|
|
|
include_once( $phpwg_root_path.'common.php' );
|
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
//-------------------------------------------------------------- identification
|
2003-07-27 10:24:10 +02:00
|
|
|
$errors = array();
|
2003-05-09 14:42:42 +02:00
|
|
|
if ( isset( $_POST['login'] ) )
|
|
|
|
{
|
|
|
|
// retrieving the encrypted password of the login submitted
|
2003-09-11 22:22:35 +02:00
|
|
|
$query = 'SELECT password';
|
2004-02-02 01:55:18 +01:00
|
|
|
$query.= ' FROM '.USERS_TABLE;
|
2003-09-11 22:22:35 +02:00
|
|
|
$query.= " WHERE username = '".$_POST['login']."';";
|
2003-05-09 14:42:42 +02:00
|
|
|
$row = mysql_fetch_array( mysql_query( $query ) );
|
|
|
|
if( $row['password'] == md5( $_POST['pass'] ) )
|
|
|
|
{
|
|
|
|
$session_id = session_create( $_POST['login'] );
|
|
|
|
$url = 'category.php?id='.$session_id;
|
2003-05-13 12:02:06 +02:00
|
|
|
header( 'Request-URI: '.$url );
|
|
|
|
header( 'Content-Location: '.$url );
|
|
|
|
header( 'Location: '.$url );
|
2003-05-09 14:42:42 +02:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-07-27 10:24:10 +02:00
|
|
|
array_push( $errors, $lang['invalid_pwd'] );
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//----------------------------------------------------- template initialization
|
2004-02-02 01:55:18 +01:00
|
|
|
//
|
|
|
|
// Start output of page
|
|
|
|
//
|
|
|
|
$title = $lang['ident_page_title'];
|
|
|
|
include('include/page_header.php');
|
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
$handle = $vtp->Open( './template/default/identification.vtp' );
|
|
|
|
// language
|
|
|
|
$vtp->setGlobalVar( $handle, 'ident_title', $lang['ident_title'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'login', $lang['login'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'password', $lang['password'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'submit', $lang['submit'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'ident_guest_visit',$lang['ident_guest_visit'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'ident_register', $lang['ident_register'] );
|
|
|
|
$vtp->setGlobalVar( $handle, 'ident_forgotten_password',
|
|
|
|
$lang['ident_forgotten_password'] );
|
|
|
|
// conf
|
|
|
|
$vtp->setGlobalVar( $handle, 'mail_webmaster', $conf['mail_webmaster'] );
|
|
|
|
// user
|
2003-07-21 21:47:14 +02:00
|
|
|
$vtp->setGlobalVar( $handle, 'user_template', $user['template'] );
|
|
|
|
initialize_template();
|
2003-05-09 14:42:42 +02:00
|
|
|
//-------------------------------------------------------------- errors display
|
2003-09-11 22:22:35 +02:00
|
|
|
if ( sizeof( $errors ) != 0 )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'errors' );
|
2003-07-27 10:24:10 +02:00
|
|
|
foreach ( $errors as $error ) {
|
2003-05-09 14:42:42 +02:00
|
|
|
$vtp->addSession( $handle, 'li' );
|
2003-07-27 10:24:10 +02:00
|
|
|
$vtp->setVar( $handle, 'li.li', $error );
|
2003-05-09 14:42:42 +02:00
|
|
|
$vtp->closeSession( $handle, 'li' );
|
|
|
|
}
|
|
|
|
$vtp->closeSession( $handle, 'errors' );
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------ users list
|
|
|
|
// retrieving all the users login
|
2004-02-02 01:55:18 +01:00
|
|
|
$query = 'select username from '.USERS_TABLE.';';
|
2003-05-09 14:42:42 +02:00
|
|
|
$result = mysql_query( $query );
|
|
|
|
if ( mysql_num_rows ( $result ) < $conf['max_user_listbox'] )
|
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'select_field' );
|
|
|
|
while ( $row = mysql_fetch_array( $result ) )
|
|
|
|
{
|
2003-05-13 12:02:06 +02:00
|
|
|
if ( $row['username'] != 'guest' )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'option' );
|
2003-05-13 12:02:06 +02:00
|
|
|
$vtp->setVar( $handle, 'option.option', $row['username'] );
|
2003-05-09 14:42:42 +02:00
|
|
|
$vtp->closeSession( $handle, 'option' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$vtp->closeSession( $handle, 'select_field' );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'text_field' );
|
|
|
|
$vtp->closeSession( $handle, 'text_field' );
|
|
|
|
}
|
|
|
|
//-------------------------------------------------------------- visit as guest
|
2003-09-14 18:12:27 +02:00
|
|
|
if ( $conf['access'] == 'free' )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'guest_visit' );
|
|
|
|
$vtp->closeSession( $handle, 'guest_visit' );
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------- registration
|
2003-09-14 18:12:27 +02:00
|
|
|
if ( $conf['access'] == 'free' )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
|
|
|
$vtp->addSession( $handle, 'register' );
|
|
|
|
$vtp->closeSession( $handle, 'register' );
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------- html code display
|
|
|
|
$code = $vtp->Display( $handle, 0 );
|
|
|
|
echo $code;
|
2004-02-02 01:55:18 +01:00
|
|
|
include('include/page_tail.php');
|
2003-05-09 14:42:42 +02:00
|
|
|
?>
|