mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
75 lines
1.6 KiB
PHP
75 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Models\Course as CourseModel;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class CourseRecommendedList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 1 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "course_recommended_list:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$courses = $this->findCourses(5);
|
|
|
|
if ($courses->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
return $this->handleContent($courses);
|
|
}
|
|
|
|
/**
|
|
* @param CourseModel[] $courses
|
|
* @return array
|
|
*/
|
|
public function handleContent($courses)
|
|
{
|
|
$result = [];
|
|
|
|
foreach ($courses as $course) {
|
|
|
|
$result[] = [
|
|
'id' => $course->id,
|
|
'title' => $course->title,
|
|
'cover' => $course->cover,
|
|
'market_price' => $course->market_price,
|
|
'vip_price' => $course->vip_price,
|
|
'model' => $course->model,
|
|
'level' => $course->level,
|
|
'user_count' => $course->user_count,
|
|
'lesson_count' => $course->lesson_count,
|
|
];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param int $limit
|
|
* @return ResultsetInterface|Resultset|CourseModel[]
|
|
*/
|
|
public function findCourses($limit = 5)
|
|
{
|
|
return CourseModel::query()
|
|
->where('published = 1 AND market_price > 0')
|
|
->orderBy('RAND()')
|
|
->limit($limit)
|
|
->execute();
|
|
}
|
|
|
|
}
|