Blame view

sources/lib/private/files.php 9.85 KB
03e52840d   Kload   Init
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
  <?php
  
  /**
   * ownCloud
   *
   * @author Frank Karlitschek
   * @copyright 2012 Frank Karlitschek frank@owncloud.org
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
   *
   * You should have received a copy of the GNU Affero General Public
   * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  /**
   * Class for fileserver access
   *
   */
  class OC_Files {
  	static $tmpFiles = array();
31b7f2792   Kload   Upgrade to ownclo...
30
31
  	static public function getFileInfo($path, $includeMountPoints = true){
  		return \OC\Files\Filesystem::getFileInfo($path, $includeMountPoints);
03e52840d   Kload   Init
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  	}
  
  	static public function getDirectoryContent($path){
  		return \OC\Files\Filesystem::getDirectoryContent($path);
  	}
  
  	/**
  	 * return the content of a file or return a zip file containing multiple files
  	 *
  	 * @param string $dir
  	 * @param string $file ; separated list of files to download
  	 * @param boolean $only_header ; boolean to only send header of the request
  	 */
  	public static function get($dir, $files, $only_header = false) {
  		$xsendfile = false;
  		if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) ||
31b7f2792   Kload   Upgrade to ownclo...
48
  			isset($_SERVER['MOD_X_SENDFILE2_ENABLED']) ||
03e52840d   Kload   Init
49
50
51
52
53
54
55
56
57
58
59
60
61
  			isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) {
  			$xsendfile = true;
  		}
  
  		if (is_array($files) && count($files) == 1) {
  			$files = $files[0];
  		}
  
  		if (is_array($files)) {
  			self::validateZipDownload($dir, $files);
  			$executionTime = intval(ini_get('max_execution_time'));
  			set_time_limit(0);
  			$zip = new ZipArchive();
31b7f2792   Kload   Upgrade to ownclo...
62
  			$filename = OC_Helper::tmpFile('.zip');
03e52840d   Kload   Init
63
  			if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) {
31b7f2792   Kload   Upgrade to ownclo...
64
65
  				$l = OC_L10N::get('lib');
  				throw new Exception($l->t('cannot open "%s"', array($filename)));
03e52840d   Kload   Init
66
67
68
69
70
71
72
73
74
75
76
77
  			}
  			foreach ($files as $file) {
  				$file = $dir . '/' . $file;
  				if (\OC\Files\Filesystem::is_file($file)) {
  					$tmpFile = \OC\Files\Filesystem::toTmpFile($file);
  					self::$tmpFiles[] = $tmpFile;
  					$zip->addFile($tmpFile, basename($file));
  				} elseif (\OC\Files\Filesystem::is_dir($file)) {
  					self::zipAddDir($file, $zip);
  				}
  			}
  			$zip->close();
31b7f2792   Kload   Upgrade to ownclo...
78
79
80
  			if ($xsendfile) {
  				$filename = OC_Helper::moveToNoClean($filename);
  			}
03e52840d   Kload   Init
81
82
83
84
  			$basename = basename($dir);
  			if ($basename) {
  				$name = $basename . '.zip';
  			} else {
a293d369c   Kload   Update sources to...
85
  				$name = 'download.zip';
03e52840d   Kload   Init
86
87
88
89
90
91
92
93
  			}
  			
  			set_time_limit($executionTime);
  		} elseif (\OC\Files\Filesystem::is_dir($dir . '/' . $files)) {
  			self::validateZipDownload($dir, $files);
  			$executionTime = intval(ini_get('max_execution_time'));
  			set_time_limit(0);
  			$zip = new ZipArchive();
31b7f2792   Kload   Upgrade to ownclo...
94
  			$filename = OC_Helper::tmpFile('.zip');
03e52840d   Kload   Init
95
  			if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) {
31b7f2792   Kload   Upgrade to ownclo...
96
97
  				$l = OC_L10N::get('lib');
  				throw new Exception($l->t('cannot open "%s"', array($filename)));
03e52840d   Kload   Init
98
99
100
101
  			}
  			$file = $dir . '/' . $files;
  			self::zipAddDir($file, $zip);
  			$zip->close();
31b7f2792   Kload   Upgrade to ownclo...
102
103
104
  			if ($xsendfile) {
  				$filename = OC_Helper::moveToNoClean($filename);
  			}
03e52840d   Kload   Init
105
106
107
108
109
110
  			$name = $files . '.zip';
  			set_time_limit($executionTime);
  		} else {
  			$zip = false;
  			$filename = $dir . '/' . $files;
  			$name = $files;
31b7f2792   Kload   Upgrade to ownclo...
111
112
113
  			if ($xsendfile && OC_App::isEnabled('files_encryption')) {
  				$xsendfile = false;
  			}
03e52840d   Kload   Init
114
115
116
  		}
  		OC_Util::obEnd();
  		if ($zip or \OC\Files\Filesystem::isReadable($filename)) {
a293d369c   Kload   Update sources to...
117
  			OC_Response::setContentDispositionHeader($name, 'attachment');
03e52840d   Kload   Init
118
119
120
121
122
123
124
125
  			header('Content-Transfer-Encoding: binary');
  			OC_Response::disableCaching();
  			if ($zip) {
  				ini_set('zlib.output_compression', 'off');
  				header('Content-Type: application/zip');
  				header('Content-Length: ' . filesize($filename));
  				self::addSendfileHeader($filename);
  			}else{
31b7f2792   Kload   Upgrade to ownclo...
126
  				$filesize = \OC\Files\Filesystem::filesize($filename);
03e52840d   Kload   Init
127
  				header('Content-Type: '.\OC\Files\Filesystem::getMimeType($filename));
31b7f2792   Kload   Upgrade to ownclo...
128
129
130
131
132
  				if ($filesize > -1) {
  					header("Content-Length: ".$filesize);
  				}
  				if ($xsendfile) {
  					list($storage) = \OC\Files\Filesystem::resolvePath(\OC\Files\Filesystem::getView()->getAbsolutePath($filename));
a293d369c   Kload   Update sources to...
133
134
135
  					if ($storage instanceof \OC\Files\Storage\Wrapper\Wrapper) {
  						$storage = $storage->getWrapperStorage();
  					}
31b7f2792   Kload   Upgrade to ownclo...
136
137
138
  					if ($storage instanceof \OC\Files\Storage\Local) {
  						self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename));
  					}
03e52840d   Kload   Init
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
  				}
  			}
  		} elseif ($zip or !\OC\Files\Filesystem::file_exists($filename)) {
  			header("HTTP/1.0 404 Not Found");
  			$tmpl = new OC_Template('', '404', 'guest');
  			$tmpl->assign('file', $name);
  			$tmpl->printPage();
  		} else {
  			header("HTTP/1.0 403 Forbidden");
  			die('403 Forbidden');
  		}
  		if($only_header) {
  			return ;
  		}
  		if ($zip) {
  			$handle = fopen($filename, 'r');
  			if ($handle) {
  				$chunkSize = 8 * 1024; // 1 MB chunks
  				while (!feof($handle)) {
  					echo fread($handle, $chunkSize);
  					flush();
  				}
  			}
  			if (!$xsendfile) {
  				unlink($filename);
  			}
  		}else{
  			\OC\Files\Filesystem::readfile($filename);
  		}
  		foreach (self::$tmpFiles as $tmpFile) {
  			if (file_exists($tmpFile) and is_file($tmpFile)) {
  				unlink($tmpFile);
  			}
  		}
  	}
  
  	private static function addSendfileHeader($filename) {
  		if (isset($_SERVER['MOD_X_SENDFILE_ENABLED'])) {
  			header("X-Sendfile: " . $filename);
31b7f2792   Kload   Upgrade to ownclo...
178
179
180
181
182
183
184
185
186
187
188
189
190
191
   		}
   		if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) {
  			if (isset($_SERVER['HTTP_RANGE']) && 
  				preg_match("/^bytes=([0-9]+)-([0-9]*)$/", $_SERVER['HTTP_RANGE'], $range)) {
  				$filelength = filesize($filename);
   				if ($range[2] == "") {
   					$range[2] = $filelength - 1;
   				}
   				header("Content-Range: bytes $range[1]-$range[2]/" . $filelength);
   				header("HTTP/1.1 206 Partial content");
   				header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " $range[1]-$range[2]");
   			} else {
   				header("X-Sendfile: " . $filename);
   			}
03e52840d   Kload   Init
192
  		}
31b7f2792   Kload   Upgrade to ownclo...
193
  		
03e52840d   Kload   Init
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
  		if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) {
  			header("X-Accel-Redirect: " . $filename);
  		}
  	}
  
  	public static function zipAddDir($dir, $zip, $internalDir='') {
  		$dirname=basename($dir);
  		$zip->addEmptyDir($internalDir.$dirname);
  		$internalDir.=$dirname.='/';
  		$files=OC_Files::getDirectoryContent($dir);
  		foreach($files as $file) {
  			$filename=$file['name'];
  			$file=$dir.'/'.$filename;
  			if(\OC\Files\Filesystem::is_file($file)) {
  				$tmpFile=\OC\Files\Filesystem::toTmpFile($file);
  				OC_Files::$tmpFiles[]=$tmpFile;
  				$zip->addFile($tmpFile, $internalDir.$filename);
  			}elseif(\OC\Files\Filesystem::is_dir($file)) {
  				self::zipAddDir($file, $zip, $internalDir);
  			}
  		}
  	}
  
  	/**
  	 * checks if the selected files are within the size constraint. If not, outputs an error page.
  	 *
  	 * @param dir   $dir
  	 * @param files $files
  	 */
  	static function validateZipDownload($dir, $files) {
  		if (!OC_Config::getValue('allowZipDownload', true)) {
  			$l = OC_L10N::get('lib');
  			header("HTTP/1.0 409 Conflict");
31b7f2792   Kload   Upgrade to ownclo...
227
228
229
230
  			OC_Template::printErrorPage(
  					$l->t('ZIP download is turned off.'),
  					$l->t('Files need to be downloaded one by one.')
  						. '<br/><a href="javascript:history.back()">' . $l->t('Back to Files') . '</a>'
03e52840d   Kload   Init
231
  			);
03e52840d   Kload   Init
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
  			exit;
  		}
  
  		$zipLimit = OC_Config::getValue('maxZipInputSize', OC_Helper::computerFileSize('800 MB'));
  		if ($zipLimit > 0) {
  			$totalsize = 0;
  			if(!is_array($files)) {
  				$files = array($files);
  			}
  			foreach ($files as $file) {
  				$path = $dir . '/' . $file;
  				if(\OC\Files\Filesystem::is_dir($path)) {
  					foreach (\OC\Files\Filesystem::getDirectoryContent($path) as $i) {
  						$totalsize += $i['size'];
  					}
  				} else {
  					$totalsize += \OC\Files\Filesystem::filesize($path);
  				}
  			}
  			if ($totalsize > $zipLimit) {
  				$l = OC_L10N::get('lib');
  				header("HTTP/1.0 409 Conflict");
31b7f2792   Kload   Upgrade to ownclo...
254
255
256
257
258
  				OC_Template::printErrorPage(
  						$l->t('Selected files too large to generate zip file.'),
  						$l->t('Please download the files separately in smaller chunks or kindly ask your administrator.')
  						.'<br/><a href="javascript:history.back()">'
  						. $l->t('Back to Files') . '</a>'
03e52840d   Kload   Init
259
  				);
03e52840d   Kload   Init
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
  				exit;
  			}
  		}
  	}
  
  	/**
  	 * set the maximum upload size limit for apache hosts using .htaccess
  	 *
  	 * @param int size filesisze in bytes
  	 * @return false on failure, size on success
  	 */
  	static function setUploadLimit($size) {
  		//don't allow user to break his config -- upper boundary
  		if ($size > PHP_INT_MAX) {
  			//max size is always 1 byte lower than computerFileSize returns
  			if ($size > PHP_INT_MAX + 1)
  				return false;
  			$size -= 1;
  		} else {
  			$size = OC_Helper::humanFileSize($size);
  			$size = substr($size, 0, -1); //strip the B
  			$size = str_replace(' ', '', $size); //remove the space between the size and the postfix
  		}
  
  		//don't allow user to break his config -- broken or malicious size input
  		if (intval($size) == 0) {
  			return false;
  		}
  
  		$htaccess = @file_get_contents(OC::$SERVERROOT . '/.htaccess'); //supress errors in case we don't have permissions for
  		if (!$htaccess) {
  			return false;
  		}
  
  		$phpValueKeys = array(
  			'upload_max_filesize',
  			'post_max_size'
  		);
  
  		foreach ($phpValueKeys as $key) {
  			$pattern = '/php_value ' . $key . ' (\S)*/';
  			$setting = 'php_value ' . $key . ' ' . $size;
  			$hasReplaced = 0;
  			$content = preg_replace($pattern, $setting, $htaccess, 1, $hasReplaced);
  			if ($content !== null) {
  				$htaccess = $content;
  			}
  			if ($hasReplaced == 0) {
  				$htaccess .= "
  " . $setting;
  			}
  		}
  
  		//check for write permissions
  		if (is_writable(OC::$SERVERROOT . '/.htaccess')) {
  			file_put_contents(OC::$SERVERROOT . '/.htaccess', $htaccess);
  			return OC_Helper::computerFileSize($size);
  		} else {
  			OC_Log::write('files',
  				'Can\'t write upload limit to ' . OC::$SERVERROOT . '/.htaccess. Please check the file permissions',
  				OC_Log::WARN);
  		}
  		return false;
  	}
  }