-
Notifications
You must be signed in to change notification settings - Fork 75
/
edit_report.php
384 lines (340 loc) · 14 KB
/
edit_report.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
<?php
/**
* Presents a HTML form to add or edit a report.
*
* Input Parameters:
* - <var>report_id</var> (optional) - the report id of the report to edit. If
* blank, user is adding a new report.
* - <var>public</var> (optional) - If set to '1' and user is an admin user,
* then we are creating a report for the public user.
*
* @author Craig Knudsen <[email protected]>
* @copyright Craig Knudsen, <[email protected]>, http://k5n.us/webcalendar
* @license https://gnu.org/licenses/old-licenses/gpl-2.0.html GNU GPL
*
* @package WebCalendar\Reports
*/
/* Security:
* If system setting $REPORTS_ENABLED is set to anything other than 'Y',
* then don't allow access to this page.
* If $ALLOW_VIEW_OTHER is 'N', then do not allow selection of participants.
* Only report creator (cal_login in webcal_report), or an admin user,
* can edit/delete report.
*/
require_once 'includes/init.php';
load_user_categories();
$adding_report = false;
$charset = ( empty ( $LANGUAGE ) ? 'iso-8859-1' : translate ( 'charset' ) );
$checked = ' checked';
$error =
( empty ( $REPORTS_ENABLED ) || $REPORTS_ENABLED != 'Y' || $login == '__public__'
? print_not_auth() : '' );
$report_id = getValue ( 'report_id', '-?[0-9]+', true );
$selected = ' selected';
$show_participants = ( $single_user == 'Y' || $DISABLE_PARTICIPANTS_FIELD == 'Y'
? false : true );
$updating_public = ( $is_admin && ! empty( $public ) && $PUBLIC_ACCESS == 'Y' );
$report_user = ( $updating_public ? '__public__' : '');
if ( empty ( $report_id ) ) {
$adding_report = true;
$include_header = $report_allow_nav = 'Y';
$report_id = -1;
$report_is_global = 'N';
}
// Set date range options.
$ranges = [
'0' => translate ( 'Tomorrow' ),
'1' => translate ( 'Today' ),
'2' => translate ( 'Yesterday' ),
'3' => translate ( 'Day before yesterday' ),
'10' => translate ( 'Next week' ),
'11' => translate ( 'This week' ),
'12' => translate ( 'Last week' ),
'13' => translate ( 'Week before last' ),
'20' => translate ( 'Next week and week after' ),
'21' => translate ( 'This week and next week' ),
'22' => translate ( 'Last week and this week' ),
'23' => translate ( 'Last two weeks' ),
'30' => translate ( 'Next month' ),
'31' => translate ( 'This month' ),
'32' => translate ( 'Last month' ),
'33' => translate ( 'Month before last' ),
'40' => translate ( 'Next year' ),
'41' => translate ( 'This year' ),
'42' => translate ( 'Last year' ),
'43' => translate ( 'Year before last' ),
'50' => translate ( 'Next 14 days' ),
'51' => translate ( 'Next 30 days' ),
'52' => translate ( 'Next 60 days' ),
'53' => translate ( 'Next 90 days' ),
'54' => translate ( 'Next 180 days' ),
'55' => translate ( 'Next 365 days' )];
// Get list of users visible to the current user.
if ( empty ( $error ) && $show_participants ) {
$userlist = get_my_users ( '', 'view' );
if ( $NONUSER_ENABLED == 'Y' ) {
// Restrict NUC list if groups are enabled.
$nonusers = get_my_nonusers ( $login, true, 'view' );
$userlist = ( $NONUSER_AT_TOP == 'Y'
? array_merge ( $nonusers, $userlist )
: array_merge ( $userlist, $nonusers ) );
}
$userlistcnt = count ( $userlist );
}
// Default values.
$day_template = '<dt><b>${date}</b></dt>
<dd><dl>${events}</dl></dd>';
$event_template = '<dt>${name}</dt>
<dd><b>' . translate ( 'Date' ) . ':</b> ${date}<br>
<b>' . translate ( 'Time' ) . ':</b> ${time}<br>
${description}</dd>
';
$page_template = '<dl>${days}</dl>';
// Setup option arrays.
$day_options = ['events', 'date', 'fulldate', 'report_id'];
$event_options = ['name', 'description', 'date', 'fulldate', 'time',
'starttime', 'endtime', 'duration', 'location', 'url', 'priority', 'href',
'user', 'fullname', 'report_id'];
$page_options = ['days', 'report_id'];
/**
* Generate clickable option lists.
*/
function print_options ( $textarea, $option ) {
// Use ASCII values for ${}.
echo '
<a onclick="addMe( \'' . $textarea . '\', \'${' . $option
. '}\' )">${' . $option . '}</a><br>';
}
if ( empty ( $error ) && $report_id >= 0 ) {
$res = dbi_execute ( 'SELECT cal_login, cal_report_id, cal_is_global,
cal_report_type, cal_include_header, cal_report_name, cal_time_range,
cal_user, cal_allow_nav, cal_cat_id, cal_include_empty, cal_show_in_trailer,
cal_update_date FROM webcal_report WHERE cal_report_id = ?',
[$report_id] );
if ( $res ) {
if ( $row = dbi_fetch_row ( $res ) ) {
$i = 0;
$report_login = $row[$i++];
$report_id = $row[$i++];
$report_is_global = $row[$i++];
$report_type = $row[$i++];
$report_include_header = $row[$i++];
$report_name = $row[$i++];
$report_time_range = $row[$i++];
$report_user = $row[$i++];
$report_allow_nav = $row[$i++];
$report_cat_id = $row[$i++];
$report_include_empty = $row[$i++];
$report_show_in_menu = $row[$i++];
$report_update_date = $row[$i++];
// Check permissions.
if ( $show_participants && ! empty ( $report_user ) ) {
$user_is_in_list = false;
for ( $i = 0; $i < $userlistcnt; $i++ ) {
if ( $report_user == $userlist[$i]['cal_login'] )
$user_is_in_list = true;
}
if ( ! $user_is_in_list && $report_login != $login && ! $is_admin )
$error = print_not_auth();
}
if ( ! $is_admin && $login != $report_login )
// Only creator or an admin can edit/delete the event.
$error = print_not_auth();
// If we are editing a public user report we need to set $updating_public.
if ( $is_admin && $report_login == '__public__' )
$updating_public = true;
} else
$error = str_replace ( 'XXX', $report_id,
translate ( 'Invalid report id XXX.' ) );
dbi_free_result ( $res );
} else
$error = db_error();
$res = dbi_execute ( 'SELECT cal_template_type, cal_template_text
FROM webcal_report_template
WHERE cal_report_id = ?', [$report_id] );
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
if ( $row[0] == 'D' )
$day_template = $row[1];
elseif ( $row[0] == 'E' )
$event_template = $row[1];
elseif ( $row[0] == 'P' )
$page_template = $row[1];
}
dbi_free_result ( $res );
}
} else {
// Default values for new report.
$report_allow_nav = $report_include_header = 'Y';
$report_cat_id = $report_update_date = '';
$report_id = -1;
$report_include_empty = $report_is_global = $report_show_in_menu = 'N';
$report_login = $login;
$report_name = translate ( 'Unnamed Report' );
$report_time_range = 11; // Current week.
$report_type = 'html';
// $report_user already set.
}
print_header();
if ( ! empty ( $error ) ) {
echo $error . print_trailer ( false );
exit;
}
echo '
<h2>'
. ( $updating_public ? translate ( $PUBLIC_ACCESS_FULLNAME ) . ' ' : '' )
. ( $adding_report ? translate ( 'Add Report' ) : translate ( 'Edit Report' ) )
. '</h2>
<form action="edit_report_handler.php" method="post" name="reportform">'
. csrf_form_key()
. ( $updating_public ? '
<input type="hidden" name="public" value="1">' : '' )
. ( ! $adding_report ? '
<input type="hidden" name="report_id" value="'
. $report_id . '">' : '' ) . '
<div class="form-inline">
<label class="col-sm-2 col-form-label" for="rpt_name">' . translate ('Report Name') . '</label>
<input class="form-control" type="text" name="report_name" id="rpt_name" size="40" ' .
'maxlength="50" value="' . htmlentities($report_name) . '"></div>';
if ( $show_participants ) {
echo '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="rpt_user">' . translate ('User') . '</label>
<select class="form-control" name="report_user" id="rpt_user" size="1">
<option value=""' . ( empty ( $report_user ) ? $selected : '' )
. '>' . translate ( 'Current User' ) . '</option>';
for ( $i = 0; $i < $userlistcnt; $i++ ) {
echo '
<option value="' . $userlist[$i]['cal_login'] . '"'
. ( ! empty ( $report_user ) && $report_user == $userlist[$i]['cal_login']
? $selected : '' ) . '>' . $userlist[$i]['cal_fullname'] . '</option>';
}
echo '</select></div>';
}
echo ( $is_admin ? '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="is_global">' . translate ('Global') . '</label>' .
print_radio( 'is_global', '', '',
( ! empty( $report_is_global ) && $report_is_global == 'Y'
? 'Y' : 'N' ) ) . '</div>'
// The report will always be shown in the menu for the creator of the report.
// For admin users who create a global report,
// allow option of adding to all users menu.
. '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="show_in_trailer">' . translate ('Include link in menu') . '</label>'
. print_radio('show_in_trailer', '', '',
(! empty($report_show_in_menu) && $report_show_in_menu == 'Y' ? 'Y' : 'N')) . '' : '') . '</div>
<div class="form-inline">
<label class="col-sm-2 col-form-label" for="include_header">' . translate ('Include standard header/trailer') . '</label>' .
print_radio( 'include_header', '', '',
(! empty( $report_include_header ) && $report_include_header == 'Y'
? 'Y' : 'N' ) ) . '</div>
<div class="form-inline">
<label class="col-sm-2 col-form-label" for="allow_nav">' . translate ('Include previous/next links') . '</label>' .
print_radio( 'allow_nav', '', '',
( ! empty( $report_allow_nav ) && $report_allow_nav == 'Y'
? 'Y' : 'N' ) ) . '</div>
<div class="form-inline">
<label class="col-sm-2 col-form-label" for="include_empty">' . translate ('Include empty dates') . '</label>' .
print_radio( 'include_empty', '', '',
( ! empty( $report_include_empty ) && $report_include_empty == 'Y'
? 'Y' : 'N' ) ) . '</div>
<div class="form-inline">
<label class="col-sm-2 col-form-label" for="rpt_time_range">' . translate ('Date range') . '</label>
<select class="form-control" name="time_range" id="rpt_time_range">';
foreach ($ranges as $num => $descr) {
echo '
<option value="' . $num . '"'
. ( $report_time_range == $num ? $selected : '' )
. '>' . $descr . '</option>';
}
echo '</select></div>';
if ( $CATEGORIES_ENABLED == 'Y' ) {
echo '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="cat_id">' . translate ('Category') . '</label>
<select class="form-control" name="cat_id" id="rpt_cat_id">
<option value="">' . translate ( 'None' ) . '</option>';
foreach ($categories as $K => $V) {
echo '<option value="' . $K . '"' . ( $report_cat_id == $K ? $selected : '' )
. '>' . htmlentities ( $V['cat_name'] ) . '</option>';
}
echo '</select></div>';
} //end $CATEGORIES_ENABLED test
echo '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="page_template">' . translate ('Page template') . '</label>
<textarea class="form-control" rows="12" cols="60" name="page_template">'
. htmlentities ( $page_template, ENT_COMPAT, $charset ) . '</textarea>';
show_template_vars ('page_template', $page_options);
echo "</div>\n";
echo '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="day_template">' . translate ('Day template') . '</label>
<textarea class="form-control" rows="12" cols="60" name="day_template">'
. htmlentities ( $day_template, ENT_COMPAT, $charset ) . '</textarea>';
show_template_vars ('day_template', $day_options);
echo "</div>\n";
echo '<div class="form-inline">
<label class="col-sm-2 col-form-label" for="event_template">' . translate ('Event template') . '</label>
<textarea class="form-control" rows="12" cols="60" name="event_template" id="event_template">'
. htmlentities ( $event_template, ENT_COMPAT, $charset ) . '</textarea>';
show_template_vars ('event_template', $event_options);
echo "</div>\n";
// TODO: Fix support for site extras here...
//$extra_names = get_site_extras_names( EXTRA_DISPLAY_REPORT );
//if ( count ( $extra_names ) > 0 )
// echo '<div class="form-inline">
// <label class="col-sm-2 col-form-label" for="event_template">' . translate ('Site Extras') . '</label>';
//foreach ( $extra_names as $name ) {
// print_options ( 'event_template', 'extra:' . $name );
//}
echo '<div class="form-inline mt-1">
<button class="btn btn-primary m-1" type="submit">'
. translate ( 'Save' ) . '</button>'
. ( $adding_report ? '' : '
<a href="report.php" class="btn btn-secondary m-1">'
. translate ( 'Cancel' ) . '</a>
<button class="btn btn-danger m-1" name="delete" type="submit"'
. '" onclick="return confirm(\''
. translate ( 'Are you sure you want to delete this report?' ) . '\');">'
. translate ( 'Delete' ) . '</button>' );
?>
</div>
</form>
<?php
function show_template_vars($areaname, $vars) {
echo '<div class="dropdown show m-1">' .
'<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" ' .
'data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">' .
translate('Template variables') . '</a>' . "\n";
echo '<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">';
foreach ($vars as $option) {
echo '<a class="dropdown-item" onclick="javascript:addMe(\'' . $areaname . '\', \'${' .
$option . '}\')">${' . $option . '}</a>' . "\n";
}
echo '</div></div>';
}
?>
<script>
<!-- <![CDATA[
// This script borrowed from phpMyAdmin with some modification.
function addMe ( areaname, myValue ) {
var textarea = document.reportform.elements[areaname];
// IE support.
if ( document.selection ) {
textarea.focus();
sel = document.selection.createRange();
sel.text = myValue;
}
// MOZILLA/NETSCAPE support.
else if ( textarea.selectionStart || textarea.selectionStart == '0' ) {
var
startPos = textarea.selectionStart,
endPos = textarea.selectionEnd;
textarea.value = textarea.value.substring ( 0, startPos ) + myValue
+ textarea.value.substring ( endPos, textarea.value.length );
}
else {
textarea.value += myValue;
}
}
//]]> -->
</script>
<?php echo print_trailer();
?>