2011-03-04 01:08:54 +03:00
|
|
|
<?php
|
|
|
|
|
2012-03-30 16:39:07 +04:00
|
|
|
// only need filesystem apps
|
|
|
|
$RUNTIME_APPTYPES=array('filesystem');
|
|
|
|
|
2011-03-04 01:08:54 +03:00
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2011-03-04 01:08:54 +03:00
|
|
|
|
|
|
|
// Load the files
|
|
|
|
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
2011-04-17 17:59:06 +04:00
|
|
|
$doBreadcrumb = isset( $_GET['breadcrumb'] ) ? true : false;
|
|
|
|
$data = array();
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
// Make breadcrumb
|
2012-08-29 02:50:12 +04:00
|
|
|
if($doBreadcrumb) {
|
2011-04-17 17:59:06 +04:00
|
|
|
$breadcrumb = array();
|
|
|
|
$pathtohere = "/";
|
|
|
|
foreach( explode( "/", $dir ) as $i ){
|
2012-08-29 02:50:12 +04:00
|
|
|
if( $i != "" ) {
|
2011-04-17 17:59:06 +04:00
|
|
|
$pathtohere .= "$i/";
|
|
|
|
$breadcrumb[] = array( "dir" => $pathtohere, "name" => $i );
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$breadcrumbNav = new OCP\Template( "files", "part.breadcrumb", "" );
|
2011-04-17 17:59:06 +04:00
|
|
|
$breadcrumbNav->assign( "breadcrumb", $breadcrumb );
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
$data['breadcrumb'] = $breadcrumbNav->fetchPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
// make filelist
|
2011-03-04 01:08:54 +03:00
|
|
|
$files = array();
|
2011-07-29 23:36:03 +04:00
|
|
|
foreach( OC_Files::getdirectorycontent( $dir ) as $i ){
|
2012-05-01 23:07:08 +04:00
|
|
|
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
2011-03-04 01:08:54 +03:00
|
|
|
$files[] = $i;
|
|
|
|
}
|
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$list = new OCP\Template( "files", "part.list", "" );
|
2012-06-11 21:07:51 +04:00
|
|
|
$list->assign( "files", $files, false );
|
2011-04-17 17:59:06 +04:00
|
|
|
$data = array('files' => $list->fetchPage());
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::success(array('data' => $data));
|