1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
xiaochong0302 4a46a42cba 修复角色routes字段填充问题
(cherry picked from commit 99cfb9bc9ba31f4312d74b0b5ca2216b49c517c9)
2020-12-20 17:25:41 +08:00

150 lines
2.5 KiB
PHP

<?php
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Role extends Model
{
/**
* 角色类型
*/
const TYPE_SYSTEM = 1; // 内置
const TYPE_CUSTOM = 2; // 自定
/**
* 内置角色
*/
const ROLE_ROOT = 1; // 管理人员
const ROLE_OPERATOR = 2; // 运营人员
const ROLE_EDITOR = 3; // 编辑人员
const ROLE_FINANCE = 4; // 财务人员
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 类型
*
* @var string
*/
public $type;
/**
* 名称
*
* @var string
*/
public $name;
/**
* 简介
*
* @var string
*/
public $summary;
/**
* 权限路由
*
* @var string
*/
public $routes;
/**
* 删除标识
*
* @var int
*/
public $deleted;
/**
* 成员数
*
* @var int
*/
public $user_count;
/**
* 创建时间
*
* @var int
*/
public $create_time;
/**
* 更新时间
*
* @var int
*/
public $update_time;
public function getSource(): string
{
return 'kg_role';
}
public function initialize()
{
parent::initialize();
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
if (is_array($this->routes) && !empty($this->routes)) {
$this->routes = kg_json_encode($this->routes);
} else {
$this->routes = '';
}
$this->create_time = time();
}
public function beforeUpdate()
{
if (is_array($this->routes) && !empty($this->routes)) {
$this->routes = kg_json_encode($this->routes);
}
$this->update_time = time();
}
public function afterFetch()
{
if (is_string($this->routes) && !empty($this->routes)) {
$this->routes = json_decode($this->routes, true);
}
}
public static function types()
{
return [
self::TYPE_SYSTEM => '内置',
self::TYPE_CUSTOM => '自定',
];
}
public static function sysRoleTypes()
{
return [
self::ROLE_ROOT => '管理人员',
self::ROLE_OPERATOR => '运营人员',
self::ROLE_EDITOR => '编辑人员',
self::ROLE_FINANCE => '财务人员',
];
}
}