memories/lib/Command/Index.php

226 lines
7.0 KiB
PHP
Raw Normal View History

2022-08-13 01:58:37 +00:00
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2022, Varun Patil <radialapps@gmail.com>
* @author Varun Patil <radialapps@gmail.com>
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace OCA\Memories\Command;
2022-08-13 01:58:37 +00:00
2022-10-19 17:10:36 +00:00
use OCA\Memories\Db\TimelineWrite;
use OCA\Memories\Service;
2022-08-13 01:58:37 +00:00
use OCP\Files\IRootFolder;
use OCP\IConfig;
2023-09-01 11:33:50 +00:00
use OCP\IGroupManager;
2022-08-13 01:58:37 +00:00
use OCP\IUser;
use OCP\IUserManager;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
2022-11-21 10:18:06 +00:00
use Symfony\Component\Console\Output\OutputInterface;
2022-08-13 01:58:37 +00:00
class IndexOpts
{
public bool $force = false;
public bool $clear = false;
public ?string $user = null;
public ?string $folder = null;
2023-09-01 11:33:50 +00:00
public ?string $group = null;
public bool $skipCleanup = false;
public function __construct(InputInterface $input)
{
$this->force = (bool) $input->getOption('force');
$this->clear = (bool) $input->getOption('clear');
$this->user = $input->getOption('user');
$this->folder = $input->getOption('folder');
2023-09-01 11:33:50 +00:00
$this->skipCleanup = $input->getOption('skip-cleanup');
$this->group = $input->getOption('group');
}
}
2022-10-19 17:10:36 +00:00
class Index extends Command
{
2022-09-09 07:31:42 +00:00
/** @var int[][] */
protected array $sizes;
protected IUserManager $userManager;
2023-09-01 11:33:50 +00:00
protected IGroupManager $groupManager;
2022-09-09 07:31:42 +00:00
protected IRootFolder $rootFolder;
protected IConfig $config;
protected Service\Index $indexer;
2022-09-09 07:31:42 +00:00
protected TimelineWrite $timelineWrite;
// IO
private InputInterface $input;
private OutputInterface $output;
2022-10-25 17:49:42 +00:00
// Command options
private IndexOpts $opts;
2022-10-19 17:10:36 +00:00
public function __construct(
IRootFolder $rootFolder,
IUserManager $userManager,
2023-09-01 11:33:50 +00:00
IGroupManager $groupManager,
2022-10-19 17:10:36 +00:00
IConfig $config,
Service\Index $indexer,
TimelineWrite $timelineWrite
2022-10-19 17:15:14 +00:00
) {
2022-09-09 07:31:42 +00:00
parent::__construct();
$this->userManager = $userManager;
2023-09-01 11:33:50 +00:00
$this->groupManager = $groupManager;
2022-09-09 07:31:42 +00:00
$this->rootFolder = $rootFolder;
$this->config = $config;
$this->indexer = $indexer;
$this->timelineWrite = $timelineWrite;
2022-09-09 07:31:42 +00:00
}
2022-10-19 17:10:36 +00:00
protected function configure(): void
{
2022-09-09 07:31:42 +00:00
$this
->setName('memories:index')
->setDescription('Index the metadata in files')
->addOption('user', 'u', InputOption::VALUE_REQUIRED, 'Index only the specified user')
->addOption('group', 'g', InputOption::VALUE_REQUIRED, 'Index only specified group')
->addOption('folder', null, InputOption::VALUE_REQUIRED, 'Index only the specified folder (relative to the user\'s root)')
->addOption('force', 'f', InputOption::VALUE_NONE, 'Force refresh of existing index entries')
->addOption('clear', null, InputOption::VALUE_NONE, 'Clear all existing index entries')
->addOption('skip-cleanup', null, InputOption::VALUE_NONE, 'Skip cleanup step (removing index entries with missing files)')
2022-10-19 17:10:36 +00:00
;
2022-09-09 07:31:42 +00:00
}
2022-10-19 17:10:36 +00:00
protected function execute(InputInterface $input, OutputInterface $output): int
{
/** @var \Symfony\Component\Console\Output\ConsoleOutputInterface $output */
$output = $output;
// Store input/output/opts for later use
$this->input = $input;
$this->output = $output;
$this->opts = new IndexOpts($input);
// Assign to indexer
$this->indexer->output = $output;
$this->indexer->section = $output->section();
2022-09-11 00:15:40 +00:00
try {
// Use static exiftool process
\OCA\Memories\Exif::ensureStaticExiftoolProc();
Service\BinExt::testExiftool(); // throws
// Perform steps based on opts
$this->checkClear();
$this->checkForce();
// Run the indexer
$this->runIndex();
2022-10-19 17:10:36 +00:00
// Clean up the index
2023-09-01 11:33:50 +00:00
if (!$this->opts->skipCleanup) {
$this->indexer->cleanupStale();
}
return 0;
2022-09-09 15:18:55 +00:00
} catch (\Exception $e) {
$this->output->writeln("<error>{$e->getMessage()}</error>");
2022-10-19 17:10:36 +00:00
2022-09-09 15:18:55 +00:00
return 1;
} finally {
\OCA\Memories\Exif::closeStaticExiftoolProc();
}
}
/**
* Check and act on the clear option if set.
*/
protected function checkClear(): void
2022-10-19 17:10:36 +00:00
{
if (!$this->opts->clear) {
return;
}
2022-09-09 07:31:42 +00:00
if ($this->input->isInteractive()) {
$this->output->write('Are you sure you want to clear the existing index? (y/N): ');
if ('y' !== trim(fgets(STDIN))) {
throw new \Exception('Aborting');
}
}
$this->timelineWrite->clear();
$this->output->writeln('Cleared existing index');
}
2022-09-09 07:31:42 +00:00
/**
* Check and act on the force option if set.
*/
protected function checkForce(): void
{
if (!$this->opts->force) {
return;
2022-09-09 07:31:42 +00:00
}
$this->output->writeln('Forcing refresh of existing index entries');
$this->timelineWrite->orphanAll();
}
2022-08-13 01:58:37 +00:00
/**
* Run the indexer.
*/
protected function runIndex(): void
{
$this->runForUsers(function (IUser $user) {
try {
$uid = $user->getUID();
$this->output->writeln("Indexing user {$uid}");
$this->indexer->indexUser($uid, $this->opts->folder);
} catch (\Exception $e) {
$this->output->writeln("<error>{$e->getMessage()}</error>");
}
});
}
/**
* Run function for all users (or selected user if set).
*
* @param mixed $closure
*/
private function runForUsers($closure)
{
if ($uid = $this->opts->user) {
if ($user = $this->userManager->get($uid)) {
$closure($user);
} else {
$this->output->writeln("<error>User {$uid} not found</error>");
}
2023-09-01 11:33:50 +00:00
} elseif ($gid = $this->opts->group) {
if ($group = $this->groupManager->get($gid)) {
foreach ($group->getUsers() as $user) {
$closure($user);
2023-09-08 23:10:29 +00:00
}
} else {
$this->output->writeln("<error>Group {$gid} not found</error>");
}
} else {
$this->userManager->callForSeenUsers(static fn (IUser $user) => $closure($user));
2022-09-09 07:31:42 +00:00
}
}
2022-10-19 17:10:36 +00:00
}