Skip to content

Commit

Permalink
IFilesMetadata
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Nov 7, 2023
1 parent e62e9e3 commit f497d8b
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 49 deletions.
5 changes: 4 additions & 1 deletion apps/dav/tests/unit/Files/FileSearchBackendTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
use OCP\Files\Search\ISearchBinaryOperator;
use OCP\Files\Search\ISearchComparison;
use OCP\Files\Search\ISearchQuery;
use OCP\FilesMetadata\IFilesMetadataManager;
use OCP\IUser;
use OCP\Share\IManager;
use SearchDAV\Backend\SearchPropertyDefinition;
Expand Down Expand Up @@ -114,7 +115,9 @@ protected function setUp(): void {
->method('get')
->willReturn($this->searchFolder);

$this->search = new FileSearchBackend($this->tree, $this->user, $this->rootFolder, $this->shareManager, $this->view);
$filesMetadataManager = $this->createMock(IFilesMetadataManager::class);

$this->search = new FileSearchBackend($this->tree, $this->user, $this->rootFolder, $this->shareManager, $this->view, $filesMetadataManager);
}

public function testSearchFilename(): void {
Expand Down
4 changes: 2 additions & 2 deletions core/Command/FilesMetadata/Get.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if ($input->getOption('reset')) {
$this->filesMetadataManager->deleteMetadata($fileId);
if (!$input->getOption('refresh')) {
return 0;
return self::SUCCESS;
}
}

Expand All @@ -114,6 +114,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$output->writeln(json_encode($metadata, JSON_PRETTY_PRINT));
}

return 0;
return self::SUCCESS;
}
}
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/SearchBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function extractRequestedFields(ISearchOperator $operator): array {
return array_reduce($operator->getArguments(), function (array $fields, ISearchOperator $operator) {
return array_unique(array_merge($fields, $this->extractRequestedFields($operator)));
}, []);
} elseif ($operator instanceof ISearchComparison && !$operator->isExtra()) {
} elseif ($operator instanceof ISearchComparison && !$operator->getExtra()) {
return [$operator->getField()];
}
return [];
Expand Down
2 changes: 0 additions & 2 deletions lib/private/Files/Node/Folder.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,6 @@ public function search($query) {
if ($order) {
usort($files, function (FileInfo $a, FileInfo $b) use ($order) {
foreach ($order as $orderField) {
// needed !?
// if ($orderField->isExtra()) { continue; }
$cmp = $orderField->sortFileInfo($a, $b);
if ($cmp !== 0) {
return $cmp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function inspectOperator(ISearchOperator $operator): void {
}

public function processOperator(ISearchOperator &$operator) {
if (!$this->useHashEq && $operator instanceof ISearchComparison && !$operator->isExtra() && $operator->getField() === 'path' && $operator->getType() === ISearchComparison::COMPARE_EQUAL) {
if (!$this->useHashEq && $operator instanceof ISearchComparison && !$operator->getExtra() && $operator->getField() === 'path' && $operator->getType() === ISearchComparison::COMPARE_EQUAL) {
$operator->setQueryHint(ISearchComparison::HINT_PATH_EQ_HASH, false);
}

Expand All @@ -72,7 +72,7 @@ private function isPathPrefixOperator(ISearchOperator $operator): bool {
private function operatorPairIsPathPrefix(ISearchOperator $like, ISearchOperator $equal): bool {
return (
$like instanceof ISearchComparison && $equal instanceof ISearchComparison &&
!$like->isExtra() && !$equal->isExtra() && $like->getField() === 'path' && $equal->getField() === 'path' &&
!$like->getExtra() && !$equal->getExtra() && $like->getField() === 'path' && $equal->getField() === 'path' &&
$like->getType() === ISearchComparison::COMPARE_LIKE_CASE_SENSITIVE && $equal->getType() === ISearchComparison::COMPARE_EQUAL
&& $like->getValue() === SearchComparison::escapeLikeParameter($equal->getValue()) . '/%'
);
Expand Down
16 changes: 9 additions & 7 deletions lib/private/Files/Search/SearchComparison.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php

declare(strict_types=1);
/**
* @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
*
Expand Down Expand Up @@ -39,32 +41,32 @@ public function __construct(
/**
* @return string
*/
public function getType() {
public function getType(): string {
return $this->type;
}

/**
* @return string
*/
public function getField() {
public function getField(): string {
return $this->field;
}

/**
* @return \DateTime|int|string
*/
public function getValue() {
public function getValue(): string|int|\DateTime {
return $this->value;
}

/**
* @return string
* @since 28.0.0
*/
public function getExtra(): string {
return $this->extra;
}

public function isExtra(): bool {
return ($this->extra !== '');
}

public function getQueryHint(string $name, $default) {
return $this->hints[$name] ?? $default;
}
Expand Down
8 changes: 4 additions & 4 deletions lib/private/Files/Search/SearchOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ public function getField(): string {
return $this->field;
}

/**
* @return string
* @since 28.0.0
*/
public function getExtra(): string {
return $this->extra;
}

public function isExtra(): bool {
return ($this->extra !== '');
}

public function sortFileInfo(FileInfo $a, FileInfo $b): int {
$cmp = $this->sortFileInfoNoDirection($a, $b);
return $cmp * ($this->direction === ISearchOrder::DIRECTION_ASCENDING ? 1 : -1);
Expand Down
9 changes: 5 additions & 4 deletions lib/private/FilesMetadata/FilesMetadataManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ public function getKnownMetadata(): IFilesMetadata {
/**
* @param string $key metadata key
* @param string $type metadata type
* @param bool $indexed TRUE if metadata can be search
*
* @inheritDoc
* @since 28.0.0
Expand All @@ -253,17 +254,17 @@ public function getKnownMetadata(): IFilesMetadata {
* @see IMetadataValueWrapper::TYPE_INT_LIST
* @see IMetadataValueWrapper::TYPE_STRING
*/
public function initMetadataIndex(string $key, string $type): void {
public function initMetadata(string $key, string $type, bool $indexed): void {
$current = $this->getKnownMetadata();
try {
if ($current->getType($key) === $type && $current->isIndex($key)) {
return; // if key exists, with same type and is already indexed, we do nothing.
if ($current->getType($key) === $type && $indexed === $current->isIndex($key)) {
return; // if key exists, with same type and indexed, we do nothing.
}
} catch (FilesMetadataNotFoundException) {
// if value does not exist, we keep on the writing of course
}

$current->import([$key => ['type' => $type, 'indexed' => true]]);
$current->import([$key => ['type' => $type, 'indexed' => $indexed]]);
$this->config->setAppValue('core', self::CONFIG_KEY, json_encode($current));
}

Expand Down
5 changes: 4 additions & 1 deletion lib/private/FilesMetadata/Job/UpdateSingleMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
use OCP\Files\NotPermittedException;
use OCP\FilesMetadata\Event\MetadataLiveEvent;
use OCP\FilesMetadata\IFilesMetadataManager;
use Psr\Log\LoggerInterface;

/**
* Simple background job, created when requested by an app during the
Expand All @@ -47,6 +48,7 @@ public function __construct(
ITimeFactory $time,
private IRootFolder $rootFolder,
private FilesMetadataManager $filesMetadataManager,
private LoggerInterface $logger
) {
parent::__construct($time);
}
Expand All @@ -60,7 +62,8 @@ protected function run($argument) {
$file = array_shift($node);
$this->filesMetadataManager->refreshMetadata($file, IFilesMetadataManager::PROCESS_BACKGROUND);
}
} catch (NotPermittedException|NoUserException $e) {
} catch (\Exception $e) {
$this->logger->warning('issue while running UpdateSingleMetadata', ['exception' => $e, 'userId' => $userId, 'fileId' => $fileId]);
}
}
}
3 changes: 3 additions & 0 deletions lib/private/FilesMetadata/Listener/MetadataDelete.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
use OCP\EventDispatcher\IEventListener;
use OCP\Files\Events\Node\NodeDeletedEvent;
use OCP\FilesMetadata\IFilesMetadataManager;
use Psr\Log\LoggerInterface;

/**
* Handle file deletion event and remove stored metadata related to the deleted file
Expand All @@ -39,6 +40,7 @@
class MetadataDelete implements IEventListener {
public function __construct(
private IFilesMetadataManager $filesMetadataManager,
private LoggerInterface $logger
) {
}

Expand All @@ -56,6 +58,7 @@ public function handle(Event $event): void {
$this->filesMetadataManager->deleteMetadata($nodeId);
}
} catch (Exception $e) {
$this->logger->warning('issue while running MetadataDelete', ['exception' => $e]);
}
}
}
3 changes: 3 additions & 0 deletions lib/private/FilesMetadata/Listener/MetadataUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
use OCP\Files\Events\Node\NodeCreatedEvent;
use OCP\Files\Events\Node\NodeWrittenEvent;
use OCP\FilesMetadata\IFilesMetadataManager;
use Psr\Log\LoggerInterface;

/**
* Handle file creation/modification events and initiate a new event related to the created/edited file.
Expand All @@ -42,6 +43,7 @@
class MetadataUpdate implements IEventListener {
public function __construct(
private IFilesMetadataManager $filesMetadataManager,
private LoggerInterface $logger
) {
}

Expand All @@ -56,6 +58,7 @@ public function handle(Event $event): void {
try {
$this->filesMetadataManager->refreshMetadata($event->getNode());
} catch (Exception $e) {
$this->logger->warning('issue while running MetadataUpdate', ['exception' => $e]);
}
}
}
15 changes: 3 additions & 12 deletions lib/public/Files/Search/ISearchComparison.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ interface ISearchComparison extends ISearchOperator {
* @return string
* @since 12.0.0
*/
public function getType();
public function getType(): string;

/**
* Get the name of the field to compare with
Expand All @@ -54,8 +54,7 @@ public function getType();
* @return string
* @since 12.0.0
*/
public function getField();

public function getField(): string;

/**
* extra means data are not related to the main files table
Expand All @@ -65,19 +64,11 @@ public function getField();
*/
public function getExtra(): string;

/**
* returns if data are 'extra' or not
*
* @return bool
* @since 28.0.0
*/
public function isExtra(): bool;

/**
* Get the value to compare the field with
*
* @return string|integer|\DateTime
* @since 12.0.0
*/
public function getValue();
public function getValue(): string|int|\DateTime;
}
9 changes: 0 additions & 9 deletions lib/public/Files/Search/ISearchOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,6 @@ public function getField(): string;
*/
public function getExtra(): string;

/**
* returns if data are 'extra' or not
*
* @return bool
* @since 28.0.0
*/
public function isExtra(): bool;


/**
* Apply the sorting on 2 FileInfo objects
*
Expand Down
10 changes: 6 additions & 4 deletions lib/public/FilesMetadata/IFilesMetadataManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@
* @since 28.0.0
*/
interface IFilesMetadataManager {
/**
* @since 28.0.0
*/
/** @since 28.0.0 */
public const PROCESS_LIVE = 1;
/** @since 28.0.0 */
public const PROCESS_BACKGROUND = 2;

/**
Expand Down Expand Up @@ -128,10 +127,13 @@ public function getKnownMetadata(): IFilesMetadata;
/**
* initiate a metadata key with its type.
* The call is mandatory before using the metadata property in a webdav request.
* It is not needed to only use this method when the app is enabled: the method can be
* called each time during the app loading as the metadata will only be initiated if not known
*
* @param string $key metadata key
* @param string $type metadata type
* @param bool $indexed TRUE if metadata can be search
* @since 28.0.0
*/
public function initMetadataIndex(string $key, string $type): void;
public function initMetadata(string $key, string $type, bool $indexed): void;
}
1 change: 1 addition & 0 deletions lib/public/FilesMetadata/Model/IMetadataQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* @since 28.0.0
*/
interface IMetadataQuery {
/** @since 28.0.0 */
public const EXTRA = 'metadata';

/**
Expand Down

0 comments on commit f497d8b

Please sign in to comment.