Performance improvements when displaying local posts
[friendica.git/.git] / src / Content / Widget / TrendingTags.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, 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\Content\Widget;
23
24 use Friendica\Content\Conversation\Entity\Community;
25 use Friendica\Core\Renderer;
26 use Friendica\DI;
27 use Friendica\Model\Tag;
28
29 /**
30  * Trending tags aside widget for the community pages, handles both local and global scopes
31  *
32  * @package Friendica\Content\Widget
33  */
34 class TrendingTags
35 {
36         /**
37          * @param string $content 'global' (all posts) or 'local' (this node's posts only)
38          * @param int    $period  Period in hours to consider posts
39          *
40          * @return string Formatted HTML code
41          * @throws \Exception
42          */
43         public static function getHTML(string $content = Community::GLOBAL, int $period = 24): string
44         {
45                 if ($content == Community::LOCAL) {
46                         $tags = Tag::getLocalTrendingHashtags($period, 20);
47                 } else {
48                         $tags = Tag::getGlobalTrendingHashtags($period, 20);
49                 }
50
51                 $tpl = Renderer::getMarkupTemplate('widget/trending_tags.tpl');
52                 $o = Renderer::replaceMacros($tpl, [
53                         '$title' => DI::l10n()->tt('Trending Tags (last %d hour)', 'Trending Tags (last %d hours)', $period),
54                         '$more'  => DI::l10n()->t('More Trending Tags'),
55                         '$tags'  => $tags,
56                 ]);
57
58                 return $o;
59         }
60 }