summaryrefslogtreecommitdiffstats
path: root/files/ajax/scan.php
blob: f7e75d5f8ba883535e26135dfb1ef03331aaf7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

require_once '../../lib/base.php';

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{
	if(isset($eventSource)){
		$eventSource->send('success',false);
	}else{
		exit;
	}
}
$eventSource->close();