2013-09-01 18:40:50 +04:00
|
|
|
<?php
|
2013-09-19 21:12:16 +04:00
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-09-19 21:12:16 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-09-01 18:40:50 +04:00
|
|
|
namespace OCA\Files\Command;
|
|
|
|
|
2014-06-25 17:22:49 +04:00
|
|
|
use OC\ForbiddenException;
|
2013-09-01 18:40:50 +04:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
2013-09-02 20:18:12 +04:00
|
|
|
class Scan extends Command {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\User\Manager $userManager
|
|
|
|
*/
|
|
|
|
private $userManager;
|
|
|
|
|
|
|
|
public function __construct(\OC\User\Manager $userManager) {
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
2013-09-01 18:40:50 +04:00
|
|
|
$this
|
|
|
|
->setName('files:scan')
|
|
|
|
->setDescription('rescan filesystem')
|
|
|
|
->addArgument(
|
2014-06-25 17:22:49 +04:00
|
|
|
'user_id',
|
|
|
|
InputArgument::OPTIONAL | InputArgument::IS_ARRAY,
|
|
|
|
'will rescan all files of the given user(s)'
|
|
|
|
)
|
2014-10-31 19:33:33 +03:00
|
|
|
->addOption(
|
|
|
|
'path',
|
2014-10-31 19:39:05 +03:00
|
|
|
'p',
|
2014-10-31 19:33:33 +03:00
|
|
|
InputArgument::OPTIONAL,
|
2014-12-10 13:04:17 +03:00
|
|
|
'limit rescan to this path, eg. --path="/alice/files/Music", the user_id is determined by the path and the user_id parameter and --all are ignored'
|
2014-10-31 19:33:33 +03:00
|
|
|
)
|
2014-10-31 19:39:05 +03:00
|
|
|
->addOption(
|
|
|
|
'quiet',
|
|
|
|
'q',
|
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'suppress output'
|
|
|
|
)
|
2013-09-01 18:40:50 +04:00
|
|
|
->addOption(
|
2014-06-25 17:22:49 +04:00
|
|
|
'all',
|
|
|
|
null,
|
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'will rescan all files of all known users'
|
|
|
|
);
|
2013-09-01 18:40:50 +04:00
|
|
|
}
|
|
|
|
|
2014-10-31 19:39:05 +03:00
|
|
|
protected function scanFiles($user, $path, $quiet, OutputInterface $output) {
|
2014-09-08 03:34:03 +04:00
|
|
|
$scanner = new \OC\Files\Utils\Scanner($user, \OC::$server->getDatabaseConnection());
|
2014-10-31 19:39:05 +03:00
|
|
|
if (!$quiet) {
|
|
|
|
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function ($path) use ($output) {
|
2014-12-10 13:04:17 +03:00
|
|
|
$output->writeln("Scanning file <info>$path</info>");
|
2014-10-31 19:39:05 +03:00
|
|
|
});
|
|
|
|
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function ($path) use ($output) {
|
2014-12-10 13:04:17 +03:00
|
|
|
$output->writeln("Scanning folder <info>$path</info>");
|
2014-10-31 19:39:05 +03:00
|
|
|
});
|
|
|
|
}
|
2014-06-25 17:22:49 +04:00
|
|
|
try {
|
2014-10-31 19:33:33 +03:00
|
|
|
$scanner->scan($path);
|
2014-06-25 17:22:49 +04:00
|
|
|
} catch (ForbiddenException $e) {
|
|
|
|
$output->writeln("<error>Home storage for user $user not writable</error>");
|
|
|
|
$output->writeln("Make sure you're running the scan command only as the user the web server runs as");
|
|
|
|
}
|
2013-09-01 18:40:50 +04:00
|
|
|
}
|
|
|
|
|
2013-09-02 20:18:12 +04:00
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
2014-12-10 13:04:17 +03:00
|
|
|
$path = $input->getOption('path');
|
2015-01-06 17:27:03 +03:00
|
|
|
if ($path) {
|
2014-12-10 13:04:17 +03:00
|
|
|
$path = '/'.trim($path, '/');
|
|
|
|
list (, $user, ) = explode('/', $path, 3);
|
|
|
|
$users = array($user);
|
|
|
|
} else if ($input->getOption('all')) {
|
2013-09-02 20:18:12 +04:00
|
|
|
$users = $this->userManager->search('');
|
2013-09-01 18:40:50 +04:00
|
|
|
} else {
|
|
|
|
$users = $input->getArgument('user_id');
|
|
|
|
}
|
2014-10-31 19:39:05 +03:00
|
|
|
$quiet = $input->getOption('quiet');
|
2013-09-01 18:40:50 +04:00
|
|
|
|
2014-12-10 13:04:17 +03:00
|
|
|
|
2014-06-26 13:58:38 +04:00
|
|
|
if (count($users) === 0) {
|
2014-12-10 13:04:17 +03:00
|
|
|
$output->writeln("<error>Please specify the user id to scan, \"--all\" to scan for all users or \"--path=...\"</error>");
|
2014-06-26 13:58:38 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-01 18:40:50 +04:00
|
|
|
foreach ($users as $user) {
|
2013-09-02 20:18:12 +04:00
|
|
|
if (is_object($user)) {
|
|
|
|
$user = $user->getUID();
|
|
|
|
}
|
2014-09-24 17:48:54 +04:00
|
|
|
if ($this->userManager->userExists($user)) {
|
2014-10-31 19:39:05 +03:00
|
|
|
$this->scanFiles($user, $path, $quiet, $output);
|
2014-09-24 17:48:54 +04:00
|
|
|
} else {
|
|
|
|
$output->writeln("<error>Unknown user $user</error>");
|
|
|
|
}
|
2013-09-01 18:40:50 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|