nextcloud/apps/files/ajax/scan.php

44 lines
956 B
PHP
Raw Normal View History

<?php
2012-01-31 19:12:38 +04:00
set_time_limit(0);//scanning can take ages
$force=isset($_GET['force']) and $_GET['force']=='true';
$dir=isset($_GET['dir'])?$_GET['dir']:'';
$checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true';
2012-08-29 02:50:12 +04:00
if(!$checkOnly) {
2012-01-31 19:12:38 +04:00
$eventSource=new OC_EventSource();
}
session_write_close();
2012-01-31 19:12:38 +04:00
//create the file cache if necesary
2012-08-29 02:50:12 +04:00
if($force or !OC_FileCache::inCache('')) {
if(!$checkOnly) {
2012-05-03 15:06:08 +04:00
OCP\DB::beginTransaction();
2012-08-29 10:42:49 +04:00
2012-08-29 02:50:12 +04:00
if(OC_Cache::isFast()) {
2012-08-29 10:42:49 +04:00
OC_Cache::clear('fileid/'); //make sure the old fileid's don't mess things up
2012-07-22 05:24:34 +04:00
}
2012-08-29 10:42:49 +04:00
OC_FileCache::scan($dir, $eventSource);
2012-03-30 21:44:38 +04:00
OC_FileCache::clean();
2012-05-03 15:06:08 +04:00
OCP\DB::commit();
2012-08-29 02:50:12 +04:00
$eventSource->send('success', true);
} else {
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array('data'=>array('done'=>true)));
2012-01-31 19:12:38 +04:00
exit;
}
2012-08-29 02:50:12 +04:00
} else {
if($checkOnly) {
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array('data'=>array('done'=>false)));
2012-02-05 04:23:04 +04:00
exit;
}
2012-08-29 02:50:12 +04:00
if(isset($eventSource)) {
2012-08-29 03:38:34 +04:00
$eventSource->send('success', false);
2012-08-29 02:50:12 +04:00
} else {
exit;
}
}
2012-08-29 02:50:12 +04:00
$eventSource->close();