summaryrefslogtreecommitdiffstats
path: root/files/ajax/scan.php
blob: 01236c83da1d72c166551318655b2bbccb0cf11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

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

$eventSource=new OC_EventSource();

$force=isset($_GET['force']) and $_GET['force']=='true';
$checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true';

//create the file cache if necesary
if($force or !OC_FileCache::inCache('')){
	if(!$checkOnly){
		OC_FileCache::scan('',false,$eventSource);
	}
	$eventSource->send('success',true);
}else{
	$eventSource->send('success',false);
}
$eventSource->close();