-
Notifications
You must be signed in to change notification settings - Fork 75
/
edit_report_handler.php
196 lines (171 loc) · 6.55 KB
/
edit_report_handler.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
<?php
/**
* Page Description:
* This page will handle the form submission from edit_report.php
* and either add, update or delete a report.
*
* Input Parameters:
* report_id (optional) - the report id of the report to edit.
* If blank, user is adding a new report.
* public (optional) - If set to '1' and user is an admin user,
* then we are creating a report for the public user.
* report_name
* report_user
* is_global (Y or N)
* include_header (Y or N)
* time_range
* cat_id
* allow_nav
* include_empty
* show_in_trailer
* delete (if 'delete' button pressed)
* page_template
* day_template
* event_template
*
* Security:
* Same as in edit_report.php...
* 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.
* Can only delete/edit an event if you are the creator of the event
* or you are an admin user.
*/
require_once 'includes/init.php';
load_user_categories();
$error = ( empty( $REPORTS_ENABLED ) || $REPORTS_ENABLED != 'Y'
? print_not_auth() : '' );
$allow_nav = getPostValue( 'allow_nav' );
$cat_id = getValue ( 'cat_id', '-?[0-9]*', true );
$day_template = getPostValue( 'day_template' );
$delete = getPostValue( 'delete' );
$event_template = getPostValue( 'event_template' );
$include_empty = getPostValue( 'include_empty' );
$include_header = getPostValue( 'include_header' );
$is_global = getPostValue( 'is_global' );
$page_template = getPostValue( 'page_template' );
$public = getPostValue( 'public' );
$report_id = getValue( 'report_id', '-?[0-9]+', true );
$report_name = getPostValue( 'report_name' );
$report_user = getPostValue( 'report_user' );
$show_in_trailer= getPostValue( 'show_in_trailer' );
$time_range = getPostValue( 'time_range' );
$updating_public = ( $is_admin && ! empty( $public ) && $PUBLIC_ACCESS == 'Y' );
if ( $single_user == 'Y' || $DISABLE_PARTICIPANTS_FIELD == 'Y' )
$report_user = '';
if ( ! $is_admin )
$is_global = 'N';
$adding_report = ( empty ( $report_id ) || $report_id <= 0 );
// Check permissions.
// Can only edit/delete if you created the event or you are an admin.
if ( empty ( $error ) && $single_user != 'N' && !
empty ( $report_id ) && $report_id > 0 && ! $is_admin ) {
$res = dbi_execute ( 'SELECT cal_login FROM webcal_report WHERE report_id = ?',
[$report_id] );
if ( $res ) {
if ( $row = dbi_fetch_row ( $res ) ) {
if ( $row[0] != $login )
$error = print_not_auth();
} else
$error = str_replace ( 'XXX', $report_id,
translate ( 'No such report id XXX.' ) );
dbi_free_result ( $res );
} else
$error = db_error();
}
// Validate templates to make sure the required variables are found.
// Page template must include ${days}.
if ( empty ( $error ) ) {
$errStr = '
<p>' . translate ( 'Error' ) . ' [';
$noVarXXX = ']: ' . translate ( 'Variable XXX not found.' ) . '</p>';
if ( ! strstr ( $page_template, '${days}' ) )
$error .= $errStr . translate ( 'Page template' )
. str_replace ( 'XXX', '${days}', $noVarXXX );
// Day template must include ${events}.
if ( ! strstr ( $day_template, '${events}' ) )
$error .= $errStr . translate ( 'Day template' )
. str_replace ( 'XXX', '${events}', $noVarXXX );
// Event template must include ${name}.
if ( ! strstr ( $event_template, '${name}' ) )
$error .= $errStr . translate ( 'Event template' )
. str_replace ( 'XXX', '${name}', $noVarXXX );
}
$delete = getPostValue ( 'delete' );
if ( empty ( $error ) && ! empty ( $report_id ) && ! empty ( $delete ) ) {
if ( ! dbi_execute ( 'DELETE FROM webcal_report_template WHERE cal_report_id = ?',
[$report_id] ) )
$error = db_error();
if ( empty ( $error ) && ! dbi_execute ( 'DELETE FROM webcal_report
WHERE cal_report_id = ?', [$report_id] ) )
$error = db_error();
// Send back to main report listing page.
if ( empty ( $error ) )
do_redirect ( 'report.php' );
}
if ( empty ( $error ) ) {
if ( empty ( $report_name ) || trim ( $report_name ) == '' )
$report_name = translate ( 'Unnamed Report' );
$names = ['cal_login', 'cal_update_date', 'cal_report_type',
'cal_report_name', 'cal_user', 'cal_include_header', 'cal_time_range',
'cal_cat_id', 'cal_allow_nav', 'cal_include_empty', 'cal_is_global',
'cal_show_in_trailer'];
$values = [
( $updating_public ? '__public__' : $login ),
date ( 'Ymd' ),
'html',
$report_name,
( ! $is_admin || empty ( $report_user ) ? null : $report_user ),
( empty ( $include_header ) || $include_header != 'Y' ? 'N' : 'Y' ),
( isset ( $time_range ) ? $time_range : 11 ),
( empty ( $cat_id ) ? null : $cat_id ),
( empty ( $allow_nav ) || $allow_nav != 'Y' ? 'N' : 'Y' ),
( empty ( $include_empty ) || $include_empty != 'Y' ? 'N' : 'Y' ),
( empty ( $is_global ) || $is_global != 'Y' ? 'N' : 'Y' ),
( empty ( $show_in_trailer ) || $show_in_trailer != 'Y' ? 'N' : 'Y' )];
if ( $adding_report ) {
$newid = 1;
$res = dbi_execute ( 'SELECT MAX( cal_report_id ) FROM webcal_report' );
if ( $res ) {
if ( $row = dbi_fetch_row ( $res ) )
$newid = $row[0] + 1;
dbi_free_result ( $res );
}
$names[] = 'cal_report_id';
$values[] = $newid;
$sql = 'INSERT INTO webcal_report ( ' . implode ( ',', $names )
. ' ) VALUES ( ?' . str_repeat ( ',?', count ( $names ) - 1 ) . ' )';
$report_id = $newid;
} else {
$sql = 'UPDATE webcal_report SET ' . implode ( ' = ?,', $names )
. ' = ? WHERE cal_report_id = ?';
$values[] = $report_id;
}
}
if ( empty ( $error ) && ! dbi_execute ( $sql, $values ) )
$error = db_error();
if ( empty ( $error ) ) {
if ( ! $adding_report ) {
if ( ! dbi_execute ( 'DELETE FROM webcal_report_template
WHERE cal_report_id = ?', [$report_id] ) )
$error = db_error();
}
$ins_sql = 'INSERT INTO webcal_report_template
( cal_report_id, cal_template_type, cal_template_text ) VALUES ( ?, ?, ? )';
if ( empty ( $error ) && ! dbi_execute ( $ins_sql,
[$report_id, 'D', $day_template] ) )
$error = db_error();
if ( empty ( $error ) && ! dbi_execute ( $ins_sql,
[$report_id, 'E', $event_template] ) )
$error = db_error();
if ( empty ( $error ) && ! dbi_execute ( $ins_sql,
[$report_id, 'P', $page_template] ) )
$error = db_error();
}
if ( empty ( $error ) ) {
do_redirect ( 'report.php' . ( $updating_public ? '?public=1' : '' ) );
exit;
}
print_header();
echo print_error ( $error ) . print_trailer();
?>