mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 01:28:08 -04:00
125 lines
3.9 KiB
PHP
125 lines
3.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Robin Appelman <robin@icewind.nl>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Files_Sharing\Command;
|
|
|
|
use OC\Core\Command\Base;
|
|
use OCP\Files\Folder;
|
|
use OCP\Files\Node;
|
|
use OCP\Files\IRootFolder;
|
|
use OCP\Files\NotFoundException;
|
|
use OCP\IDBConnection;
|
|
use OCP\Share\IManager;
|
|
use OCP\Share\IShare;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class ListShares extends Base {
|
|
/** @var array{string, Node} */
|
|
private $fileCache = [];
|
|
|
|
public function __construct(
|
|
private readonly IDBConnection $connection,
|
|
private readonly IManager $shareManager,
|
|
private readonly IRootFolder $rootFolder,
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
protected function configure() {
|
|
parent::configure();
|
|
$this
|
|
->setName('sharing:list')
|
|
->setDescription('List available shares')
|
|
->addOption('owner', null, InputOption::VALUE_REQUIRED, 'only show shares owned by a specific user')
|
|
->addOption('recipient', null, InputOption::VALUE_REQUIRED, 'only show shares with a specific recipient')
|
|
->addOption('by', null, InputOption::VALUE_REQUIRED, 'only show shares with by as specific user')
|
|
->addOption('file', null, InputOption::VALUE_REQUIRED, 'only show shares of a specific file')
|
|
->addOption('parent', null, InputOption::VALUE_REQUIRED, 'only show shares of files inside a specific folder')
|
|
->addOption('recursive', null, InputOption::VALUE_NONE, 'also show shares nested deep inside the specified parent folder');
|
|
}
|
|
|
|
public function execute(InputInterface $input, OutputInterface $output): int {
|
|
$shares = iterator_to_array($this->shareManager->getAllShares());
|
|
$shares = array_filter($shares, function (IShare $share) use ($input) {
|
|
return $this->shouldShowShare($input, $share);
|
|
});
|
|
$data = array_map(function (IShare $share) {
|
|
return [
|
|
'id' => $share->getId(),
|
|
'file' => $share->getNodeId(),
|
|
'owner' => $share->getShareOwner(),
|
|
'recipient' => $share->getSharedWith(),
|
|
'by' => $share->getSharedBy(),
|
|
];
|
|
}, $shares);
|
|
if ($input->getOption('output') === self::OUTPUT_FORMAT_PLAIN) {
|
|
$this->writeTableInOutputFormat($input, $output, $data);
|
|
} else {
|
|
$this->writeArrayInOutputFormat($input, $output, $data);
|
|
}
|
|
}
|
|
|
|
private function getFileId(string $file): int {
|
|
if (is_numeric($file)) {
|
|
return $file;
|
|
}
|
|
return $this->getFile($file)->getId();
|
|
}
|
|
|
|
private function getFile(string $file): Node {
|
|
if (isset($this->fileCache[$file])) {
|
|
return $this->fileCache[$file];
|
|
}
|
|
|
|
if (is_numeric($file)) {
|
|
$node = $this->rootFolder->getFirstNodeById($file);
|
|
if (!$node) {
|
|
throw new NotFoundException("File with id $file not found");
|
|
}
|
|
} else {
|
|
$node = $this->rootFolder->get($file);
|
|
}
|
|
$this->fileCache[$file] = $node;
|
|
return $node;
|
|
}
|
|
|
|
private function shouldShowShare(InputInterface $input, IShare $share): bool {
|
|
if ($input->getOption('owner') && $share->getShareOwner() !== $input->getOption('owner')) {
|
|
return false;
|
|
}
|
|
if ($input->getOption('recipient') && $share->getSharedWith() !== $input->getOption('recipient')) {
|
|
return false;
|
|
}
|
|
if ($input->getOption('by') && $share->getSharedBy() !== $input->getOption('by')) {
|
|
return false;
|
|
}
|
|
if ($input->getOption('file') && $share->getNodeId() !== $this->getFileId($input->getOption('file'))) {
|
|
return false;
|
|
}
|
|
if ($input->getOption('parent')) {
|
|
$parent = $this->getFile($input->getOption('parent'));
|
|
if (!$parent instanceof Folder) {
|
|
throw new \Exception("Parent {$parent->getPath()} is not a folder");
|
|
}
|
|
$recursive = $input->getOption('recursive');
|
|
if (!$recursive) {
|
|
if ($share->getNodeCacheEntry()->getParent() !== $parent->getId()) {
|
|
return false;
|
|
}
|
|
} else {
|
|
$shareNode = $share->getNode();
|
|
if ($parent->getRelativePath($shareNode->getPath()) === null) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|