forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathview_all_set.php
More file actions
201 lines (174 loc) · 7.34 KB
/
view_all_set.php
File metadata and controls
201 lines (174 loc) · 7.34 KB
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
<?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/>.
/**
* Set cookie for View all bugs page
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses authentication_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses custom_field_api.php
* @uses error_api.php
* @uses filter_api.php
* @uses filter_constants_inc.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses html_api.php
* @uses logging_api.php
* @uses print_api.php
* @uses utility_api.php
*/
require_once( 'core.php' );
require_api( 'authentication_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'custom_field_api.php' );
require_api( 'error_api.php' );
require_api( 'filter_api.php' );
require_api( 'filter_constants_inc.php' );
require_api( 'gpc_api.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'logging_api.php' );
require_api( 'print_api.php' );
require_api( 'utility_api.php' );
auth_ensure_user_authenticated();
$f_type = gpc_get_int( 'type', -1 );
$f_source_query_id = gpc_get_int( 'source_query_id', -1 );
$f_print = gpc_get_bool( 'print' );
$f_isset_temporary = gpc_isset( 'temporary' );
$f_make_temporary = gpc_get_bool( 'temporary' );
$f_project_id = gpc_get_int( 'set_project_id', -1 );
# Get the filter in use
$t_setting_arr = current_user_get_bug_filter();
# If there is an explicit "temporary" parameter true/false, will force the new filter
# to be termporary (true) or persistent (false), according to its value.
# If the parameter is not present, the filter will be kept the same as original.
if( $f_isset_temporary ) {
# when only changing the temporary status of a filter and no action is specified
# we assume not to reset current filter
if( $f_type == -1 ) {
# use type 2 wich keeps current filter values
$f_type = FILTER_ACTION_PARSE_ADD;
}
$t_temp_filter = $f_make_temporary;
} else {
$t_temp_filter = filter_is_temporary( $t_setting_arr );
}
if( $f_type == -1 ) {
print_header_redirect( 'view_all_bug_page.php' );
}
# -1 is a special case stored query: it means we want to reset our filter
if( ( $f_type == FILTER_ACTION_LOAD ) && ( $f_source_query_id == -1 ) ) {
$f_type = FILTER_ACTION_RESET;
}
$t_previous_temporary_key = filter_get_temporary_key( $t_setting_arr );
# If user can't use persistent filters, force the creation of a temporary filter
if( !filter_user_can_use_persistent( auth_get_current_user_id() ) ) {
$t_temp_filter = true;
}
# Clear the source query id. Since we have entered new filter criteria.
if( isset( $t_setting_arr['_source_query_id'] ) ) {
unset( $t_setting_arr['_source_query_id'] );
}
switch( $f_type ) {
# Apply a new empty filter
case FILTER_ACTION_RESET:
log_event( LOG_FILTERING, 'view_all_set.php: New filter' );
$t_setting_arr = array();
break;
# Read new filter parameters. (filter_gpc_get reads a new set of parameters)
# Parameter that are not submitted, will be reset to defaults.
case FILTER_ACTION_PARSE_NEW:
log_event( LOG_FILTERING, 'view_all_set.php: Parse a new filter' );
$t_setting_arr = filter_gpc_get();
break;
# Read and update filter parameters (filter_gpc_get is called over current filter)
# Parameter that are not submitted, will not be modified
case FILTER_ACTION_PARSE_ADD:
log_event( LOG_FILTERING, 'view_all_set.php: Parse incremental filter values' );
$t_setting_arr = filter_gpc_get( $t_setting_arr );
break;
# Fetch a stored filter from database
case FILTER_ACTION_LOAD:
log_event( LOG_FILTERING, 'view_all_set.php: Load stored filter' );
$t_setting_arr = filter_get( $f_source_query_id, null );
if( null === $t_setting_arr ) {
# couldn't get the filter, if we were trying to use the filter, clear it and reload
error_proceed_url( 'view_all_set.php?type=' . FILTER_ACTION_RESET );
trigger_error( ERROR_FILTER_NOT_FOUND, ERROR );
exit;
} else {
$t_setting_arr['_source_query_id'] = $f_source_query_id;
}
break;
# Generalise the filter
case FILTER_ACTION_GENERALIZE:
log_event( LOG_FILTERING, 'view_all_set.php: Generalise the filter' );
$t_setting_arr[FILTER_PROPERTY_CATEGORY_ID] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_REPORTER_ID] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_HANDLER_ID] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_BUILD] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_VERSION] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_PRIORITY] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_FIXED_IN_VERSION] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_TARGET_VERSION] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_MONITOR_USER_ID] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_NOTE_USER_ID] = array( META_FILTER_ANY );
$t_setting_arr[FILTER_PROPERTY_RELATIONSHIP_TYPE] = -1;
$t_setting_arr[FILTER_PROPERTY_RELATIONSHIP_BUG] = 0;
$t_custom_fields = custom_field_get_ids(); # @@@ (thraxisp) This should really be the linked ids, but we don't know the project
$t_custom_fields_data = array();
if( is_array( $t_custom_fields ) && ( count( $t_custom_fields ) > 0 ) ) {
foreach( $t_custom_fields as $t_cfid ) {
$t_custom_fields_data[$t_cfid] = array( META_FILTER_ANY );
}
}
$t_setting_arr['custom_fields'] = $t_custom_fields_data;
break;
default:
# does nothing. catch all case
log_event( LOG_FILTERING, 'view_all_set.php: default - do nothing' );
break;
}
$t_setting_arr = filter_ensure_valid_filter( $t_setting_arr );
# If only using a temporary filter, don't store it in the database
if( !$t_temp_filter ) {
# get project if it was specified
$t_project_id = ( $f_project_id >= 0 ) ? $f_project_id : null;
# Store the filter in the database as the current filter for the project
filter_set_project_filter( $t_setting_arr, $t_project_id );
}
# redirect to print_all or view_all page
if( $f_print ) {
$t_redirect_url = 'print_all_bug_page.php';
} else {
$t_redirect_url = 'view_all_bug_page.php';
}
if( $t_temp_filter ) {
# keeping the $t_previous_temporary_key, and using it to save back the filter
# The key inside the filter array may have been deleted as part of some actions
# Note, if we reset the key here, a new filter will be created after each action.
# This adds a lot of orphaned filters to session store, but would allow consistency
# through browser back button, for example.
$t_temporary_key = filter_temporary_set( $t_setting_arr, $t_previous_temporary_key );
$t_redirect_url = $t_redirect_url . '?' . filter_get_temporary_key_param( $t_temporary_key );
}
print_header_redirect( $t_redirect_url );