[2] | 1 | <?php |
---|
[351] | 2 | // +-----------------------------------------------------------------------+ |
---|
[2297] | 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
[3046] | 5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
[2297] | 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 | // +-----------------------------------------------------------------------+ |
---|
[2] | 23 | |
---|
| 24 | // customize appearance of the site for a user |
---|
[631] | 25 | // +-----------------------------------------------------------------------+ |
---|
| 26 | // | initialization | |
---|
| 27 | // +-----------------------------------------------------------------------+ |
---|
[808] | 28 | |
---|
[1753] | 29 | if (!defined('PHPWG_ROOT_PATH')) |
---|
| 30 | {//direct script access |
---|
| 31 | define('PHPWG_ROOT_PATH','./'); |
---|
| 32 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
[1036] | 33 | |
---|
[1753] | 34 | // +-----------------------------------------------------------------------+ |
---|
| 35 | // | Check Access and exit when user status is not ok | |
---|
| 36 | // +-----------------------------------------------------------------------+ |
---|
| 37 | check_status(ACCESS_CLASSIC); |
---|
[1072] | 38 | |
---|
[1753] | 39 | $userdata = $user; |
---|
[808] | 40 | |
---|
[2237] | 41 | trigger_action('loc_begin_profile'); |
---|
| 42 | |
---|
[3996] | 43 | // Reset to default (Guest) custom settings |
---|
| 44 | if (isset($_POST['reset_to_default'])) |
---|
| 45 | { |
---|
[4004] | 46 | $fields = array( |
---|
| 47 | 'nb_image_line', 'nb_line_page', 'maxwidth', 'maxheight', 'expand', |
---|
| 48 | 'show_nb_comments', 'show_nb_hits', 'recent_period', 'show_nb_hits' |
---|
| 49 | ); |
---|
| 50 | |
---|
[3996] | 51 | // Get the Guest custom settings |
---|
[4004] | 52 | $query = ' |
---|
| 53 | SELECT '.implode(',', $fields).' |
---|
| 54 | FROM '.USER_INFOS_TABLE.' |
---|
| 55 | WHERE user_id = '.$conf['default_user_id'].' |
---|
| 56 | ;'; |
---|
| 57 | $result = pwg_query($query); |
---|
| 58 | $default_user = mysql_fetch_assoc($result); |
---|
| 59 | $userdata = array_merge($userdata, $default_user); |
---|
| 60 | } |
---|
| 61 | |
---|
[1753] | 62 | save_profile_from_post($userdata, $errors); |
---|
| 63 | |
---|
[2014] | 64 | $title= l10n('customize_page_title'); |
---|
[1753] | 65 | $page['body_id'] = 'theProfilePage'; |
---|
| 66 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
| 67 | |
---|
| 68 | load_profile_in_template( |
---|
| 69 | get_root_url().'profile.php', // action |
---|
| 70 | make_index_url(), // for redirect |
---|
| 71 | $userdata ); |
---|
| 72 | |
---|
| 73 | // +-----------------------------------------------------------------------+ |
---|
| 74 | // | errors display | |
---|
| 75 | // +-----------------------------------------------------------------------+ |
---|
| 76 | if (count($errors) != 0) |
---|
| 77 | { |
---|
[2246] | 78 | $template->assign('errors', $errors); |
---|
[1753] | 79 | } |
---|
| 80 | $template->set_filename('profile', 'profile.tpl'); |
---|
[2237] | 81 | trigger_action('loc_end_profile'); |
---|
[1753] | 82 | $template->parse('profile'); |
---|
| 83 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
| 84 | } |
---|
| 85 | |
---|
[2] | 86 | //------------------------------------------------------ update & customization |
---|
[2268] | 87 | function save_profile_from_post($userdata, &$errors) |
---|
[2] | 88 | { |
---|
[1753] | 89 | global $conf; |
---|
| 90 | $errors = array(); |
---|
[2268] | 91 | |
---|
[1753] | 92 | if (!isset($_POST['validate'])) |
---|
| 93 | { |
---|
[1926] | 94 | return false; |
---|
[1753] | 95 | } |
---|
| 96 | |
---|
[2268] | 97 | $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id'])); |
---|
| 98 | if ($special_user) |
---|
| 99 | { |
---|
| 100 | unset($_POST['mail_address'], |
---|
| 101 | $_POST['password'], |
---|
| 102 | $_POST['use_new_pwd'], |
---|
| 103 | $_POST['passwordConf'] |
---|
| 104 | ); |
---|
| 105 | } |
---|
| 106 | |
---|
[26] | 107 | $int_pattern = '/^\d+$/'; |
---|
[1043] | 108 | if (empty($_POST['nb_image_line']) |
---|
| 109 | or (!preg_match($int_pattern, $_POST['nb_image_line']))) |
---|
| 110 | { |
---|
[1753] | 111 | $errors[] = l10n('nb_image_line_error'); |
---|
[1043] | 112 | } |
---|
| 113 | |
---|
| 114 | if (empty($_POST['nb_line_page']) |
---|
| 115 | or (!preg_match($int_pattern, $_POST['nb_line_page']))) |
---|
| 116 | { |
---|
[1753] | 117 | $errors[] = l10n('nb_line_page_error'); |
---|
[1043] | 118 | } |
---|
[1620] | 119 | |
---|
[662] | 120 | if ($_POST['maxwidth'] != '' |
---|
| 121 | and (!preg_match($int_pattern, $_POST['maxwidth']) |
---|
| 122 | or $_POST['maxwidth'] < 50)) |
---|
[2] | 123 | { |
---|
[1753] | 124 | $errors[] = l10n('maxwidth_error'); |
---|
[2] | 125 | } |
---|
[662] | 126 | if ($_POST['maxheight'] |
---|
| 127 | and (!preg_match($int_pattern, $_POST['maxheight']) |
---|
| 128 | or $_POST['maxheight'] < 50)) |
---|
[2] | 129 | { |
---|
[1753] | 130 | $errors[] = l10n('maxheight_error'); |
---|
[2] | 131 | } |
---|
[26] | 132 | // periods must be integer values, they represents number of days |
---|
[452] | 133 | if (!preg_match($int_pattern, $_POST['recent_period']) |
---|
| 134 | or $_POST['recent_period'] <= 0) |
---|
[2] | 135 | { |
---|
[1753] | 136 | $errors[] = l10n('periods_error') ; |
---|
[2] | 137 | } |
---|
[662] | 138 | |
---|
[1926] | 139 | if (isset($_POST['mail_address'])) |
---|
[662] | 140 | { |
---|
[2124] | 141 | // if $_POST and $userdata have are same email |
---|
| 142 | // validate_mail_address allows, however, to check email |
---|
| 143 | $mail_error = validate_mail_address($userdata['id'], $_POST['mail_address']); |
---|
[1926] | 144 | if (!empty($mail_error)) |
---|
| 145 | { |
---|
| 146 | $errors[] = $mail_error; |
---|
| 147 | } |
---|
[662] | 148 | } |
---|
[1620] | 149 | |
---|
[808] | 150 | if (!empty($_POST['use_new_pwd'])) |
---|
[630] | 151 | { |
---|
[808] | 152 | // password must be the same as its confirmation |
---|
| 153 | if ($_POST['use_new_pwd'] != $_POST['passwordConf']) |
---|
[631] | 154 | { |
---|
[1753] | 155 | $errors[] = l10n('New password confirmation does not correspond'); |
---|
[662] | 156 | } |
---|
[1620] | 157 | |
---|
[1753] | 158 | if ( !defined('IN_ADMIN') ) |
---|
| 159 | {// changing password requires old password |
---|
| 160 | $query = ' |
---|
| 161 | SELECT '.$conf['user_fields']['password'].' AS password |
---|
| 162 | FROM '.USERS_TABLE.' |
---|
| 163 | WHERE '.$conf['user_fields']['id'].' = \''.$userdata['id'].'\' |
---|
| 164 | ;'; |
---|
| 165 | list($current_password) = mysql_fetch_row(pwg_query($query)); |
---|
| 166 | |
---|
| 167 | if ($conf['pass_convert']($_POST['password']) != $current_password) |
---|
| 168 | { |
---|
| 169 | $errors[] = l10n('Current password is wrong'); |
---|
| 170 | } |
---|
[631] | 171 | } |
---|
| 172 | } |
---|
[1620] | 173 | |
---|
[662] | 174 | if (count($errors) == 0) |
---|
[2] | 175 | { |
---|
[808] | 176 | // mass_updates function |
---|
| 177 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
[1620] | 178 | |
---|
[1926] | 179 | if (isset($_POST['mail_address'])) |
---|
| 180 | { |
---|
| 181 | // update common user informations |
---|
| 182 | $fields = array($conf['user_fields']['email']); |
---|
[2] | 183 | |
---|
[1926] | 184 | $data = array(); |
---|
[2268] | 185 | $data{$conf['user_fields']['id']} = $userdata['id']; |
---|
[1926] | 186 | $data{$conf['user_fields']['email']} = $_POST['mail_address']; |
---|
[808] | 187 | |
---|
[1926] | 188 | // password is updated only if filled |
---|
| 189 | if (!empty($_POST['use_new_pwd'])) |
---|
| 190 | { |
---|
| 191 | array_push($fields, $conf['user_fields']['password']); |
---|
| 192 | // password is encrpyted with function $conf['pass_convert'] |
---|
| 193 | $data{$conf['user_fields']['password']} = |
---|
| 194 | $conf['pass_convert']($_POST['use_new_pwd']); |
---|
| 195 | } |
---|
| 196 | mass_updates(USERS_TABLE, |
---|
| 197 | array('primary' => array($conf['user_fields']['id']), |
---|
| 198 | 'update' => $fields), |
---|
| 199 | array($data)); |
---|
[2] | 200 | } |
---|
[1620] | 201 | |
---|
[2342] | 202 | // update user "additional" informations (specific to Piwigo) |
---|
[808] | 203 | $fields = array( |
---|
| 204 | 'nb_image_line', 'nb_line_page', 'language', 'maxwidth', 'maxheight', |
---|
[1763] | 205 | 'expand', 'show_nb_comments', 'show_nb_hits', 'recent_period', 'template' |
---|
[808] | 206 | ); |
---|
[1620] | 207 | |
---|
[808] | 208 | $data = array(); |
---|
[2268] | 209 | $data['user_id'] = $userdata['id']; |
---|
[1620] | 210 | |
---|
[808] | 211 | foreach ($fields as $field) |
---|
[631] | 212 | { |
---|
[808] | 213 | if (isset($_POST[$field])) |
---|
[772] | 214 | { |
---|
[1043] | 215 | $data[$field] = $_POST[$field]; |
---|
[772] | 216 | } |
---|
[631] | 217 | } |
---|
[808] | 218 | mass_updates(USER_INFOS_TABLE, |
---|
| 219 | array('primary' => array('user_id'), 'update' => $fields), |
---|
| 220 | array($data)); |
---|
[1620] | 221 | |
---|
[2268] | 222 | trigger_action( 'save_profile_from_post', $userdata['id'] ); |
---|
[2048] | 223 | |
---|
[1926] | 224 | if (!empty($_POST['redirect'])) |
---|
| 225 | { |
---|
| 226 | redirect($_POST['redirect']); |
---|
| 227 | } |
---|
[2] | 228 | } |
---|
[1926] | 229 | return true; |
---|
[2] | 230 | } |
---|
[850] | 231 | |
---|
[808] | 232 | |
---|
[1753] | 233 | function load_profile_in_template($url_action, $url_redirect, $userdata) |
---|
| 234 | { |
---|
[2029] | 235 | global $template, $conf; |
---|
[850] | 236 | |
---|
[1753] | 237 | $template->set_filename('profile_content', 'profile_content.tpl'); |
---|
[393] | 238 | |
---|
[2246] | 239 | $template->assign('radio_options', |
---|
| 240 | array( |
---|
[2268] | 241 | 'true' => l10n('Yes'), |
---|
| 242 | 'false' => l10n('No'))); |
---|
[1620] | 243 | |
---|
[2246] | 244 | $template->assign( |
---|
[1753] | 245 | array( |
---|
| 246 | 'USERNAME'=>$userdata['username'], |
---|
[2229] | 247 | 'EMAIL'=>get_email_address_as_display_text(@$userdata['email']), |
---|
[1753] | 248 | 'NB_IMAGE_LINE'=>$userdata['nb_image_line'], |
---|
| 249 | 'NB_ROW_PAGE'=>$userdata['nb_line_page'], |
---|
| 250 | 'RECENT_PERIOD'=>$userdata['recent_period'], |
---|
| 251 | 'MAXWIDTH'=>@$userdata['maxwidth'], |
---|
| 252 | 'MAXHEIGHT'=>@$userdata['maxheight'], |
---|
[2246] | 253 | 'EXPAND' =>$userdata['expand'] ? 'true' : 'false', |
---|
| 254 | 'NB_COMMENTS'=>$userdata['show_nb_comments'] ? 'true' : 'false', |
---|
| 255 | 'NB_HITS'=>$userdata['show_nb_hits'] ? 'true' : 'false', |
---|
[1753] | 256 | 'REDIRECT' => $url_redirect, |
---|
| 257 | 'F_ACTION'=>$url_action, |
---|
| 258 | )); |
---|
[1620] | 259 | |
---|
[1753] | 260 | foreach (get_pwg_themes() as $pwg_template) |
---|
[854] | 261 | { |
---|
[2246] | 262 | if (isset($_POST['submit']) |
---|
| 263 | or $userdata['template'].'/'.$userdata['theme'] == $pwg_template) |
---|
[1753] | 264 | { |
---|
[2246] | 265 | $template->assign('template_selection', $pwg_template); |
---|
[1753] | 266 | } |
---|
[2246] | 267 | $template_options[$pwg_template] = $pwg_template; |
---|
[854] | 268 | } |
---|
[2246] | 269 | $template->assign('template_options', $template_options); |
---|
[1620] | 270 | |
---|
[1753] | 271 | foreach (get_languages() as $language_code => $language_name) |
---|
[854] | 272 | { |
---|
[2246] | 273 | if (isset($_POST['submit']) or $userdata['language'] == $language_code) |
---|
[1753] | 274 | { |
---|
[2246] | 275 | $template->assign('language_selection', $language_code); |
---|
[1753] | 276 | } |
---|
[2246] | 277 | $language_options[$language_code] = $language_name; |
---|
[854] | 278 | } |
---|
[3996] | 279 | |
---|
[2246] | 280 | $template->assign('language_options', $language_options); |
---|
[1926] | 281 | |
---|
[2268] | 282 | $special_user = in_array($userdata['id'], array($conf['guest_id'], $conf['default_user_id'])); |
---|
| 283 | $template->assign('SPECIAL_USER', $special_user); |
---|
| 284 | $template->assign('IN_ADMIN', defined('IN_ADMIN')); |
---|
[1926] | 285 | |
---|
[2268] | 286 | // allow plugins to add their own form data to content |
---|
| 287 | trigger_action( 'load_profile_in_template', $userdata ); |
---|
| 288 | |
---|
[1753] | 289 | $template->assign_var_from_handle('PROFILE_CONTENT', 'profile_content'); |
---|
[854] | 290 | } |
---|
[362] | 291 | ?> |
---|