123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCP\FullTextSearch\Model;
- /**
- * Interface ISearchRequest
- *
- * When a search request is initiated, from a request from the front-end or using
- * the IFullTextSearchManager::search() method, FullTextSearch will create a
- * SearchRequest object, based on this interface.
- *
- * The object will be passed to the targeted Content Provider so it can convert
- * search options using available method.
- *
- * The object is then encapsulated in a SearchResult and send to the
- * Search Platform.
- *
- * @since 15.0.0
- *
- *
- */
- interface ISearchRequest {
- /**
- * Get the maximum number of results to be returns by the Search Platform.
- *
- * @since 15.0.0
- *
- * @return int
- */
- public function getSize(): int;
- /**
- * Get the current page.
- * Used by pagination.
- *
- * @since 15.0.0
- *
- * @return int
- */
- public function getPage(): int;
- /**
- * Get the author of the request.
- *
- * @since 15.0.0
- *
- * @return string
- */
- public function getAuthor(): string;
- /**
- * Get the searched string.
- *
- * @since 15.0.0
- *
- * @return string
- */
- public function getSearch(): string;
- /**
- * Set the searched string.
- *
- * @param string $search
- *
- * @since 17.0.0
- *
- * @return ISearchRequest
- */
- public function setSearch(string $search): ISearchRequest;
- /**
- * Extends the searched string.
- *
- * @since 17.0.0
- *
- * @param string $search
- *
- * @return ISearchRequest
- */
- public function addSearch(string $search): ISearchRequest;
- /**
- * Get the value of an option (as string).
- *
- * @since 15.0.0
- *
- * @param string $option
- * @param string $default
- *
- * @return string
- */
- public function getOption(string $option, string $default = ''): string;
- /**
- * Get the value of an option (as array).
- *
- * @since 15.0.0
- *
- * @param string $option
- * @param array $default
- *
- * @return array
- */
- public function getOptionArray(string $option, array $default = []): array;
- /**
- * Limit the search to a part of the document.
- *
- * @since 15.0.0
- *
- * @param string $part
- *
- * @return ISearchRequest
- */
- public function addPart(string $part): ISearchRequest;
- /**
- * Limit the search to an array of parts of the document.
- *
- * @since 15.0.0
- *
- * @param array $parts
- *
- * @return ISearchRequest
- */
- public function setParts(array $parts): ISearchRequest;
- /**
- * Get the parts the search is limited to.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getParts(): array;
- /**
- * Limit the search to a specific meta tag.
- *
- * @since 15.0.0
- *
- * @param string $tag
- *
- * @return ISearchRequest
- */
- public function addMetaTag(string $tag): ISearchRequest;
- /**
- * Get the meta tags the search is limited to.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getMetaTags(): array;
- /**
- * Limit the search to an array of meta tags.
- *
- * @since 15.0.0
- *
- * @param array $tags
- *
- * @return ISearchRequest
- */
- public function setMetaTags(array $tags): ISearchRequest;
- /**
- * Limit the search to a specific sub tag.
- *
- * @since 15.0.0
- *
- * @param string $source
- * @param string $tag
- *
- * @return ISearchRequest
- */
- public function addSubTag(string $source, string $tag): ISearchRequest;
- /**
- * Get the sub tags the search is limited to.
- *
- * @since 15.0.0
- *
- * @param bool $formatted
- *
- * @return array
- */
- public function getSubTags(bool $formatted): array;
- /**
- * Limit the search to an array of sub tags.
- *
- * @since 15.0.0
- *
- * @param array $tags
- *
- * @return ISearchRequest
- */
- public function setSubTags(array $tags): ISearchRequest;
- /**
- * Limit the search to a specific field of the mapping, using a full string.
- *
- * @since 15.0.0
- *
- * @param string $field
- *
- * @return ISearchRequest
- */
- public function addLimitField(string $field): ISearchRequest;
- /**
- * Get the fields the search is limited to.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getLimitFields(): array;
- /**
- * Limit the search to a specific field of the mapping, using a wildcard on
- * the search string.
- *
- * @since 15.0.0
- *
- * @param string $field
- *
- * @return ISearchRequest
- */
- public function addWildcardField(string $field): ISearchRequest;
- /**
- * Get the limit to field of the mapping.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getWildcardFields(): array;
- /**
- * Filter the results, based on a group of field, using regex
- *
- * @since 15.0.0
- *
- * @param array $filters
- *
- * @return ISearchRequest
- */
- public function addRegexFilters(array $filters): ISearchRequest;
- /**
- * Get the regex filters the search is limit to.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getRegexFilters(): array;
- /**
- * Filter the results, based on a group of field, using wildcard
- *
- * @since 15.0.0
- *
- * @param array $filter
- *
- * @return ISearchRequest
- */
- public function addWildcardFilter(array $filter): ISearchRequest;
- /**
- * Get the wildcard filters the search is limit to.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getWildcardFilters(): array;
- /**
- * Add an extra field to the search.
- *
- * @since 15.0.0
- *
- * @param string $field
- *
- * @return ISearchRequest
- */
- public function addField(string $field): ISearchRequest;
- /**
- * Get the list of extra field to search into.
- *
- * @since 15.0.0
- *
- * @return array
- */
- public function getFields(): array;
- /**
- * Add a MUST search on an extra field
- *
- * @param ISearchRequestSimpleQuery $query
- *
- * @return ISearchRequest
- * @since 17.0.0
- */
- public function addSimpleQuery(ISearchRequestSimpleQuery $query): ISearchRequest;
- /**
- * Get the list of queries on extra field.
- *
- * @return ISearchRequestSimpleQuery[]
- * @since 17.0.0
- */
- public function getSimpleQueries(): array;
- }
|