64 lines
1.3 KiB
PHP
64 lines
1.3 KiB
PHP
<?php
|
|
//provide auto completion of paths for use with jquer ui autocomplete
|
|
|
|
|
|
// Init owncloud
|
|
require_once('../../lib/base.php');
|
|
|
|
// We send json data
|
|
// header( "Content-Type: application/jsonrequest" );
|
|
|
|
// Check if we are a user
|
|
if( !OC_User::isLoggedIn()){
|
|
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
|
|
exit();
|
|
}
|
|
|
|
// Get data
|
|
$query = $_GET['term'];
|
|
$dirOnly=(isset($_GET['dironly']))?($_GET['dironly']=='true'):false;
|
|
|
|
if($query[0]!='/'){
|
|
$query='/'.$query;
|
|
}
|
|
|
|
if(substr($query,-1,1)=='/'){
|
|
$base=$query;
|
|
}else{
|
|
$base=dirname($query);
|
|
}
|
|
|
|
$query=substr($query,strlen($base));
|
|
|
|
if($base!='/'){
|
|
$query=substr($query,1);
|
|
}
|
|
$queryLen=strlen($query);
|
|
$query=strtolower($query);
|
|
|
|
// echo "$base - $query";
|
|
|
|
$files=array();
|
|
|
|
if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)){
|
|
$dh = OC_Filesystem::opendir($base);
|
|
if($dh){
|
|
if(substr($base,-1,1)!='/'){
|
|
$base=$base.'/';
|
|
}
|
|
while (($file = readdir($dh)) !== false) {
|
|
if ($file != "." && $file != ".."){
|
|
if(substr(strtolower($file),0,$queryLen)==$query){
|
|
$item=$base.$file;
|
|
if((!$dirOnly or OC_Filesystem::is_dir($item))){
|
|
$files[]=(object)array('id'=>$item,'label'=>$item,'name'=>$item);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
echo json_encode($files);
|
|
|
|
?>
|