2020-05-11 11:35:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2020-05-11 11:35:54 +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
|
2020-08-24 15:54:25 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-05-11 11:35:54 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Search;
|
|
|
|
|
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents an entry in a list of results an app returns for a unified search
|
|
|
|
* query.
|
|
|
|
*
|
|
|
|
* The app providing the results has to extend this class for customization. In
|
|
|
|
* most cases apps do not have to add any additional code.
|
|
|
|
*
|
2020-08-04 11:00:27 +03:00
|
|
|
* @example ``class MailResultEntry extends SearchResultEntry {}`
|
2020-05-11 11:35:54 +03:00
|
|
|
*
|
|
|
|
* This approach was chosen over a final class as it allows Nextcloud to later
|
|
|
|
* add new optional properties of an entry without having to break the usage of
|
|
|
|
* this class in apps.
|
|
|
|
*
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
2020-08-04 11:00:27 +03:00
|
|
|
class SearchResultEntry implements JsonSerializable {
|
2020-05-11 11:35:54 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $thumbnailUrl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $title;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $subline;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $resourceUrl;
|
|
|
|
|
2020-08-03 13:54:37 +03:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
2020-08-04 11:00:27 +03:00
|
|
|
protected $icon;
|
2020-08-03 13:54:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var boolean
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $rounded;
|
|
|
|
|
2020-12-01 13:37:39 +03:00
|
|
|
/**
|
|
|
|
* @var string[]
|
|
|
|
* @psalm-var array<string, string>
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
protected $attributes = [];
|
|
|
|
|
2020-05-11 11:35:54 +03:00
|
|
|
/**
|
|
|
|
* @param string $thumbnailUrl a relative or absolute URL to the thumbnail or icon of the entry
|
|
|
|
* @param string $title a main title of the entry
|
|
|
|
* @param string $subline the secondary line of the entry
|
|
|
|
* @param string $resourceUrl the URL where the user can find the detail, like a deep link inside the app
|
2020-08-04 11:00:27 +03:00
|
|
|
* @param string $icon the icon class or url to the icon
|
2020-08-03 13:54:37 +03:00
|
|
|
* @param boolean $rounded is the thumbnail rounded
|
2020-05-11 11:35:54 +03:00
|
|
|
*
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
public function __construct(string $thumbnailUrl,
|
|
|
|
string $title,
|
|
|
|
string $subline,
|
2020-08-03 13:54:37 +03:00
|
|
|
string $resourceUrl,
|
2020-08-04 11:00:27 +03:00
|
|
|
string $icon = '',
|
2020-08-03 13:54:37 +03:00
|
|
|
bool $rounded = false) {
|
2020-05-11 11:35:54 +03:00
|
|
|
$this->thumbnailUrl = $thumbnailUrl;
|
|
|
|
$this->title = $title;
|
|
|
|
$this->subline = $subline;
|
|
|
|
$this->resourceUrl = $resourceUrl;
|
2020-08-04 11:00:27 +03:00
|
|
|
$this->icon = $icon;
|
2020-08-03 13:54:37 +03:00
|
|
|
$this->rounded = $rounded;
|
2020-05-11 11:35:54 +03:00
|
|
|
}
|
|
|
|
|
2020-12-01 13:37:39 +03:00
|
|
|
/**
|
|
|
|
* Add optional attributes to the result entry, e.g. an ID or some other
|
|
|
|
* context information that can be read by the client application
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param string $value
|
|
|
|
*
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
public function addAttribute(string $key, string $value): void {
|
|
|
|
$this->attributes[$key] = $value;
|
|
|
|
}
|
|
|
|
|
2020-05-11 11:35:54 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @since 20.0.0
|
|
|
|
*/
|
|
|
|
public function jsonSerialize(): array {
|
|
|
|
return [
|
|
|
|
'thumbnailUrl' => $this->thumbnailUrl,
|
|
|
|
'title' => $this->title,
|
|
|
|
'subline' => $this->subline,
|
|
|
|
'resourceUrl' => $this->resourceUrl,
|
2020-08-04 11:00:27 +03:00
|
|
|
'icon' => $this->icon,
|
2020-08-03 13:54:37 +03:00
|
|
|
'rounded' => $this->rounded,
|
2020-12-01 13:37:39 +03:00
|
|
|
'attributes' => $this->attributes,
|
2020-05-11 11:35:54 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|