Move trending tags queries to Model\Term

This commit is contained in:
Hypolite Petovan 2019-08-06 07:36:51 -04:00
parent 4c45cb864a
commit 9e8ae520b8
2 changed files with 91 additions and 80 deletions

View file

@ -19,9 +19,9 @@ class TrendingTags
public static function getHTML($content = 'global', int $period = 24)
{
if ($content == 'local') {
$tags = self::getLocalTrendingTags($period);
$tags = Term::getLocalTrendingHashtags($period, 20);
} else {
$tags = self::getGlobalTrendingTags($period);
$tags = Term::getGlobalTrendingHashtags($period, 20);
}
$tpl = Renderer::getMarkupTemplate('widget/trending_tags.tpl');
@ -33,82 +33,4 @@ class TrendingTags
return $o;
}
/**
* Returns a list of the most frequent global tags over the given period
*
* @param int $period Period in hours to consider posts
* @return array
* @throws \Exception
*/
private static function getGlobalTrendingTags(int $period)
{
$tags = Cache::get('global_trending_tags');
if (!$tags) {
$tagsStmt = DBA::p("SELECT t.`term`, COUNT(*) AS `score`
FROM `term` t
JOIN `item` i ON i.`id` = t.`oid` AND i.`uid` = t.`uid`
JOIN `thread` ON `thread`.`iid` = i.`id`
WHERE `thread`.`visible`
AND NOT `thread`.`deleted`
AND NOT `thread`.`moderated`
AND NOT `thread`.`private`
AND t.`uid` = 0
AND t.`otype` = ?
AND t.`type` = ?
AND t.`term` != ''
AND i.`received` > DATE_SUB(NOW(), INTERVAL ? HOUR)
GROUP BY `term`
ORDER BY `score` DESC
LIMIT 20", Term::OBJECT_TYPE_POST, Term::HASHTAG, $period);
if (DBA::isResult($tags)) {
$tags = DBA::toArray($tagsStmt);
Cache::set('global_trending_tags', $tags, Cache::HOUR);
}
}
return $tags ?: [];
}
/**
* Returns a list of the most frequent local tags over the given period
*
* @param int $period Period in hours to consider posts
* @return array
* @throws \Exception
*/
private static function getLocalTrendingTags(int $period)
{
$tags = Cache::get('local_trending_tags');
if (!$tags) {
$tagsStmt = DBA::p("SELECT t.`term`, COUNT(*) AS `score`
FROM `term` t
JOIN `item` i ON i.`id` = t.`oid` AND i.`uid` = t.`uid`
JOIN `thread` ON `thread`.`iid` = i.`id`
JOIN `user` ON `user`.`uid` = `thread`.`uid` AND NOT `user`.`hidewall`
WHERE `thread`.`visible`
AND NOT `thread`.`deleted`
AND NOT `thread`.`moderated`
AND NOT `thread`.`private`
AND `thread`.`wall`
AND `thread`.`origin`
AND t.`otype` = ?
AND t.`type` = ?
AND t.`term` != ''
AND i.`received` > DATE_SUB(NOW(), INTERVAL ? HOUR)
GROUP BY `term`
ORDER BY `score` DESC
LIMIT 20", Term::OBJECT_TYPE_POST, Term::HASHTAG, $period);
if (DBA::isResult($tags)) {
$tags = DBA::toArray($tagsStmt);
Cache::set('local_trending_tags', $tags, Cache::HOUR);
}
}
return $tags ?: [];
}
}