forked from nextcloud/integration_slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathZulipSearchMessagesProvider.php
181 lines (159 loc) · 5.5 KB
/
ZulipSearchMessagesProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2024, Edward Ly
*
* @author Edward Ly <[email protected]>
*
* @license AGPL-3.0-or-later
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCA\Zulip\Search;
use OCA\Zulip\AppInfo\Application;
use OCA\Zulip\Service\SecretService;
use OCA\Zulip\Service\ZulipAPIService;
use OCP\App\IAppManager;
use OCP\IConfig;
use OCP\IDateTimeFormatter;
use OCP\IDateTimeZone;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\IUser;
use OCP\Search\IProvider;
use OCP\Search\ISearchQuery;
use OCP\Search\SearchResult;
use OCP\Search\SearchResultEntry;
class ZulipSearchMessagesProvider implements IProvider {
public function __construct(
private IAppManager $appManager,
private IL10N $l10n,
private IConfig $config,
private IURLGenerator $urlGenerator,
private IDateTimeFormatter $dateTimeFormatter,
private IDateTimeZone $dateTimeZone,
private SecretService $secretService,
private ZulipAPIService $apiService
) {
}
/**
* @inheritDoc
*/
public function getId(): string {
return 'zulip-search-messages';
}
/**
* @inheritDoc
*/
public function getName(): string {
return $this->l10n->t('Zulip messages');
}
/**
* @inheritDoc
*/
public function getOrder(string $route, array $routeParameters): int {
if (strpos($route, Application::APP_ID . '.') === 0) {
// Active app, prefer Zulip results
return -1;
}
return 20;
}
/**
* @inheritDoc
*/
public function search(IUser $user, ISearchQuery $query): SearchResult {
if (!$this->appManager->isEnabledForUser(Application::APP_ID, $user)) {
return SearchResult::complete($this->getName(), []);
}
$limit = $query->getLimit();
$term = $query->getTerm();
$offset = $query->getCursor();
$offset = $offset ? intval($offset) : 0;
$url = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'url');
$email = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'email');
$apiKey = $this->secretService->getEncryptedUserValue($user->getUID(), 'api_key');
$searchMessagesEnabled = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'search_messages_enabled', '0') === '1';
if ($url === '' || $email === '' || $apiKey === '' || !$searchMessagesEnabled) {
return SearchResult::paginated($this->getName(), [], 0);
}
$searchResult = $this->apiService->searchMessages($user->getUID(), $term, $offset, $limit);
if (isset($searchResult['error'])) {
return SearchResult::paginated($this->getName(), [], 0);
}
$formattedResults = array_map(function (array $entry) use ($url): SearchResultEntry {
$finalThumbnailUrl = $this->getThumbnailUrl($entry);
return new SearchResultEntry(
$finalThumbnailUrl,
$this->getMainText($entry),
$this->getSubline($entry),
$this->getLinkToZulip($entry, $url),
$finalThumbnailUrl === '' ? 'icon-zulip-search-fallback' : '',
true
);
}, $searchResult);
return SearchResult::paginated(
$this->getName(),
$formattedResults,
$offset + $limit
);
}
/**
* @param array $entry
* @return string
*/
protected function getMainText(array $entry): string {
return strip_tags($entry['content']);
}
/**
* @param array $entry
* @return string
*/
protected function getSubline(array $entry): string {
if ($entry['type'] === 'stream') {
return $this->l10n->t('%s in #%s > %s at %s', [$entry['sender_full_name'], $entry['display_recipient'], $entry['subject'], $this->getFormattedDate($entry['timestamp'])]);
}
$recipients = array_map(fn (array $user): string => $user['full_name'], $entry['display_recipient']);
$displayRecipients = '@' . $recipients[0] . (count($recipients) > 1 ? ' (+' . strval(count($recipients) - 1) . ')' : '');
return $this->l10n->t('%s in %s at %s', [$entry['sender_full_name'], $displayRecipients, $this->getFormattedDate($entry['timestamp'])]);
}
protected function getFormattedDate(int $timestamp): string {
return $this->dateTimeFormatter->formatDateTime($timestamp, 'long', 'short', $this->dateTimeZone->getTimeZone());
}
/**
* @param array $entry
* @param string $url
* @return string
*/
protected function getLinkToZulip(array $entry, string $url): string {
if ($entry['type'] === 'private') {
$userIds = array_map(fn (array $recipient): string => strval($recipient['id']), $entry['display_recipient']);
return rtrim($url, '/') . '/#narrow/dm/' . implode(',', $userIds) . '/near/' . $entry['id'];
}
$topic = str_replace('%', '.', rawurlencode($entry['subject']));
return rtrim($url, '/') . '/#narrow/channel/' . $entry['stream_id'] . '/topic/' . $topic . '/near/' . $entry['id'];
}
/**
* @param array $entry
* @return string
*/
protected function getThumbnailUrl(array $entry): string {
return '';
// $senderId = $entry['sender_id'] ?? '';
// return $senderId
// ? $this->urlGenerator->getAbsoluteURL(
// $this->urlGenerator->linkToRoute('integration_zulip.zulipAPI.getUserAvatar', ['zulipUserId' => $senderId])
// )
// : '';
}
}