source: trunk/profile.php @ 1036

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

improvement: $pagewhere string replaced by $pageitems.
$pagewhere was an SQL clause used to retrieve pictures in #images
table. $pageitems is the list of picture ids of the current section.

improvement: function initialize_category replaced by dedicated included PHP
script include/section_init.inc.php. Code was refactored to improve
readibility and maintenability. $pagenavigation_bar is now build in
category.php instead of initialize_category function. Function check_cat_id
was also replaced by a piece of code in the new file. The file to include to
display thumbnails from category.php is now set in section_init.inc.php
instead of calculated in category.php.

bug fix: the test for rel="up" link for standard HTML navigation links in
category menu was not working with non numeric categories, such as
"favorites".

improvement: function check_login_authorization removed because useless but
in profile.php.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.5 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-02-12 21:52:16 +0000 (Sun, 12 Feb 2006) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 1036 $
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// customize appearance of the site for a user
29// +-----------------------------------------------------------------------+
30// |                           initialization                              |
31// +-----------------------------------------------------------------------+
32
33define('PHPWG_ROOT_PATH','./');
34include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
35
36if ($user['is_the_guest'] and !$guest_allowed)
37{
38  echo '<div style="text-align:center;">'.$lang['only_members'].'<br />';
39  echo '<a href="./identification.php">'.$lang['ident_title'].'</a></div>';
40  exit();
41}
42
43$userdata = $user;
44
45//------------------------------------------------------ update & customization
46$errors = array();
47if (isset($_POST['validate']))
48{
49  $int_pattern = '/^\d+$/';
50 
51  if ($_POST['maxwidth'] != ''
52      and (!preg_match($int_pattern, $_POST['maxwidth'])
53           or $_POST['maxwidth'] < 50))
54  {
55    array_push($errors, $lang['maxwidth_error']);
56  }
57  if ($_POST['maxheight']
58       and (!preg_match($int_pattern, $_POST['maxheight'])
59             or $_POST['maxheight'] < 50))
60  {
61    array_push($errors, $lang['maxheight_error']);
62  }
63  // periods must be integer values, they represents number of days
64  if (!preg_match($int_pattern, $_POST['recent_period'])
65      or $_POST['recent_period'] <= 0)
66  {
67    array_push($errors, $lang['periods_error']);
68  }
69
70  $mail_error = validate_mail_address($_POST['mail_address']);
71  if (!empty($mail_error))
72  {
73    array_push($errors, $mail_error);
74  }
75   
76  if (!empty($_POST['use_new_pwd']))
77  {
78    // password must be the same as its confirmation
79    if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
80    {
81      array_push($errors,
82                 l10n('New password confirmation does not correspond'));
83    }
84   
85    // changing password requires old password
86    $query = '
87SELECT '.$conf['user_fields']['password'].' AS password
88  FROM '.USERS_TABLE.'
89  WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\'
90;';
91    list($current_password) = mysql_fetch_row(pwg_query($query));
92   
93    if ($conf['pass_convert']($_POST['password']) != $current_password)
94    {
95      array_push($errors, l10n('Current password is wrong'));
96    }
97  }
98 
99  if (count($errors) == 0)
100  {
101    // mass_updates function
102    include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
103   
104    // update common user informations
105    $fields = array($conf['user_fields']['email']);
106
107    $data = array();
108    $data{$conf['user_fields']['id']} = $_POST['userid'];
109    $data{$conf['user_fields']['email']} = $_POST['mail_address'];
110
111    // password is updated only if filled
112    if (!empty($_POST['use_new_pwd']))
113    {
114      array_push($fields, $conf['user_fields']['password']);
115      // password is encrpyted with function $conf['pass_convert']
116      $data{$conf['user_fields']['password']} =
117        $conf['pass_convert']($_POST['use_new_pwd']);
118    }
119    mass_updates(USERS_TABLE,
120                 array('primary' => array($conf['user_fields']['id']),
121                       'update' => $fields),
122                 array($data));
123   
124    // update user "additional" informations (specific to PhpWebGallery)
125    $fields = array(
126      'nb_image_line', 'nb_line_page', 'language', 'maxwidth', 'maxheight',
127      'expand', 'show_nb_comments', 'recent_period', 'template'
128      );
129   
130    $data = array();
131    $data{'user_id'} = $_POST['userid'];
132   
133    foreach ($fields as $field)
134    {
135      if (isset($_POST[$field]))
136      {
137        $data{$field} = $_POST[$field];
138      }
139    }
140    mass_updates(USER_INFOS_TABLE,
141                 array('primary' => array('user_id'), 'update' => $fields),
142                 array($data));
143   
144    // redirection
145    $url = PHPWG_ROOT_PATH.'category.php?'.$_SERVER['QUERY_STRING'];
146    redirect($url);
147  }
148}
149// +-----------------------------------------------------------------------+
150// |                       page header and options                         |
151// +-----------------------------------------------------------------------+
152
153$title= $lang['customize_page_title'];
154$page['body_id'] = 'theProfilePage';
155include(PHPWG_ROOT_PATH.'include/page_header.php');
156
157$url_action = PHPWG_ROOT_PATH.'profile.php';
158
159//----------------------------------------------------- template initialization
160$template->set_filenames(array('profile_body'=>'profile.tpl'));
161
162$expand = ($userdata['expand'] == 'true') ? 'EXPAND_TREE_YES':'EXPAND_TREE_NO';
163 
164$nb_comments =
165($userdata['show_nb_comments'] == 'true') ? 'NB_COMMENTS_YES':'NB_COMMENTS_NO';
166 
167$template->assign_vars(
168  array(
169    'USERNAME'=>$userdata['username'],
170    'USERID'=>$userdata['id'],
171    'EMAIL'=>@$userdata['email'],
172    'NB_IMAGE_LINE'=>$userdata['nb_image_line'],
173    'NB_ROW_PAGE'=>$userdata['nb_line_page'],
174    'RECENT_PERIOD'=>$userdata['recent_period'],
175    'MAXWIDTH'=>@$userdata['maxwidth'],
176    'MAXHEIGHT'=>@$userdata['maxheight'],
177   
178    $expand=>'checked="checked"',
179    $nb_comments=>'checked="checked"',
180   
181    'L_TITLE' => $lang['customize_title'],
182    'L_REGISTRATION_INFO' => $lang['register_title'],
183    'L_PREFERENCES' => $lang['preferences'],
184    'L_USERNAME' => $lang['login'],
185    'L_EMAIL' => $lang['mail_address'],
186    'L_CURRENT_PASSWORD' => $lang['password'],
187    'L_CURRENT_PASSWORD_HINT' => $lang['password_hint'],
188    'L_NEW_PASSWORD' =>  $lang['new_password'],
189    'L_NEW_PASSWORD_HINT' => $lang['new_password_hint'],
190    'L_CONFIRM_PASSWORD' =>  $lang['reg_confirm'],
191    'L_CONFIRM_PASSWORD_HINT' => $lang['confirm_password_hint'],
192    'L_LANG_SELECT'=>$lang['language'],
193    'L_NB_IMAGE_LINE'=>$lang['nb_image_per_row'],
194    'L_NB_ROW_PAGE'=>$lang['nb_row_per_page'],
195    'L_STYLE_SELECT'=>$lang['theme'],
196    'L_RECENT_PERIOD'=>$lang['recent_period'],
197    'L_EXPAND_TREE'=>$lang['auto_expand'],
198    'L_NB_COMMENTS'=>$lang['show_nb_comments'],
199    'L_MAXWIDTH'=>$lang['maxwidth'],
200    'L_MAXHEIGHT'=>$lang['maxheight'],
201    'L_YES'=>$lang['yes'],
202    'L_NO'=>$lang['no'],
203    'L_SUBMIT'=>$lang['submit'],
204    'L_RESET'=>$lang['reset'],
205    'L_RETURN' =>  $lang['home'],
206    'L_RETURN_HINT' =>  $lang['home_hint'],
207
208    'U_RETURN' => PHPWG_ROOT_PATH.'category.php',
209   
210    'F_ACTION'=>$url_action,
211    ));
212
213$blockname = 'template_option';
214
215foreach (get_themes() as $pwg_template)
216{
217  if (isset($_POST['submit']))
218  {
219    $selected = $_POST['template']==$pwg_template ? 'selected="selected"' : '';
220  }
221  else if ($userdata['template'].'/'.$userdata['theme'] == $pwg_template)
222  {
223    $selected = 'selected="selected"';
224  }
225  else
226  {
227    $selected = '';
228  }
229 
230  $template->assign_block_vars(
231    $blockname,
232    array(
233      'VALUE'=> $pwg_template,
234      'CONTENT' => $pwg_template,
235      'SELECTED' => $selected
236      ));
237}
238
239$blockname = 'language_option';
240
241foreach (get_languages() as $language_code => $language_name)
242{
243  if (isset($_POST['submit']))
244  {
245    $selected = $_POST['language']==$language_code ? 'selected="selected"':'';
246  }
247  else if ($userdata['language'] == $language_code)
248  {
249    $selected = 'selected="selected"';
250  }
251  else
252  {
253    $selected = '';
254  }
255 
256  $template->assign_block_vars(
257    $blockname,
258    array(
259      'VALUE'=> $language_code,
260      'CONTENT' => $language_name,
261      'SELECTED' => $selected
262      ));
263}
264
265// +-----------------------------------------------------------------------+
266// |                             errors display                            |
267// +-----------------------------------------------------------------------+
268if (count($errors) != 0)
269{
270  $template->assign_block_vars('errors',array());
271  foreach ($errors as $error)
272  {
273    $template->assign_block_vars('errors.error', array('ERROR'=>$error));
274  }
275}
276// +-----------------------------------------------------------------------+
277// |                           html code display                           |
278// +-----------------------------------------------------------------------+
279$template->assign_block_vars('profile',array());
280$template->parse('profile_body');
281include(PHPWG_ROOT_PATH.'include/page_tail.php');
282?>
Note: See TracBrowser for help on using the repository browser.