nextcloud/apps/files/index.php

126 lines
4.2 KiB
PHP
Raw Normal View History

2010-03-24 18:35:24 +03:00
<?php
/**
* ownCloud - ajax frontend
*
* @author Robin Appelman
* @copyright 2010 Robin Appelman icewind1991@gmail.com
*
2010-03-24 18:35:24 +03:00
* 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
2010-03-24 18:35:24 +03:00
* version 3 of the License, or any later version.
*
2010-03-24 18:35:24 +03:00
* 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
2010-03-24 18:35:24 +03:00
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
2010-03-24 18:35:24 +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
// Load the files we need
2012-05-04 18:38:06 +04:00
OCP\Util::addStyle( 'files', 'files' );
OCP\Util::addscript( 'files', 'jquery.iframe-transport' );
OCP\Util::addscript( 'files', 'jquery.fileupload' );
OCP\Util::addscript( 'files', 'files' );
2012-05-01 22:03:41 +04:00
OCP\Util::addscript( 'files', 'filelist' );
OCP\Util::addscript( 'files', 'fileactions' );
2012-09-07 17:22:01 +04:00
if(!isset($_SESSION['timezone'])) {
2012-05-01 22:03:41 +04:00
OCP\Util::addscript( 'files', 'timezone' );
}
2012-05-04 18:38:06 +04:00
OCP\App::setActiveNavigationEntry( 'files_index' );
// Load the files
$dir = isset( $_GET['dir'] ) ? rawurldecode(stripslashes($_GET['dir'])) : '';
// Redirect if directory does not exist
2012-10-10 15:18:36 +04:00
if(!\OC\Files\Filesystem::is_dir($dir.'/')) {
header('Location: '.$_SERVER['SCRIPT_NAME'].'');
exit();
}
2010-03-24 18:35:24 +03:00
2012-10-27 14:18:01 +04:00
function fileCmp($a, $b) {
if ($a['type'] == 'dir' and $b['type'] != 'dir') {
return -1;
} elseif ($a['type'] != 'dir' and $b['type'] == 'dir') {
return 1;
} else {
return strnatcasecmp($a['name'], $b['name']);
}
}
$files = array();
2012-10-27 01:05:02 +04:00
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir ) as $i ) {
2012-05-04 18:38:06 +04:00
$i['date'] = OCP\Util::formatDate($i['mtime'] );
2012-09-07 17:22:01 +04:00
if($i['type']=='file') {
$fileinfo=pathinfo($i['name']);
$i['basename']=$fileinfo['filename'];
if (!empty($fileinfo['extension'])) {
$i['extension']='.' . $fileinfo['extension'];
}
else {
$i['extension']='';
}
2011-07-07 04:41:22 +04:00
}
2012-09-07 17:22:01 +04:00
if($i['directory']=='/') {
2011-04-18 11:42:20 +04:00
$i['directory']='';
}
$files[] = $i;
}
2012-10-27 14:18:01 +04:00
usort($files, "fileCmp");
// Make breadcrumb
$breadcrumb = array();
2012-05-04 18:38:06 +04:00
$pathtohere = '';
2012-09-07 17:22:01 +04:00
foreach( explode( '/', $dir ) as $i ) {
if( $i != '' ) {
2012-05-04 18:38:06 +04:00
$pathtohere .= '/'.str_replace('+','%20', urlencode($i));
$breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i );
}
}
2010-03-24 18:35:24 +03:00
// make breadcrumb und filelist markup
2012-05-07 12:43:54 +04:00
$list = new OCP\Template( 'files', 'part.list', '' );
2012-06-11 21:07:51 +04:00
$list->assign( 'files', $files, false );
2012-08-15 20:13:08 +04:00
$list->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir=', false);
2012-06-11 21:07:51 +04:00
$list->assign( 'downloadURL', OCP\Util::linkTo('files', 'download.php').'?file=', false);
2012-05-07 12:43:54 +04:00
$breadcrumbNav = new OCP\Template( 'files', 'part.breadcrumb', '' );
2012-06-11 21:07:51 +04:00
$breadcrumbNav->assign( 'breadcrumb', $breadcrumb, false );
2012-08-15 20:13:08 +04:00
$breadcrumbNav->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir=', false);
2012-05-02 02:20:45 +04:00
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
$maxUploadFilesize = min($upload_max_filesize, $post_max_size);
2011-04-17 20:14:26 +04:00
2012-10-23 18:16:46 +04:00
$freeSpace=\OC\Files\Filesystem::free_space($dir);
$freeSpace=max($freeSpace,0);
2012-10-23 10:35:54 +04:00
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
$permissions = OCP\Share::PERMISSION_READ;
2012-10-10 15:18:36 +04:00
if (\OC\Files\Filesystem::isUpdatable($dir.'/')) {
$permissions |= OCP\Share::PERMISSION_UPDATE;
}
2012-10-10 15:18:36 +04:00
if (\OC\Files\Filesystem::isDeletable($dir.'/')) {
$permissions |= OCP\Share::PERMISSION_DELETE;
}
2012-10-10 15:18:36 +04:00
if (\OC\Files\Filesystem::isSharable($dir.'/')) {
$permissions |= OCP\Share::PERMISSION_SHARE;
}
2012-05-07 12:43:54 +04:00
$tmpl = new OCP\Template( 'files', 'index', 'user' );
2012-06-11 21:07:51 +04:00
$tmpl->assign( 'fileList', $list->fetchPage(), false );
$tmpl->assign( 'breadcrumb', $breadcrumbNav->fetchPage(), false );
2012-10-10 15:18:36 +04:00
$tmpl->assign( 'dir', \OC\Files\Filesystem::normalizePath($dir));
$tmpl->assign( 'isCreatable', \OC\Files\Filesystem::isCreatable($dir.'/'));
$tmpl->assign('permissions', $permissions);
2012-06-11 15:27:32 +04:00
$tmpl->assign( 'files', $files );
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
$tmpl->assign( 'uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
$tmpl->assign( 'allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
$tmpl->printPage();