source: trunk/profile.php @ 1620

Last change on this file since 1620 was 1620, checked in by rvelices, 17 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
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-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  |
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
36// +-----------------------------------------------------------------------+
37// | Check Access and exit when user status is not ok                      |
38// +-----------------------------------------------------------------------+
39check_status(ACCESS_CLASSIC);
40
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
48$userdata = $user;
49
50//------------------------------------------------------ update & customization
51$errors = array();
52if (isset($_POST['validate']))
53{
54  $int_pattern = '/^\d+$/';
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  }
66
67  if ($_POST['maxwidth'] != ''
68      and (!preg_match($int_pattern, $_POST['maxwidth'])
69           or $_POST['maxwidth'] < 50))
70  {
71    array_push($errors, $lang['maxwidth_error']);
72  }
73  if ($_POST['maxheight']
74       and (!preg_match($int_pattern, $_POST['maxheight'])
75             or $_POST['maxheight'] < 50))
76  {
77    array_push($errors, $lang['maxheight_error']);
78  }
79  // periods must be integer values, they represents number of days
80  if (!preg_match($int_pattern, $_POST['recent_period'])
81      or $_POST['recent_period'] <= 0)
82  {
83    array_push($errors, $lang['periods_error']);
84  }
85
86  $mail_error = validate_mail_address($_POST['mail_address']);
87  if (!empty($mail_error))
88  {
89    array_push($errors, $mail_error);
90  }
91
92  if (!empty($_POST['use_new_pwd']))
93  {
94    // password must be the same as its confirmation
95    if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
96    {
97      array_push($errors,
98                 l10n('New password confirmation does not correspond'));
99    }
100
101    // changing password requires old password
102    $query = '
103SELECT '.$conf['user_fields']['password'].' AS password
104  FROM '.USERS_TABLE.'
105  WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\'
106;';
107    list($current_password) = mysql_fetch_row(pwg_query($query));
108
109    if ($conf['pass_convert']($_POST['password']) != $current_password)
110    {
111      array_push($errors, l10n('Current password is wrong'));
112    }
113  }
114
115  if (count($errors) == 0)
116  {
117    // mass_updates function
118    include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
119
120    // update common user informations
121    $fields = array($conf['user_fields']['email']);
122
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
128    if (!empty($_POST['use_new_pwd']))
129    {
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']);
134    }
135    mass_updates(USERS_TABLE,
136                 array('primary' => array($conf['user_fields']['id']),
137                       'update' => $fields),
138                 array($data));
139
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      );
145
146    $data = array();
147    $data['user_id'] = $_POST['userid'];
148
149    foreach ($fields as $field)
150    {
151      if (isset($_POST[$field]))
152      {
153        $data[$field] = $_POST[$field];
154      }
155    }
156    mass_updates(USER_INFOS_TABLE,
157                 array('primary' => array('user_id'), 'update' => $fields),
158                 array($data));
159
160    // redirection
161    redirect(make_index_url());
162  }
163}
164// +-----------------------------------------------------------------------+
165// |                       page header and options                         |
166// +-----------------------------------------------------------------------+
167
168$title= $lang['customize_page_title'];
169$page['body_id'] = 'theProfilePage';
170include(PHPWG_ROOT_PATH.'include/page_header.php');
171
172$url_action = PHPWG_ROOT_PATH.'profile.php';
173
174//----------------------------------------------------- template initialization
175$template->set_filenames(array('profile_body'=>'profile.tpl'));
176
177$expand = ($userdata['expand'] == 'true') ? 'EXPAND_TREE_YES':'EXPAND_TREE_NO';
178
179$nb_comments =
180($userdata['show_nb_comments'] == 'true') ? 'NB_COMMENTS_YES':'NB_COMMENTS_NO';
181
182$template->assign_vars(
183  array(
184    'USERNAME'=>$userdata['username'],
185    'USERID'=>$userdata['id'],
186    'EMAIL'=>@$userdata['email'],
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'],
192
193    $expand=>'checked="checked"',
194    $nb_comments=>'checked="checked"',
195
196    'U_RETURN' => make_index_url(),
197
198    'F_ACTION'=>$url_action,
199    ));
200
201$blockname = 'template_option';
202
203foreach (get_pwg_themes() as $pwg_template)
204{
205  if (isset($_POST['submit']))
206  {
207    $selected = $_POST['template']==$pwg_template ? 'selected="selected"' : '';
208  }
209  else if ($userdata['template'].'/'.$userdata['theme'] == $pwg_template)
210  {
211    $selected = 'selected="selected"';
212  }
213  else
214  {
215    $selected = '';
216  }
217
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  }
243
244  $template->assign_block_vars(
245    $blockname,
246    array(
247      'VALUE'=> $language_code,
248      'CONTENT' => $language_name,
249      'SELECTED' => $selected
250      ));
251}
252
253// +-----------------------------------------------------------------------+
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// +-----------------------------------------------------------------------+
265// |                           html code display                           |
266// +-----------------------------------------------------------------------+
267$template->assign_block_vars('profile',array());
268$template->parse('profile_body');
269include(PHPWG_ROOT_PATH.'include/page_tail.php');
270?>
Note: See TracBrowser for help on using the repository browser.