]> git.mxchange.org Git - friendica.git/blob - src/Model/Tag.php
Funkwhale context file moved
[friendica.git] / src / Model / Tag.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Core\Cache\Enum\Duration;
26 use Friendica\Core\Logger;
27 use Friendica\Core\Protocol;
28 use Friendica\Core\System;
29 use Friendica\Database\Database;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Protocol\ActivityPub;
33 use Friendica\Util\DateTimeFormat;
34 use Friendica\Util\Strings;
35
36 /**
37  * Class Tag
38  *
39  * This Model class handles tag table interactions.
40  * This tables stores relevant tags related to posts, like hashtags and mentions.
41  */
42 class Tag
43 {
44         const UNKNOWN  = 0;
45         const HASHTAG  = 1;
46         const MENTION  = 2;
47         /**
48          * An implicit mention is a mention in a comment body that is redundant with the threading information.
49          */
50         const IMPLICIT_MENTION  = 8;
51         /**
52          * An exclusive mention transmits the post only to the target account without transmitting it to the followers, usually a forum.
53          */
54         const EXCLUSIVE_MENTION = 9;
55
56         const TO  = 10;
57         const CC  = 11;
58         const BTO = 12;
59         const BCC = 13;
60
61         const ACCOUNT             = 1;
62         const GENERAL_COLLECTION  = 2;
63         const FOLLOWER_COLLECTION = 3;
64         const PUBLIC_COLLECTION   = 4;
65
66         const TAG_CHARACTER = [
67                 self::HASHTAG           => '#',
68                 self::MENTION           => '@',
69                 self::EXCLUSIVE_MENTION => '!',
70                 self::IMPLICIT_MENTION  => '%',
71         ];
72
73         /**
74          * Store tag/mention elements
75          *
76          * @param integer $uriId
77          * @param integer $type Tag type
78          * @param string  $name Tag name
79          * @param string  $url Contact URL (optional)
80          * @param integer $target Target (default: null)
81          * @return void
82          */
83         public static function store(int $uriId, int $type, string $name, string $url = '', int $target = null)
84         {
85                 if ($type == self::HASHTAG) {
86                         // Trim Unicode non-word characters
87                         $name = preg_replace('/(^\W+)|(\W+$)/us', '', $name);
88
89                         $tags = explode(self::TAG_CHARACTER[self::HASHTAG], $name);
90                         if (count($tags) > 1) {
91                                 foreach ($tags as $tag) {
92                                         self::store($uriId, $type, $tag, $url);
93                                 }
94                                 return;
95                         }
96                 }
97
98                 if (empty($name)) {
99                         return;
100                 }
101
102                 $cid = 0;
103                 $tagid = 0;
104
105                 if (in_array($type, [self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION, self::TO, self::CC, self::BTO, self::BCC])) {
106                         if (empty($url)) {
107                                 // No mention without a contact url
108                                 return;
109                         }
110
111                         if ((substr($url, 0, 7) == 'https//') || (substr($url, 0, 6) == 'http//')) {
112                                 Logger::notice('Wrong scheme in url', ['url' => $url, 'callstack' => System::callstack(20)]);
113                         }
114
115                         $cid = Contact::getIdForURL($url, 0, false);
116                         Logger::debug('Got id for contact', ['cid' => $cid, 'url' => $url]);
117
118                         if (empty($cid)) {
119                                 $tag = DBA::selectFirst('tag', ['name', 'type'], ['url' => $url]);
120                                 if (!empty($tag)) {
121                                         if ($tag['name'] != substr($name, 0, 96)) {
122                                                 DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
123                                         }
124                                         if (!empty($target) && ($tag['type'] != $target)) {
125                                                 DBA::update('tag', ['type' => $target], ['url' => $url]);
126                                         }
127                                 }
128                         }
129                 }
130
131                 if (empty($cid)) {
132                         if (!in_array($type, [self::TO, self::CC, self::BTO, self::BCC])) {
133                                 if (($type != self::HASHTAG) && !empty($url) && ($url != $name)) {
134                                         $url = strtolower($url);
135                                 } else {
136                                         $url = '';
137                                 }
138                         }
139
140                         $tagid = self::getID($name, $url, $target);
141                         if (empty($tagid)) {
142                                 return;
143                         }
144                 }
145
146                 $fields = ['uri-id' => $uriId, 'type' => $type, 'tid' => $tagid, 'cid' => $cid];
147
148                 if (in_array($type, [self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION])) {
149                         $condition = $fields;
150                         $condition['type'] = [self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION];
151                         if (DBA::exists('post-tag', $condition)) {
152                                 Logger::info('Tag already exists', $fields);
153                                 return;
154                         }
155                 }
156
157                 DBA::insert('post-tag', $fields, Database::INSERT_IGNORE);
158
159                 Logger::info('Stored tag/mention', ['uri-id' => $uriId, 'tag-id' => $tagid, 'contact-id' => $cid, 'name' => $name, 'type' => $type, 'callstack' => System::callstack(8)]);
160         }
161
162         /**
163          * Fetch the target type for the given url
164          *
165          * @param string $url
166          * @param bool   $fetch Fetch information via network operations
167          * @return null|int
168          */
169         public static function getTargetType(string $url, bool $fetch = true)
170         {
171                 $target = null;
172
173                 if (empty($url)) {
174                         return $target;
175                 }
176
177                 $tag = DBA::selectFirst('tag', ['url', 'type'], ['url' => $url]);
178                 if (!empty($tag['type'])) {
179                         $target = $tag['type'];
180                         if ($target != self::GENERAL_COLLECTION) {
181                                 Logger::debug('Found existing type', ['type' => $tag['type'], 'url' => $url]);
182                                 return $target;
183                         }
184                 }
185
186                 if ($url == ActivityPub::PUBLIC_COLLECTION) {
187                         $target = self::PUBLIC_COLLECTION;
188                         Logger::debug('Public collection', ['url' => $url]);
189                 } else {
190                         if (DBA::exists('apcontact', ['followers' => $url])) {
191                                 $target = self::FOLLOWER_COLLECTION;
192                                 Logger::debug('Found collection via existing apcontact', ['url' => $url]);
193                         } elseif (Contact::getIdForURL($url, 0, $fetch ? null : false)) {
194                                 $target = self::ACCOUNT;
195                                 Logger::debug('URL is an account', ['url' => $url]);
196                         } elseif ($fetch && ($target != self::GENERAL_COLLECTION)) {
197                                 $content = ActivityPub::fetchContent($url);
198                                 if (!empty($content['type']) && ($content['type'] == 'OrderedCollection')) {
199                                         $target = self::GENERAL_COLLECTION;
200                                         Logger::debug('URL is an ordered collection', ['url' => $url]);
201                                 }
202                         }
203                 }
204
205                 if (!empty($target) && !empty($tag['url']) && ($tag['type'] != $target)) {
206                         DBA::update('tag', ['type' => $target], ['url' => $url]);
207                 }
208
209                 if (empty($target)) {
210                         Logger::debug('No type could be detected', ['url' => $url]);
211                 }
212
213                 return $target;
214         }
215
216         /**
217          * Get a tag id for a given tag name and URL
218          *
219          * @param string $name Name of tag
220          * @param string $url
221          * @param int    $type Type of tag
222          * @return int Tag id
223          */
224         public static function getID(string $name, string $url = '', int $type = null): int
225         {
226                 $fields = ['name' => substr($name, 0, 96), 'url' => $url];
227
228                 $tag = DBA::selectFirst('tag', ['id', 'type'], $fields);
229                 if (DBA::isResult($tag)) {
230                         if (empty($tag['type']) && !empty($type)) {
231                                 DBA::update('tag', ['type' => $type], $fields);
232                         }
233                         return $tag['id'];
234                 }
235
236                 if (!empty($type)) {
237                         $fields['type'] = $type;
238                 }
239
240                 DBA::insert('tag', $fields, Database::INSERT_IGNORE);
241                 $tid = DBA::lastInsertId();
242                 if (!empty($tid)) {
243                         return $tid;
244                 }
245
246                 // Also log type
247                 $fields['type'] = $type;
248
249                 Logger::error('No tag id created', $fields);
250                 return 0;
251         }
252
253         /**
254          * Store tag/mention elements
255          *
256          * @param integer $uriId
257          * @param string $hash
258          * @param string $name
259          * @param string $url
260          * @param boolean $probing Whether probing is active
261          * @return void
262          */
263         public static function storeByHash(int $uriId, string $hash, string $name, string $url = '', bool $probing = true)
264         {
265                 $type = self::getTypeForHash($hash);
266                 if ($type == self::UNKNOWN) {
267                         return;
268                 }
269
270                 self::store($uriId, $type, $name, $url, $probing);
271         }
272
273         /**
274          * Get tags and mentions from the body
275          *
276          * @param string  $body    Body of the post
277          * @param string  $tags    Accepted tags
278          *
279          * @return array Tag list
280          */
281         public static function getFromBody(string $body, string $tags = null): array
282         {
283                 if (is_null($tags)) {
284                         $tags = self::TAG_CHARACTER[self::HASHTAG] . self::TAG_CHARACTER[self::MENTION] . self::TAG_CHARACTER[self::EXCLUSIVE_MENTION];
285                 }
286
287                 if (!preg_match_all("/([" . $tags . "])\[url\=([^\[\]]*)\]([^\[\]]*)\[\/url\]/ism", $body, $result, PREG_SET_ORDER)) {
288                         return [];
289                 }
290
291                 return $result;
292         }
293
294         /**
295          * Store tags and mentions from the body
296          *
297          * @param integer $uriId   URI-Id
298          * @param string  $body    Body of the post
299          * @param string  $tags    Accepted tags
300          * @param boolean $probing Perform a probing for contacts, adding them if needed
301          * @return void
302          */
303         public static function storeFromBody(int $uriId, string $body, string $tags = null, bool $probing = true)
304         {
305                 Logger::info('Check for tags', ['uri-id' => $uriId, 'hash' => $tags, 'callstack' => System::callstack()]);
306
307                 if (is_null($tags)) {
308                         $tags = self::TAG_CHARACTER[self::HASHTAG] . self::TAG_CHARACTER[self::MENTION] . self::TAG_CHARACTER[self::EXCLUSIVE_MENTION];
309                 }
310
311                 // Only remove the shared data from "real" reshares
312                 $shared = BBCode::fetchShareAttributes($body);
313                 if (!empty($shared['guid'])) {
314                         if (preg_match("/\s*\[share .*?\](.*?)\[\/share\]\s*/ism",  $body, $matches)) {
315                                 $share_body = $matches[1];
316                         }
317                         $body = preg_replace("/\s*\[share .*?\].*?\[\/share\]\s*/ism", '', $body);
318                 }
319
320                 foreach (self::getFromBody($body, $tags) as $tag) {
321                         self::storeByHash($uriId, $tag[1], $tag[3], $tag[2], $probing);
322                 }
323
324                 // Search for hashtags in the shared body (but only if hashtags are wanted)
325                 if (!empty($share_body) && (strpos($tags, self::TAG_CHARACTER[self::HASHTAG]) !== false)) {
326                         foreach (self::getFromBody($share_body, self::TAG_CHARACTER[self::HASHTAG]) as $tag) {
327                                 self::storeByHash($uriId, $tag[1], $tag[3], $tag[2], $probing);
328                         }
329                 }
330         }
331
332         /**
333          * Store raw tags (not encapsulated in links) from the body
334          * This function is needed in the intermediate phase.
335          * Later we can call item::setHashtags in advance to have all tags converted.
336          *
337          * @param integer $uriId URI-Id
338          * @param string  $body   Body of the post
339          * @return void
340          */
341         public static function storeRawTagsFromBody(int $uriId, string $body)
342         {
343                 Logger::info('Check for tags', ['uri-id' => $uriId, 'callstack' => System::callstack()]);
344
345                 $result = BBCode::getTags($body);
346                 if (empty($result)) {
347                         return;
348                 }
349
350                 Logger::info('Found tags', ['uri-id' => $uriId, 'result' => $result]);
351
352                 foreach ($result as $tag) {
353                         if (substr($tag, 0, 1) != self::TAG_CHARACTER[self::HASHTAG]) {
354                                 continue;
355                         }
356                         self::storeByHash($uriId, substr($tag, 0, 1), substr($tag, 1));
357                 }
358         }
359
360         /**
361          * Checks for stored hashtags and mentions for the given post
362          *
363          * @param integer $uriId
364          * @return bool
365          */
366         public static function existsForPost(int $uriId): bool
367         {
368                 return DBA::exists('post-tag', ['uri-id' => $uriId, 'type' => [self::HASHTAG, self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION]]);
369         }
370
371         /**
372          * Remove tag/mention
373          *
374          * @param integer $uriId
375          * @param integer $type Type
376          * @param string $name Name
377          * @param string $url URL
378          * @return void
379          */
380         public static function remove(int $uriId, int $type, string $name, string $url = '')
381         {
382                 $condition = ['uri-id' => $uriId, 'type' => $type, 'url' => $url];
383                 if ($type == self::HASHTAG) {
384                         $condition['name'] = $name;
385                 }
386
387                 $tag = DBA::selectFirst('tag-view', ['tid', 'cid'], $condition);
388                 if (!DBA::isResult($tag)) {
389                         return;
390                 }
391
392                 Logger::info('Removing tag/mention', ['uri-id' => $uriId, 'tid' => $tag['tid'], 'name' => $name, 'url' => $url, 'callstack' => System::callstack(8)]);
393                 DBA::delete('post-tag', ['uri-id' => $uriId, 'type' => $type, 'tid' => $tag['tid'], 'cid' => $tag['cid']]);
394         }
395
396         /**
397          * Remove tag/mention
398          *
399          * @param integer $uriId
400          * @param string $hash
401          * @param string $name
402          * @param string $url
403          * @return void
404          */
405         public static function removeByHash(int $uriId, string $hash, string $name, string $url = '')
406         {
407                 $type = self::getTypeForHash($hash);
408                 if ($type == self::UNKNOWN) {
409                         return;
410                 }
411
412                 self::remove($uriId, $type, $name, $url);
413         }
414
415         /**
416          * Get the type for the given hash
417          *
418          * @param string $hash
419          * @return integer Tag type
420          */
421         private static function getTypeForHash(string $hash): int
422         {
423                 if ($hash == self::TAG_CHARACTER[self::MENTION]) {
424                         return self::MENTION;
425                 } elseif ($hash == self::TAG_CHARACTER[self::EXCLUSIVE_MENTION]) {
426                         return self::EXCLUSIVE_MENTION;
427                 } elseif ($hash == self::TAG_CHARACTER[self::IMPLICIT_MENTION]) {
428                         return self::IMPLICIT_MENTION;
429                 } elseif ($hash == self::TAG_CHARACTER[self::HASHTAG]) {
430                         return self::HASHTAG;
431                 } else {
432                         return self::UNKNOWN;
433                 }
434         }
435
436         /**
437          * Create implicit mentions for a given post
438          *
439          * @param integer $uriId
440          * @param integer $parentUriId
441          * @return void
442          */
443         public static function createImplicitMentions(int $uriId, int $parentUriId)
444         {
445                 // Always mention the direct parent author
446                 $parent = Post::selectFirst(['author-link', 'author-name'], ['uri-id' => $parentUriId]);
447                 self::store($uriId, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);
448
449                 if (DI::config()->get('system', 'disable_implicit_mentions')) {
450                         return;
451                 }
452
453                 $tags = DBA::select('tag-view', ['name', 'url'], ['uri-id' => $parentUriId, 'type' => [self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION]]);
454                 while ($tag = DBA::fetch($tags)) {
455                         self::store($uriId, self::IMPLICIT_MENTION, $tag['name'], $tag['url']);
456                 }
457                 DBA::close($tags);
458         }
459
460         /**
461          * Retrieves the terms from the provided type(s) associated with the provided item ID.
462          *
463          * @param int   $uriId
464          * @param array $type Tag type(s)
465          * @return array|bool Array on success, false on error
466          * @throws \Exception
467          */
468         public static function getByURIId(int $uriId, array $type = [self::HASHTAG, self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION])
469         {
470                 $condition = ['uri-id' => $uriId, 'type' => $type];
471                 return DBA::selectToArray('tag-view', ['type', 'name', 'url', 'tag-type'], $condition);
472         }
473
474         /**
475          * Return a string with all tags and mentions
476          *
477          * @param integer $uriId
478          * @param array   $type Tag type(s)
479          * @return string tags and mentions
480          * @throws \Exception
481          */
482         public static function getCSVByURIId(int $uriId, array $type = [self::HASHTAG, self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION]): string
483         {
484                 $tag_list = [];
485                 foreach (self::getByURIId($uriId, $type) as $tag) {
486                         $tag_list[] = self::TAG_CHARACTER[$tag['type']] . '[url=' . $tag['url'] . ']' . $tag['name'] . '[/url]';
487                 }
488
489                 return implode(',', $tag_list);
490         }
491
492         /**
493          * Sorts an item's tags into mentions, hashtags and other tags. Generate personalized URLs by user and modify the
494          * provided item's body with them.
495          *
496          * @param array $item
497          * @return array
498          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
499          * @throws \ImagickException
500          */
501         public static function populateFromItem(array &$item): array
502         {
503                 $return = [
504                         'tags' => [],
505                         'hashtags' => [],
506                         'mentions' => [],
507                         'implicit_mentions' => [],
508                 ];
509
510                 $searchpath = DI::baseUrl() . '/search?tag=';
511
512                 $taglist = DBA::select('tag-view', ['type', 'name', 'url', 'cid'],
513                         ['uri-id' => $item['uri-id'], 'type' => [self::HASHTAG, self::MENTION, self::EXCLUSIVE_MENTION, self::IMPLICIT_MENTION]]);
514                 while ($tag = DBA::fetch($taglist)) {
515                         if ($tag['url'] == '') {
516                                 $tag['url'] = $searchpath . rawurlencode($tag['name']);
517                         }
518
519                         $orig_tag = $tag['url'];
520
521                         $prefix = self::TAG_CHARACTER[$tag['type']];
522                         switch($tag['type']) {
523                                 case self::HASHTAG:
524                                         if ($orig_tag != $tag['url']) {
525                                                 $item['body'] = str_replace($orig_tag, $tag['url'], $item['body']);
526                                         }
527
528                                         $return['hashtags'][] = '<bdi>' . $prefix . '<a href="' . $tag['url'] . '" target="_blank" rel="noopener noreferrer">' . htmlspecialchars($tag['name']) . '</a></bdi>';
529                                         $return['tags'][] = '<bdi>' . $prefix . '<a href="' . $tag['url'] . '" target="_blank" rel="noopener noreferrer">' . htmlspecialchars($tag['name']) . '</a></bdi>';
530                                         break;
531
532                                 case self::MENTION:
533                                 case self::EXCLUSIVE_MENTION:
534                                         if (!empty($tag['cid'])) {
535                                                 $tag['url'] = Contact::magicLinkById($tag['cid']);
536                                         } else {
537                                                 $tag['url'] = Contact::magicLink($tag['url']);
538                                         }
539                                         $return['mentions'][] = '<bdi>' . $prefix . '<a href="' . $tag['url'] . '" target="_blank" rel="noopener noreferrer">' . htmlspecialchars($tag['name']) . '</a></bdi>';
540                                         $return['tags'][] = '<bdi>' . $prefix . '<a href="' . $tag['url'] . '" target="_blank" rel="noopener noreferrer">' . htmlspecialchars($tag['name']) . '</a></bdi>';
541                                         break;
542
543                                 case self::IMPLICIT_MENTION:
544                                         $return['implicit_mentions'][] = $prefix . $tag['name'];
545                                         break;
546
547                                 default:
548                                         Logger:warning('Unknown tag type found', $tag);
549                         }
550                 }
551                 DBA::close($taglist);
552
553                 return $return;
554         }
555
556         /**
557          * Counts posts for given tag
558          *
559          * @param string $search
560          * @param integer $uid
561          * @return integer number of posts
562          */
563         public static function countByTag(string $search, int $uid = 0): int
564         {
565                 $condition = ["`name` = ? AND (`uid` = ? OR (`uid` = ? AND NOT `global`))
566                         AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
567                         $search, 0, $uid,
568                         Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0,
569                 ];
570
571                 return DBA::count('tag-search-view', $condition);
572         }
573
574         /**
575          * Search posts for given tag
576          *
577          * @param string $search Tag to search for
578          * @param integer $uid User Id
579          * @param integer $start Starting record
580          * @param integer $limit Maximum count of records
581          * @param integer $last_uriid
582          * @return array with URI-ID
583          */
584         public static function getURIIdListByTag(string $search, int $uid = 0, int $start = 0, int $limit = 100, int $last_uriid = 0): array
585         {
586                 $condition = ["`name` = ? AND (`uid` = ? OR (`uid` = ? AND NOT `global`))
587                         AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
588                         $search, 0, $uid,
589                         Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0,
590                 ];
591
592                 if (!empty($last_uriid)) {
593                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $last_uriid]);
594                 }
595
596                 $params = [
597                         'order' => ['uri-id' => true],
598                         'limit' => [$start, $limit]
599                 ];
600
601                 $tags = DBA::select('tag-search-view', ['uri-id'], $condition, $params);
602
603                 $uriIds = [];
604                 while ($tag = DBA::fetch($tags)) {
605                         $uriIds[] = $tag['uri-id'];
606                 }
607                 DBA::close($tags);
608
609                 return $uriIds;
610         }
611
612         /**
613          * Returns a list of the most frequent global hashtags over the given period
614          *
615          * @param int $period Period in hours to consider posts
616          * @param int $limit  Number of returned tags
617          * @return array
618          * @throws \Exception
619          */
620         public static function getGlobalTrendingHashtags(int $period, $limit = 10): array
621         {
622                 $tags = DI::cache()->get('global_trending_tags-' . $period . '-' . $limit);
623                 if (!empty($tags)) {
624                         return $tags;
625                 } else {
626                         return self::setGlobalTrendingHashtags($period, $limit);
627                 }
628         }
629
630         /**
631          * Fetch the blocked tags as SQL
632          *
633          * @return string SQL for blocked tag names or empty string
634          */
635         private static function getBlockedSQL(): string
636         {
637                 $blocked_txt = DI::config()->get('system', 'blocked_tags');
638                 if (empty($blocked_txt)) {
639                         return '';
640                 }
641
642                 $blocked = explode(',', $blocked_txt);
643                 array_walk($blocked, function(&$value) { $value = "'" . DBA::escape(trim($value)) . "'";});
644                 return ' AND NOT `name` IN (' . implode(',', $blocked) . ')';
645         }
646
647         /**
648          * Creates a list of the most frequent global hashtags over the given period
649          *
650          * @param int $period Period in hours to consider posts
651          * @param int $limit  Number of returned tags
652          * @return array
653          * @throws \Exception
654          */
655         public static function setGlobalTrendingHashtags(int $period, int $limit = 10): array
656         {
657                 /*
658                 * Get a uri-id that is at least X hours old.
659                 * We use the uri-id in the query for the hash tags since this is much faster
660                 */
661                 $post = Post::selectFirstThread(['uri-id'], ["`uid` = ? AND `received` < ?", 0, DateTimeFormat::utc('now - ' . $period . ' hour')],
662                         ['order' => ['received' => true]]);
663
664                 if (empty($post['uri-id'])) {
665                         return [];
666                 }
667
668                 $block_sql = self::getBlockedSQL();
669
670                 $tagsStmt = DBA::p("SELECT `name` AS `term`, COUNT(*) AS `score`, COUNT(DISTINCT(`author-id`)) as `authors`
671                         FROM `tag-search-view`
672                         WHERE `private` = ? AND `uid` = ? AND `uri-id` > ? $block_sql
673                         GROUP BY `term` ORDER BY `authors` DESC, `score` DESC LIMIT ?",
674                         Item::PUBLIC, 0, $post['uri-id'],
675                         $limit
676                 );
677
678                 if (DBA::isResult($tagsStmt)) {
679                         $tags = DBA::toArray($tagsStmt);
680                         DI::cache()->set('global_trending_tags-' . $period . '-' . $limit, $tags, Duration::DAY);
681                         return $tags;
682                 }
683
684                 return [];
685         }
686
687         /**
688          * Returns a list of the most frequent local hashtags over the given period
689          *
690          * @param int $period Period in hours to consider posts
691          * @param int $limit  Number of returned tags
692          * @return array
693          * @throws \Exception
694          */
695         public static function getLocalTrendingHashtags(int $period, $limit = 10): array
696         {
697                 $tags = DI::cache()->get('local_trending_tags-' . $period . '-' . $limit);
698                 if (!empty($tags)) {
699                         return $tags;
700                 } else {
701                         return self::setLocalTrendingHashtags($period, $limit);
702                 }
703         }
704
705         /**
706          * Returns a list of the most frequent local hashtags over the given period
707          *
708          * @param int $period Period in hours to consider posts
709          * @param int $limit  Number of returned tags
710          * @return array
711          * @throws \Exception
712          */
713         public static function setLocalTrendingHashtags(int $period, int $limit = 10): array
714         {
715                 // Get a uri-id that is at least X hours old.
716                 // We use the uri-id in the query for the hash tags since this is much faster
717                 $post = Post::selectFirstThread(['uri-id'], ["`uid` = ? AND `received` < ?", 0, DateTimeFormat::utc('now - ' . $period . ' hour')],
718                         ['order' => ['received' => true]]);
719                 if (empty($post['uri-id'])) {
720                         return [];
721                 }
722
723                 $block_sql = self::getBlockedSQL();
724
725                 $tagsStmt = DBA::p("SELECT `name` AS `term`, COUNT(*) AS `score`, COUNT(DISTINCT(`author-id`)) as `authors`
726                         FROM `tag-search-view`
727                         WHERE `private` = ? AND `wall` AND `origin` AND `uri-id` > ? $block_sql
728                         GROUP BY `term` ORDER BY `authors` DESC, `score` DESC LIMIT ?",
729                         Item::PUBLIC, $post['uri-id'],
730                         $limit
731                 );
732
733                 if (DBA::isResult($tagsStmt)) {
734                         $tags = DBA::toArray($tagsStmt);
735                         DI::cache()->set('local_trending_tags-' . $period . '-' . $limit, $tags, Duration::DAY);
736                         return $tags;
737                 }
738
739                 return [];
740         }
741
742         /**
743          * Check if the provided tag is of one of the provided term types.
744          *
745          * @param string $tag Tag name
746          * @param int    ...$types
747          * @return bool
748          */
749         public static function isType(string $tag, ...$types): bool
750         {
751                 $tag_chars = [];
752                 foreach ($types as $type) {
753                         if (array_key_exists($type, self::TAG_CHARACTER)) {
754                                 $tag_chars[] = self::TAG_CHARACTER[$type];
755                         }
756                 }
757
758                 return Strings::startsWithChars($tag, $tag_chars);
759         }
760
761         /**
762          * Fetch user who subscribed to the given tag
763          *
764          * @param string $tag
765          * @return array User list
766          */
767         private static function getUIDListByTag(string $tag): array
768         {
769                 $uids = [];
770                 $searches = DBA::select('search', ['uid'], ['term' => $tag]);
771                 while ($search = DBA::fetch($searches)) {
772                         $uids[] = $search['uid'];
773                 }
774                 DBA::close($searches);
775
776                 return $uids;
777         }
778
779         /**
780          * Fetch user who subscribed to the tags of the given item
781          *
782          * @param integer $uriId
783          * @return array User list
784          */
785         public static function getUIDListByURIId(int $uriId): array
786         {
787                 $uids = [];
788                 $tags = self::getByURIId($uriId, [self::HASHTAG]);
789
790                 foreach ($tags as $tag) {
791                         $uids = array_merge($uids, self::getUIDListByTag(self::TAG_CHARACTER[self::HASHTAG] . $tag['name']));
792                 }
793
794                 return array_unique($uids);
795         }
796 }