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'] : '';
|
2013-11-14 16:22:53 +04:00
|
|
|
$dir = \OC\Files\Filesystem::normalizePath($dir);
|
2013-08-17 15:07:18 +04:00
|
|
|
if (!\OC\Files\Filesystem::is_dir($dir . '/')) {
|
|
|
|
header("HTTP/1.0 404 Not Found");
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2013-08-18 01:38:26 +04:00
|
|
|
$doBreadcrumb = isset($_GET['breadcrumb']);
|
2011-04-17 17:59:06 +04:00
|
|
|
$data = array();
|
2013-08-17 15:07:18 +04:00
|
|
|
$baseUrl = OCP\Util::linkTo('files', 'index.php') . '?dir=';
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2013-09-20 18:46:33 +04:00
|
|
|
$permissions = \OCA\Files\Helper::getDirPermissions($dir);
|
2013-08-30 01:45:02 +04:00
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
// Make breadcrumb
|
2012-08-29 02:50:12 +04:00
|
|
|
if($doBreadcrumb) {
|
2013-09-20 18:46:33 +04:00
|
|
|
$breadcrumb = \OCA\Files\Helper::makeBreadcrumb($dir);
|
2013-08-17 15:07:18 +04:00
|
|
|
|
|
|
|
$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
|
|
|
|
$breadcrumbNav->assign('breadcrumb', $breadcrumb, false);
|
|
|
|
$breadcrumbNav->assign('baseURL', $baseUrl);
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2011-04-17 17:59:06 +04:00
|
|
|
$data['breadcrumb'] = $breadcrumbNav->fetchPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
// make filelist
|
2013-09-20 18:46:33 +04:00
|
|
|
$files = \OCA\Files\Helper::getFiles($dir);
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2013-08-17 15:07:18 +04:00
|
|
|
$list = new OCP\Template("files", "part.list", "");
|
|
|
|
$list->assign('files', $files, false);
|
|
|
|
$list->assign('baseURL', $baseUrl, false);
|
|
|
|
$list->assign('downloadURL', OCP\Util::linkToRoute('download', array('file' => '/')));
|
2013-08-30 01:45:02 +04:00
|
|
|
$list->assign('isPublic', false);
|
2013-08-17 15:07:18 +04:00
|
|
|
$data['files'] = $list->fetchPage();
|
2013-08-30 01:45:02 +04:00
|
|
|
$data['permissions'] = $permissions;
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::success(array('data' => $data));
|