aboutsummaryrefslogtreecommitdiffstats
path: root/files/ajax/scan.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-04-18 17:27:34 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-04-18 17:27:34 +0200
commit45de7ad221f9e505abdabcc5084dd12c80851469 (patch)
tree9afe2994fe01d35cf7aa2e16389c04bb3e298faf /files/ajax/scan.php
parentdfc92675e0d76ad9550a274b712e084e1738831c (diff)
downloadnextcloud-server-45de7ad221f9e505abdabcc5084dd12c80851469.tar.gz
nextcloud-server-45de7ad221f9e505abdabcc5084dd12c80851469.zip
move files to app folder
Diffstat (limited to 'files/ajax/scan.php')
-rw-r--r--files/ajax/scan.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/files/ajax/scan.php b/files/ajax/scan.php
deleted file mode 100644
index db09b7d5c64..00000000000
--- a/files/ajax/scan.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?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(); \ No newline at end of file