2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Nicolai Ehemann <en@enlightened.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Piotr Filiciak <piotr@filiciak.pl>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thibaut GRIDEL <tgridel@free.fr>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-10-22 00:05:29 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
|
|
|
*/
|
2010-03-10 15:03:40 +03:00
|
|
|
|
2015-10-05 18:31:37 +03:00
|
|
|
use OC\Files\View;
|
2015-09-24 01:08:42 +03:00
|
|
|
use OC\Streamer;
|
2015-06-17 18:40:46 +03:00
|
|
|
use OCP\Lock\ILockingProvider;
|
|
|
|
|
2010-03-10 15:03:40 +03:00
|
|
|
/**
|
2014-02-20 19:36:37 +04:00
|
|
|
* Class for file server access
|
2010-03-10 15:03:40 +03:00
|
|
|
*
|
|
|
|
*/
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Files {
|
2014-11-26 14:56:54 +03:00
|
|
|
const FILE = 1;
|
|
|
|
const ZIP_FILES = 2;
|
|
|
|
const ZIP_DIR = 3;
|
2012-11-16 01:08:08 +04:00
|
|
|
|
2015-03-28 02:43:35 +03:00
|
|
|
const UPLOAD_MIN_LIMIT_BYTES = 1048576; // 1 MiB
|
|
|
|
|
2016-05-20 19:16:44 +03:00
|
|
|
|
2016-05-23 16:17:00 +03:00
|
|
|
private static $multipartBoundary = '';
|
2016-05-20 19:16:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function getBoundary() {
|
2016-05-23 16:17:00 +03:00
|
|
|
if (empty(self::$multipartBoundary)) {
|
|
|
|
self::$multipartBoundary = md5(mt_rand());
|
2016-05-20 19:16:44 +03:00
|
|
|
}
|
2016-05-23 16:17:00 +03:00
|
|
|
return self::$multipartBoundary;
|
2016-05-20 19:16:44 +03:00
|
|
|
}
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
2014-02-20 19:36:37 +04:00
|
|
|
* @param string $filename
|
|
|
|
* @param string $name
|
2016-05-20 19:16:44 +03:00
|
|
|
* @param array $rangeArray ('from'=>int,'to'=>int), ...
|
2014-02-19 12:31:54 +04:00
|
|
|
*/
|
2016-05-20 19:16:44 +03:00
|
|
|
private static function sendHeaders($filename, $name, array $rangeArray) {
|
2014-01-16 20:21:19 +04:00
|
|
|
OC_Response::setContentDispositionHeader($name, 'attachment');
|
2016-05-20 19:16:44 +03:00
|
|
|
header('Content-Transfer-Encoding: binary', true);
|
2014-01-16 20:21:19 +04:00
|
|
|
OC_Response::disableCaching();
|
2015-09-28 14:14:51 +03:00
|
|
|
$fileSize = \OC\Files\Filesystem::filesize($filename);
|
|
|
|
$type = \OC::$server->getMimeTypeDetector()->getSecureMimeType(\OC\Files\Filesystem::getMimeType($filename));
|
|
|
|
if ($fileSize > -1) {
|
2016-05-20 19:16:44 +03:00
|
|
|
if (!empty($rangeArray)) {
|
|
|
|
header('HTTP/1.1 206 Partial Content', true);
|
|
|
|
header('Accept-Ranges: bytes', true);
|
|
|
|
if (count($rangeArray) > 1) {
|
|
|
|
$type = 'multipart/byteranges; boundary='.self::getBoundary();
|
|
|
|
// no Content-Length header here
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
header(sprintf('Content-Range: bytes %d-%d/%d', $rangeArray[0]['from'], $rangeArray[0]['to'], $fileSize), true);
|
|
|
|
OC_Response::setContentLengthHeader($rangeArray[0]['to'] - $rangeArray[0]['from'] + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
OC_Response::setContentLengthHeader($fileSize);
|
|
|
|
}
|
2014-01-16 20:21:19 +04:00
|
|
|
}
|
2016-05-20 19:16:44 +03:00
|
|
|
header('Content-Type: '.$type, true);
|
2012-11-16 01:08:08 +04:00
|
|
|
}
|
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
/**
|
2013-01-29 08:51:35 +04:00
|
|
|
* return the content of a file or return a zip file containing multiple files
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2012-10-24 17:32:29 +04:00
|
|
|
* @param string $dir
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $files ; separated list of files to download
|
2016-05-20 19:16:44 +03:00
|
|
|
* @param array $params ; 'head' boolean to only send header of the request ; 'range' http range header
|
2012-10-22 00:05:29 +04:00
|
|
|
*/
|
2016-05-23 16:17:00 +03:00
|
|
|
public static function get($dir, $files, $params = null) {
|
2013-03-07 17:15:02 +04:00
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
$getType = self::FILE;
|
|
|
|
$filename = $dir;
|
|
|
|
try {
|
2011-06-19 17:08:28 +04:00
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
if (is_array($files) && count($files) === 1) {
|
|
|
|
$files = $files[0];
|
2015-10-07 14:15:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_array($files)) {
|
2015-10-05 18:47:15 +03:00
|
|
|
$filename = $dir . '/' . $files;
|
2015-10-19 11:07:33 +03:00
|
|
|
if (!$view->is_dir($filename)) {
|
2016-05-23 16:17:00 +03:00
|
|
|
self::getSingleFile($view, $dir, $files, is_null($params) ? array() : $params);
|
2015-10-05 18:47:15 +03:00
|
|
|
return;
|
|
|
|
}
|
2013-03-07 17:24:18 +04:00
|
|
|
}
|
2014-02-20 19:36:37 +04:00
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
$name = 'download';
|
|
|
|
if (is_array($files)) {
|
|
|
|
$getType = self::ZIP_FILES;
|
|
|
|
$basename = basename($dir);
|
|
|
|
if ($basename) {
|
|
|
|
$name = $basename;
|
|
|
|
}
|
|
|
|
|
|
|
|
$filename = $dir . '/' . $name;
|
|
|
|
} else {
|
|
|
|
$filename = $dir . '/' . $files;
|
2015-09-23 19:00:15 +03:00
|
|
|
$getType = self::ZIP_DIR;
|
2014-02-20 19:36:37 +04:00
|
|
|
// downloading root ?
|
2015-10-05 18:47:15 +03:00
|
|
|
if ($files !== '') {
|
2015-09-23 19:00:15 +03:00
|
|
|
$name = $files;
|
2014-02-20 19:36:37 +04:00
|
|
|
}
|
2014-02-13 23:20:00 +04:00
|
|
|
}
|
2014-01-16 20:21:19 +04:00
|
|
|
|
2015-09-24 01:08:42 +03:00
|
|
|
$streamer = new Streamer();
|
2015-10-05 18:47:15 +03:00
|
|
|
OC_Util::obEnd();
|
2015-05-12 19:49:25 +03:00
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
self::lockFiles($view, $dir, $files);
|
2015-09-28 14:14:51 +03:00
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
$streamer->sendHeaders($name);
|
2014-09-17 18:07:32 +04:00
|
|
|
$executionTime = intval(OC::$server->getIniWrapper()->getNumeric('max_execution_time'));
|
2015-10-05 18:47:15 +03:00
|
|
|
set_time_limit(0);
|
|
|
|
if ($getType === self::ZIP_FILES) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$file = $dir . '/' . $file;
|
|
|
|
if (\OC\Files\Filesystem::is_file($file)) {
|
|
|
|
$fileSize = \OC\Files\Filesystem::filesize($file);
|
|
|
|
$fh = \OC\Files\Filesystem::fopen($file, 'r');
|
|
|
|
$streamer->addFileFromStream($fh, basename($file), $fileSize);
|
|
|
|
fclose($fh);
|
|
|
|
} elseif (\OC\Files\Filesystem::is_dir($file)) {
|
|
|
|
$streamer->addDirRecursive($file);
|
2014-01-16 20:21:19 +04:00
|
|
|
}
|
2012-05-01 22:32:13 +04:00
|
|
|
}
|
2015-10-05 18:47:15 +03:00
|
|
|
} elseif ($getType === self::ZIP_DIR) {
|
|
|
|
$file = $dir . '/' . $files;
|
|
|
|
$streamer->addDirRecursive($file);
|
2015-06-17 18:40:46 +03:00
|
|
|
}
|
2015-10-05 18:47:15 +03:00
|
|
|
$streamer->finalize();
|
|
|
|
set_time_limit($executionTime);
|
2015-10-02 18:40:45 +03:00
|
|
|
self::unlockAllTheFiles($dir, $files, $getType, $view, $filename);
|
2015-06-17 18:40:46 +03:00
|
|
|
} catch (\OCP\Lock\LockedException $ex) {
|
2015-10-02 18:42:18 +03:00
|
|
|
self::unlockAllTheFiles($dir, $files, $getType, $view, $filename);
|
2015-10-02 18:40:45 +03:00
|
|
|
OC::$server->getLogger()->logException($ex);
|
2015-06-17 18:40:46 +03:00
|
|
|
$l = \OC::$server->getL10N('core');
|
|
|
|
$hint = method_exists($ex, 'getHint') ? $ex->getHint() : '';
|
|
|
|
\OC_Template::printErrorPage($l->t('File is currently busy, please try again later'), $hint);
|
2015-11-13 16:13:16 +03:00
|
|
|
} catch (\OCP\Files\ForbiddenException $ex) {
|
|
|
|
self::unlockAllTheFiles($dir, $files, $getType, $view, $filename);
|
|
|
|
OC::$server->getLogger()->logException($ex);
|
|
|
|
$l = \OC::$server->getL10N('core');
|
|
|
|
\OC_Template::printErrorPage($l->t('Can\'t read file'), $ex->getMessage());
|
2015-05-12 19:49:25 +03:00
|
|
|
} catch (\Exception $ex) {
|
2015-10-02 18:42:18 +03:00
|
|
|
self::unlockAllTheFiles($dir, $files, $getType, $view, $filename);
|
2015-10-02 18:40:45 +03:00
|
|
|
OC::$server->getLogger()->logException($ex);
|
2015-05-12 19:49:25 +03:00
|
|
|
$l = \OC::$server->getL10N('core');
|
|
|
|
$hint = method_exists($ex, 'getHint') ? $ex->getHint() : '';
|
|
|
|
\OC_Template::printErrorPage($l->t('Can\'t read file'), $hint);
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2016-05-20 19:16:44 +03:00
|
|
|
/**
|
|
|
|
* @param string $rangeHeaderPos
|
|
|
|
* @param int $fileSize
|
|
|
|
* @return array $rangeArray ('from'=>int,'to'=>int), ...
|
|
|
|
*/
|
|
|
|
private static function parseHttpRangeHeader($rangeHeaderPos, $fileSize) {
|
2016-07-20 15:36:39 +03:00
|
|
|
$rArray=explode(',', $rangeHeaderPos);
|
2016-05-20 19:16:44 +03:00
|
|
|
$minOffset = 0;
|
|
|
|
$ind = 0;
|
|
|
|
|
|
|
|
$rangeArray = array();
|
|
|
|
|
|
|
|
foreach ($rArray as $value) {
|
|
|
|
$ranges = explode('-', $value);
|
|
|
|
if (is_numeric($ranges[0])) {
|
|
|
|
if ($ranges[0] < $minOffset) { // case: bytes=500-700,601-999
|
|
|
|
$ranges[0] = $minOffset;
|
|
|
|
}
|
|
|
|
if ($ind > 0 && $rangeArray[$ind-1]['to']+1 == $ranges[0]) { // case: bytes=500-600,601-999
|
|
|
|
$ind--;
|
|
|
|
$ranges[0] = $rangeArray[$ind]['from'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_numeric($ranges[0]) && is_numeric($ranges[1]) && $ranges[0] < $fileSize && $ranges[0] <= $ranges[1]) {
|
|
|
|
// case: x-x
|
|
|
|
if ($ranges[1] >= $fileSize) {
|
|
|
|
$ranges[1] = $fileSize-1;
|
|
|
|
}
|
|
|
|
$rangeArray[$ind++] = array( 'from' => $ranges[0], 'to' => $ranges[1], 'size' => $fileSize );
|
|
|
|
$minOffset = $ranges[1] + 1;
|
|
|
|
if ($minOffset >= $fileSize) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif (is_numeric($ranges[0]) && $ranges[0] < $fileSize) {
|
|
|
|
// case: x-
|
|
|
|
$rangeArray[$ind++] = array( 'from' => $ranges[0], 'to' => $fileSize-1, 'size' => $fileSize );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elseif (is_numeric($ranges[1])) {
|
|
|
|
// case: -x
|
|
|
|
if ($ranges[1] > $fileSize) {
|
|
|
|
$ranges[1] = $fileSize;
|
|
|
|
}
|
|
|
|
$rangeArray[$ind++] = array( 'from' => $fileSize-$ranges[1], 'to' => $fileSize-1, 'size' => $fileSize );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $rangeArray;
|
|
|
|
}
|
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
/**
|
|
|
|
* @param View $view
|
|
|
|
* @param string $name
|
2016-02-05 12:38:43 +03:00
|
|
|
* @param string $dir
|
2016-05-20 19:16:44 +03:00
|
|
|
* @param array $params ; 'head' boolean to only send header of the request ; 'range' http range header
|
2015-10-05 18:47:15 +03:00
|
|
|
*/
|
2016-05-20 19:16:44 +03:00
|
|
|
private static function getSingleFile($view, $dir, $name, $params) {
|
2015-10-05 18:47:15 +03:00
|
|
|
$filename = $dir . '/' . $name;
|
|
|
|
OC_Util::obEnd();
|
|
|
|
$view->lockFile($filename, ILockingProvider::LOCK_SHARED);
|
2016-05-20 19:16:44 +03:00
|
|
|
|
|
|
|
$rangeArray = array();
|
2015-10-05 18:47:15 +03:00
|
|
|
|
2016-05-20 19:16:44 +03:00
|
|
|
if (isset($params['range']) && substr($params['range'], 0, 6) === 'bytes=') {
|
|
|
|
$rangeArray = self::parseHttpRangeHeader(substr($params['range'], 6),
|
|
|
|
\OC\Files\Filesystem::filesize($filename));
|
|
|
|
}
|
|
|
|
|
2015-10-05 18:47:15 +03:00
|
|
|
if (\OC\Files\Filesystem::isReadable($filename)) {
|
2016-05-20 19:16:44 +03:00
|
|
|
self::sendHeaders($filename, $name, $rangeArray);
|
2015-10-05 18:47:15 +03:00
|
|
|
} elseif (!\OC\Files\Filesystem::file_exists($filename)) {
|
|
|
|
header("HTTP/1.0 404 Not Found");
|
|
|
|
$tmpl = new OC_Template('', '404', 'guest');
|
|
|
|
$tmpl->printPage();
|
|
|
|
exit();
|
|
|
|
} else {
|
|
|
|
header("HTTP/1.0 403 Forbidden");
|
|
|
|
die('403 Forbidden');
|
|
|
|
}
|
2016-05-20 19:16:44 +03:00
|
|
|
if (isset($params['head']) && $params['head']) {
|
2015-10-05 18:47:15 +03:00
|
|
|
return;
|
|
|
|
}
|
2016-05-20 19:16:44 +03:00
|
|
|
if (!empty($rangeArray)) {
|
|
|
|
try {
|
|
|
|
if (count($rangeArray) == 1) {
|
|
|
|
$view->readfilePart($filename, $rangeArray[0]['from'], $rangeArray[0]['to']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// check if file is seekable (if not throw UnseekableException)
|
|
|
|
// we have to check it before body contents
|
|
|
|
$view->readfilePart($filename, $rangeArray[0]['size'], $rangeArray[0]['size']);
|
|
|
|
|
|
|
|
$type = \OC::$server->getMimeTypeDetector()->getSecureMimeType(\OC\Files\Filesystem::getMimeType($filename));
|
|
|
|
|
|
|
|
foreach ($rangeArray as $range) {
|
|
|
|
echo "\r\n--".self::getBoundary()."\r\n".
|
|
|
|
"Content-type: ".$type."\r\n".
|
|
|
|
"Content-range: bytes ".$range['from']."-".$range['to']."/".$range['size']."\r\n\r\n";
|
|
|
|
$view->readfilePart($filename, $range['from'], $range['to']);
|
|
|
|
}
|
|
|
|
echo "\r\n--".self::getBoundary()."--\r\n";
|
|
|
|
}
|
|
|
|
} catch (\OCP\Files\UnseekableException $ex) {
|
|
|
|
// file is unseekable
|
|
|
|
header_remove('Accept-Ranges');
|
|
|
|
header_remove('Content-Range');
|
|
|
|
header("HTTP/1.1 200 OK");
|
|
|
|
self::sendHeaders($filename, $name, array());
|
|
|
|
$view->readfile($filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$view->readfile($filename);
|
|
|
|
}
|
2015-10-05 18:47:15 +03:00
|
|
|
}
|
|
|
|
|
2015-10-05 18:31:37 +03:00
|
|
|
/**
|
|
|
|
* @param View $view
|
2016-02-05 12:38:43 +03:00
|
|
|
* @param string $dir
|
2015-10-05 18:31:37 +03:00
|
|
|
* @param string[]|string $files
|
|
|
|
*/
|
|
|
|
public static function lockFiles($view, $dir, $files) {
|
|
|
|
if (!is_array($files)) {
|
|
|
|
$file = $dir . '/' . $files;
|
|
|
|
$files = [$file];
|
|
|
|
}
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$file = $dir . '/' . $file;
|
|
|
|
$view->lockFile($file, ILockingProvider::LOCK_SHARED);
|
|
|
|
if ($view->is_dir($file)) {
|
|
|
|
$contents = $view->getDirectoryContent($file);
|
|
|
|
$contents = array_map(function($fileInfo) use ($file) {
|
|
|
|
/** @var \OCP\Files\FileInfo $fileInfo */
|
|
|
|
return $file . '/' . $fileInfo->getName();
|
|
|
|
}, $contents);
|
|
|
|
self::lockFiles($view, $dir, $contents);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-29 19:43:13 +04:00
|
|
|
/**
|
|
|
|
* set the maximum upload size limit for apache hosts using .htaccess
|
2012-10-22 00:05:29 +04:00
|
|
|
*
|
2014-02-20 19:36:37 +04:00
|
|
|
* @param int $size file size in bytes
|
2015-07-20 17:03:09 +03:00
|
|
|
* @param array $files override '.htaccess' and '.user.ini' locations
|
2014-02-20 19:36:37 +04:00
|
|
|
* @return bool false on failure, size on success
|
2011-05-29 19:43:13 +04:00
|
|
|
*/
|
2015-07-20 17:03:09 +03:00
|
|
|
public static function setUploadLimit($size, $files = []) {
|
2015-03-28 02:43:35 +03:00
|
|
|
//don't allow user to break his config
|
2015-07-20 17:03:09 +03:00
|
|
|
$size = intval($size);
|
2015-03-28 02:43:35 +03:00
|
|
|
if ($size < self::UPLOAD_MIN_LIMIT_BYTES) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$size = OC_Helper::phpFileSize($size);
|
2012-04-13 12:43:19 +04:00
|
|
|
|
|
|
|
$phpValueKeys = array(
|
|
|
|
'upload_max_filesize',
|
|
|
|
'post_max_size'
|
|
|
|
);
|
|
|
|
|
2015-07-20 17:03:09 +03:00
|
|
|
// default locations if not overridden by $files
|
|
|
|
$files = array_merge([
|
|
|
|
'.htaccess' => OC::$SERVERROOT . '/.htaccess',
|
|
|
|
'.user.ini' => OC::$SERVERROOT . '/.user.ini'
|
|
|
|
], $files);
|
|
|
|
|
2015-06-25 18:45:17 +03:00
|
|
|
$updateFiles = [
|
2015-07-20 17:03:09 +03:00
|
|
|
$files['.htaccess'] => [
|
2015-06-25 18:45:17 +03:00
|
|
|
'pattern' => '/php_value %1$s (\S)*/',
|
|
|
|
'setting' => 'php_value %1$s %2$s'
|
|
|
|
],
|
2015-07-20 17:03:09 +03:00
|
|
|
$files['.user.ini'] => [
|
2015-06-25 18:45:17 +03:00
|
|
|
'pattern' => '/%1$s=(\S)*/',
|
|
|
|
'setting' => '%1$s=%2$s'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$success = true;
|
|
|
|
|
|
|
|
foreach ($updateFiles as $filename => $patternMap) {
|
|
|
|
// suppress warnings from fopen()
|
|
|
|
$handle = @fopen($filename, 'r+');
|
|
|
|
if (!$handle) {
|
|
|
|
\OCP\Util::writeLog('files',
|
|
|
|
'Can\'t write upload limit to ' . $filename . '. Please check the file permissions',
|
|
|
|
\OCP\Util::WARN);
|
|
|
|
$success = false;
|
|
|
|
continue; // try to update as many files as possible
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = '';
|
|
|
|
while (!feof($handle)) {
|
|
|
|
$content .= fread($handle, 1000);
|
2012-04-13 12:43:19 +04:00
|
|
|
}
|
2015-06-25 18:45:17 +03:00
|
|
|
|
|
|
|
foreach ($phpValueKeys as $key) {
|
|
|
|
$pattern = vsprintf($patternMap['pattern'], [$key]);
|
|
|
|
$setting = vsprintf($patternMap['setting'], [$key, $size]);
|
|
|
|
$hasReplaced = 0;
|
2016-03-14 22:55:26 +03:00
|
|
|
$newContent = preg_replace($pattern, $setting, $content, 2, $hasReplaced);
|
2015-06-25 18:45:17 +03:00
|
|
|
if ($newContent !== null) {
|
|
|
|
$content = $newContent;
|
|
|
|
}
|
|
|
|
if ($hasReplaced === 0) {
|
|
|
|
$content .= "\n" . $setting;
|
|
|
|
}
|
2012-04-13 12:43:19 +04:00
|
|
|
}
|
2015-06-25 18:45:17 +03:00
|
|
|
|
|
|
|
// write file back
|
|
|
|
ftruncate($handle, 0);
|
|
|
|
rewind($handle);
|
|
|
|
fwrite($handle, $content);
|
|
|
|
|
|
|
|
fclose($handle);
|
2012-04-13 12:43:19 +04:00
|
|
|
}
|
|
|
|
|
2015-06-25 18:45:17 +03:00
|
|
|
if ($success) {
|
2012-08-29 10:38:33 +04:00
|
|
|
return OC_Helper::computerFileSize($size);
|
2012-10-22 00:05:29 +04:00
|
|
|
}
|
2012-04-13 12:43:19 +04:00
|
|
|
return false;
|
2011-05-29 19:43:13 +04:00
|
|
|
}
|
2015-10-02 18:40:45 +03:00
|
|
|
|
|
|
|
/**
|
2016-02-05 12:38:43 +03:00
|
|
|
* @param string $dir
|
2015-10-02 18:40:45 +03:00
|
|
|
* @param $files
|
2016-02-05 12:38:43 +03:00
|
|
|
* @param integer $getType
|
2015-10-05 18:47:15 +03:00
|
|
|
* @param View $view
|
2016-02-05 12:38:43 +03:00
|
|
|
* @param string $filename
|
2015-10-02 18:40:45 +03:00
|
|
|
*/
|
|
|
|
private static function unlockAllTheFiles($dir, $files, $getType, $view, $filename) {
|
|
|
|
if ($getType === self::FILE) {
|
|
|
|
$view->unlockFile($filename, ILockingProvider::LOCK_SHARED);
|
|
|
|
}
|
|
|
|
if ($getType === self::ZIP_FILES) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$file = $dir . '/' . $file;
|
|
|
|
$view->unlockFile($file, ILockingProvider::LOCK_SHARED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($getType === self::ZIP_DIR) {
|
|
|
|
$file = $dir . '/' . $files;
|
|
|
|
$view->unlockFile($file, ILockingProvider::LOCK_SHARED);
|
|
|
|
}
|
|
|
|
}
|
2015-10-05 18:47:15 +03:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|