2012-04-02 13:39:24 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// only need filesystem apps
|
|
|
|
|
$RUNTIME_APPTYPES=array('filesystem');
|
|
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 13:31:29 -04:00
|
|
|
|
2012-08-28 18:50:12 -04:00
|
|
|
require_once 'lib/template.php';
|
2012-04-02 13:39:24 -04:00
|
|
|
|
2012-05-03 06:23:29 -04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-04-02 13:39:24 -04:00
|
|
|
|
|
|
|
|
// Load the files
|
|
|
|
|
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
2012-08-29 02:42:49 -04:00
|
|
|
$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : '';
|
2012-04-02 13:39:24 -04:00
|
|
|
|
|
|
|
|
// make filelist
|
|
|
|
|
$files = array();
|
2013-05-16 22:54:08 -04:00
|
|
|
// If a type other than directory is requested first load them.
|
|
|
|
|
if($mimetype && strpos($mimetype, 'httpd/unix-directory') === false) {
|
|
|
|
|
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, 'httpd/unix-directory' ) as $i ) {
|
|
|
|
|
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
|
|
|
|
$i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
|
|
|
|
|
$files[] = $i;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-26 17:05:02 -04:00
|
|
|
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, $mimetype ) as $i ) {
|
2012-05-01 15:07:08 -04:00
|
|
|
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
2012-08-28 18:50:12 -04:00
|
|
|
$i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
|
2012-04-02 13:39:24 -04:00
|
|
|
$files[] = $i;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-03 06:23:29 -04:00
|
|
|
OCP\JSON::success(array('data' => $files));
|