mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 05:11:39 +08:00
70 lines
1.5 KiB
PHP
70 lines
1.5 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\User as UserModel;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class IndexTeacherList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 3600;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return 'index_teacher_list';
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$teachers = $this->findTeachers();
|
|
|
|
if ($teachers->count() == 0) return [];
|
|
|
|
$result = [];
|
|
|
|
$baseUrl = kg_cos_url();
|
|
|
|
foreach ($teachers->toArray() as $teacher) {
|
|
|
|
$teacher['avatar'] = $baseUrl . $teacher['avatar'];
|
|
|
|
$result[] = [
|
|
'id' => $teacher['id'],
|
|
'name' => $teacher['name'],
|
|
'title' => $teacher['title'],
|
|
'avatar' => $teacher['avatar'],
|
|
'about' => $teacher['about'],
|
|
];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param int $limit
|
|
* @return ResultsetInterface|Resultset|UserModel[]
|
|
*/
|
|
protected function findTeachers($limit = 8)
|
|
{
|
|
return UserModel::query()
|
|
->where('edu_role = :edu_role:', ['edu_role' => UserModel::EDU_ROLE_TEACHER])
|
|
->andWhere('deleted = 0')
|
|
->orderBy('RAND()')
|
|
->limit($limit)
|
|
->execute();
|
|
}
|
|
|
|
}
|