-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_prefs_update.php
120 lines (97 loc) · 4.72 KB
/
account_prefs_update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
# MantisBT - a php based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Updates prefs then redirect to account_prefs_page.php
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright (C) 2002 - 2014 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
require_once( 'user_pref_api.php' );
form_security_validate( 'account_prefs_update' );
auth_ensure_user_authenticated();
$f_user_id = gpc_get_int( 'user_id' );
$f_redirect_url = gpc_get_string( 'redirect_url' );
user_ensure_exists( $f_user_id );
$t_user = user_get_row( $f_user_id );
# This page is currently called from the manage_* namespace and thus we
# have to allow authorised users to update the accounts of other users.
# TODO: split this functionality into manage_user_prefs_update.php
if ( auth_get_current_user_id() != $f_user_id ) {
access_ensure_global_level( config_get( 'manage_user_threshold' ) );
access_ensure_global_level( $t_user['access_level'] );
} else {
# Protected users should not be able to update the preferences of their
# user account. The anonymous user is always considered a protected
# user and hence will also not be allowed to update preferences.
user_ensure_unprotected( $f_user_id );
}
$t_prefs = user_pref_get( $f_user_id );
$t_prefs->redirect_delay = gpc_get_int( 'redirect_delay' );
$t_prefs->refresh_delay = gpc_get_int( 'refresh_delay' );
$t_prefs->default_project = gpc_get_int( 'default_project' );
$t_lang = gpc_get_string( 'language' );
if ( lang_language_exists( $t_lang ) ) {
$t_prefs->language = $t_lang;
}
$t_prefs->email_on_new = gpc_get_bool( 'email_on_new' );
$t_prefs->email_on_assigned = gpc_get_bool( 'email_on_assigned' );
$t_prefs->email_on_feedback = gpc_get_bool( 'email_on_feedback' );
$t_prefs->email_on_resolved = gpc_get_bool( 'email_on_resolved' );
$t_prefs->email_on_closed = gpc_get_bool( 'email_on_closed' );
$t_prefs->email_on_reopened = gpc_get_bool( 'email_on_reopened' );
$t_prefs->email_on_bugnote = gpc_get_bool( 'email_on_bugnote' );
$t_prefs->email_on_status = gpc_get_bool( 'email_on_status' );
$t_prefs->email_on_priority = gpc_get_bool( 'email_on_priority' );
$t_prefs->email_on_new_min_severity = gpc_get_int( 'email_on_new_min_severity' );
$t_prefs->email_on_assigned_min_severity = gpc_get_int( 'email_on_assigned_min_severity' );
$t_prefs->email_on_feedback_min_severity = gpc_get_int( 'email_on_feedback_min_severity' );
$t_prefs->email_on_resolved_min_severity = gpc_get_int( 'email_on_resolved_min_severity' );
$t_prefs->email_on_closed_min_severity = gpc_get_int( 'email_on_closed_min_severity' );
$t_prefs->email_on_reopened_min_severity = gpc_get_int( 'email_on_reopened_min_severity' );
$t_prefs->email_on_bugnote_min_severity = gpc_get_int( 'email_on_bugnote_min_severity' );
$t_prefs->email_on_status_min_severity = gpc_get_int( 'email_on_status_min_severity' );
$t_prefs->email_on_priority_min_severity = gpc_get_int( 'email_on_priority_min_severity' );
$t_prefs->bugnote_order = gpc_get_string( 'bugnote_order' );
$t_prefs->email_bugnote_limit = gpc_get_int( 'email_bugnote_limit' );
# make sure the delay isn't too low
if (( config_get( 'min_refresh_delay' ) > $t_prefs->refresh_delay )&&
( $t_prefs->refresh_delay != 0 )) {
$t_prefs->refresh_delay = config_get( 'min_refresh_delay' );
}
if ( function_exists( 'timezone_identifiers_list' ) ) {
$t_timezone = gpc_get_string( 'timezone' );
if ( in_array( $t_timezone, timezone_identifiers_list() ) ) {
if ( $t_timezone == config_get_global( 'default_timezone' ) ) {
$t_prefs->timezone = '';
} else {
$t_prefs->timezone = $t_timezone;
}
}
}
event_signal( 'EVENT_ACCOUNT_PREF_UPDATE', array( $f_user_id ) );
user_pref_set( $f_user_id, $t_prefs );
form_security_purge( 'account_prefs_update' );
html_page_top( null, $f_redirect_url );
echo '<br /><div align="center">';
echo lang_get( 'operation_successful' );
echo '<br />';
print_bracket_link( $f_redirect_url, lang_get( 'proceed' ) );
echo '<br /></div>';
html_page_bottom();