2011-04-18 17:40:17 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 17:56:42 +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 Morris Jobke <hey@morrisjobke.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>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2011-04-18 17:40:17 +04:00
|
|
|
// Check if we are a user
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkLoggedIn();
|
2014-07-16 21:40:22 +04:00
|
|
|
\OC::$server->getSession()->close();
|
2011-04-18 17:40:17 +04:00
|
|
|
|
2015-02-13 15:33:20 +03:00
|
|
|
$files = isset($_GET['files']) ? (string)$_GET['files'] : '';
|
|
|
|
$dir = isset($_GET['dir']) ? (string)$_GET['dir'] : '';
|
2011-04-18 17:40:17 +04:00
|
|
|
|
2013-03-07 17:15:02 +04:00
|
|
|
$files_list = json_decode($files);
|
2013-03-07 17:18:27 +04:00
|
|
|
// in case we get only a single file
|
2013-08-07 19:01:14 +04:00
|
|
|
if (!is_array($files_list)) {
|
2013-03-07 17:15:02 +04:00
|
|
|
$files_list = array($files);
|
|
|
|
}
|
|
|
|
|
2015-06-29 16:20:47 +03:00
|
|
|
/**
|
|
|
|
* this sets a cookie to be able to recognize the start of the download
|
|
|
|
* the content must not be longer than 32 characters and must only contain
|
|
|
|
* alphanumeric characters
|
|
|
|
*/
|
|
|
|
if(isset($_GET['downloadStartSecret'])
|
|
|
|
&& !isset($_GET['downloadStartSecret'][32])
|
|
|
|
&& preg_match('!^[a-zA-Z0-9]+$!', $_GET['downloadStartSecret']) === 1) {
|
|
|
|
setcookie('ocDownloadStarted', $_GET['downloadStartSecret'], time() + 20, '/');
|
|
|
|
}
|
|
|
|
|
2017-05-10 15:07:58 +03:00
|
|
|
$server_params = array( 'head' => \OC::$server->getRequest()->getMethod() === 'HEAD' );
|
2016-05-20 19:16:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Http range requests support
|
|
|
|
*/
|
|
|
|
if (isset($_SERVER['HTTP_RANGE'])) {
|
|
|
|
$server_params['range'] = \OC::$server->getRequest()->getHeader('Range');
|
|
|
|
}
|
|
|
|
|
|
|
|
OC_Files::get($dir, $files_list, $server_params);
|