some fixes to scanning
This commit is contained in:
parent
7ff86cfebe
commit
df67c35017
|
@ -82,6 +82,15 @@
|
|||
<length>512</length>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<name>user</name>
|
||||
<type>text</type>
|
||||
<default>
|
||||
</default>
|
||||
<notnull>true</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
|
||||
<field>
|
||||
<name>size</name>
|
||||
<type>integer</type>
|
||||
|
|
|
@ -2,17 +2,25 @@
|
|||
|
||||
require_once '../../lib/base.php';
|
||||
|
||||
$eventSource=new OC_EventSource();
|
||||
set_time_limit(0);//scanning can take ages
|
||||
|
||||
$force=isset($_GET['force']) and $_GET['force']=='true';
|
||||
$checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true';
|
||||
|
||||
if(!$checkOnly){
|
||||
$eventSource=new OC_EventSource();
|
||||
}
|
||||
|
||||
|
||||
//create the file cache if necesary
|
||||
if($force or !OC_FileCache::inCache('')){
|
||||
if(!$checkOnly){
|
||||
OC_FileCache::scan('',false,$eventSource);
|
||||
}
|
||||
$eventSource->send('success',true);
|
||||
}else{
|
||||
OC_JSON::success(array('data'=>array('done'=>true)));
|
||||
exit;
|
||||
}
|
||||
}else{
|
||||
$eventSource->send('success',false);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue