|
|
4c79b5 |
|
|
|
4c79b5 |
# Mantis - a php based bugtracking system
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
|
|
|
4c79b5 |
# Copyright (C) 2002 - 2007 Mantis Team - mantisbt-dev@lists.sourceforge.net
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Mantis is free software: you can redistribute it and/or modify
|
|
|
4c79b5 |
# it under the terms of the GNU General Public License as published by
|
|
|
4c79b5 |
# the Free Software Foundation, either version 2 of the License, or
|
|
|
4c79b5 |
# (at your option) any later version.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# Mantis is distributed in the hope that it will be useful,
|
|
|
4c79b5 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
4c79b5 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
4c79b5 |
# GNU General Public License for more details.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# You should have received a copy of the GNU General Public License
|
|
|
4c79b5 |
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
|
|
|
4c79b5 |
|
|
|
4c79b5 |
#------------------------------
|
|
|
4c79b5 |
# $Revision: 2643 $
|
|
|
4c79b5 |
# $Author: al $
|
|
|
4c79b5 |
# $Date: 2009-06-18 19:06:27 -0400 (Thu, 18 Jun 2009) $
|
|
|
4c79b5 |
#------------------------------
|
|
|
4c79b5 |
|
|
|
4c79b5 |
require_once( 'core.php' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_core_path = config_get( 'core_path' );
|
|
|
4c79b5 |
require_once( $t_core_path.'email_api.php' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
auth_reauthenticate();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
form_security_validate('manage_config_email_set');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_can_change_level = min( config_get_access( 'notify_flags' ), config_get_access( 'default_notify_flags' ) );
|
|
|
4c79b5 |
access_ensure_project_level( $t_can_change_level );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_redirect_url = 'manage_config_email_page.php';
|
|
|
4c79b5 |
$t_project = helper_get_current_project();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$f_flags = gpc_get( 'flag', array() );
|
|
|
4c79b5 |
$f_thresholds = gpc_get( 'flag_threshold', array() );
|
|
|
4c79b5 |
$f_actions_access = gpc_get_int( 'notify_actions_access' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
html_page_top1( lang_get( 'manage_email_config' ) );
|
|
|
4c79b5 |
html_meta_redirect( $t_redirect_url );
|
|
|
4c79b5 |
html_page_top2();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_access = current_user_get_access_level();
|
|
|
4c79b5 |
$t_can_change_flags = $t_access >= config_get_access( 'notify_flags' );
|
|
|
4c79b5 |
$t_can_change_defaults = $t_access >= config_get_access( 'default_notify_flags' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# build a list of the possible actions and flags
|
|
|
4c79b5 |
$t_valid_actions = array( 'owner', 'reopened', 'deleted', 'bugnote' );
|
|
|
4c79b5 |
if( config_get( 'enable_sponsorship' ) == ON ) {
|
|
|
4c79b5 |
$t_valid_actions[] = 'sponsor';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if( config_get( 'enable_relationship' ) == ON ) {
|
|
|
4c79b5 |
$t_valid_actions[] = 'relationship';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_statuses = get_enum_to_array( config_get( 'status_enum_string' ) );
|
|
|
4c79b5 |
ksort( $t_statuses );
|
|
|
4c79b5 |
reset( $t_statuses );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach( $t_statuses as $t_status => $t_label ) {
|
|
|
4c79b5 |
$t_valid_actions[] = $t_label;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$t_valid_flags = array( 'reporter', 'handler', 'monitor' , 'bugnotes' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# initialize the thresholds
|
|
|
4c79b5 |
foreach( $t_valid_actions as $t_action ) {
|
|
|
4c79b5 |
$t_thresholds_min[$t_action] = NOBODY;
|
|
|
4c79b5 |
$t_thresholds_max[$t_action] = ANYBODY;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# parse flags and thresholds
|
|
|
4c79b5 |
foreach( $f_flags as $t_flag_value ) {
|
|
|
4c79b5 |
list( $t_action, $t_flag ) = split( ':', $t_flag_value );
|
|
|
4c79b5 |
$t_flags[$t_action][$t_flag] = ON;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
foreach( $f_thresholds as $t_threshold_value ) {
|
|
|
4c79b5 |
list( $t_action, $t_threshold ) = split( ':', $t_threshold_value );
|
|
|
4c79b5 |
if ( $t_threshold < $t_thresholds_min[$t_action] ) {
|
|
|
4c79b5 |
$t_thresholds_min[$t_action] = $t_threshold;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( $t_threshold > $t_thresholds_max[$t_action] ) {
|
|
|
4c79b5 |
$t_thresholds_max[$t_action] = $t_threshold;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# if we can set defaults, find them
|
|
|
4c79b5 |
if ( $t_can_change_defaults ) {
|
|
|
4c79b5 |
$t_first = true;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# for flags, assume they are true, unless one of the actions has them off
|
|
|
4c79b5 |
foreach ( $t_valid_flags as $t_flag ) {
|
|
|
4c79b5 |
$t_default_flags[$t_flag] = ON;
|
|
|
4c79b5 |
foreach ( $t_valid_actions as $t_action ) {
|
|
|
4c79b5 |
if ( ! isset( $t_flags[$t_action][$t_flag] ) ) {
|
|
|
4c79b5 |
unset( $t_default_flags[$t_flag] );
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
# for thresholds, find the subset that matches all of the actions
|
|
|
4c79b5 |
$t_default_min = ANYBODY;
|
|
|
4c79b5 |
$t_default_max = NOBODY;
|
|
|
4c79b5 |
foreach ( $t_valid_actions as $t_action ) {
|
|
|
4c79b5 |
if ( $t_default_max > $t_thresholds_max[$t_action] ) {
|
|
|
4c79b5 |
$t_default_max = $t_thresholds_max[$t_action];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( $t_default_min < $t_thresholds_min[$t_action] ) {
|
|
|
4c79b5 |
$t_default_min = $t_thresholds_min[$t_action];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$t_default_flags['threshold_min'] = $t_default_min;
|
|
|
4c79b5 |
$t_default_flags['threshold_max'] = $t_default_max;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_existing_default_flags = config_get( 'default_notify_flags' );
|
|
|
4c79b5 |
if ( $t_existing_default_flags != $t_default_flags ) { # only set the flags if they are different
|
|
|
4c79b5 |
config_set( 'default_notify_flags', $t_default_flags, NO_USER, $t_project, $f_actions_access );
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
} else {
|
|
|
4c79b5 |
$t_default_flags = config_get( 'default_notify_flags' );
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# set the values for specific actions if different from the defaults
|
|
|
4c79b5 |
$t_notify_flags = array();
|
|
|
4c79b5 |
foreach ( $t_valid_actions as $t_action ) {
|
|
|
4c79b5 |
$t_action_printed = false;
|
|
|
4c79b5 |
foreach ( $t_valid_flags as $t_flag ) {
|
|
|
4c79b5 |
if ( ! isset( $t_default_flags[$t_flag] ) ) {
|
|
|
4c79b5 |
$t_default_flags[$t_flag] = OFF;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( isset( $t_flags[$t_action][$t_flag] ) <> $t_default_flags[$t_flag] ) {
|
|
|
4c79b5 |
$t_notify_flags[$t_action][$t_flag] = isset( $t_flags[$t_action][$t_flag] ) ? ON : OFF;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( $t_default_flags['threshold_min'] <> $t_thresholds_min[$t_action] ) {
|
|
|
4c79b5 |
$t_notify_flags[$t_action]['threshold_min'] = $t_thresholds_min[$t_action];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( $t_default_flags['threshold_max'] <> $t_thresholds_max[$t_action] ) {
|
|
|
4c79b5 |
$t_notify_flags[$t_action]['threshold_max'] = $t_thresholds_max[$t_action];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
if ( isset( $t_notify_flags ) ) {
|
|
|
4c79b5 |
$t_existing_flags = config_get( 'notify_flags' );
|
|
|
4c79b5 |
if ( $t_existing_flags != $t_notify_flags ) { # only set the flags if they are different
|
|
|
4c79b5 |
config_set( 'notify_flags', $t_notify_flags, NO_USER, $t_project, $f_actions_access );
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
echo '' . lang_get( 'operation_successful' ) . ' ';
|
|
|
4c79b5 |
print_bracket_link( $t_redirect_url, lang_get( 'proceed' ) );
|
|
|
4c79b5 |
?>
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|