summaryrefslogtreecommitdiffstats
path: root/files/ajax/scan.php
blob: db09b7d5c642a6a829d6c5752aa864ef86735270 (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
32
33
34
35
36
37
38
<?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_DB::beginTransaction();
		OC_FileCache::scan('',$eventSource);
		OC_FileCache::clean();
		OC_DB::commit();
		$eventSource->send('success',true);
	}else{
		OC_JSON::success(array('data'=>array('done'=>true)));
		exit;
	}
}else{
	if($checkOnly){
		OC_JSON::success(array('data'=>array('done'=>false)));
		exit;
	}
	if(isset($eventSource)){
		$eventSource->send('success',false);
	}else{
		exit;
	}
}
$eventSource->close();