mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
68 lines
1.2 KiB
PHP
68 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Models\Topic as TopicModel;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class CourseTopicList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 1 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "course_topic_list:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$topics = $this->findTopics(5);
|
|
|
|
if ($topics->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
return $this->handleContent($topics);
|
|
}
|
|
|
|
/**
|
|
* @param TopicModel[] $topics
|
|
* @return array
|
|
*/
|
|
public function handleContent($topics)
|
|
{
|
|
$result = [];
|
|
|
|
foreach ($topics as $topic) {
|
|
|
|
$result[] = [
|
|
'id' => $topic->id,
|
|
'title' => $topic->title,
|
|
];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param int $limit
|
|
* @return ResultsetInterface|Resultset|TopicModel[]
|
|
*/
|
|
public function findTopics($limit = 5)
|
|
{
|
|
return TopicModel::query()
|
|
->where('published = 1')
|
|
->orderBy('RAND()')
|
|
->limit($limit)
|
|
->execute();
|
|
}
|
|
|
|
}
|