source: trunk/profile.php @ 10824

Last change on this file since 10824 was 10824, checked in by mistic100, 13 years ago

restore HOME links, change parameter name for remove menu on certain page

  • Property svn:eol-style set to LF
File size: 10.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2011 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24// customize appearance of the site for a user
25// +-----------------------------------------------------------------------+
26// |                           initialization                              |
27// +-----------------------------------------------------------------------+
28
29if (!defined('PHPWG_ROOT_PATH'))
30{//direct script access
31  define('PHPWG_ROOT_PATH','./');
32  include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
33
34  // +-----------------------------------------------------------------------+
35  // | Check Access and exit when user status is not ok                      |
36  // +-----------------------------------------------------------------------+
37  check_status(ACCESS_CLASSIC);
38
39  if (!empty($_POST))
40  {
41    check_pwg_token();
42  }
43
44  $userdata = $user;
45
46  trigger_action('loc_begin_profile');
47
48// Reset to default (Guest) custom settings
49  if (isset($_POST['reset_to_default']))
50  {
51    $fields = array(
52      'nb_image_page', 'maxwidth', 'maxheight', 'expand',
53      'show_nb_comments', 'show_nb_hits', 'recent_period', 'show_nb_hits'
54      );
55
56    // Get the Guest custom settings
57    $query = '
58SELECT '.implode(',', $fields).'
59  FROM '.USER_INFOS_TABLE.'
60  WHERE user_id = '.$conf['default_user_id'].'
61;';
62    $result = pwg_query($query);
63    $default_user = pwg_db_fetch_assoc($result);
64    $userdata = array_merge($userdata, $default_user);
65  }
66
67  save_profile_from_post($userdata, $errors);
68
69  $title= l10n('Your Gallery Customization');
70  $page['body_id'] = 'theProfilePage';
71  $template->set_filename('profile', 'profile.tpl');
72
73  load_profile_in_template(
74    get_root_url().'profile.php', // action
75    make_index_url(), // for redirect
76    $userdata );
77
78  // +-----------------------------------------------------------------------+
79  // |                             errors display                            |
80  // +-----------------------------------------------------------------------+
81  if (count($errors) != 0)
82  {
83    $template->assign('errors', $errors);
84  }
85 
86  // include menubar
87  $themeconf = $template->get_template_vars('themeconf');
88  if (!isset($themeconf['hide_menu_on']) OR !in_array('theProfilePage', $themeconf['hide_menu_on']))
89  {
90    include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
91  }
92 
93  include(PHPWG_ROOT_PATH.'include/page_header.php');
94  trigger_action('loc_end_profile');
95  $template->pparse('profile');
96  include(PHPWG_ROOT_PATH.'include/page_tail.php');
97}
98
99//------------------------------------------------------ update & customization
100function save_profile_from_post($userdata, &$errors)
101{
102  global $conf;
103  $errors = array();
104
105  if (!isset($_POST['validate']))
106  {
107    return false;
108  }
109
110  $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id']));
111  if ($special_user)
112  {
113    unset(
114      $_POST['mail_address'],
115      $_POST['password'],
116      $_POST['use_new_pwd'],
117      $_POST['passwordConf'],
118      $_POST['theme'],
119      $_POST['language']
120      );
121    $_POST['theme'] = get_default_theme();
122    $_POST['language'] = get_default_language();
123  }
124
125  if ($conf['allow_user_customization'] or defined('IN_ADMIN'))
126  {
127    $int_pattern = '/^\d+$/';
128    if (empty($_POST['nb_image_page'])
129        or (!preg_match($int_pattern, $_POST['nb_image_page'])))
130    {
131      $errors[] = l10n('The number of photos per page must be a not null scalar');
132    }
133
134    if ($_POST['maxwidth'] != ''
135        and (!preg_match($int_pattern, $_POST['maxwidth'])
136             or $_POST['maxwidth'] < 50))
137    {
138      $errors[] = l10n('Maximum width must be a number superior to 50');
139    }
140    if ($_POST['maxheight']
141         and (!preg_match($int_pattern, $_POST['maxheight'])
142               or $_POST['maxheight'] < 50))
143    {
144      $errors[] = l10n('Maximum height must be a number superior to 50');
145    }
146    // periods must be integer values, they represents number of days
147    if (!preg_match($int_pattern, $_POST['recent_period'])
148        or $_POST['recent_period'] <= 0)
149    {
150      $errors[] = l10n('Recent period must be a positive integer value') ;
151    }
152  }
153
154  if (isset($_POST['mail_address']))
155  {
156    // if $_POST and $userdata have are same email
157    // validate_mail_address allows, however, to check email
158    $mail_error = validate_mail_address($userdata['id'], $_POST['mail_address']);
159    if (!empty($mail_error))
160    {
161      $errors[] = $mail_error;
162    }
163  }
164
165  if (!empty($_POST['use_new_pwd']))
166  {
167    // password must be the same as its confirmation
168    if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
169    {
170      $errors[] = l10n('New password confirmation does not correspond');
171    }
172
173    if ( !defined('IN_ADMIN') )
174    {// changing password requires old password
175      $query = '
176  SELECT '.$conf['user_fields']['password'].' AS password
177    FROM '.USERS_TABLE.'
178    WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\'
179  ;';
180      list($current_password) = pwg_db_fetch_row(pwg_query($query));
181
182      if ($conf['pass_convert']($_POST['password']) != $current_password)
183      {
184        $errors[] = l10n('Current password is wrong');
185      }
186    }
187  }
188
189  if (count($errors) == 0)
190  {
191    // mass_updates function
192    include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
193
194    if (isset($_POST['mail_address']))
195    {
196      // update common user informations
197      $fields = array($conf['user_fields']['email']);
198
199      $data = array();
200      $data{$conf['user_fields']['id']} = $userdata['id'];
201      $data{$conf['user_fields']['email']} = $_POST['mail_address'];
202
203      // password is updated only if filled
204      if (!empty($_POST['use_new_pwd']))
205      {
206        array_push($fields, $conf['user_fields']['password']);
207        // password is encrpyted with function $conf['pass_convert']
208        $data{$conf['user_fields']['password']} =
209          $conf['pass_convert']($_POST['use_new_pwd']);
210      }
211      mass_updates(USERS_TABLE,
212                   array('primary' => array($conf['user_fields']['id']),
213                         'update' => $fields),
214                   array($data));
215    }
216
217    if ($conf['allow_user_customization'] or defined('IN_ADMIN'))
218    {
219      // update user "additional" informations (specific to Piwigo)
220      $fields = array(
221        'nb_image_page', 'language', 'maxwidth', 'maxheight',
222        'expand', 'show_nb_comments', 'show_nb_hits', 'recent_period', 'theme'
223        );
224
225      $data = array();
226      $data['user_id'] = $userdata['id'];
227
228      foreach ($fields as $field)
229      {
230        if (isset($_POST[$field]))
231        {
232          $data[$field] = $_POST[$field];
233        }
234      }
235      mass_updates(USER_INFOS_TABLE,
236                   array('primary' => array('user_id'), 'update' => $fields),
237                   array($data));
238    }
239    trigger_action( 'save_profile_from_post', $userdata['id'] );
240
241    if (!empty($_POST['redirect']))
242    {
243      redirect($_POST['redirect']);
244    }
245  }
246  return true;
247}
248
249
250function load_profile_in_template($url_action, $url_redirect, $userdata)
251{
252  global $template, $conf;
253
254  $template->set_filename('profile_content', 'profile_content.tpl');
255
256  $template->assign('radio_options',
257    array(
258      'true' => l10n('Yes'),
259      'false' => l10n('No')));
260
261  $template->assign(
262    array(
263      'USERNAME'=>stripslashes($userdata['username']),
264      'EMAIL'=>get_email_address_as_display_text(@$userdata['email']),
265      'ALLOW_USER_CUSTOMIZATION'=>$conf['allow_user_customization'],
266      'NB_IMAGE_PAGE'=>$userdata['nb_image_page'],
267      'RECENT_PERIOD'=>$userdata['recent_period'],
268      'MAXWIDTH'=>@$userdata['maxwidth'],
269      'MAXHEIGHT'=>@$userdata['maxheight'],
270      'EXPAND' =>$userdata['expand'] ? 'true' : 'false',
271      'NB_COMMENTS'=>$userdata['show_nb_comments'] ? 'true' : 'false',
272      'NB_HITS'=>$userdata['show_nb_hits'] ? 'true' : 'false',
273      'REDIRECT' => $url_redirect,
274      'F_ACTION'=>$url_action,
275      ));
276
277  $template->assign('template_selection', $userdata['theme']);
278  $template->assign('template_options', get_pwg_themes());
279
280  foreach (get_languages() as $language_code => $language_name)
281  {
282    if (isset($_POST['submit']) or $userdata['language'] == $language_code)
283    {
284      $template->assign('language_selection', $language_code);
285    }
286    $language_options[$language_code] = $language_name;
287  }
288
289  $template->assign('language_options', $language_options);
290
291  $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id']));
292  $template->assign('SPECIAL_USER', $special_user);
293  $template->assign('IN_ADMIN', defined('IN_ADMIN'));
294
295  // allow plugins to add their own form data to content
296  trigger_action( 'load_profile_in_template', $userdata );
297
298  $template->assign('PWG_TOKEN', get_pwg_token());
299  $template->assign_var_from_handle('PROFILE_CONTENT', 'profile_content');
300}
301?>
Note: See TracBrowser for help on using the repository browser.