-
Notifications
You must be signed in to change notification settings - Fork 76
/
docadd.php
245 lines (221 loc) · 7.27 KB
/
docadd.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
<?php
/**
* Page Description:
* This page will handle adding blobs into the database. It will
* present the form page on a GET and handle updating the database
* on a POST.
* This includes:
* Add comment to an event
* Add attachment to an event
*
* Input Parameters:
* For GET:
* id - event id (optional for some types)
* type - C=comment, A=attachment
* For POST:
* id - event id (optional for some types)
* type - C=comment, A=attachment
* description - (for type=C and A)
* comment - (for type=C)
* FileName - (for type=A)
*
* Comments:
* TODO: add email notification when attachment or comment is added
*/
require_once 'includes/init.php';
$id = getValue ( 'id', '-?[0-9]+' );
$type = getValue ( 'type' );
$user = getValue ( 'user' );
$error = '';
switch ( $type ) {
case 'C':
if ( empty ( $id ) )
$error = 'No id specified';
$title = translate ( 'Add Comment' );
break;
case 'A':
if ( empty ( $id ) )
$error = 'No id specified';
$title = translate ( 'Add Attachment' );
$upload = ini_get ( 'file_uploads' );
$upload_enabled = ! empty ( $upload ) &&
preg_match ( "/(On|1|true|yes)/i", $upload );
if ( ! $upload_enabled ) {
$error = 'You must enable file_uploads in php.ini';
}
break;
default:
$error = 'Invalid type';
break;
}
$can_add = false;
if ( $is_admin )
$can_add = true;
// Get event details if this is associated with an event
if ( empty ( $error ) && ! empty ( $id ) ) {
// is this user a participant or the creator of the event?
$res = dbi_execute ( 'SELECT we.cal_id
FROM webcal_entry we, webcal_entry_user weu
WHERE we.cal_id = weu.cal_id AND we.cal_id = ?
AND ( we.cal_create_by = ? OR weu.cal_login = ? )',
[$id, $login, $login] );
if ( $res ) {
$row = dbi_fetch_row ( $res );
if ( $row && $row[0] > 0 )
$is_my_event = true; // user is participant
dbi_free_result ( $res );
}
}
if ( $type == 'A' ) {
if ( empty ( $ALLOW_ATTACH ) || $ALLOW_ATTACH != 'Y' )
$error = print_not_auth();
else if ( empty ( $error ) && $ALLOW_ATTACH_PART == 'Y' && $is_my_event )
$can_add = true;
else if ( $ALLOW_ATTACH_ANY == 'Y' )
$can_add = true;
} else if ( $type == 'C' ) {
if ( empty ( $ALLOW_COMMENTS ) || $ALLOW_COMMENTS != 'Y' )
$error = print_not_auth();
else if ( empty ( $error ) && $ALLOW_COMMENTS_PART == 'Y' && $is_my_event )
$can_add = true;
else if ( $ALLOW_COMMENTS_ANY == 'Y' )
$can_add = true;
}
//check UAC
if ( access_is_enabled() ) {
$can_add = $can_add || access_user_calendar ( 'edit', $user );
}
if ( ! $can_add )
$error = print_not_auth();
if ( ! empty ( $error ) ) {
print_header();
echo print_error ( $error );
echo print_trailer();
exit;
}
// Handle possible POST first
if ( empty ( $REQUEST_METHOD ) )
$REQUEST_METHOD = $_SERVER['REQUEST_METHOD'];
if ( $REQUEST_METHOD == 'POST' ) {
// get next id first
$res = dbi_execute ( 'SELECT MAX( cal_blob_id ) FROM webcal_blob' );
if ( ! $res )
die_miserable_death ( str_replace ( 'XXX', dbi_error(),
translate ( 'Database error XXX.' ) ) );
$row = dbi_fetch_row ( $res );
$nextid = ( ! empty ( $row ) ? $row[0] + 1 : 1 );
dbi_free_result ( $res );
if ( $type == 'C' ) {
// Comment
$description = getValue ( 'description' );
$comment = getValue ( 'comment' );
if ( ! dbi_execute ( 'INSERT INTO webcal_blob ( cal_blob_id, cal_id,
cal_login, cal_name, cal_description, cal_size, cal_mime_type, cal_type,
cal_mod_date, cal_mod_time, cal_blob ) VALUES
( ?,?,?,?,?,?,?,?,?,?,? )', [$nextid, $id, $login,
NULL, $description, 0, 'text/plain', 'C', date ( 'Ymd' ), date ( 'His' ),
NULL] ) )
$error = db_error();
else {
if ( ! dbi_update_blob ( 'webcal_blob', 'cal_blob',
"cal_blob_id = $nextid", $comment ) )
$error = db_error();
else {
// success! redirect to view event page
activity_log ( $id, $login, $login, LOG_COMMENT, '' );
do_redirect ( "view_entry.php?id=$id" );
}
}
} else if ( $type == 'A' ) {
// Attachment
$description = getValue ( 'description' );
if ( ! empty ( $_FILES['FileName'] ) )
$file = $_FILES['FileName'];
if ( empty ( $file['file'] ) )
$error = 'File Upload error!<br>';
//print_r ( $file ); exit;
$mimetype = $file['type'];
$filesize = $file['size'];
$filename = $file['name'];
$tmpfile = $file['tmp_name'];
if ( empty ( $description ) )
$description = $filename;
$data = '';
$fd = @fopen ( $tmpfile, 'r' );
if ( ! $fd )
die_miserable_death ( "Error reading temp file: $tmpfile" );
if ( ! empty ( $error ) ) {
while ( ! feof ( $fd ) ) {
$data .= fgets ( $fd, 4096 );
}
}
fclose ( $fd );
$comment = getValue ( 'description' );
if ( ! dbi_execute ( 'INSERT INTO webcal_blob ( cal_blob_id, cal_id,
cal_login, cal_name, cal_description, cal_size, cal_mime_type, cal_type,
cal_mod_date, cal_mod_time, cal_blob ) VALUES
( ?,?,?,?,?,?,?,?,?,?,? )', [$nextid, $id, $login,
substr($filename,0,30), $description, $filesize, $mimetype, 'A', date ( 'Ymd' ),
date ( 'His' ), NULL] ) )
$error = db_error();
else {
if ( ! dbi_update_blob ( 'webcal_blob', 'cal_blob',
"cal_blob_id = $nextid", $data ) ) {
$error = db_error();
} else {
// success! redirect to view event page
activity_log ( $id, $login, $login, LOG_ATTACHMENT, $filename );
do_redirect ( "view_entry.php?id=$id" );
}
}
} else {
die_miserable_death ( 'Unsupported type' ); // programmer error
}
if ( ! empty ( $error ) ) {
print_header();
echo print_error ( $error );
echo print_trailer();
exit;
}
}
print_header();
?>
<h2><?php echo $title;?></h2>
<?php if ( $type == 'C' ) {
// Comment
?>
<form action="docadd.php" method="post" name="docform">
<?php print_form_key(); ?>
<input type="hidden" name="id" value="<?php echo $id?>">
<input type="hidden" name="type" value="C">
<table>
<tr><td class="aligntop"><label for="description">
<?php etranslate ( 'Subject' )?>:</label></td>
<td><input type="text" name="description" size="50" maxlength="127"></td></tr>
<tr><td class="aligntop"><label for="comment">
<?php etranslate ( 'Comment' )?>:</label></td>
<td><textarea name="comment" rows="15" cols="60" wrap="auto"></textarea></td></tr>
<tr><td colspan="2">
<button type="submit"><?php etranslate ( 'Add Comment' )?></button></td></tr>
</table>
</form>
<?php } else if ( $type == 'A' ) {
// Attachment
?>
<form action="docadd.php" method="post" name="docform" enctype="multipart/form-data">
<?php print_form_key(); ?>
<input type="hidden" name="id" value="<?php echo $id?>">
<input type="hidden" name="type" value="A">
<table>
<tr class="browse"><td>
<label for="fileupload"><?php etranslate ( 'Upload file' );?>:</label></td><td>
<input type="file" name="FileName" id="fileupload" size="45" maxlength="50">
<tr><td class="aligntop"><label for="description">
<?php etranslate ( 'Description' )?>:</label></td>
<td><input type="text" name="description" size="50" maxlength="127"></td></tr>
<tr><td colspan="2">
<button type="submit"><?php etranslate ( 'Add Attachment' )?></button></td></tr>
</table>
</form>
<?php }
echo print_trailer(); ?>