forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_sponsor_page.php
389 lines (350 loc) · 12.6 KB
/
account_sponsor_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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<?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/>.
/**
* CALLERS
* This page is called from:
* - print_menu()
* - print_account_menu()
*
* EXPECTED BEHAVIOUR
* - Display the user's current sponsorships
* - Allow the user to edit the payment flag
*
* CALLS
* This page calls the following pages:
* - account_sponsor_update.php (to save changes)
*
* RESTRICTIONS & PERMISSIONS
* - User must be authenticated, and not anonymous
* - sponsorship must be enabled
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses access_api.php
* @uses authentication_api.php
* @uses bug_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses current_user_api.php
* @uses database_api.php
* @uses form_api.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses print_api.php
* @uses project_api.php
* @uses sponsorship_api.php
* @uses string_api.php
* @uses version_api.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'authentication_api.php' );
require_api( 'bug_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'current_user_api.php' );
require_api( 'database_api.php' );
require_api( 'form_api.php' );
require_api( 'gpc_api.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
require_api( 'project_api.php' );
require_api( 'sponsorship_api.php' );
require_api( 'string_api.php' );
require_api( 'version_api.php' );
require_css( 'status_config.php' );
if( !config_get( 'enable_sponsorship' ) ) {
trigger_error( ERROR_SPONSORSHIP_NOT_ENABLED, ERROR );
}
# anonymous users are not allowed to sponsor issues
if( current_user_is_anonymous() ) {
access_denied();
}
$t_show_all = gpc_get_bool( 'show_all', false );
# start the page
layout_page_header( lang_get( 'my_sponsorship' ) );
layout_page_begin();
$t_project = helper_get_current_project();
print_account_menu( 'account_sponsor_page.php' );
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="bold">
<?php echo lang_get( 'my_sponsorship' ) ?>
</td>
</tr>
</table>
<?php
# get issues user has sponsored
$t_user = auth_get_current_user_id();
$t_resolved = config_get( 'bug_resolved_status_threshold' );
$t_payment = config_get( 'payment_enable', 0 );
$t_project_clause = helper_project_specific_where( $t_project );
$t_query = 'SELECT b.id as bug, s.id as sponsor, s.paid, b.project_id, b.fixed_in_version, b.status
FROM {bug} b, {sponsorship} s
WHERE s.user_id=' . db_param() . ' AND s.bug_id = b.id ' .
( $t_show_all ? '' : 'AND ( b.status < ' . db_param() . ' OR s.paid < ' . SPONSORSHIP_PAID . ')' ) . '
AND ' . $t_project_clause . '
ORDER BY s.paid ASC, b.project_id ASC, b.fixed_in_version ASC, b.status ASC, b.id DESC';
$t_result = db_query( $t_query, $t_show_all ? array( $t_user ) : array( $t_user , $t_resolved ) );
$t_sponsors = array();
while( $t_row = db_fetch_array( $t_result ) ) {
$t_sponsors[] = $t_row;
}
$t_sponsor_count = count( $t_sponsors );
if( $t_sponsor_count === 0 ) {
echo '<p>' . lang_get( 'no_own_sponsored' ) . '</p>';
} else {
?>
<!-- # Edit own sponsorship Form BEGIN -->
<br />
<div>
<table class="width100" cellspacing="1">
<colgroup>
<col style="width:10%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
<col style="width:10%" />
<col style="width:30%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
</colgroup>
<!-- Headings -->
<tr>
<td class="bold" colspan="9">
<?php echo lang_get( 'own_sponsored' ) ?>
</td>
</tr>
<tr>
<td class="form-title"><?php echo lang_get( 'email_bug' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_project' ) ?></td>
<td class="form-title"><?php echo lang_get( 'fixed_in_version' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_status' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_handler' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_summary' ) ?></td>
<td class="form-title"><?php echo lang_get( 'amount' ) ?></td>
<td class="form-title"><?php echo lang_get( 'status' ) ?></td>
<td class="form-title"> </td>
</tr>
<?php
$t_total_owing = 0;
$t_total_paid = 0;
for( $i = 0; $i < $t_sponsor_count; ++$i ) {
$t_sponsor_row = $t_sponsors[$i];
$t_bug = bug_get( $t_sponsor_row['bug'] );
$t_sponsor = sponsorship_get( $t_sponsor_row['sponsor'] );
# describe bug
$t_status = string_attribute( get_enum_element( 'status', $t_bug->status, auth_get_current_user_id(), $t_bug->project_id ) );
$t_resolution = string_attribute( get_enum_element( 'resolution', $t_bug->resolution, auth_get_current_user_id(), $t_bug->project_id ) );
$t_version_id = version_get_id( $t_bug->fixed_in_version, $t_bug->project_id );
if( ( false !== $t_version_id ) && ( VERSION_RELEASED == version_get_field( $t_version_id, 'released' ) ) ) {
$t_released_label = '<a title="' . lang_get( 'released' ) . '">' . $t_bug->fixed_in_version . '</a>';
} else {
$t_released_label = $t_bug->fixed_in_version;
}
# choose color based on status
$t_status_css = html_get_status_css_bg( $t_bug->status, auth_get_current_user_id(), $t_bug->project_id );
echo '<tr class="' . $t_status_css . '">';
echo '<td><a href="' . string_get_bug_view_url( $t_sponsor_row['bug'] ) . '">' . bug_format_id( $t_sponsor_row['bug'] ) . '</a></td>';
echo '<td>' . string_display_line( project_get_field( $t_bug->project_id, 'name' ) ) . ' </td>';
echo '<td>' . $t_released_label . ' </td>';
echo '<td><span class="issue-status" title="' . $t_resolution . '">' . $t_status . '</span></td>';
echo '<td>';
print_user( $t_bug->handler_id );
echo '</td>';
# summary
echo '<td>' . string_display_line( $t_bug->summary );
if( VS_PRIVATE == $t_bug->view_state ) {
echo ' ';
print_icon( 'fa-lock', '', lang_get( 'private' ) );
}
echo '</td>';
# describe sponsorship amount
echo '<td class="pull-right">' . sponsorship_format_amount( $t_sponsor->amount ) . '</td>';
echo '<td>' . get_enum_element( 'sponsorship', $t_sponsor->paid ) . '</td>';
if( SPONSORSHIP_PAID == $t_sponsor->paid ) {
$t_total_paid += $t_sponsor->amount;
} else {
$t_total_owing += $t_sponsor->amount;
}
echo '<td>';
if( $t_payment ) {
echo '(paypal button)';
} else {
echo ' ';
}
echo '</td>';
echo '</tr>';
}
?>
<!-- Totals -->
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_owing' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_owing ) ?></td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_paid' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_paid ) ?></td>
<td colspan="2"></td>
</tr>
</table>
</div>
<?php } # end sponsored issues
$t_query = 'SELECT b.id as bug, s.id as sponsor, s.paid, b.project_id, b.fixed_in_version, b.status
FROM {bug} b, {sponsorship} s
WHERE b.handler_id=' . db_param() . ' AND s.bug_id = b.id ' .
( $t_show_all ? '' : 'AND ( b.status < ' . db_param() . ' OR s.paid < ' . SPONSORSHIP_PAID . ')' ) . '
AND ' . $t_project_clause . '
ORDER BY s.paid ASC, b.project_id ASC, b.fixed_in_version ASC, b.status ASC, b.id DESC';
$t_result = db_query( $t_query, $t_show_all ? array( $t_user ) : array( $t_user , $t_resolved ) );
$t_sponsors = array();
while( $t_row = db_fetch_array( $t_result ) ) {
$t_sponsors[] = $t_row;
}
$t_sponsor_count = count( $t_sponsors );
if( $t_sponsor_count === 0 ) {
echo '<p>' . lang_get( 'no_sponsored' ) . '</p>';
} else {
?>
<!-- # Edit sponsorship Form BEGIN -->
<br />
<div>
<form method="post" action="account_sponsor_update.php">
<?php echo form_security_field( 'account_sponsor_update' ) ?>
<table class="width100" cellspacing="1">
<colgroup>
<col style="width:10%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
<col style="width:35%" />
<col style="width:10%" />
<col style="width:10%" />
<col style="width:10%" />
</colgroup>
<!-- Headings -->
<tr>
<td class="bold" colspan="8">
<?php echo lang_get( 'issues_handled' ) ?>
</td>
</tr>
<tr>
<td class="form-title"><?php echo lang_get( 'email_bug' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_project' ) ?></td>
<td class="form-title"><?php echo lang_get( 'fixed_in_version' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_status' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_summary' ) ?></td>
<td class="form-title"><?php echo lang_get( 'sponsor' ) ?></td>
<td class="form-title"><?php echo lang_get( 'amount' ) ?></td>
<td class="form-title"><?php echo lang_get( 'status' ) ?></td>
</tr>
<?php
$t_bug_list = array();
$t_total_owing = 0;
$t_total_paid = 0;
for( $i = 0; $i < $t_sponsor_count; ++$i ) {
$t_sponsor_row = $t_sponsors[$i];
$t_bug = bug_get( $t_sponsor_row['bug'] );
$t_sponsor = sponsorship_get( $t_sponsor_row['sponsor'] );
$t_buglist[] = $t_sponsor_row['bug'] . ':' . $t_sponsor_row['sponsor'];
# describe bug
$t_status = string_attribute( get_enum_element( 'status', $t_bug->status, auth_get_current_user_id(), $t_bug->project_id ) );
$t_resolution = string_attribute( get_enum_element( 'resolution', $t_bug->resolution, auth_get_current_user_id(), $t_bug->project_id ) );
$t_version_id = version_get_id( $t_bug->fixed_in_version, $t_bug->project_id );
if( ( false !== $t_version_id ) && ( VERSION_RELEASED == version_get_field( $t_version_id, 'released' ) ) ) {
$t_released_label = '<a title="' . lang_get( 'released' ) . '">' . $t_bug->fixed_in_version . '</a>';
} else {
$t_released_label = $t_bug->fixed_in_version;
}
# choose color based on status
$t_status_css = html_get_status_css_bg( $t_bug->status, auth_get_current_user_id(), $t_bug->project_id );
echo '<tr class="' . $t_status_css . '">';
echo '<td><a href="' . string_get_bug_view_url( $t_sponsor_row['bug'] ) . '">' . bug_format_id( $t_sponsor_row['bug'] ) . '</a></td>';
echo '<td>' . string_display_line( project_get_field( $t_bug->project_id, 'name' ) ) . ' </td>';
echo '<td>' . $t_released_label . ' </td>';
echo '<td><a title="' . $t_resolution . '"><span class="underline">' . $t_status . '</span> </a></td>';
# summary
echo '<td>' . string_display_line( $t_bug->summary );
if( VS_PRIVATE == $t_bug->view_state ) {
print_icon( 'fa-lock', '', lang_get( 'private' ) );
}
echo '</td>';
# describe sponsorship amount
echo '<td>';
print_user( $t_sponsor->user_id );
echo '</td>';
echo '<td>' . sponsorship_format_amount( $t_sponsor->amount ) . '</td>';
echo '<td><select class="input-sm" name="sponsor_' . $t_row['bug'] . '_' . $t_sponsor->id . '">';
print_enum_string_option_list( 'sponsorship', $t_sponsor->paid );
echo '</select></td>';
echo '</tr>';
if( SPONSORSHIP_PAID == $t_sponsor->paid ) {
$t_total_paid += $t_sponsor->amount;
} else {
$t_total_owing += $t_sponsor->amount;
}
}
$t_hidden_bug_list = implode( ',', $t_buglist );
?>
<!-- Totals -->
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_owing' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_owing ) ?></td>
<td></td>
</tr>
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_paid' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_paid ) ?></td>
<td></td>
</tr>
<!-- BUTTONS -->
<tr>
<td colspan="5"> </td>
<!-- Update Button -->
<td colspan="3">
<input type="hidden" name="buglist" value="<?php echo $t_hidden_bug_list ?>" />
<input type="submit" class="button" value="<?php echo lang_get( 'update_sponsorship_button' ) ?>" />
</td>
</tr>
</table>
</form>
</div>
<?php } # end sponsored issues ?>
<br />
<div>
<?php
html_button( 'account_sponsor_page.php',
lang_get( ( $t_show_all ? 'sponsor_hide' : 'sponsor_show' ) ),
array( 'show_all' => ( $t_show_all ? 0 : 1 ) ) );
?>
</div>
<?php
layout_page_end();