File: manage_config_workflow_set.php

package info (click to toggle)
mantis 1.2.18-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 16,740 kB
  • sloc: php: 110,344; sh: 573; xml: 52; makefile: 40; sql: 32
file content (208 lines) | stat: -rw-r--r-- 7,885 bytes parent folder | download
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
<?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 - 2014  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' );

	form_security_validate( 'manage_config_workflow_set' );

	auth_reauthenticate();

	/**
	 * Retrieves the value of config option for the project's parent
	 * (ALL_PROJECTS level if project, or file-level if all projects)
	 * @param $p_project project
	 * @param $p_option config option to retrieve
	 * @return mixed config option value
	 */
	function config_get_parent( $p_project, $p_option ) {
		if( $p_project == ALL_PROJECTS ) {
			return config_get_global( $p_option );
		} else {
			return config_get( $p_option, null, null, ALL_PROJECTS );
		}
	}


	$t_can_change_level = min( config_get_access( 'notify_flags' ), config_get_access( 'default_notify_flags' ) );
	access_ensure_project_level( $t_can_change_level );

	$t_redirect_url = 'manage_config_workflow_page.php';
	$t_project = helper_get_current_project();
	$t_access = current_user_get_access_level();

	html_page_top( lang_get( 'manage_workflow_config' ), $t_redirect_url );

	# process the changes to threshold values
	$t_valid_thresholds = array(
		'bug_submit_status',
		'bug_resolved_status_threshold',
		'bug_reopen_status',
	);

	foreach( $t_valid_thresholds as $t_threshold ) {
		$t_access_current = config_get_access( $t_threshold );
		if( $t_access >= $t_access_current ) {
			$f_value = gpc_get( 'threshold_' . $t_threshold );
			$t_value_current = config_get( $t_threshold );
			$f_access = gpc_get( 'access_' . $t_threshold );
			if( $f_value == $t_value_current && $f_access == $t_access_current ) {
				# If new value is equal to parent and access has not changed
				config_delete( $t_threshold, ALL_USERS , $t_project );
			} else if( $f_value != $t_value_current || $f_access != $t_access_current ) {
				# Set config if value or access have changed
				config_set( $t_threshold, $f_value, NO_USER, $t_project, $f_access );
			}
		}
	}

	# process the workflow by reversing the flags to a matrix and creating the appropriate string
	if( config_get_access( 'status_enum_workflow' ) <= $t_access ) {
		$f_value = gpc_get( 'flag', array() );
		$f_access = gpc_get( 'workflow_access' );
		$t_matrix = array();

		foreach( $f_value as $t_transition ) {
			list( $t_from, $t_to ) = explode( ':', $t_transition );
			$t_matrix[$t_from][$t_to] = '';
		}
		$t_enum_status = MantisEnum::getAssocArrayIndexedByValues( config_get( 'status_enum_string' ) );
		foreach( $t_enum_status as $t_state => $t_label) {
			$t_workflow_row = '';
			$t_default = gpc_get_int( 'default_' . $t_state );
			if ( isset( $t_matrix[$t_state] ) && isset( $t_matrix[$t_state][$t_default] ) ) {
				$t_workflow_row .= $t_default . ':' . get_enum_element( 'status', $t_default );
				unset( $t_matrix[$t_state][$t_default] );
				$t_first = false;
			} else {
				# error default state isn't in the matrix
				echo '<p>' . sprintf( lang_get( 'default_not_in_flow' ), get_enum_element( 'status', $t_default ), get_enum_element( 'status', $t_state ) )  . '</p>';
				$t_first = true;
			}
			if ( isset( $t_matrix[$t_state] ) ) {
				foreach ( $t_matrix[$t_state] as $t_next_state => $t_junk ) {
					if ( false == $t_first ) {
						$t_workflow_row .= ',';
					}
					$t_workflow_row .= $t_next_state . ':' . get_enum_element( 'status', $t_next_state );
					$t_first = false;
				}
			}
			if ( '' <> $t_workflow_row ) {
				$t_workflow[$t_state] = $t_workflow_row;
			}
		}

		# Get the parent's workflow, if not set default to all transitions
		$t_access_current = config_get_access( 'status_enum_workflow' );
		$t_workflow_parent = config_get_parent( $t_project, 'status_enum_workflow' );
		if ( 0 == count( $t_workflow_parent ) ) {
			foreach( $t_enum_status as $t_status => $t_label ) {
				$t_temp_workflow = array();
				foreach( $t_enum_status as $t_next => $t_next_label ) {
					if( $t_status != $t_next ) {
						$t_temp_workflow[] = "$t_next:$t_next_label";
					}
				}
				$t_workflow_parent[$t_status] = implode( ',', $t_temp_workflow );
			}
		}

		if( $t_workflow == $t_workflow_parent && $f_access == $t_access_current ) {
			# If new value is equal to parent and access has not changed
			config_delete( 'status_enum_workflow', ALL_USERS , $t_project );
		} else if( $t_workflow != config_get( 'status_enum_workflow' ) || $f_access != $t_access_current ) {
			# Set config if value or access have changed
			config_set( 'status_enum_workflow', $t_workflow, NO_USER, $t_project, $f_access );
		}
	}

	# process the access level changes
	if( config_get_access( 'status_enum_workflow' ) <= $t_access ) {
		# get changes to access level to change these values
		$f_access = gpc_get( 'status_access' );
		$t_access_current = config_get_access( 'status_enum_workflow' );

		# Build access level reference arrays (parent level and current config)
		$t_set_parent = config_get_parent( $t_project, 'set_status_threshold' );
		$t_set_current = config_get( 'set_status_threshold' );
		$t_bug_submit_status = config_get( 'bug_submit_status' );
		foreach( $t_enum_status as $t_status => $t_status_label ) {
			if( !isset( $t_set_parent[$t_status] ) ) {
				if( $t_bug_submit_status == $t_status ) {
					$t_set_parent[$t_status] = config_get_parent( $t_project, 'report_bug_threshold' );
				} else {
					$t_set_parent[$t_status] = config_get_parent( $t_project, 'update_bug_status_threshold' );
				}
			}
			if( !isset( $t_set_current[$t_status] ) ) {
				if( $t_bug_submit_status == $t_status ) {
					$t_set_current[$t_status] = config_get( 'report_bug_threshold' );
				} else {
					$t_set_current[$t_status] = config_get( 'update_bug_status_threshold' );
				}
			}
		}

		# walk through the status labels to set the status threshold
		$t_set_new = array();
		foreach( $t_enum_status as $t_status_id => $t_status_label) {
			$f_level = gpc_get_int( 'access_change_' . $t_status_id );
			if ( config_get( 'bug_submit_status' ) == $t_status_id ) {
				if ( $f_level != config_get( 'report_bug_threshold' ) ) {
					config_set( 'report_bug_threshold', (int)$f_level, ALL_USERS, $t_project, $f_access );
				} else {
					config_delete( 'report_bug_threshold', ALL_USERS , $t_project );
				}
				unset( $t_set_parent[$t_status_id] );
				unset( $t_set_current[$t_status_id] );
			} else {
				$t_set_new[$t_status_id] = $f_level;
			}
		}

		if( $t_set_new == $t_set_parent && $f_access == $t_access_current ) {
			# If new value is equal to parent and access has not changed
			config_delete( 'set_status_threshold', ALL_USERS , $t_project );
		} else if( $t_set_new != $t_set_current || $f_access != $t_access_current ) {
			# Set config if value or access have changed
			config_set( 'set_status_threshold', $t_set_new, ALL_USERS, $t_project, $f_access );
		}
	}

	form_security_purge( 'manage_config_workflow_set' );
?>

<br />
<div align="center">
<?php
	echo lang_get( 'operation_successful' ) . '<br />';
	print_bracket_link( $t_redirect_url, lang_get( 'proceed' ) );
?>
</div>

<?php
	html_page_bottom();