source: trunk/profile.php @ 1661

Last change on this file since 1661 was 1620, checked in by rvelices, 18 years ago

some language cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.8 KB
RevLine 
[2]1<?php
[351]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 |
[351]6// +-----------------------------------------------------------------------+
[593]7// | branch        : BSF (Best So Far)
[351]8// | file          : $RCSfile$
9// | last update   : $Date: 2006-11-29 04:18:11 +0000 (Wed, 29 Nov 2006) $
10// | last modifier : $Author: rvelices $
11// | revision      : $Revision: 1620 $
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  |
[354]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.                                                                  |
[351]26// +-----------------------------------------------------------------------+
[2]27
28// customize appearance of the site for a user
[631]29// +-----------------------------------------------------------------------+
30// |                           initialization                              |
31// +-----------------------------------------------------------------------+
[808]32
33define('PHPWG_ROOT_PATH','./');
34include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
[1036]35
[1072]36// +-----------------------------------------------------------------------+
37// | Check Access and exit when user status is not ok                      |
38// +-----------------------------------------------------------------------+
39check_status(ACCESS_CLASSIC);
40
[1036]41if ($user['is_the_guest'] and !$guest_allowed)
42{
43  echo '<div style="text-align:center;">'.$lang['only_members'].'<br />';
44  echo '<a href="./identification.php">'.$lang['ident_title'].'</a></div>';
45  exit();
46}
47
[808]48$userdata = $user;
49
[2]50//------------------------------------------------------ update & customization
[26]51$errors = array();
[808]52if (isset($_POST['validate']))
[2]53{
[26]54  $int_pattern = '/^\d+$/';
[1043]55  if (empty($_POST['nb_image_line'])
56      or (!preg_match($int_pattern, $_POST['nb_image_line'])))
57  {
58    array_push($errors, $lang['nb_image_line_error']);
59  }
60
61  if (empty($_POST['nb_line_page'])
62      or (!preg_match($int_pattern, $_POST['nb_line_page'])))
63  {
64    array_push($errors, $lang['nb_line_page_error']);
65  }
[1620]66
[662]67  if ($_POST['maxwidth'] != ''
68      and (!preg_match($int_pattern, $_POST['maxwidth'])
69           or $_POST['maxwidth'] < 50))
[2]70  {
[662]71    array_push($errors, $lang['maxwidth_error']);
[2]72  }
[662]73  if ($_POST['maxheight']
74       and (!preg_match($int_pattern, $_POST['maxheight'])
75             or $_POST['maxheight'] < 50))
[2]76  {
[662]77    array_push($errors, $lang['maxheight_error']);
[2]78  }
[26]79  // periods must be integer values, they represents number of days
[452]80  if (!preg_match($int_pattern, $_POST['recent_period'])
81      or $_POST['recent_period'] <= 0)
[2]82  {
[662]83    array_push($errors, $lang['periods_error']);
[2]84  }
[662]85
[808]86  $mail_error = validate_mail_address($_POST['mail_address']);
87  if (!empty($mail_error))
[662]88  {
[808]89    array_push($errors, $mail_error);
[662]90  }
[1620]91
[808]92  if (!empty($_POST['use_new_pwd']))
[630]93  {
[808]94    // password must be the same as its confirmation
95    if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
[631]96    {
[808]97      array_push($errors,
98                 l10n('New password confirmation does not correspond'));
[662]99    }
[1620]100
[808]101    // changing password requires old password
102    $query = '
[902]103SELECT '.$conf['user_fields']['password'].' AS password
[662]104  FROM '.USERS_TABLE.'
[808]105  WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\'
[662]106;';
[808]107    list($current_password) = mysql_fetch_row(pwg_query($query));
[1620]108
[808]109    if ($conf['pass_convert']($_POST['password']) != $current_password)
[631]110    {
[808]111      array_push($errors, l10n('Current password is wrong'));
[631]112    }
113  }
[1620]114
[662]115  if (count($errors) == 0)
[2]116  {
[808]117    // mass_updates function
118    include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
[1620]119
[808]120    // update common user informations
121    $fields = array($conf['user_fields']['email']);
[2]122
[808]123    $data = array();
124    $data{$conf['user_fields']['id']} = $_POST['userid'];
125    $data{$conf['user_fields']['email']} = $_POST['mail_address'];
126
127    // password is updated only if filled
[662]128    if (!empty($_POST['use_new_pwd']))
[2]129    {
[808]130      array_push($fields, $conf['user_fields']['password']);
131      // password is encrpyted with function $conf['pass_convert']
132      $data{$conf['user_fields']['password']} =
133        $conf['pass_convert']($_POST['use_new_pwd']);
[2]134    }
[808]135    mass_updates(USERS_TABLE,
136                 array('primary' => array($conf['user_fields']['id']),
137                       'update' => $fields),
138                 array($data));
[1620]139
[808]140    // update user "additional" informations (specific to PhpWebGallery)
141    $fields = array(
142      'nb_image_line', 'nb_line_page', 'language', 'maxwidth', 'maxheight',
143      'expand', 'show_nb_comments', 'recent_period', 'template'
144      );
[1620]145
[808]146    $data = array();
[1043]147    $data['user_id'] = $_POST['userid'];
[1620]148
[808]149    foreach ($fields as $field)
[631]150    {
[808]151      if (isset($_POST[$field]))
[772]152      {
[1043]153        $data[$field] = $_POST[$field];
[772]154      }
[631]155    }
[808]156    mass_updates(USER_INFOS_TABLE,
157                 array('primary' => array('user_id'), 'update' => $fields),
158                 array($data));
[1620]159
[808]160    // redirection
[1082]161    redirect(make_index_url());
[2]162  }
163}
[631]164// +-----------------------------------------------------------------------+
165// |                       page header and options                         |
166// +-----------------------------------------------------------------------+
[850]167
[808]168$title= $lang['customize_page_title'];
[850]169$page['body_id'] = 'theProfilePage';
[808]170include(PHPWG_ROOT_PATH.'include/page_header.php');
171
172$url_action = PHPWG_ROOT_PATH.'profile.php';
[850]173
[2]174//----------------------------------------------------- template initialization
[662]175$template->set_filenames(array('profile_body'=>'profile.tpl'));
[393]176
[768]177$expand = ($userdata['expand'] == 'true') ? 'EXPAND_TREE_YES':'EXPAND_TREE_NO';
[1620]178
[768]179$nb_comments =
180($userdata['show_nb_comments'] == 'true') ? 'NB_COMMENTS_YES':'NB_COMMENTS_NO';
[1620]181
[768]182$template->assign_vars(
183  array(
184    'USERNAME'=>$userdata['username'],
185    'USERID'=>$userdata['id'],
[808]186    'EMAIL'=>@$userdata['email'],
[768]187    'NB_IMAGE_LINE'=>$userdata['nb_image_line'],
188    'NB_ROW_PAGE'=>$userdata['nb_line_page'],
189    'RECENT_PERIOD'=>$userdata['recent_period'],
190    'MAXWIDTH'=>@$userdata['maxwidth'],
191    'MAXHEIGHT'=>@$userdata['maxheight'],
[1620]192
[768]193    $expand=>'checked="checked"',
194    $nb_comments=>'checked="checked"',
[808]195
[1082]196    'U_RETURN' => make_index_url(),
[1620]197
[1004]198    'F_ACTION'=>$url_action,
[768]199    ));
[854]200
201$blockname = 'template_option';
202
[1050]203foreach (get_pwg_themes() as $pwg_template)
[854]204{
205  if (isset($_POST['submit']))
206  {
207    $selected = $_POST['template']==$pwg_template ? 'selected="selected"' : '';
208  }
[1020]209  else if ($userdata['template'].'/'.$userdata['theme'] == $pwg_template)
[854]210  {
211    $selected = 'selected="selected"';
212  }
213  else
214  {
215    $selected = '';
216  }
[1620]217
[854]218  $template->assign_block_vars(
219    $blockname,
220    array(
221      'VALUE'=> $pwg_template,
222      'CONTENT' => $pwg_template,
223      'SELECTED' => $selected
224      ));
225}
226
227$blockname = 'language_option';
228
229foreach (get_languages() as $language_code => $language_name)
230{
231  if (isset($_POST['submit']))
232  {
233    $selected = $_POST['language']==$language_code ? 'selected="selected"':'';
234  }
235  else if ($userdata['language'] == $language_code)
236  {
237    $selected = 'selected="selected"';
238  }
239  else
240  {
241    $selected = '';
242  }
[1620]243
[854]244  $template->assign_block_vars(
245    $blockname,
246    array(
247      'VALUE'=> $language_code,
248      'CONTENT' => $language_name,
249      'SELECTED' => $selected
250      ));
251}
252
[631]253// +-----------------------------------------------------------------------+
[741]254// |                             errors display                            |
255// +-----------------------------------------------------------------------+
256if (count($errors) != 0)
257{
258  $template->assign_block_vars('errors',array());
259  foreach ($errors as $error)
260  {
261    $template->assign_block_vars('errors.error', array('ERROR'=>$error));
262  }
263}
264// +-----------------------------------------------------------------------+
[631]265// |                           html code display                           |
266// +-----------------------------------------------------------------------+
[808]267$template->assign_block_vars('profile',array());
268$template->parse('profile_body');
269include(PHPWG_ROOT_PATH.'include/page_tail.php');
[362]270?>
Note: See TracBrowser for help on using the repository browser.