2010-03-24 18:35:24 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Roman Geber <rgeber@owncloudapps.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2012-12-20 14:10:45 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2012-12-20 14:10:45 +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-12-20 14:10:45 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-12-20 14:10:45 +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-12-20 14:10:45 +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-12-20 14:10:45 +04:00
|
|
|
*
|
|
|
|
*/
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
// Check if we are a user
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkLoggedIn();
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
// Load the files we need
|
2012-12-20 14:10:45 +04:00
|
|
|
OCP\Util::addStyle('files', 'files');
|
2013-09-18 19:20:14 +04:00
|
|
|
OCP\Util::addStyle('files', 'upload');
|
2014-03-14 12:16:53 +04:00
|
|
|
OCP\Util::addStyle('files', 'mobile');
|
2014-05-08 21:00:42 +04:00
|
|
|
OCP\Util::addscript('files', 'app');
|
2013-06-25 14:24:14 +04:00
|
|
|
OCP\Util::addscript('files', 'file-upload');
|
2012-12-20 14:10:45 +04:00
|
|
|
OCP\Util::addscript('files', 'jquery.iframe-transport');
|
|
|
|
OCP\Util::addscript('files', 'jquery.fileupload');
|
2013-01-11 19:45:32 +04:00
|
|
|
OCP\Util::addscript('files', 'jquery-visibility');
|
2014-02-11 19:52:56 +04:00
|
|
|
OCP\Util::addscript('files', 'filesummary');
|
2013-10-28 23:22:06 +04:00
|
|
|
OCP\Util::addscript('files', 'breadcrumb');
|
2012-12-20 14:10:45 +04:00
|
|
|
OCP\Util::addscript('files', 'filelist');
|
2014-12-17 20:49:39 +03:00
|
|
|
OCP\Util::addscript('files', 'search');
|
2012-12-20 14:10:45 +04:00
|
|
|
|
2014-11-18 20:53:45 +03:00
|
|
|
\OCP\Util::addScript('files', 'favoritesfilelist');
|
|
|
|
\OCP\Util::addScript('files', 'tagsplugin');
|
|
|
|
\OCP\Util::addScript('files', 'favoritesplugin');
|
|
|
|
|
2014-12-15 14:43:16 +03:00
|
|
|
\OC_Util::addVendorScript('core', 'handlebars/handlebars');
|
|
|
|
|
2012-12-20 14:10:45 +04:00
|
|
|
OCP\App::setActiveNavigationEntry('files_index');
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2014-11-18 20:53:45 +03:00
|
|
|
$l = \OC::$server->getL10N('files');
|
|
|
|
|
2013-08-29 23:56:14 +04:00
|
|
|
$isIE8 = false;
|
|
|
|
preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches);
|
2014-05-09 00:06:30 +04:00
|
|
|
if (count($matches) > 0 && $matches[1] <= 9) {
|
2013-08-29 23:56:14 +04:00
|
|
|
$isIE8 = true;
|
|
|
|
}
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
// if IE8 and "?dir=path&view=someview" was specified, reformat the URL to use a hash like "#?dir=path&view=someview"
|
|
|
|
if ($isIE8 && (isset($_GET['dir']) || isset($_GET['view']))) {
|
|
|
|
$hash = '#?';
|
|
|
|
$dir = isset($_GET['dir']) ? $_GET['dir'] : '/';
|
|
|
|
$view = isset($_GET['view']) ? $_GET['view'] : 'files';
|
|
|
|
$hash = '#?dir=' . \OCP\Util::encodePath($dir);
|
|
|
|
if ($view !== 'files') {
|
|
|
|
$hash .= '&view=' . urlencode($view);
|
2012-10-27 14:18:01 +04:00
|
|
|
}
|
2014-05-09 00:06:30 +04:00
|
|
|
header('Location: ' . OCP\Util::linkTo('files', 'index.php') . $hash);
|
2013-08-29 23:56:14 +04:00
|
|
|
exit();
|
2012-10-27 14:18:01 +04:00
|
|
|
}
|
|
|
|
|
2013-01-03 03:26:13 +04:00
|
|
|
$user = OC_User::getUser();
|
2012-10-27 14:18:01 +04:00
|
|
|
|
2014-02-13 19:28:49 +04:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
// mostly for the home storage's free space
|
|
|
|
$dirInfo = \OC\Files\Filesystem::getFileInfo('/', false);
|
|
|
|
$storageInfo=OC_Helper::getStorageInfo('/', $dirInfo);
|
2013-08-30 15:53:49 +04:00
|
|
|
|
2013-12-09 16:32:28 +04:00
|
|
|
$nav = new OCP\Template('files', 'appnavigation', '');
|
|
|
|
|
2014-05-20 13:06:09 +04:00
|
|
|
function sortNavigationItems($item1, $item2) {
|
|
|
|
return $item1['order'] - $item2['order'];
|
|
|
|
}
|
|
|
|
|
2014-11-18 20:53:45 +03:00
|
|
|
\OCA\Files\App::getNavigationManager()->add(
|
|
|
|
array(
|
2014-12-15 19:20:41 +03:00
|
|
|
'id' => 'favorites',
|
|
|
|
'appname' => 'files',
|
|
|
|
'script' => 'simplelist.php',
|
2014-12-17 13:00:16 +03:00
|
|
|
'order' => 5,
|
2014-12-15 19:20:41 +03:00
|
|
|
'name' => $l->t('Favorites')
|
2014-11-18 20:53:45 +03:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2014-05-08 18:24:24 +04:00
|
|
|
$navItems = \OCA\Files\App::getNavigationManager()->getAll();
|
2014-05-20 13:06:09 +04:00
|
|
|
usort($navItems, 'sortNavigationItems');
|
2014-05-08 18:24:24 +04:00
|
|
|
$nav->assign('navigationItems', $navItems);
|
|
|
|
|
|
|
|
$contentItems = array();
|
|
|
|
|
|
|
|
function renderScript($appName, $scriptName) {
|
|
|
|
$content = '';
|
|
|
|
$appPath = OC_App::getAppPath($appName);
|
|
|
|
$scriptPath = $appPath . '/' . $scriptName;
|
|
|
|
if (file_exists($scriptPath)) {
|
|
|
|
// TODO: sanitize path / script name ?
|
|
|
|
ob_start();
|
|
|
|
include $scriptPath;
|
|
|
|
$content = ob_get_contents();
|
|
|
|
@ob_end_clean();
|
|
|
|
}
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
// render the container content for every navigation item
|
2014-05-08 18:24:24 +04:00
|
|
|
foreach ($navItems as $item) {
|
|
|
|
$content = '';
|
|
|
|
if (isset($item['script'])) {
|
|
|
|
$content = renderScript($item['appname'], $item['script']);
|
|
|
|
}
|
|
|
|
$contentItem = array();
|
2014-05-08 21:00:42 +04:00
|
|
|
$contentItem['id'] = $item['id'];
|
2014-05-08 18:24:24 +04:00
|
|
|
$contentItem['content'] = $content;
|
|
|
|
$contentItems[] = $contentItem;
|
|
|
|
}
|
2013-12-09 16:32:28 +04:00
|
|
|
|
2014-03-18 20:14:38 +04:00
|
|
|
OCP\Util::addscript('files', 'fileactions');
|
|
|
|
OCP\Util::addscript('files', 'files');
|
2014-05-08 21:00:42 +04:00
|
|
|
OCP\Util::addscript('files', 'navigation');
|
2014-03-18 20:14:38 +04:00
|
|
|
OCP\Util::addscript('files', 'keyboardshortcuts');
|
|
|
|
$tmpl = new OCP\Template('files', 'index', 'user');
|
2014-05-12 21:54:20 +04:00
|
|
|
$tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']);
|
2015-06-05 19:21:41 +03:00
|
|
|
$tmpl->assign('owner', $storageInfo['owner']);
|
|
|
|
$tmpl->assign('ownerDisplayName', $storageInfo['ownerDisplayName']);
|
2014-03-18 20:14:38 +04:00
|
|
|
$tmpl->assign('isPublic', false);
|
2014-06-03 13:29:28 +04:00
|
|
|
$tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'no'));
|
2014-09-22 14:13:44 +04:00
|
|
|
$tmpl->assign("mailPublicNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_public_notification', 'no'));
|
2014-03-18 20:14:38 +04:00
|
|
|
$tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes'));
|
2013-12-09 16:32:28 +04:00
|
|
|
$tmpl->assign('appNavigation', $nav);
|
2014-05-08 18:24:24 +04:00
|
|
|
$tmpl->assign('appContents', $contentItems);
|
2014-03-18 20:14:38 +04:00
|
|
|
|
|
|
|
$tmpl->printPage();
|