2010-03-24 18:35:24 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - ajax frontend
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2010 Robin Appelman icewind1991@gmail.com
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
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
|
2011-03-02 01:20:16 +03:00
|
|
|
* 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.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
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.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
|
|
|
* 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/>.
|
2011-03-02 01:20:16 +03: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-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' );
|
2011-06-05 17:13:03 +04:00
|
|
|
if(!isset($_SESSION['timezone'])){
|
2012-05-01 22:03:41 +04:00
|
|
|
OCP\Util::addscript( 'files', 'timezone' );
|
2011-06-05 17:13:03 +04:00
|
|
|
}
|
2012-05-04 18:38:06 +04:00
|
|
|
OCP\App::setActiveNavigationEntry( 'files_index' );
|
2011-03-03 01:06:23 +03:00
|
|
|
// Load the files
|
2012-01-15 23:48:38 +04:00
|
|
|
$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : '';
|
2011-10-22 09:50:40 +04:00
|
|
|
// Redirect if directory does not exist
|
2012-03-03 21:02:07 +04:00
|
|
|
if(!OC_Filesystem::is_dir($dir.'/')) {
|
2012-05-04 18:38:06 +04:00
|
|
|
header('Location: '.$_SERVER['PHP_SELF'].'');
|
2011-10-22 09:50:40 +04:00
|
|
|
}
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
$files = array();
|
2011-07-29 23:36:03 +04:00
|
|
|
foreach( OC_Files::getdirectorycontent( $dir ) as $i ){
|
2012-05-04 18:38:06 +04:00
|
|
|
$i['date'] = OCP\Util::formatDate($i['mtime'] );
|
2011-07-07 04:41:22 +04:00
|
|
|
if($i['type']=='file'){
|
2011-08-30 22:23:03 +04:00
|
|
|
$fileinfo=pathinfo($i['name']);
|
|
|
|
$i['basename']=$fileinfo['filename'];
|
|
|
|
if (!empty($fileinfo['extension'])) {
|
2012-04-15 15:32:45 +04:00
|
|
|
$i['extension']='.' . $fileinfo['extension'];
|
2011-08-30 22:23:03 +04:00
|
|
|
}
|
|
|
|
else {
|
2012-04-15 15:32:45 +04:00
|
|
|
$i['extension']='';
|
2011-08-30 22:23:03 +04:00
|
|
|
}
|
2011-07-07 04:41:22 +04:00
|
|
|
}
|
2011-04-18 11:42:20 +04:00
|
|
|
if($i['directory']=='/'){
|
|
|
|
$i['directory']='';
|
|
|
|
}
|
2011-03-03 01:06:23 +03:00
|
|
|
$files[] = $i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make breadcrumb
|
2011-10-22 02:29:45 +04:00
|
|
|
$breadcrumb = array();
|
2012-05-04 18:38:06 +04:00
|
|
|
$pathtohere = '';
|
|
|
|
foreach( explode( '/', $dir ) as $i ){
|
|
|
|
if( $i != '' ){
|
|
|
|
$pathtohere .= '/'.str_replace('+','%20', urlencode($i));
|
|
|
|
$breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i );
|
2011-03-03 01:06:23 +03:00
|
|
|
}
|
|
|
|
}
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-04-17 17:59:06 +04: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 );
|
|
|
|
$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 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 );
|
|
|
|
$breadcrumbNav->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'&dir=', false);
|
2011-04-17 17:59:06 +04:00
|
|
|
|
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'));
|
2011-09-23 22:08:45 +04:00
|
|
|
$maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
2011-04-17 20:14:26 +04:00
|
|
|
|
2011-11-09 01:48:29 +04:00
|
|
|
$freeSpace=OC_Filesystem::free_space('/');
|
|
|
|
$freeSpace=max($freeSpace,0);
|
|
|
|
$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace);
|
|
|
|
|
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-06-11 15:27:32 +04:00
|
|
|
$tmpl->assign( 'dir', $dir);
|
|
|
|
$tmpl->assign( 'readonly', !OC_Filesystem::is_writable($dir.'/'));
|
|
|
|
$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-02 01:20:16 +03:00
|
|
|
$tmpl->printPage();
|