3 * User account main page - show settings with means to change them
5 * Copyright 1999-2001 (c) VA Linux Systems
6 * Copyright 2010-2011, Franck Villaume - Capgemini
7 * Copyright 2011, Alain Peyrat - Alcatel-Lucent
9 * This file is part of FusionForge. FusionForge is free software;
10 * you can redistribute it and/or modify it under the terms of the
11 * GNU General Public License as published by the Free Software
12 * Foundation; either version 2 of the Licence, or (at your option)
15 * FusionForge is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with FusionForge; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 require_once('../env.inc.php');
26 require_once $gfcommon.'include/pre.php';
27 require_once $gfcommon.'include/timezones.php';
29 session_require_login();
31 // get global users vars
32 $u = session_get_user();
33 if (!$u || !is_object($u)) {
34 exit_error(_('Could Not Get User'));
35 } elseif ($u->isError()) {
36 exit_error($u->getErrorMessage(),'my');
39 if (getStringFromRequest('submit')) {
40 if (!form_key_is_valid(getStringFromRequest('form_key'))) {
41 exit_form_double_submit('my');
45 $firstname = getStringFromRequest('firstname');
46 $lastname = getStringFromRequest('lastname');
47 $language = getIntFromRequest('language');
48 $timezone = getStringFromRequest('timezone');
49 $theme_id = getIntFromRequest('theme_id');
50 $ccode = getStringFromRequest('ccode');
51 $address = getStringFromRequest('address');
52 $address2 = getStringFromRequest('address2');
53 $phone = getStringFromRequest('phone');
54 $fax = getStringFromRequest('fax');
55 $title = getStringFromRequest('title');
56 $jabber_address = getStringFromRequest('jabber_address');
57 $jabber_only = getStringFromRequest('jabber_only');
58 $mail_site = getStringFromRequest('mail_site');
59 $mail_va = getStringFromRequest('mail_va');
60 $remember_user = getStringFromRequest('remember_user');
61 $use_ratings = getStringFromRequest('use_ratings');
62 $use_tooltips = (getStringFromRequest('use_tooltips')) ? getStringFromRequest('use_tooltips') : 0;
65 //needs security audit
67 // set cookie, expire in 3 months
68 setcookie("sf_user_hash",$u->getID().'_'.substr($u->getMD5Passwd(),0,16),time()+90*24*60*60,'/');
71 setcookie("sf_user_hash",'',0,'/');
74 // Refresh page if language or theme changed
75 $refresh = ($language != $u->getLanguage() || $theme_id != $u->getThemeID());
77 if (!$u->update($firstname, $lastname, $language, $timezone, $mail_site, $mail_va, $use_ratings,
78 $jabber_address,$jabber_only,$theme_id,$address,$address2,$phone,$fax,$title,$ccode,$use_tooltips)) {
79 form_release_key(getStringFromRequest('form_key'));
80 $error_msg = $u->getErrorMessage();
81 $refresh_url = '/account/?error_msg='.urlencode($error_msg);
83 $feedback = _('Updated');
84 $refresh_url = '/account/?feedback='.urlencode($feedback);
88 session_redirect($refresh_url);
92 $hookParams['user'] = user_get_object(user_getid());
93 if (getStringFromRequest('submit')) {//if this is set, then the user has issued an Update
94 plugin_hook("userisactivecheckboxpost", $hookParams);
97 $title = _('Account Maintenance');
98 site_user_header(array('title'=>$title));
100 echo '<form action="'.util_make_url('/account/').'" method="post">';
101 echo '<input type="hidden" name="form_key" value="'.form_generate_key().'"/>';
102 echo $HTML->boxTop(_('Account Maintenance'));
106 <p> <?php echo _('Welcome'); ?> <strong><?php print $u->getRealName(); ?></strong>. </p>
109 <?php echo _('Account options:'); ?>
112 <li><?php echo util_make_link_u ($u->getUnixName(),$u->getId(),'<strong>'._('View My Profile').'</strong>'); ?></li>
113 <?php if(forge_get_config('use_people')) { ?>
114 <li><?php echo util_make_link ('/people/editprofile.php','<strong>'._('Edit My Skills Profile').'</strong>'); ?></li>
117 <?php echo $HTML->boxBottom(); ?>
120 <table width="100%" border="0">
123 <td><?php echo _('Member since:'); ?> </td>
124 <td><strong><?php print date(_('Y-m-d H:i'),$u->getAddDate()); ?></strong></td>
127 <td><?php echo _('User Id:'); ?> </td>
128 <td><strong><?php print $u->getID(); ?></strong></td>
132 <td><?php echo _('Login name:'); ?> </td>
133 <td><strong><?php print $u->getUnixName(); ?></strong>
134 <br /><a href="change_pw.php">[<?php echo _('Change Password'); ?>]</a>
139 <td><?php echo _('First Name:'); ?></td>
141 <input type="text" name="firstname" value="<?php print $u->getFirstName(); ?>" />
146 <td><?php echo _('Last Name:'); ?></td>
148 <input type="text" name="lastname" value="<?php print $u->getLastName(); ?>" />
153 <td><?php echo _('Language:'); ?> </td>
154 <td><?php echo html_get_language_popup ('language',$u->getLanguage()); ?>
159 <td><?php echo _('Timezone:'); ?> </td>
160 <td><?php echo html_get_timezone_popup('timezone', $u->getTimeZone()); ?>
165 <td><?php echo _('Theme:'); ?> </td>
166 <td><?php echo html_get_theme_popup('theme_id', $u->getThemeID()); ?>
171 <td><?php echo _('Country:'); ?> </td>
172 <td><?php echo html_get_ccode_popup('ccode', $u->getCountryCode()); ?>
177 <td><?php echo _('Email Addr:'); ?> </td>
178 <td><strong><?php print $u->getEmail(); ?></strong>
179 <br /><a href="change_email.php">[<?php echo _('Change Email Addr'); ?>]</a>
184 <td><?php echo _('Address:'); ?></td>
186 <input type="text" name="address" value="<?php echo $u->getAddress(); ?>" size="80"/>
191 <td><?php echo _('Address:'); ?></td>
193 <input type="text" name="address2" value="<?php echo $u->getAddress2(); ?>" size="80"/>
198 <td><?php echo _('Phone:'); ?></td>
200 <input type="text" name="phone" value="<?php echo $u->getPhone(); ?>" size="20"/>
205 <td><?php echo _('FAX:'); ?></td>
207 <input type="text" name="fax" value="<?php echo $u->getFax(); ?>" size="20"/>
212 <td><?php echo _('Title:'); ?></td>
214 <input type="text" name="title" value="<?php echo $u->getTitle(); ?>" size="10"/>
219 if (forge_get_config('use_jabber')) {
220 echo '<tr valign="top">
221 <td>'. _('Jabber Address:') .'</td>
223 <input size="30" type="text" name="jabber_address" value="'. $u->getJabberAddress() .'" /><p />
224 <input type="checkbox" name="jabber_only" value="1" '.(($u->getJabberOnly()) ? 'checked="CHECKED"' : '' ).' />
225 '._('Send auto-generated notices only to my Jabber address').'.
235 // ############################# Preferences
236 echo $HTML->boxTop(_('Preferences')); ?>
239 <input type="checkbox" name="mail_site" value="1"<?php
240 if ($u->getMailingsPrefs('site')) print " checked=\"checked\""; ?> />
241 <?php echo _('Receive Email about Site Updates <i>(Very low traffic and includes security notices. Highly Recommended.)</i>'); ?>
245 <input type="checkbox" name="mail_va" value="1"<?php
246 if ($u->getMailingsPrefs('va')) print " checked=\"checked\""; ?> />
247 <?php echo _('Receive additional community mailings. <i>(Low traffic.)</i>'); ?>
252 <input type="checkbox" name="remember_user" value="1"<?php
253 if ($sf_user_hash) print " checked=\"checked\""; ?> />
254 <?php printf(_('"Remember me". <i>(Allows to access your <a href="%s">personal page</a> without being logged in. You will still need to login explicitly before making any changes.)</i>'),util_make_url ('/my/'));
258 <?php if (forge_get_config('use_ratings')) { ?>
260 <input type="checkbox" name="use_ratings" value="1"<?php
261 if ($u->usesRatings()) print ' checked="checked"'; ?> />
262 <?php printf(_('Participate in peer ratings. <i>(Allows you to rate other users using several criteria as well as to be rated by others. More information is available on your <a href="%s">user page</a> if you have chosen to participate in ratings.)</i>'),util_make_url_u ($u->getUnixName(),$u->getId()));
266 <input type="checkbox" name="use_tooltips" value="1"<?php
267 if ($u->usesTooltips()) print ' checked="checked"'; ?> />
268 <?php echo _('Enable tooltips. Small help texts displayed on mouse over links, images.');
274 // displays a "Use xxxx Plugin" checkbox
275 plugin_hook("userisactivecheckbox", $hookParams);
280 echo $HTML->boxBottom();
282 // ############################### Shell Account
284 if (($u->getUnixStatus() == 'A') && (forge_get_config('use_shell'))) {
285 echo $HTML->boxTop(_('Shell Account Information')."");
287 <br />'._('Shell box').': <strong>'.$u->getUnixBox().'</strong>
288 <br />'._('SSH Shared Authorized Keys').': <strong>';
289 // get shared key count from db
290 $expl_keys = explode("\n", $u->getAuthorizedKeys());
292 print (sizeof($expl_keys));
297 print '<br />' . util_make_link ("account/editsshkeys.php",_('Edit Keys')) ;
298 echo $HTML->boxBottom();
307 <p style="text-align: center;">
308 <input type="submit" name="submit" value="<?php echo _('Update'); ?>" />
309 <input type="reset" name="reset" value="<?php echo _('Reset Changes'); ?>" />
314 site_user_footer(array());
318 // c-file-style: "bsd"