forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage_config_email_page.php
302 lines (253 loc) · 13.1 KB
/
manage_config_email_page.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<?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/>.
/**
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
require_once( 'email_api.php' );
auth_reauthenticate();
/**
* array_merge_recursive2()
*
* Similar to array_merge_recursive but keyed-valued are always overwritten.
* Priority goes to the 2nd array.
*
* @static yes
* @public yes
* @param $paArray1 array
* @param $paArray2 array
* @return array
*/
function array_merge_recursive2($p_Array1, $p_Array2) {
if (!is_array($p_Array1) or !is_array($p_Array2)) {
return $p_Array2;
}
foreach ( $p_Array2 AS $t_Key2 => $t_Value2) {
$p_Array1[$t_Key2] = array_merge_recursive2( @$p_Array1[$t_Key2], $t_Value2);
}
return $p_Array1;
}
# --------------------
# get_notify_flag cloned from email_notify_flag
# Get the value associated with the specific action and flag.
# For example, you can get the value associated with notifying "admin"
# on action "new", i.e. notify administrators on new bugs which can be
# ON or OFF.
function get_notify_flag( $action, $flag ) {
global $t_notify_flags, $t_default_notify_flags;
$val = OFF;
if ( isset ( $t_notify_flags[$action][$flag] ) ) {
$val = $t_notify_flags[$action][$flag];
} else if ( isset ( $t_default_notify_flags[$flag] ) ) {
$val = $t_default_notify_flags[$flag];
}
return $val;
}
function colour_notify_flag ( $p_action, $p_flag ) {
global $t_notify_flags, $t_global_notify_flags, $t_file_notify_flags, $t_colour_project, $t_colour_global;
$t_file = isset( $t_file_notify_flags[$p_action][$p_flag] ) ? ( $t_file_notify_flags[$p_action][$p_flag] ? 1 : 0 ): -1;
$t_global = isset( $t_global_notify_flags[$p_action][$p_flag] ) ? ( $t_global_notify_flags[$p_action][$p_flag] ? 1 : 0 ): -1;
$t_project = isset( $t_notify_flags[$p_action][$p_flag] ) ? ( $t_notify_flags[$p_action][$p_flag] ? 1 : 0 ): -1;
$t_colour = '';
if ( $t_global >= 0 ) {
if ( $t_global != $t_file ) {
$t_colour = ' bgcolor="' . $t_colour_global . '" '; # all projects override
}
}
if ( $t_project >= 0 ) {
if ( $t_project != $t_global ) {
$t_colour = ' bgcolor="' . $t_colour_project . '" '; # project overrides
}
}
return $t_colour;
}
# Get the value associated with the specific action and flag.
function show_notify_flag( $p_action, $p_flag ) {
global $t_can_change_flags , $t_can_change_defaults;
$t_flag = get_notify_flag( $p_action, $p_flag );
if ( $t_can_change_flags || $t_can_change_defaults ) {
$t_flag_name = $p_action . ':' . $p_flag;
$t_set = $t_flag ? "checked=\"checked\"" : "";
return "<input type=\"checkbox\" name=\"flag[]\" value=\"$t_flag_name\" $t_set />";
} else {
return ( $t_flag ? '<img src="images/ok.gif" width="20" height="15" title="X" alt="X" />' : ' ' );
}
}
function colour_threshold_flag ( $p_access, $p_action ) {
global $t_notify_flags, $t_global_notify_flags, $t_file_notify_flags, $t_colour_project, $t_colour_global;
$t_file = ( $p_access >= $t_file_notify_flags[$p_action]['threshold_min'] )
&& ( $p_access <= $t_file_notify_flags[$p_action]['threshold_max'] );
$t_global = ( $p_access >= $t_global_notify_flags[$p_action]['threshold_min'] )
&& ( $p_access <= $t_global_notify_flags[$p_action]['threshold_max'] );
$t_project = ( $p_access >= $t_notify_flags[$p_action]['threshold_min'] )
&& ( $p_access <= $t_notify_flags[$p_action]['threshold_max'] );
$t_colour = '';
if ( $t_global != $t_file ) {
$t_colour = ' bgcolor="' . $t_colour_global . '" '; # all projects override
}
if ( $t_project != $t_global ) {
$t_colour = ' bgcolor="' . $t_colour_project . '" '; # project overrides
}
return $t_colour;
}
function show_notify_threshold( $p_access, $p_action ) {
global $t_can_change_flags , $t_can_change_defaults;
$t_flag = ( $p_access >= get_notify_flag( $p_action, 'threshold_min' ) )
&& ( $p_access <= get_notify_flag( $p_action, 'threshold_max' ) );
if ( $t_can_change_flags || $t_can_change_defaults ) {
$t_flag_name = $p_action . ':' . $p_access;
$t_set = $t_flag ? "checked=\"checked\"" : "";
return "<input type=\"checkbox\" name=\"flag_threshold[]\" value=\"$t_flag_name\" $t_set />";
} else {
return $t_flag ? '<img src="images/ok.gif" width="20" height="15" title="X" alt="X" />' : ' ';
}
}
function get_section_begin_for_email( $p_section_name ) {
global $t_project;
$t_access_levels = MantisEnum::getValues( config_get( 'access_levels_enum_string' ) );
echo '<table class="width100">';
echo '<tr><td class="form-title-caps" colspan="' . ( count( $t_access_levels ) + 7 ) . '">' . $p_section_name . '</td></tr>' . "\n";
echo '<tr><td class="form-title" width="30%" rowspan="2">' . lang_get( 'message' ) . '</td>';
echo'<td class="form-title" style="text-align:center" rowspan="2"> ' . lang_get( 'issue_reporter' ) . ' </td>';
echo '<td class="form-title" style="text-align:center" rowspan="2"> ' . lang_get( 'issue_handler' ) . ' </td>';
echo '<td class="form-title" style="text-align:center" rowspan="2"> ' . lang_get( 'users_monitoring_bug' ) . ' </td>';
echo '<td class="form-title" style="text-align:center" rowspan="2"> ' . lang_get( 'users_added_bugnote' ) . ' </td>';
echo '<td class="form-title" style="text-align:center" colspan="' . count( $t_access_levels ) . '"> ' . lang_get( 'access_levels' ) . ' </td></tr><tr>';
foreach( $t_access_levels as $t_access_level ) {
echo '<td class="form-title" style="text-align:center"> ' . MantisEnum::getLabel( lang_get( 'access_levels_enum_string' ), $t_access_level ) . ' </td>';
}
echo '</tr>' . "\n";
}
function get_capability_row_for_email( $p_caption, $p_message_type ) {
$t_access_levels = MantisEnum::getValues( config_get( 'access_levels_enum_string' ) );
echo '<tr ' . helper_alternate_class() . '><td>' . string_display( $p_caption ) . '</td>';
echo '<td class="center"' . colour_notify_flag( $p_message_type, 'reporter' ) . '>' . show_notify_flag( $p_message_type, 'reporter' ) . '</td>';
echo '<td class="center"' . colour_notify_flag( $p_message_type, 'handler' ) . '>' . show_notify_flag( $p_message_type, 'handler' ) . '</td>';
echo '<td class="center"' . colour_notify_flag( $p_message_type, 'monitor' ) . '>' . show_notify_flag( $p_message_type, 'monitor' ) . '</td>';
echo '<td class="center"' . colour_notify_flag( $p_message_type, 'bugnotes' ) . '>' . show_notify_flag( $p_message_type, 'bugnotes' ) . '</td>';
foreach( $t_access_levels as $t_access_level ) {
echo '<td class="center"' . colour_threshold_flag( $t_access_level, $p_message_type ) . '>' . show_notify_threshold( $t_access_level, $p_message_type ) . '</td>';
}
echo '</tr>' . "\n";
}
function get_section_end_for_email() {
echo '</table><br />' . "\n";
}
html_page_top( lang_get( 'manage_email_config' ) );
print_manage_menu( 'adm_permissions_report.php' );
print_manage_config_menu( 'manage_config_email_page.php' );
$t_access = current_user_get_access_level();
$t_project = helper_get_current_project();
$t_colour_project = config_get( 'colour_project');
$t_colour_global = config_get( 'colour_global');
# build a list of all of the actions
$t_actions = array( 'owner', 'reopened', 'deleted', 'bugnote' );
if( config_get( 'enable_sponsorship' ) == ON ) {
$t_actions[] = 'sponsor';
}
$t_actions[] = 'relation';
$t_statuses = MantisEnum::getAssocArrayIndexedByValues( config_get( 'status_enum_string' ) );
foreach( $t_statuses as $t_status ) {
$t_actions[] = $t_status;
}
# build a composite of the status flags, exploding the defaults
$t_global_default_notify_flags = config_get( 'default_notify_flags', null, null, ALL_PROJECTS );
$t_global_notify_flags = array();
foreach ( $t_global_default_notify_flags as $t_flag => $t_value ) {
foreach ($t_actions as $t_action ) {
$t_global_notify_flags[$t_action][$t_flag] = $t_value;
}
}
$t_global_notify_flags = array_merge_recursive2( $t_global_notify_flags, config_get( 'notify_flags', null, null, ALL_PROJECTS ) );
$t_file_default_notify_flags = config_get_global( 'default_notify_flags' );
$t_file_notify_flags = array();
foreach ( $t_file_default_notify_flags as $t_flag => $t_value ) {
foreach ($t_actions as $t_action ) {
$t_file_notify_flags[$t_action][$t_flag] = $t_value;
}
}
$t_file_notify_flags = array_merge_recursive2( $t_file_notify_flags, config_get_global( 'notify_flags' ) );
$t_default_notify_flags = config_get( 'default_notify_flags' );
$t_notify_flags = array();
foreach ( $t_default_notify_flags as $t_flag => $t_value ) {
foreach ($t_actions as $t_action ) {
$t_notify_flags[$t_action][$t_flag] = $t_value;
}
}
$t_notify_flags = array_merge_recursive2( $t_notify_flags, config_get( 'notify_flags' ) );
$t_can_change_flags = $t_access >= config_get_access( 'notify_flags' );
$t_can_change_defaults = $t_access >= config_get_access( 'default_notify_flags' );
echo '<br /><br />';
# Email notifications
if( config_get( 'enable_email_notification' ) == ON ) {
if ( $t_can_change_flags || $t_can_change_defaults ) {
echo "<form name=\"mail_config_action\" method=\"post\" action=\"manage_config_email_set.php\">\n";
echo form_security_field( 'manage_config_email_set' );
}
if ( ALL_PROJECTS == $t_project ) {
$t_project_title = lang_get( 'config_all_projects' );
} else {
$t_project_title = sprintf( lang_get( 'config_project' ) , string_display( project_get_name( $t_project ) ) );
}
echo '<p class="bold">' . $t_project_title . '</p>' . "\n";
echo '<p>' . lang_get( 'colour_coding' ) . '<br />';
if ( ALL_PROJECTS <> $t_project ) {
echo '<span style="background-color:' . $t_colour_project . '">' . lang_get( 'colour_project' ) .'</span><br />';
}
echo '<span style="background-color:' . $t_colour_global . '">' . lang_get( 'colour_global' ) . '</span></p>';
get_section_begin_for_email( lang_get( 'email_notification' ) );
# get_capability_row_for_email( lang_get( 'email_on_new' ), 'new' ); # duplicate of status change to 'new'
get_capability_row_for_email( lang_get( 'email_on_assigned' ), 'owner' );
get_capability_row_for_email( lang_get( 'email_on_reopened' ), 'reopened' );
get_capability_row_for_email( lang_get( 'email_on_deleted' ), 'deleted' );
get_capability_row_for_email( lang_get( 'email_on_bugnote_added' ), 'bugnote' );
if( config_get( 'enable_sponsorship' ) == ON ) {
get_capability_row_for_email( lang_get( 'email_on_sponsorship_changed' ), 'sponsor' );
}
get_capability_row_for_email( lang_get( 'email_on_relationship_changed' ), 'relation' );
$t_statuses = MantisEnum::getAssocArrayIndexedByValues( config_get( 'status_enum_string' ) );
foreach ( $t_statuses as $t_status => $t_label ) {
get_capability_row_for_email( lang_get( 'status_changed_to' ) . ' \'' . get_enum_element( 'status', $t_status ) . '\'', $t_label );
}
get_section_end_for_email();
if ( $t_can_change_flags || $t_can_change_defaults ) {
echo '<p>' . lang_get( 'notify_actions_change_access' );
echo '<select name="notify_actions_access">';
print_enum_string_option_list( 'access_levels', config_get_access( 'notify_flags' ) );
echo '</select> </p>';
echo "<input type=\"submit\" class=\"button\" value=\"" . lang_get( 'change_configuration' ) . "\" />\n";
echo "</form>\n";
echo "<div class=\"right\"><form name=\"mail_config_action\" method=\"post\" action=\"manage_config_revert.php\">\n";
echo form_security_field( 'manage_config_revert' );
echo "<input name=\"revert\" type=\"hidden\" value=\"notify_flags,default_notify_flags\"></input>";
echo "<input name=\"project\" type=\"hidden\" value=\"$t_project\"></input>";
echo "<input name=\"return\" type=\"hidden\" value=\"" . string_attribute( form_action_self() ) ."\"></input>";
echo "<input type=\"submit\" class=\"button\" value=\"";
if ( ALL_PROJECTS == $t_project ) {
echo lang_get( 'revert_to_system' );
} else {
echo lang_get( 'revert_to_all_project' );
}
echo "\" />\n";
echo "</form></div>\n";
}
}
html_page_bottom();