source: trunk/profile.php @ 12860

Last change on this file since 12860 was 12764, checked in by mistic100, 12 years ago

feature:2538 Make a unified messages management
use only $pageinfos and $pageerrors vars and and necessary template to all main pages

  • Property svn:eol-style set to LF
File size: 10.1 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, $page['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  // include menubar
80  $themeconf = $template->get_template_vars('themeconf');
81  if (!isset($themeconf['hide_menu_on']) OR !in_array('theProfilePage', $themeconf['hide_menu_on']))
82  {
83    include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
84  }
85 
86  include(PHPWG_ROOT_PATH.'include/page_header.php');
87  trigger_action('loc_end_profile');
88  $template->pparse('profile');
89  include(PHPWG_ROOT_PATH.'include/page_tail.php');
90}
91
92//------------------------------------------------------ update & customization
93function save_profile_from_post($userdata, &$errors)
94{
95  global $conf;
96  $errors = array();
97
98  if (!isset($_POST['validate']))
99  {
100    return false;
101  }
102
103  $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id']));
104  if ($special_user)
105  {
106    unset(
107      $_POST['mail_address'],
108      $_POST['password'],
109      $_POST['use_new_pwd'],
110      $_POST['passwordConf'],
111      $_POST['theme'],
112      $_POST['language']
113      );
114    $_POST['theme'] = get_default_theme();
115    $_POST['language'] = get_default_language();
116  }
117
118  if ($conf['allow_user_customization'] or defined('IN_ADMIN'))
119  {
120    $int_pattern = '/^\d+$/';
121    if (empty($_POST['nb_image_page'])
122        or (!preg_match($int_pattern, $_POST['nb_image_page'])))
123    {
124      $errors[] = l10n('The number of photos per page must be a not null scalar');
125    }
126
127    if ($_POST['maxwidth'] != ''
128        and (!preg_match($int_pattern, $_POST['maxwidth'])
129             or $_POST['maxwidth'] < 50))
130    {
131      $errors[] = l10n('Maximum width must be a number superior to 50');
132    }
133    if ($_POST['maxheight']
134         and (!preg_match($int_pattern, $_POST['maxheight'])
135               or $_POST['maxheight'] < 50))
136    {
137      $errors[] = l10n('Maximum height must be a number superior to 50');
138    }
139    // periods must be integer values, they represents number of days
140    if (!preg_match($int_pattern, $_POST['recent_period'])
141        or $_POST['recent_period'] <= 0)
142    {
143      $errors[] = l10n('Recent period must be a positive integer value') ;
144    }
145
146    if (!in_array($_POST['language'], array_keys(get_languages())))
147    {
148      die('Hacking attempt, incorrect language value');
149    }
150
151    if (!in_array($_POST['theme'], array_keys(get_pwg_themes())))
152    {
153      die('Hacking attempt, incorrect theme value');
154    }
155  }
156
157  if (isset($_POST['mail_address']))
158  {
159    // if $_POST and $userdata have are same email
160    // validate_mail_address allows, however, to check email
161    $mail_error = validate_mail_address($userdata['id'], $_POST['mail_address']);
162    if (!empty($mail_error))
163    {
164      $errors[] = $mail_error;
165    }
166  }
167
168  if (!empty($_POST['use_new_pwd']))
169  {
170    // password must be the same as its confirmation
171    if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
172    {
173      $errors[] = l10n('The passwords do not match');
174    }
175
176    if ( !defined('IN_ADMIN') )
177    {// changing password requires old password
178      $query = '
179  SELECT '.$conf['user_fields']['password'].' AS password
180    FROM '.USERS_TABLE.'
181    WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\'
182  ;';
183      list($current_password) = pwg_db_fetch_row(pwg_query($query));
184
185      if ($conf['pass_convert']($_POST['password']) != $current_password)
186      {
187        $errors[] = l10n('Current password is wrong');
188      }
189    }
190  }
191
192  if (count($errors) == 0)
193  {
194    // mass_updates function
195    include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
196
197    if (isset($_POST['mail_address']))
198    {
199      // update common user informations
200      $fields = array($conf['user_fields']['email']);
201
202      $data = array();
203      $data{$conf['user_fields']['id']} = $userdata['id'];
204      $data{$conf['user_fields']['email']} = $_POST['mail_address'];
205
206      // password is updated only if filled
207      if (!empty($_POST['use_new_pwd']))
208      {
209        array_push($fields, $conf['user_fields']['password']);
210        // password is encrpyted with function $conf['pass_convert']
211        $data{$conf['user_fields']['password']} =
212          $conf['pass_convert']($_POST['use_new_pwd']);
213      }
214      mass_updates(USERS_TABLE,
215                   array('primary' => array($conf['user_fields']['id']),
216                         'update' => $fields),
217                   array($data));
218    }
219
220    if ($conf['allow_user_customization'] or defined('IN_ADMIN'))
221    {
222      // update user "additional" informations (specific to Piwigo)
223      $fields = array(
224        'nb_image_page', 'language', 'maxwidth', 'maxheight',
225        'expand', 'show_nb_comments', 'show_nb_hits', 'recent_period', 'theme'
226        );
227
228      $data = array();
229      $data['user_id'] = $userdata['id'];
230
231      foreach ($fields as $field)
232      {
233        if (isset($_POST[$field]))
234        {
235          $data[$field] = $_POST[$field];
236        }
237      }
238      mass_updates(USER_INFOS_TABLE,
239                   array('primary' => array('user_id'), 'update' => $fields),
240                   array($data));
241    }
242    trigger_action( 'save_profile_from_post', $userdata['id'] );
243
244    if (!empty($_POST['redirect']))
245    {
246      redirect($_POST['redirect']);
247    }
248  }
249  return true;
250}
251
252
253function load_profile_in_template($url_action, $url_redirect, $userdata)
254{
255  global $template, $conf;
256
257  $template->set_filename('profile_content', 'profile_content.tpl');
258
259  $template->assign('radio_options',
260    array(
261      'true' => l10n('Yes'),
262      'false' => l10n('No')));
263
264  $template->assign(
265    array(
266      'USERNAME'=>stripslashes($userdata['username']),
267      'EMAIL'=>get_email_address_as_display_text(@$userdata['email']),
268      'ALLOW_USER_CUSTOMIZATION'=>$conf['allow_user_customization'],
269      'NB_IMAGE_PAGE'=>$userdata['nb_image_page'],
270      'RECENT_PERIOD'=>$userdata['recent_period'],
271      'MAXWIDTH'=>@$userdata['maxwidth'],
272      'MAXHEIGHT'=>@$userdata['maxheight'],
273      'EXPAND' =>$userdata['expand'] ? 'true' : 'false',
274      'NB_COMMENTS'=>$userdata['show_nb_comments'] ? 'true' : 'false',
275      'NB_HITS'=>$userdata['show_nb_hits'] ? 'true' : 'false',
276      'REDIRECT' => $url_redirect,
277      'F_ACTION'=>$url_action,
278      ));
279
280  $template->assign('template_selection', $userdata['theme']);
281  $template->assign('template_options', get_pwg_themes());
282
283  foreach (get_languages() as $language_code => $language_name)
284  {
285    if (isset($_POST['submit']) or $userdata['language'] == $language_code)
286    {
287      $template->assign('language_selection', $language_code);
288    }
289    $language_options[$language_code] = $language_name;
290  }
291
292  $template->assign('language_options', $language_options);
293
294  $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id']));
295  $template->assign('SPECIAL_USER', $special_user);
296  $template->assign('IN_ADMIN', defined('IN_ADMIN'));
297
298  // allow plugins to add their own form data to content
299  trigger_action( 'load_profile_in_template', $userdata );
300
301  $template->assign('PWG_TOKEN', get_pwg_token());
302  $template->assign_var_from_handle('PROFILE_CONTENT', 'profile_content');
303}
304?>
Note: See TracBrowser for help on using the repository browser.