2011-03-04 01:08:54 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Michael Göhler <somebody.here@gmx.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
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
|
|
|
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkAdminUser();
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2011-05-29 19:43:13 +04:00
|
|
|
$htaccessWorking=(getenv('htaccessWorking')=='true');
|
2014-09-17 18:07:32 +04:00
|
|
|
$upload_max_filesize = OC::$server->getIniWrapper()->getBytes('upload_max_filesize');
|
|
|
|
$post_max_size = OC::$server->getIniWrapper()->getBytes('post_max_size');
|
2012-05-02 02:20:45 +04:00
|
|
|
$maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size));
|
2015-12-18 17:43:13 +03:00
|
|
|
if($_POST && \OC::$server->getRequest()->passesCSRFCheck()) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if(isset($_POST['maxUploadSize'])) {
|
2012-05-02 02:20:45 +04:00
|
|
|
if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) {
|
|
|
|
$maxUploadFilesize = OCP\Util::humanFileSize($setMaxSize);
|
2012-04-13 12:43:19 +04:00
|
|
|
}
|
2012-03-16 19:25:15 +04:00
|
|
|
}
|
2011-05-29 19:43:13 +04:00
|
|
|
}
|
|
|
|
|
2012-06-06 02:24:15 +04:00
|
|
|
$htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess');
|
2015-06-25 18:45:17 +03:00
|
|
|
$userIniWritable=is_writable(OC::$SERVERROOT.'/.user.ini');
|
2012-06-06 02:24:15 +04:00
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template( 'files', 'admin' );
|
2015-06-25 18:45:17 +03:00
|
|
|
$tmpl->assign( 'uploadChangable', ($htaccessWorking and $htaccessWritable) or $userIniWritable );
|
2011-05-29 19:43:13 +04:00
|
|
|
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
|
2012-12-29 00:57:05 +04:00
|
|
|
// max possible makes only sense on a 32 bit system
|
|
|
|
$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4);
|
2012-12-29 01:14:32 +04:00
|
|
|
$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX));
|
2012-10-07 02:03:47 +04:00
|
|
|
return $tmpl->fetchPage();
|