mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 19:22:45 +08:00
178 lines
2.8 KiB
PHP
178 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Caches\CourseUser as CourseUserCache;
|
|
use Phalcon\Mvc\Model\Behavior\SoftDelete;
|
|
|
|
class CourseUser extends Model
|
|
{
|
|
|
|
/**
|
|
* 角色类型
|
|
*/
|
|
const ROLE_STUDENT = 'student'; // 学员
|
|
const ROLE_TEACHER = 'teacher'; // 讲师
|
|
|
|
/**
|
|
* 来源类型
|
|
*/
|
|
const SOURCE_FREE = 'free'; // 免费课程
|
|
const SOURCE_PAID = 'paid'; // 付费课程
|
|
const SOURCE_VIP = 'vip'; // 会员免费
|
|
const SOURCE_IMPORT = 'import'; // 后台导入
|
|
|
|
/**
|
|
* 主键编号
|
|
*
|
|
* @var int
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* 课程编号
|
|
*
|
|
* @var int
|
|
*/
|
|
public $course_id;
|
|
|
|
/**
|
|
* 用户编号
|
|
*
|
|
* @var int
|
|
*/
|
|
public $user_id;
|
|
|
|
/**
|
|
* 角色类型
|
|
*
|
|
* @var string
|
|
*/
|
|
public $role_type;
|
|
|
|
/**
|
|
* 来源类型
|
|
*
|
|
* @var string
|
|
*/
|
|
public $source_type;
|
|
|
|
/**
|
|
* 过期时间
|
|
*
|
|
* @var int
|
|
*/
|
|
public $expire_time;
|
|
|
|
/**
|
|
* 学习时长
|
|
*
|
|
* @var int
|
|
*/
|
|
public $duration;
|
|
|
|
/**
|
|
* 学习进度
|
|
*
|
|
* @var int
|
|
*/
|
|
public $progress;
|
|
|
|
/**
|
|
* 锁定标识
|
|
*
|
|
* @var int
|
|
*/
|
|
public $locked;
|
|
|
|
/**
|
|
* 删除标识
|
|
*
|
|
* @var int
|
|
*/
|
|
public $deleted;
|
|
|
|
/**
|
|
* 创建时间
|
|
*
|
|
* @var int
|
|
*/
|
|
public $created_at;
|
|
|
|
/**
|
|
* 更新时间
|
|
*
|
|
* @var int
|
|
*/
|
|
public $updated_at;
|
|
|
|
public function getSource()
|
|
{
|
|
return 'course_user';
|
|
}
|
|
|
|
public function initialize()
|
|
{
|
|
parent::initialize();
|
|
|
|
$this->addBehavior(
|
|
new SoftDelete([
|
|
'field' => 'deleted',
|
|
'value' => 1,
|
|
])
|
|
);
|
|
}
|
|
|
|
public function beforeCreate()
|
|
{
|
|
$this->created_at = time();
|
|
}
|
|
|
|
public function beforeUpdate()
|
|
{
|
|
$this->updated_at = time();
|
|
}
|
|
|
|
public function afterCreate()
|
|
{
|
|
$this->rebuildCache();
|
|
}
|
|
|
|
public function afterUpdate()
|
|
{
|
|
$this->rebuildCache();
|
|
}
|
|
|
|
public function rebuildCache()
|
|
{
|
|
$key = "{$this->course_id}_{$this->user_id}";
|
|
|
|
$courseUserCache = new CourseUserCache();
|
|
|
|
$courseUserCache->rebuild($key);
|
|
}
|
|
|
|
public static function roles()
|
|
{
|
|
$list = [
|
|
self::ROLE_STUDENT => '学员',
|
|
self::ROLE_TEACHER => '讲师',
|
|
];
|
|
|
|
return $list;
|
|
}
|
|
|
|
public static function sources()
|
|
{
|
|
$list = [
|
|
self::SOURCE_FREE => '免费课程',
|
|
self::SOURCE_PAID => '付费课程',
|
|
self::SOURCE_VIP => '会员免费',
|
|
self::SOURCE_IMPORT => '后台导入',
|
|
];
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|