mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 11:58:41 +08:00
63 lines
1.3 KiB
PHP
63 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Models\Package as PackageModel;
|
|
use App\Repos\Course as CourseRepo;
|
|
|
|
class CoursePackageList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "course_package_list:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$courseRepo = new CourseRepo();
|
|
|
|
$packages = $courseRepo->findPackages($id);
|
|
|
|
if ($packages->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
return $this->handleContent($packages);
|
|
}
|
|
|
|
/**
|
|
* @param PackageModel[] $packages
|
|
* @return array
|
|
*/
|
|
protected function handleContent($packages)
|
|
{
|
|
$result = [];
|
|
|
|
foreach ($packages as $package) {
|
|
$result[] = [
|
|
'id' => $package->id,
|
|
'title' => $package->title,
|
|
'course_count' => $package->course_count,
|
|
'market_price' => $package->market_price,
|
|
'vip_price' => $package->vip_price,
|
|
];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|