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
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-03-03 01:06:23 +03:00
|
|
|
// Load the files we need
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Util::addStyle( "files", "files" );
|
|
|
|
OC_Util::addScript( "files", "files" );
|
|
|
|
OC_Util::addScript( 'files', 'filelist' );
|
|
|
|
OC_Util::addScript( 'files', 'fileactions' );
|
2011-06-05 17:13:03 +04:00
|
|
|
if(!isset($_SESSION['timezone'])){
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Util::addScript( 'files', 'timezone' );
|
2011-06-05 17:13:03 +04:00
|
|
|
}
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_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.'/')) {
|
2011-10-22 09:50:40 +04:00
|
|
|
header("Location: ".$_SERVER['PHP_SELF']."");
|
|
|
|
}
|
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 ){
|
|
|
|
$i["date"] = OC_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();
|
2011-07-11 00:00:08 +04:00
|
|
|
$pathtohere = "";
|
2011-03-03 01:06:23 +03:00
|
|
|
foreach( explode( "/", $dir ) as $i ){
|
|
|
|
if( $i != "" ){
|
2011-12-28 21:47:27 +04:00
|
|
|
$pathtohere .= "/".str_replace('+','%20', urlencode($i));
|
2011-03-03 01:06:23 +03:00
|
|
|
$breadcrumb[] = array( "dir" => $pathtohere, "name" => $i );
|
|
|
|
}
|
|
|
|
}
|
2010-03-24 18:35:24 +03:00
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
// make breadcrumb und filelist markup
|
2011-07-29 23:36:03 +04:00
|
|
|
$list = new OC_Template( "files", "part.list", "" );
|
2011-04-17 17:59:06 +04:00
|
|
|
$list->assign( "files", $files );
|
2012-02-16 22:48:20 +04:00
|
|
|
$list->assign( "baseURL", OC_Helper::linkTo("files", "index.php")."?dir=");
|
|
|
|
$list->assign( "downloadURL", OC_Helper::linkTo("files", "download.php")."?file=");
|
2011-07-29 23:36:03 +04:00
|
|
|
$breadcrumbNav = new OC_Template( "files", "part.breadcrumb", "" );
|
2011-04-17 17:59:06 +04:00
|
|
|
$breadcrumbNav->assign( "breadcrumb", $breadcrumb );
|
2012-02-16 22:48:20 +04:00
|
|
|
$breadcrumbNav->assign( "baseURL", OC_Helper::linkTo("files", "index.php")."?dir=");
|
2011-04-17 17:59:06 +04:00
|
|
|
|
2011-09-23 22:08:45 +04:00
|
|
|
$upload_max_filesize = OC_Helper::computerFileSize(ini_get('upload_max_filesize'));
|
|
|
|
$post_max_size = OC_Helper::computerFileSize(ini_get('post_max_size'));
|
|
|
|
$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);
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
$tmpl = new OC_Template( "files", "index", "user" );
|
2011-04-17 17:59:06 +04:00
|
|
|
$tmpl->assign( "fileList", $list->fetchPage() );
|
|
|
|
$tmpl->assign( "breadcrumb", $breadcrumbNav->fetchPage() );
|
2011-04-17 00:56:40 +04:00
|
|
|
$tmpl->assign( 'dir', $dir);
|
2012-02-05 17:00:49 +04:00
|
|
|
$tmpl->assign( 'readonly', !OC_Filesystem::is_writable($dir));
|
2011-08-20 07:07:58 +04:00
|
|
|
$tmpl->assign( "files", $files );
|
2011-04-17 20:14:26 +04:00
|
|
|
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
|
2011-07-29 23:36:03 +04:00
|
|
|
$tmpl->assign( 'uploadMaxHumanFilesize', OC_Helper::humanFileSize($maxUploadFilesize));
|
2012-03-21 16:10:02 +04:00
|
|
|
$tmpl->assign( 'allowZipDownload', intval(OC_Config::getValue('allowZipDownload', true)));
|
2011-03-02 01:20:16 +03:00
|
|
|
$tmpl->printPage();
|
2010-03-24 18:35:24 +03:00
|
|
|
|
|
|
|
?>
|