1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
2020-09-12 19:57:28 +08:00

250 lines
4.1 KiB
PHP

<?php
namespace App\Models;
use App\Caches\MaxChapterId as MaxChapterIdCache;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Chapter extends Model
{
/**
* 文件状态
*/
const FS_PENDING = 'pending'; // 待上传
const FS_UPLOADED = 'uploaded'; // 已上传
const FS_TRANSLATING = 'translating'; // 转码中
const FS_TRANSLATED = 'translated'; // 已转码
const FS_FAILED = 'failed'; // 已失败
/**
* 推流状态
*/
const SS_ACTIVE = 'active'; // 活跃
const SS_INACTIVE = 'inactive'; // 静默
const SS_FORBID = 'forbid'; // 禁播
/**
* @var array
*
* 点播扩展属性
*/
protected $_vod_attrs = [
'duration' => 0,
'file' => ['id' => '', 'status' => self::FS_PENDING],
];
/**
* @var array
*
* 直播扩展属性
*/
protected $_live_attrs = [
'start_time' => 0,
'end_time' => 0,
'stream' => ['status' => self::SS_INACTIVE],
];
/**
* @var array
*
* 图文扩展属性
*/
protected $_read_attrs = [
'duration' => 0,
'word_count' => 0,
];
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 父级编号
*
* @var int
*/
public $parent_id;
/**
* 课程编号
*
* @var int
*/
public $course_id;
/**
* 标题
*
* @var string
*/
public $title;
/**
* 摘要
*
* @var string
*/
public $summary;
/**
* 优先级
*
* @var int
*/
public $priority;
/**
* 免费标识
*
* @var int
*/
public $free;
/**
* 模式类型
*
* @var int
*/
public $model;
/**
* 扩展属性
*
* @var string|array
*/
public $attrs;
/**
* 发布标识
*
* @var int
*/
public $published;
/**
* 删除标识
*
* @var int
*/
public $deleted;
/**
* 课时数
*
* @var int
*/
public $lesson_count;
/**
* 学员数
*
* @var int
*/
public $user_count;
/**
* 咨询数
*
* @var int
*/
public $consult_count;
/**
* 点赞数
*
* @var int
*/
public $like_count;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_chapter';
}
public function initialize()
{
parent::initialize();
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
$course = Course::findFirst($this->course_id);
$this->model = $course->model;
if ($this->parent_id > 0) {
$attrs = [];
switch ($course->model) {
case Course::MODEL_VOD:
$attrs = $this->_vod_attrs;
break;
case Course::MODEL_LIVE:
$attrs = $this->_live_attrs;
break;
case Course::MODEL_READ:
$attrs = $this->_read_attrs;
break;
}
$this->attrs = kg_json_encode($attrs);
}
$this->create_time = time();
}
public function beforeUpdate()
{
if (is_array($this->attrs) && !empty($this->attrs)) {
$this->attrs = kg_json_encode($this->attrs);
}
if ($this->deleted == 1) {
$this->published = 0;
}
$this->update_time = time();
}
public function afterCreate()
{
$cache = new MaxChapterIdCache();
$cache->rebuild();
}
public function afterFetch()
{
if (is_string($this->attrs) && !empty($this->attrs)) {
$this->attrs = json_decode($this->attrs, true);
}
}
}