server/apps/files/ajax/scan.php

44 lines
956 B
PHP
Raw Normal View History

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