2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array(
26 define('SVN', '$Id$');
28 $focus['user
'] = 'focus
';
30 require_once('./global.php
');
31 require_once('./includes
/class_api_error
.php
');
32 require_once('./includes
/api_user
.php
');
34 APIError(array(new API_Error_Handler($message), 'user_cumulative
'));
36 if (!$bugsys->userinfo['userid
'])
38 $message->error_permission();
41 $userapi = new UserAPI($bugsys);
42 $userapi->set('userid
', $bugsys->userinfo['userid
']);
43 $userapi->set_condition();
45 $userinfo = $bugsys->userinfo;
47 // ###################################################################
49 if (empty($_REQUEST['do']))
51 $_REQUEST['do'] = 'modify
';
54 // ###################################################################
56 if ($_POST['do'] == 'update
')
58 // -------------------------------------------------------------------
60 if (!empty($bugsys->in['password
']) OR !empty($bugsys->in['email
']))
62 if (empty($bugsys->in['validate
']))
64 $message->add_error($lang->string('You need to enter your current password to change your email
or password
'));
68 if (md5(md5($bugsys->in['validate
']) . md5($bugsys->userinfo['salt
'])) != $bugsys->userinfo['password
'])
70 $message->add_error($lang->string('Your authentication password does not match the one in our records
'));
75 // -------------------------------------------------------------------
77 if (!empty($bugsys->in['email
']))
79 if (!empty($bugsys->in['email
']) AND empty($bugsys->in['email_confirm
']))
81 $message->add_error($lang->string('You need to enter both the email
and confirm email fields to change your address
'));
84 if ($bugsys->in['email
'] != $bugsys->in['email_confirm
'])
86 $message->add_error($lang->string('Your email
and confirm email addresses
do not match
'));
89 $userapi->set('email
', $bugsys->in['email
']);
92 // -------------------------------------------------------------------
93 // password validation
94 if (!empty($bugsys->in['password
']))
96 if (!empty($bugsys->in['password
']) AND empty($bugsys->in['password_confirm
']))
98 $message->add_error($lang->string('You need to enter both the password
and confirm password fields to change your password
'));
102 if ($bugsys->in['password
'] != $bugsys->in['password_confirm
'])
104 $message->add_error($lang->string('Your password
and confirm password
do not match
'));
108 $userapi->set('password
', $bugsys->in['password
']);
111 $userapi->set('displayname
', $bugsys->in['displayname
']);
112 $userapi->set('showemail
', $bugsys->in['showemail
']);
113 $userapi->set('showcolours
', $bugsys->in['showcolours
']);
114 $userapi->set('languageid
', $bugsys->in['languageid
']);
115 $userapi->set('timezone
', $bugsys->in['timezone
']);
116 $userapi->set('usedst
', $bugsys->in['usedst
']);
117 $userapi->set('hidestatuses
', $bugsys->in['hidestatuses
']);
119 // -------------------------------------------------------------------
121 $userinfo['displayname
'] = $bugsys->in['displayname
'];
122 $userinfo['showemail
'] = $bugsys->in['showemail
'];
123 $userinfo['showcolours
'] = $bugsys->in['showcolours
'];
124 $userinfo['languageid
'] = $bugsys->in['languageid
'];
125 $userinfo['timezone
'] = $bugsys->in['timezone
'];
126 $userinfo['usedst
'] = $bugsys->in['usedst
'];
127 $userinfo['hidestatuses
'] = $bugsys->in['hidestatuses
'];
129 $email = $bugsys->in['email
'];
130 $email_confirm = $bugsys->in['email_confirm
'];
132 // -------------------------------------------------------------------
136 $message->error_list_process();
138 $show['errors
'] = true;
139 $_REQUEST['do'] = 'modify
';
145 if (can_perform('canbeassignedto
'))
147 require_once('./includes
/functions_datastore
.php
');
151 $db->query("DELETE FROM " . TABLE_PREFIX . "useremail WHERE userid = " . $bugsys->userinfo['userid
']);
152 $bugsys->input_clean('emailopts
', TYPE_INT);
153 foreach ($bugsys->in['emailopts
'] AS $relation => $bitarr)
156 foreach ($bitarr AS $option => $yes)
158 $bitmask += $option * $yes;
160 $db->query("INSERT INTO " . TABLE_PREFIX . "useremail (userid, relation, mask) VALUES (" . $bugsys->userinfo['userid
'] . ", $relation, $bitmask)");
163 $message->redirect($lang->string('The changes to your account have been made
.'), 'userctrl
.php
');
167 // ###################################################################
169 if ($_REQUEST['do'] == 'modify
')
171 $langselect = construct_datastore_select('language
', 'title
', 'languageid
', $userinfo['languageid
']);
173 $hidestatuses = construct_datastore_select('status
', 'status
', 'statusid
', (!is_array($userinfo['hidestatuses
']) ? explode(',', $userinfo['hidestatuses
']) : $userinfo['hidestatuses
']), 0);
174 $hidestatusesnum = (sizeof($bugsys->datastore['status
']) < 8 ? sizeof($bugsys->datastore['status
']) + 1 : 8);
176 foreach ($datef->fetch_timezone_list() AS $value => $label)
178 $selected = ($value == $userinfo['timezone
']);
179 eval('$tzselect .= "' . $template->fetch('selectoption') . '";');
183 if (!is_array($bugsys->in['emailopts
']))
185 $options = $db->query("SELECT * FROM " . TABLE_PREFIX . "useremail WHERE userid = " . $bugsys->userinfo['userid
']);
186 while ($opt = $db->fetch_array($options))
188 foreach ($bugsys->emailoptions['notifications
'] AS $name => $notif)
190 foreach ($bugsys->emailoptions['relations
'] AS $name => $relation)
192 if ($opt['mask
'] & $notif AND $opt['relation
'] == $relation)
194 $checked["$relation"]["$notif"] = HTML_CHECKED;
202 $checked = $bugsys->in['emailopts
'];
203 foreach ($checked AS $key1 => $value1)
205 foreach ($value1 AS $key2 => $value2)
209 $checked["$key1"]["$key2"] = HTML_CHECKED;
215 eval('$template->flush("' . $template->fetch('userctrl') . '");');
218 /*=====================================================================*\
219 || ###################################################################
222 || ###################################################################
223 \*=====================================================================*/