3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module\Search;
24 use Friendica\BaseModule;
25 use Friendica\Content\Widget;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Search;
30 use Friendica\Database\DBA;
32 use Friendica\Model\Contact;
33 use Friendica\Model\Item;
34 use Friendica\Network\HTTPException;
35 use Friendica\Util\Proxy as ProxyUtils;
36 use Friendica\Util\Strings;
39 * ACL selector json backend
41 * @package Friendica\Module\Search
43 class Acl extends BaseModule
45 const TYPE_GLOBAL_CONTACT = 'x';
46 const TYPE_MENTION_CONTACT = 'c';
47 const TYPE_MENTION_GROUP = 'g';
48 const TYPE_MENTION_CONTACT_GROUP = '';
49 const TYPE_MENTION_FORUM = 'f';
50 const TYPE_PRIVATE_MESSAGE = 'm';
51 const TYPE_ANY_CONTACT = 'a';
53 public static function rawContent(array $parameters = [])
56 throw new HTTPException\UnauthorizedException(DI::l10n()->t('You must be logged in to use this module.'));
59 $type = $_REQUEST['type'] ?? self::TYPE_MENTION_CONTACT_GROUP;
61 if ($type === self::TYPE_GLOBAL_CONTACT) {
62 $o = self::globalContactSearch();
64 $o = self::regularContactSearch($type);
71 private static function globalContactSearch()
73 // autocomplete for global contact search (e.g. navbar search)
74 $search = Strings::escapeTags(trim($_REQUEST['search']));
75 $mode = $_REQUEST['smode'];
76 $page = $_REQUEST['page'] ?? 1;
78 $r = Search::searchGlobalContact($search, $mode, $page);
82 if (empty($g['name'])) {
83 DI::logger()->warning('Wrong result item from Search::searchGlobalContact', ['$g' => $g, '$search' => $search, '$mode' => $mode, '$page' => $page]);
88 'photo' => ProxyUtils::proxifyUrl($g['photo'], false, ProxyUtils::SIZE_MICRO),
89 'name' => htmlspecialchars($g['name']),
90 'nick' => $g['addr'] ?: $g['url'],
91 'network' => $g['network'],
93 'forum' => !empty($g['community']) ? 1 : 0,
98 'start' => ($page - 1) * 20,
100 'items' => $contacts,
106 private static function regularContactSearch(string $type)
108 $start = $_REQUEST['start'] ?? 0;
109 $count = $_REQUEST['count'] ?? 100;
110 $search = $_REQUEST['search'] ?? '';
111 $conv_id = $_REQUEST['conversation'] ?? null;
113 // For use with jquery.textcomplete for private mail completion
114 if (!empty($_REQUEST['query'])) {
116 $type = self::TYPE_PRIVATE_MESSAGE;
118 $search = $_REQUEST['query'];
121 Logger::info('ACL {action} - {subaction}', ['module' => 'acl', 'action' => 'content', 'subaction' => 'search', 'search' => $search, 'type' => $type, 'conversation' => $conv_id]);
127 $sql_extra = "AND `name` LIKE '%%" . DBA::escape($search) . "%%'";
128 $sql_extra2 = "AND (`attag` LIKE '%%" . DBA::escape($search) . "%%' OR `name` LIKE '%%" . DBA::escape($search) . "%%' OR `nick` LIKE '%%" . DBA::escape($search) . "%%')";
131 // count groups and contacts
133 if ($type == self::TYPE_MENTION_CONTACT_GROUP || $type == self::TYPE_MENTION_GROUP) {
134 $r = q("SELECT COUNT(*) AS g FROM `group` WHERE NOT `deleted` AND `uid` = %d $sql_extra",
137 $group_count = (int) $r[0]['g'];
140 $sql_extra2 .= ' ' . Widget::unavailableNetworks();
144 case self::TYPE_MENTION_CONTACT_GROUP:
145 case self::TYPE_MENTION_CONTACT:
146 // autocomplete for editor mentions
147 $r = q("SELECT COUNT(*) AS c FROM `contact`
148 WHERE `uid` = %d AND NOT `self` AND NOT `deleted`
149 AND NOT `blocked` AND NOT `pending` AND NOT `archive`
150 AND `notify` != '' $sql_extra2",
153 $contact_count = (int) $r[0]['c'];
156 case self::TYPE_MENTION_FORUM:
157 // autocomplete for editor mentions of forums
158 $r = q("SELECT COUNT(*) AS c FROM `contact`
159 WHERE `uid` = %d AND NOT `self` AND NOT `deleted`
160 AND NOT `blocked` AND NOT `pending` AND NOT `archive`
161 AND (`forum` OR `prv`)
162 AND `notify` != '' $sql_extra2",
165 $contact_count = (int) $r[0]['c'];
168 case self::TYPE_PRIVATE_MESSAGE:
169 // autocomplete for Private Messages
170 $r = q("SELECT COUNT(*) AS c FROM `contact`
171 WHERE `uid` = %d AND NOT `self` AND NOT `deleted`
172 AND NOT `blocked` AND NOT `pending` AND NOT `archive`
173 AND `network` IN ('%s', '%s', '%s') $sql_extra2",
174 intval(local_user()),
175 DBA::escape(Protocol::ACTIVITYPUB),
176 DBA::escape(Protocol::DFRN),
177 DBA::escape(Protocol::DIASPORA)
179 $contact_count = (int) $r[0]['c'];
182 case self::TYPE_ANY_CONTACT:
184 // autocomplete for Contacts
185 $r = q("SELECT COUNT(*) AS c FROM `contact`
186 WHERE `uid` = %d AND NOT `self`
187 AND NOT `pending` AND NOT `deleted` $sql_extra2",
190 $contact_count = (int) $r[0]['c'];
194 $tot = $group_count + $contact_count;
199 if ($type == self::TYPE_MENTION_CONTACT_GROUP || $type == self::TYPE_MENTION_GROUP) {
200 /// @todo We should cache this query.
201 // This can be done when we can delete cache entries via wildcard
202 $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') AS uids
204 INNER JOIN `group_member` ON `group_member`.`gid`=`group`.`id`
205 WHERE NOT `group`.`deleted` AND `group`.`uid` = %d
207 GROUP BY `group`.`name`, `group`.`id`
208 ORDER BY `group`.`name`
210 intval(local_user()),
218 'photo' => 'images/twopeople.png',
219 'name' => htmlspecialchars($g['name']),
220 'id' => intval($g['id']),
221 'uids' => array_map('intval', explode(',', $g['uids'])),
226 if ((count($groups) > 0) && ($search == '')) {
227 $groups[] = ['separator' => true];
233 case self::TYPE_MENTION_CONTACT_GROUP:
234 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv`, (`prv` OR `forum`) AS `frm` FROM `contact`
235 WHERE `uid` = %d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
236 AND NOT (`network` IN ('%s', '%s'))
239 intval(local_user()),
240 DBA::escape(Protocol::OSTATUS),
241 DBA::escape(Protocol::STATUSNET)
245 case self::TYPE_MENTION_CONTACT:
246 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
247 WHERE `uid` = %d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
248 AND NOT (`network` IN ('%s'))
251 intval(local_user()),
252 DBA::escape(Protocol::STATUSNET)
256 case self::TYPE_MENTION_FORUM:
257 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
258 WHERE `uid` = %d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
259 AND NOT (`network` IN ('%s'))
260 AND (`forum` OR `prv`)
263 intval(local_user()),
264 DBA::escape(Protocol::STATUSNET)
268 case self::TYPE_PRIVATE_MESSAGE:
269 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr` FROM `contact`
270 WHERE `uid` = %d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive`
271 AND `network` IN ('%s', '%s', '%s')
274 intval(local_user()),
275 DBA::escape(Protocol::ACTIVITYPUB),
276 DBA::escape(Protocol::DFRN),
277 DBA::escape(Protocol::DIASPORA)
281 case self::TYPE_ANY_CONTACT:
283 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
284 WHERE `uid` = %d AND NOT `deleted` AND NOT `pending` AND NOT `archive`
292 if (DBA::isResult($r)) {
297 'photo' => Contact::getMicro($g),
298 'name' => htmlspecialchars($g['name']),
299 'id' => intval($g['id']),
300 'network' => $g['network'],
302 'nick' => htmlentities(($g['attag'] ?? '') ?: $g['nick']),
303 'addr' => htmlentities(($g['addr'] ?? '') ?: $g['url']),
304 'forum' => !empty($g['forum']) || !empty($g['prv']) ? 1 : 0,
306 if ($entry['forum']) {
309 $contacts[] = $entry;
312 if (count($forums) > 0) {
314 $forums[] = ['separator' => true];
316 $contacts = array_merge($forums, $contacts);
320 $items = array_merge($groups, $contacts);
323 // In multi threaded posts the conv_id is not the parent of the whole thread
324 $parent_item = Item::selectFirst(['parent'], ['id' => $conv_id]);
325 if (DBA::isResult($parent_item)) {
326 $conv_id = $parent_item['parent'];
330 * if $conv_id is set, get unknown contacts in thread
331 * but first get known contacts url to filter them out
333 $known_contacts = array_map(function ($i) {
337 $unknown_contacts = [];
339 $condition = ["`parent` = ?", $conv_id];
340 $params = ['order' => ['author-name' => true]];
341 $authors = Item::selectForUser(local_user(), ['author-link'], $condition, $params);
343 while ($author = Item::fetch($authors)) {
344 $item_authors[$author['author-link']] = $author['author-link'];
346 DBA::close($authors);
348 foreach ($item_authors as $author) {
349 if (in_array($author, $known_contacts)) {
353 $contact = Contact::getByURL($author, false, ['micro', 'name', 'id', 'network', 'nick', 'addr', 'url', 'forum']);
355 if (count($contact) > 0) {
356 $unknown_contacts[] = [
358 'photo' => Contact::getMicro($contact),
359 'name' => htmlspecialchars($contact['name']),
360 'id' => intval($contact['cid']),
361 'network' => $contact['network'],
362 'link' => $contact['url'],
363 'nick' => htmlentities(($contact['nick'] ?? '') ?: $contact['addr']),
364 'addr' => htmlentities(($contact['addr'] ?? '') ?: $contact['url']),
365 'forum' => $contact['forum']
370 $items = array_merge($items, $unknown_contacts);
371 $tot += count($unknown_contacts);
379 'contacts' => $contacts,
385 Hook::callAll('acl_lookup_end', $results);
388 'tot' => $results['tot'],
389 'start' => $results['start'],
390 'count' => $results['count'],
391 'items' => $results['items'],