2017-08-31 23:47:02 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-08-31 23:47:02 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-08-31 23:47:02 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Collaboration\Collaborators;
|
|
|
|
|
|
|
|
use OCP\Collaboration\Collaborators\ISearchResult;
|
2017-09-06 17:09:29 +03:00
|
|
|
use OCP\Collaboration\Collaborators\SearchResultType;
|
2017-08-31 23:47:02 +03:00
|
|
|
|
|
|
|
class SearchResult implements ISearchResult {
|
|
|
|
protected $result = [
|
2017-09-06 17:09:29 +03:00
|
|
|
'exact' => [],
|
2017-08-31 23:47:02 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $exactIdMatches = [];
|
|
|
|
|
2017-09-06 17:09:29 +03:00
|
|
|
public function addResultSet(SearchResultType $type, array $matches, array $exactMatches = null) {
|
|
|
|
$type = $type->getLabel();
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!isset($this->result[$type])) {
|
2017-09-06 17:09:29 +03:00
|
|
|
$this->result[$type] = [];
|
|
|
|
$this->result['exact'][$type] = [];
|
2017-08-31 23:47:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->result[$type] = array_merge($this->result[$type], $matches);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (is_array($exactMatches)) {
|
2017-08-31 23:47:02 +03:00
|
|
|
$this->result['exact'][$type] = array_merge($this->result['exact'][$type], $exactMatches);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-06 17:09:29 +03:00
|
|
|
public function markExactIdMatch(SearchResultType $type) {
|
|
|
|
$this->exactIdMatches[$type->getLabel()] = 1;
|
2017-08-31 23:47:02 +03:00
|
|
|
}
|
|
|
|
|
2017-10-25 12:18:05 +03:00
|
|
|
public function hasExactIdMatch(SearchResultType $type) {
|
2017-09-06 17:09:29 +03:00
|
|
|
return isset($this->exactIdMatches[$type->getLabel()]);
|
2017-08-31 23:47:02 +03:00
|
|
|
}
|
|
|
|
|
2017-09-06 17:09:29 +03:00
|
|
|
public function hasResult(SearchResultType $type, $collaboratorId) {
|
|
|
|
$type = $type->getLabel();
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!isset($this->result[$type])) {
|
2017-09-06 17:09:29 +03:00
|
|
|
return false;
|
2017-08-31 23:47:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$resultArrays = [$this->result['exact'][$type], $this->result[$type]];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($resultArrays as $resultArray) {
|
2017-10-25 11:38:26 +03:00
|
|
|
foreach ($resultArray as $result) {
|
|
|
|
if ($result['value']['shareWith'] === $collaboratorId) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-31 23:47:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function asArray() {
|
|
|
|
return $this->result;
|
|
|
|
}
|
|
|
|
|
2017-09-06 17:09:29 +03:00
|
|
|
public function unsetResult(SearchResultType $type) {
|
|
|
|
$type = $type->getLabel();
|
2017-08-31 23:47:02 +03:00
|
|
|
$this->result[$type] = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->result['exact'][$type])) {
|
2017-08-31 23:47:02 +03:00
|
|
|
$this->result['exact'][$type] = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|