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

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

$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('');
	}
	OC_JSON::success(array("data" => array( "done" => true)));
}else{
	OC_JSON::success(array("data" => array( "done" => false)));
}