-
Notifications
You must be signed in to change notification settings - Fork 76
/
doc.php
186 lines (167 loc) · 6 KB
/
doc.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
<?php
/**
* Description:
* Obtain a binary object from the database and send it back to
* the browser using the correct mime type.
*
* Input Parameters:
* blid - The unique identifier for this blob (required)
*/
require_once 'includes/init.php';
require_once 'includes/classes/Doc.php';
$blid = getValue ( 'blid', '-?[0-9]+', true );
$error = $res = '';
$invalidIDStr = translate ( 'Invalid entry id XXX.' );
if ( empty ( $blid ) )
$error = translate ( 'Invalid blob id' );
else {
$res = dbi_execute ( Doc::getSQLForDocId ( $blid ) );
if ( ! $res )
$error = db_error();
}
if ( empty ( $error ) ) {
$row = dbi_fetch_row ( $res );
if ( ! $row ) {
$error = str_replace ( 'XXX', $blid, $invalidIDStr );
} else {
$doc = new Doc( $row );
$description = $doc->getDescription();
$filedata = $doc->getData();
$filename = $doc->getName();
$id = $doc->getId();
$mimetype = $doc->getMimeType();
$owner = $doc->getLogin();
$size = $doc->getSize();
$type = $doc->getType();
}
dbi_free_result ( $res );
}
// Make sure this user is allowed to look at this file.
// If the blob is associated with an event, then the user must be able
// to view the event in order to access this file.
// TODO: move all this code (and code in view_entry.php) to a common
// function named can_view_event or something similar.
$can_view = false;
$is_my_event = false;
$is_private = $is_confidential = false;
$log = getGetValue ( 'log' );
$show_log = ! empty ( $log );
if ( empty ( $id ) )
$can_view = true; // not associated with an event
if ( ! empty ( $id ) && empty ( $error ) ) {
if ( $is_admin || $is_nonuser_admin || $is_assistant )
$can_view = true;
if ( empty ( $id ) || $id <= 0 || ! is_numeric ( $id ) )
$error = str_replace ( 'XXX', $id, $invalidIDStr );
if ( empty ( $error ) ) {
// 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 ) {
$can_view = true;
$is_my_event = true;
}
dbi_free_result ( $res );
}
if ( ($login != '__public__') && ($PUBLIC_ACCESS_OTHERS == 'Y') ) {
$can_view = true;
}
if ( ! $can_view ) {
$check_group = false;
// if not a participant in the event, must be allowed to look at
// other user's calendar.
if ( $login == '__public__' ) {
if ( $PUBLIC_ACCESS_OTHERS == 'Y' )
$check_group = true;
} else {
if ( $ALLOW_VIEW_OTHER == 'Y' )
$check_group = true;
}
// If $check_group is true now, it means this user can look at the
// event only if they are in the same group as some of the people in
// the event.
// This gets kind of tricky. If there is a participant from a different
// group, do we still show it? For now, the answer is no.
// This could be configurable somehow, but how many lines of text would
// it need in the admin page to describe this scenario? Would confuse
// 99.9% of users.
// In summary, make sure at least one event participant is in one of
// this user's groups.
$my_users = get_my_users();
$cnt = count ( $my_users );
if ( is_array ( $my_users ) && $cnt ) {
$sql = 'SELECT we.cal_id FROM webcal_entry we, webcal_entry_user weu
WHERE we.cal_id = weu.cal_id AND we.cal_id = ?
AND weu.cal_login IN ( ?' . str_repeat ( ',?', $cnt - 1 );
$query_params = [$id];
for ( $i = 0; $i < $cnt; $i++ ) {
$query_params[] = $my_users[$i]['cal_login'];
}
$res = dbi_execute ( $sql . ' )', $query_params );
if ( $res ) {
$row = dbi_fetch_row ( $res );
if ( $row && $row[0] > 0 )
$can_view = true;
dbi_free_result ( $res );
}
}
// If we didn't indicate we need to check groups, then this user
// can't view this event.
if ( ! $check_group && ! access_is_enabled() )
$can_view = false;
}
}
$hide_details = ( $login == '__public__' &&
! empty ( $OVERRIDE_PUBLIC ) && $OVERRIDE_PUBLIC == 'Y' );
// If they still cannot view, make sure they are not looking at a nonuser
// calendar event where the nonuser is the _only_ participant.
if ( empty ( $error ) && ! $can_view && ! empty ( $NONUSER_ENABLED ) &&
$NONUSER_ENABLED == 'Y' ) {
$nonusers = get_nonuser_cals();
$nonuser_lookup = [];
for ( $i = 0, $cnt = count ( $nonusers ); $i < $cnt; $i++ ) {
$nonuser_lookup[$nonusers[$i]['cal_login']] = 1;
}
$res = dbi_execute ( 'SELECT cal_login FROM webcal_entry_user
WHERE cal_id = ?
AND cal_status IN ( "A", "W" )', [$id] );
$found_nonuser_cal = $found_reg_user = false;
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
if ( ! empty ( $nonuser_lookup[$row[0]] ) )
$found_nonuser_cal = true;
else
$found_reg_user = true;
}
dbi_free_result ( $res );
}
// Does this event contain only nonuser calendars as participants?
// If so, then grant access.
if ( $found_nonuser_cal && ! $found_reg_user )
$can_view = true;
}
if ( empty ( $error ) && ! $can_view )
$error = print_not_auth();
}
if ( ! empty ( $error ) ) {
print_header();
echo print_error ( $error, true) . print_trailer();
exit;
}
$disp = ( $type == 'A' ? 'attachment' : 'inline' );
// Print out data now.
Header ( 'Content-Length: ' . $size );
Header ( 'Content-Type: ' . $mimetype );
$description = preg_replace ( "/\n\r\t+/", ' ', $description );
Header ( 'Content-Description: ' . $description );
// Don't allow spaces in filenames.
//$filename = preg_replace ( "/\n\r\t+/", "_", $filename );
//Header ( "Content-Disposition: $disp; filename=$filename" );
Header ( 'Content-Disposition: filename=' . $filename );
echo $filedata;
exit;
?>