2011-11-10 19:40:09 +04:00
|
|
|
<?php
|
2012-11-23 03:20:46 +04:00
|
|
|
set_time_limit(0); //scanning can take ages
|
|
|
|
session_write_close();
|
|
|
|
|
|
|
|
$force = (isset($_GET['force']) and ($_GET['force'] === 'true'));
|
|
|
|
$dir = isset($_GET['dir']) ? $_GET['dir'] : '';
|
2013-06-19 03:26:08 +04:00
|
|
|
if (isset($_GET['users'])) {
|
|
|
|
OC_JSON::checkAdminUser();
|
|
|
|
if ($_GET['users'] === 'all') {
|
|
|
|
$users = OC_User::getUsers();
|
|
|
|
} else {
|
2013-06-19 17:02:18 +04:00
|
|
|
$users = json_decode($_GET['users']);
|
2013-06-19 03:26:08 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$users = array(OC_User::getUser());
|
|
|
|
}
|
2012-11-23 03:20:46 +04:00
|
|
|
|
|
|
|
$eventSource = new OC_EventSource();
|
|
|
|
ScanListener::$eventSource = $eventSource;
|
|
|
|
ScanListener::$view = \OC\Files\Filesystem::getView();
|
2011-11-10 19:40:09 +04:00
|
|
|
|
2012-11-23 03:20:46 +04:00
|
|
|
OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_folder', 'ScanListener', 'folder');
|
|
|
|
OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_file', 'ScanListener', 'file');
|
2012-10-27 14:18:01 +04:00
|
|
|
|
2013-06-19 03:26:08 +04:00
|
|
|
foreach ($users as $user) {
|
|
|
|
$eventSource->send('user', $user);
|
|
|
|
OC_Util::tearDownFS();
|
|
|
|
OC_Util::setupFS($user);
|
|
|
|
|
|
|
|
$absolutePath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir);
|
2012-01-31 02:32:55 +04:00
|
|
|
|
2013-06-19 03:26:08 +04:00
|
|
|
$mountPoints = \OC\Files\Filesystem::getMountPoints($absolutePath);
|
|
|
|
$mountPoints[] = \OC\Files\Filesystem::getMountPoint($absolutePath);
|
|
|
|
$mountPoints = array_reverse($mountPoints); //start with the mount point of $dir
|
2011-11-10 19:40:09 +04:00
|
|
|
|
2013-06-19 03:26:08 +04:00
|
|
|
foreach ($mountPoints as $mountPoint) {
|
|
|
|
$storage = \OC\Files\Filesystem::getStorage($mountPoint);
|
|
|
|
if ($storage) {
|
|
|
|
ScanListener::$mountPoints[$storage->getId()] = $mountPoint;
|
|
|
|
$scanner = $storage->getScanner();
|
|
|
|
if ($force) {
|
|
|
|
$scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG);
|
|
|
|
} else {
|
|
|
|
$scanner->backgroundScan();
|
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2012-11-23 03:20:46 +04:00
|
|
|
}
|
2012-01-31 19:12:38 +04:00
|
|
|
}
|
|
|
|
|
2012-11-23 03:20:46 +04:00
|
|
|
$eventSource->send('done', ScanListener::$fileCount);
|
|
|
|
$eventSource->close();
|
2012-01-31 19:12:38 +04:00
|
|
|
|
2012-11-23 03:20:46 +04:00
|
|
|
class ScanListener {
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-11-23 03:20:46 +04:00
|
|
|
static public $fileCount = 0;
|
|
|
|
static public $lastCount = 0;
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-11-23 03:20:46 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View $view
|
|
|
|
*/
|
|
|
|
static public $view;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array $mountPoints map storage ids to mountpoints
|
|
|
|
*/
|
|
|
|
static public $mountPoints = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC_EventSource event source to pass events to
|
|
|
|
*/
|
|
|
|
static public $eventSource;
|
|
|
|
|
|
|
|
static function folder($params) {
|
|
|
|
$internalPath = $params['path'];
|
|
|
|
$mountPoint = self::$mountPoints[$params['storage']];
|
|
|
|
$path = self::$view->getRelativePath($mountPoint . $internalPath);
|
|
|
|
self::$eventSource->send('folder', $path);
|
2012-02-05 04:23:04 +04:00
|
|
|
}
|
2012-11-23 03:20:46 +04:00
|
|
|
|
|
|
|
static function file() {
|
|
|
|
self::$fileCount++;
|
|
|
|
if (self::$fileCount > self::$lastCount + 20) { //send a count update every 20 files
|
|
|
|
self::$lastCount = self::$fileCount;
|
|
|
|
self::$eventSource->send('count', self::$fileCount);
|
|
|
|
}
|
2012-01-31 19:33:16 +04:00
|
|
|
}
|
2012-01-31 02:32:55 +04:00
|
|
|
}
|