-
Notifications
You must be signed in to change notification settings - Fork 75
/
purge.php
268 lines (246 loc) · 7.84 KB
/
purge.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
<?php
/**
* Description:
* Purge events page and handler.
* When an event is deleted from a user's calendar, it is marked
* as deleted (webcal_entry_user.cal_status = 'D'). This page
* will actually clean out the database rather than just mark an
* event as deleted.
*
* Security:
* Events will only be deleted if they were created by the selected
* user. Events where the user was a participant (but not did not
* create) will remain unchanged.
*/
require_once 'includes/init.php';
// Set this to true do show the SQL at the bottom of the page
$purgeDebug = false;
$sqlLog = '';
if ( ! $is_admin ) {
// must be admin...
do_redirect ( 'index.php' );
exit;
}
$ALL = 0;
$previewStr = translate ( 'Preview' );
$allStr = translate ( 'All' );
$purgingStr = translate ( 'Purging events for' );
$deleteStr = translate ( 'Delete' );
$delete = getPostValue ( 'delete' );
$do_purge = false;
if ( ! empty ( $delete ) ) {
$do_purge = true;
}
$purge_all = getPostValue ( 'purge_all' );
$purge_deleted = getPostValue ( 'purge_deleted' );
$end_year = getPostValue ( 'end_year' );
$end_month = getPostValue ( 'end_month' );
$end_day = getPostValue ( 'end_day' );
$username = getPostValue ( 'username' );
$preview = getPostValue ( 'preview' );
$preview = ( empty ( $preview ) ? false : true );
$INC = ['js/visible.php'];
print_header ( $INC );
?>
<table>
<tr>
<td style="vertical-align:top; width:50%;">
<h2><?php etranslate ( 'Delete Events' );
if ( $preview )
echo "[$previewStr]";
echo "</h2>\n"
. display_admin_link();
if ( $do_purge ) {
echo '<h2>';
if ( $preview )
echo "[$previewStr] $purgingStr $username...";
else
echo "$purgingStr: $username";
echo "</h2>\n";
$end_date = sprintf ( "%04d%02d%02d", $end_year, $end_month, $end_day );
$ids = $tail = '';
if ( $purge_deleted == 'Y' )
$tail = " AND weu.cal_status = 'D' ";
if ( $purge_all == 'Y' ) {
if ( $username == 'ALL' ) {
$ids = ['ALL'];
} else {
$ids = get_ids ( 'SELECT cal_id FROM webcal_entry '
. " WHERE cal_create_by = '$username' $tail" );
}
} elseif ( $end_date ) {
if ( $username != 'ALL' ) {
$tail = " AND we.cal_create_by = '$username' $tail";
} else {
$tail = '';
$ALL = 1; // Need this to tell get_ids to ignore participant check
}
$E_ids = get_ids ( 'SELECT we.cal_id FROM webcal_entry we, webcal_entry_user weu ' .
"WHERE cal_type = 'E' AND cal_date < '$end_date' $tail",
$ALL );
$M_ids = get_ids ( 'SELECT DISTINCT(we.cal_id) FROM webcal_entry we,
webcal_entry_user weu, webcal_entry_repeats wer
WHERE we.cal_type = \'M\'
AND we.cal_id = wer.cal_id AND we.cal_id = wer.cal_id '
. "AND cal_end IS NOT NULL AND cal_end < '$end_date' $tail",
$ALL );
$ids = array_merge ( $E_ids, $M_ids );
}
//echo "event ids: <ul><li>" . implode ( "</li><li>", $ids ) . "</li></ul>\n";
if ( count ( $ids ) > 0 ) {
purge_events ( $ids );
} else {
echo translate ( 'None' );
}
echo '<h2>...' . translate ( 'Finished' ) . ".</h2>\n";
?>
<form><button class="btn btn-primary" type="button" onclick="history.back()">
<?php etranslate ( 'Back' )?></button></form><?php
if ( $purgeDebug ) {
echo '<div style="border: 1px solid #000;background-color: #FFF;"><span class="tt">'
. "$sqlLog</span></div>\n";
}
} else {
?>
<form id="purgeform" action="purge.php" method="post" name="purgeform">
<?php echo csrf_form_key(); ?>
<table>
<tr><td><label for="user" class="colon">
<?php echo translate ( 'User' );?></label></td>
<td><select class="form-control" name="username">
<?php
$userlist = get_my_users();
if ($NONUSER_ENABLED == 'Y' ) {
$nonusers = get_nonuser_cals();
$userlist = ($NONUSER_AT_TOP == 'Y' ? array_merge ($nonusers, $userlist) : array_merge ($userlist, $nonusers));
}
for ( $i = 0, $cnt = count ( $userlist ); $i < $cnt; $i++ ) {
echo '<option value="' . $userlist[$i]['cal_login'] . '"';
if ( $login == $userlist[$i]['cal_login'] )
echo ' selected';
echo '>' . $userlist[$i]['cal_fullname'] . "</option>\n";
}
?>
<option value="ALL"><?php echo $allStr ?></option>
</select>
</td></tr>
<tr><td><label for="purge_all" class="colon">
<?php etranslate ( 'Check box to delete ALL events for a user' )?></label></td>
<td class="alignbottom">
<input class="form-control-sm" type="checkbox" name="purge_all" value="Y" id="purge_all" onclick="toggle_datefields( 'dateArea', this );">
</td></tr>
<tr id="dateArea"><td><label class="colon">
<?php etranslate ( 'Delete all events before' );?></label></td><td>
<?php echo date_selection ( 'end_', date ( 'Ymd' ) ) ?>
</td></tr>
<tr><td><label for="purge_deleted" class="colon">
<?php etranslate ( 'Purge deleted only' )?></label></td>
<td class="alignbottom">
<input class="form-control-sm" type="checkbox" name="purge_deleted" value="Y">
</td></tr>
<tr><td><label for="preview" class="colon">
<?php etranslate ( 'Preview delete' )?></label></td>
<td class="alignbottom">
<input class="form-control-sm" type="checkbox" name="preview" value="Y" checked>
</td></tr>
<tr><td colspan="2">
<button class="btn btn-primary" name="delete" type="submit" onclick="return
confirm('<?php
etranslate ( 'Are you sure you want to delete events for', true ) ?> ' +
document.forms[0].username.value + '?')"><?php echo $deleteStr?></button>
</td></tr>
</table>
</form>
<?php } ?>
</td></tr></table>
<?php echo print_trailer();
/**
* purge_events
*
* @param mixed $ids
*/
function purge_events ( $ids ) {
global $allStr, $c, // db connection
$preview, $previewStr, $sqlLog;
$tables = [
['webcal_entry_user', 'cal_id'],
['webcal_entry_repeats', 'cal_id'],
['webcal_entry_repeats_not', 'cal_id'],
['webcal_entry_log', 'cal_entry_id'],
['webcal_entry_categories', 'cal_id'],
['webcal_import_data', 'cal_id'],
['webcal_site_extras', 'cal_id'],
['webcal_reminders', 'cal_id'],
['webcal_entry_ext_user', 'cal_id'],
['webcal_blob', 'cal_id'],
['webcal_entry', 'cal_id']];
//var_dump($tables);exit;
$cnt = count ( $tables );
$num = array_fill ( 0, $cnt, 0 );
foreach ( $ids as $cal_id ) {
for ( $i = 0; $i < $cnt; $i++ ) {
$clause = ( $cal_id == 'ALL' ? '' :
" WHERE {$tables[$i][1]} = $cal_id" );
if ( $preview ) {
$sql = 'SELECT COUNT(' . $tables[$i][1] .
") FROM {$tables[$i][0]}" . $clause;
$res = dbi_execute ( $sql );
$sqlLog .= $sql . "<br>\n";
if ( $res ) {
if ( $row = dbi_fetch_row ( $res ) )
$num[$i] += $row[0];
dbi_free_result ( $res );
}
} else {
$sql = "DELETE FROM {$tables[$i][0]}" . $clause;
$sqlLog .= $sql . "<br>\n";
$res = dbi_execute ( $sql );
if ( $cal_id == 'ALL' )
$num[$i] = $allStr;
else
$num[$i] += dbi_affected_rows ( $c, $res );
}
}
}
$xxxStr = translate( 'Records deleted from XXX' );
for ( $i = 0; $i < $cnt; $i++ ) {
$table = $tables[$i][0];
echo '[' . $previewStr . '] ' .
str_replace( 'XXX', " $table: {$num[$i]}" , $xxxStr ) .
"<br>\n";
}
}
/**
* get_ids
*
* @param mixed $sql
* @param mixed $ALL
*/
function get_ids ( $sql, $ALL = '' ) {
global $sqlLog;
$ids = [];
$sqlLog .= $sql . "<br>\n";
$res = dbi_execute ( $sql );
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
if ($ALL == 1)
$ids[] = $row[0];
else {
//ONLY Delete event if no other participants.
$ID = $row[0];
$res2 = dbi_execute ( 'SELECT COUNT( * ) FROM webcal_entry_user
WHERE cal_id = ?', [$ID] );
if ( $res2 ) {
if ( $row2 = dbi_fetch_row ( $res2 ) ) {
if ( $row2[0] == 1 )
$ids[] = $ID;
}
dbi_free_result ( $res2 );
}
} // End if ($ALL)
} // End while
}
dbi_free_result ( $res );
return $ids;
}
?>