Subversion Repositories oidplus

Rev

Rev 316 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
310 daniel-mar 1
<?php
2
 
3
/*
4
 * VtsBrowserDownload.class.php
5
 * Copyright 2020 Daniel Marschall, ViaThinkSoft
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
20
class VtsBrowserDownload {
21
 
22
        private static function wellKnownInlineFile($file_extension) {
23
                // Windows Firefox: Browser decided wheater to display or download by looking at the mime type (inline disposition with explicit filename works)
24
                // Windows Chrome:  Browser decided wheater to display or download by looking at the mime type (inline disposition with explicit filename DOES NOT WORK)
25
 
26
                //$file_extension = strtolower($file_extension);
27
                //$array_listen = array('txt', 'mp3', 'wav', 'mid', 'ogg', 'pdf', 'avi', 'mov', 'mp4', 'mpeg', 'mpg', 'swf', 'gif', 'jpg', 'jpeg', 'png');
28
                //return in_array($file_extension, $array_listen);
29
 
30
                return true;
31
        }
32
 
33
        private static function getMimeType($file_extension) {
34
                $file_extension = strtolower($file_extension);
35
                return VtsFileTypeDetect::getMimeType('dummy.'.$file_extension);
36
        }
37
 
38
        public static function output_file($file, $mime_type='', $inline_mode=2/*2=auto*/) {
39
                // Partitally taken from:
40
                // - https://stackoverflow.com/a/13821992/488539
41
                // - https://stackoverflow.com/a/32885706/488539
42
 
43
                if (connection_status() != 0) return false;
44
 
45
                $file_extension = pathinfo($file, PATHINFO_EXTENSION);
46
 
360 daniel-mar 47
                if(!is_readable($file)) throw new Exception(_L('File not found or inaccessible!'));
310 daniel-mar 48
                $size = filesize($file);
49
                $name = rawurldecode(basename($file));
50
 
51
                if ($mime_type == '') {
52
                        $mime_type = self::getMimeType($file_extension);
53
                        if (!$mime_type) $mime_type='application/force-download';
54
                }
55
 
56
 
57
 
58
                while (ob_get_level() > 0) @ob_end_clean();
59
 
60
                switch ($inline_mode) {
61
 
62
                        case 0:
63
                                $disposition = 'attachment';
64
                                break;
65
 
66
                        case 1:
67
                                $disposition = 'inline';
68
                                break;
69
 
70
                        case 2:
71
                                $disposition = self::wellKnownInlineFile($file_extension) ? 'inline' : 'attachment';
72
                                break;
73
 
74
                        default:
360 daniel-mar 75
                                throw new Exception(_L('Invalid value for inline_mode'));
310 daniel-mar 76
                                break;
77
                }
78
 
79
                if(ini_get('zlib.output_compression')){
80
                        ini_set('zlib.output_compression', 'Off');
81
                }
82
                header('Content-Type: ' . $mime_type);
83
 
311 daniel-mar 84
                $ua = isset($_SERVER['HTTP_USER_AGENT']) ? strtoupper($_SERVER['HTTP_USER_AGENT']) : '';
85
                if (strstr($ua, 'MSIE')) {
310 daniel-mar 86
                        $name_msie = preg_replace('/\./', '%2e', $name, substr_count($name, '.') - 1);
87
                        header('Content-Disposition: '.$disposition.';filename="'.$name_msie.'"');
311 daniel-mar 88
                } else if (strstr($ua, 'FIREFOX')) {
316 daniel-mar 89
                        // TODO: Implement "encodeRFC5987ValueChars" described at https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent ?
311 daniel-mar 90
                        header('Content-Disposition: '.$disposition.';filename*="UTF-8\'\''.utf8_encode($name).'"');
310 daniel-mar 91
                } else {
92
                        // Note: There is possibly a bug in Google Chrome: https://stackoverflow.com/questions/61866508/chrome-ignores-content-disposition-filename
93
                        header('Content-Disposition: '.$disposition.';filename="'.$name.'"');
94
                }
95
 
96
                header('Content-Transfer-Encoding: binary');
97
                header('Accept-Ranges: bytes');
98
                header('Cache-Control: public');
99
 
100
                if (isset($_SERVER['HTTP_RANGE'])) {
101
                        list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2);
102
                        list($range) = explode(",",$range,2);
103
                        list($range, $range_end) = explode("-", $range);
104
                        $range=intval($range);
105
                        if(!$range_end) {
106
                                $range_end=$size-1;
107
                        } else {
108
                                $range_end=intval($range_end);
109
                        }
110
 
111
                        $new_length = $range_end-$range+1;
112
                        header("HTTP/1.1 206 Partial Content");
113
                        header("Content-Length: $new_length");
114
                        header("Content-Range: bytes $range-$range_end/$size");
115
                } else {
116
                        $etag = md5_file($file);
117
                        header("Etag: $etag");
118
                        if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && (trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag)) {
119
                                header("HTTP/1.1 304 Not Modified");
120
                                return true;
121
                        }
122
 
123
                        $new_length=$size;
124
                        header("Content-Length: ".$size);
125
                        header('Content-MD5: '.$etag); // RFC 2616 clause 14.15
126
                }
127
 
128
                set_time_limit(0);
129
 
130
                $chunksize = 1*(1024*1024);
131
                $bytes_send = 0;
132
                if ($file = fopen($file, 'r')) {
133
                        if(isset($_SERVER['HTTP_RANGE']))
134
                        fseek($file, $range);
135
 
136
                        while(!feof($file) &&
137
                              (!connection_aborted()) &&  // connection_status() == 0
138
                              ($bytes_send<$new_length))
139
                        {
140
                                $buffer = fread($file, $chunksize);
141
                                echo($buffer);
142
                                flush();
143
                                $bytes_send += strlen($buffer);
144
                        }
145
                        fclose($file);
146
                } else {
360 daniel-mar 147
                        throw new Exception(_L('Cannot open file %1',$file));
310 daniel-mar 148
                }
149
                return((connection_status() == 0) and !connection_aborted());
150
        }
151
 
360 daniel-mar 152
}