2010-03-24 15:35:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - ajax frontend
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2010 Robin Appelman icewind1991@gmail.com
|
2011-03-01 22:20:16 +00:00
|
|
|
*
|
2010-03-24 15:35:24 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2011-03-01 22:20:16 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
2010-03-24 15:35:24 +00:00
|
|
|
* version 3 of the License, or any later version.
|
2011-03-01 22:20:16 +00:00
|
|
|
*
|
2010-03-24 15:35:24 +00: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.
|
2011-03-01 22:20:16 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-03-24 15:35:24 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-03-01 22:20:16 +00:00
|
|
|
*
|
2010-03-24 15:35:24 +00:00
|
|
|
*/
|
|
|
|
|
2011-03-02 22:06:23 +00:00
|
|
|
// Check if we are a user
|
2012-05-01 20:59:38 +00:00
|
|
|
OCP\User::checkLoggedIn();
|
2010-03-24 15:35:24 +00:00
|
|
|
|
2011-03-02 22:06:23 +00:00
|
|
|
// Load the files we need
|
2012-05-04 14:38:06 +00: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 18:03:41 +00:00
|
|
|
OCP\Util::addscript( 'files', 'filelist' );
|
|
|
|
OCP\Util::addscript( 'files', 'fileactions' );
|
2011-06-05 13:13:03 +00:00
|
|
|
if(!isset($_SESSION['timezone'])){
|
2012-05-01 18:03:41 +00:00
|
|
|
OCP\Util::addscript( 'files', 'timezone' );
|
2011-06-05 13:13:03 +00:00
|
|
|
}
|
2012-05-04 14:38:06 +00:00
|
|
|
OCP\App::setActiveNavigationEntry( 'files_index' );
|
2011-03-02 22:06:23 +00:00
|
|
|
// Load the files
|
2012-01-15 19:48:38 +00:00
|
|
|
$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : '';
|
2011-10-22 05:50:40 +00:00
|
|
|
// Redirect if directory does not exist
|
2012-03-03 17:02:07 +00:00
|
|
|
if(!OC_Filesystem::is_dir($dir.'/')) {
|
2012-08-18 07:30:01 +00:00
|
|
|
header('Location: '.$_SERVER['SCRIPT_NAME'].'');
|
2012-07-10 22:59:42 +00:00
|
|
|
exit();
|
2011-10-22 05:50:40 +00:00
|
|
|
}
|
2010-03-24 15:35:24 +00:00
|
|
|
|
2011-03-02 22:06:23 +00:00
|
|
|
$files = array();
|
2011-07-29 19:36:03 +00:00
|
|
|
foreach( OC_Files::getdirectorycontent( $dir ) as $i ){
|
2012-05-04 14:38:06 +00:00
|
|
|
$i['date'] = OCP\Util::formatDate($i['mtime'] );
|
2011-07-07 00:41:22 +00:00
|
|
|
if($i['type']=='file'){
|
2011-08-30 18:23:03 +00:00
|
|
|
$fileinfo=pathinfo($i['name']);
|
|
|
|
$i['basename']=$fileinfo['filename'];
|
|
|
|
if (!empty($fileinfo['extension'])) {
|
2012-04-15 11:32:45 +00:00
|
|
|
$i['extension']='.' . $fileinfo['extension'];
|
2011-08-30 18:23:03 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-04-15 11:32:45 +00:00
|
|
|
$i['extension']='';
|
2011-08-30 18:23:03 +00:00
|
|
|
}
|
2011-07-07 00:41:22 +00:00
|
|
|
}
|
2011-04-18 07:42:20 +00:00
|
|
|
if($i['directory']=='/'){
|
|
|
|
$i['directory']='';
|
|
|
|
}
|
2011-03-02 22:06:23 +00:00
|
|
|
$files[] = $i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make breadcrumb
|
2011-10-21 22:29:45 +00:00
|
|
|
$breadcrumb = array();
|
2012-05-04 14:38:06 +00:00
|
|
|
$pathtohere = '';
|
|
|
|
foreach( explode( '/', $dir ) as $i ){
|
|
|
|
if( $i != '' ){
|
|
|
|
$pathtohere .= '/'.str_replace('+','%20', urlencode($i));
|
|
|
|
$breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i );
|
2011-03-02 22:06:23 +00:00
|
|
|
}
|
|
|
|
}
|
2010-03-24 15:35:24 +00:00
|
|
|
|
2011-04-17 13:59:06 +00:00
|
|
|
// make breadcrumb und filelist markup
|
2012-05-07 08:43:54 +00:00
|
|
|
$list = new OCP\Template( 'files', 'part.list', '' );
|
2012-06-11 17:07:51 +00:00
|
|
|
$list->assign( 'files', $files, false );
|
|
|
|
$list->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'&dir=', false);
|
|
|
|
$list->assign( 'downloadURL', OCP\Util::linkTo('files', 'download.php').'?file=', false);
|
2012-05-07 08:43:54 +00:00
|
|
|
$breadcrumbNav = new OCP\Template( 'files', 'part.breadcrumb', '' );
|
2012-06-11 17:07:51 +00:00
|
|
|
$breadcrumbNav->assign( 'breadcrumb', $breadcrumb, false );
|
|
|
|
$breadcrumbNav->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'&dir=', false);
|
2011-04-17 13:59:06 +00:00
|
|
|
|
2012-05-01 22:20:45 +00:00
|
|
|
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
|
|
|
|
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
|
2011-09-23 18:08:45 +00:00
|
|
|
$maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
2011-04-17 16:14:26 +00:00
|
|
|
|
2011-11-08 21:48:29 +00:00
|
|
|
$freeSpace=OC_Filesystem::free_space('/');
|
|
|
|
$freeSpace=max($freeSpace,0);
|
|
|
|
$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace);
|
|
|
|
|
2012-05-07 08:43:54 +00:00
|
|
|
$tmpl = new OCP\Template( 'files', 'index', 'user' );
|
2012-06-11 17:07:51 +00:00
|
|
|
$tmpl->assign( 'fileList', $list->fetchPage(), false );
|
|
|
|
$tmpl->assign( 'breadcrumb', $breadcrumbNav->fetchPage(), false );
|
2012-08-16 23:22:26 +00:00
|
|
|
$tmpl->assign( 'dir', OC_Filesystem::normalizePath($dir));
|
2012-07-25 01:35:03 +00:00
|
|
|
$tmpl->assign( 'isCreatable', OC_Filesystem::isCreatable($dir.'/'));
|
2012-06-11 11:27:32 +00: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)));
|
2011-03-01 22:20:16 +00:00
|
|
|
$tmpl->printPage();
|