WokerTask/app/common/logic/user/UserRoleLogic.php

119 lines
3.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\logic\user;
use app\common\model\user\UserRole;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 用户角色逻辑
* Class UserRoleLogic
* @package app\adminapi\logic\user
*/
class UserRoleLogic extends BaseLogic
{
/**
* @notes 添加用户角色
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/08/23 09:38
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
UserRole::create([
'name' => $params['name'],
'desc' => $params['desc'],
'menu_arr' => json_encode($params['menu_arr'],true),
'sort' => $params['sort']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑用户角色
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/08/23 09:38
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
UserRole::where('id', $params['id'])->update([
'name' => $params['name'],
'desc' => $params['desc'],
'menu_arr' => json_encode($params['menu_arr'],true),
'sort' => $params['sort']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除用户角色
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/08/23 09:38
*/
public static function delete(array $params): bool
{
return UserRole::destroy($params['id']);
}
/**
* @notes 获取用户角色详情
* @param $params
* @return array
* @author likeadmin
* @date 2023/08/23 09:38
*/
public static function detail($params): array
{
return UserRole::findOrEmpty($params['id'])->toArray();
}
public static function getList()
{
return UserRole::order(['id' => 'desc'])->field(['id', 'name'])
->select()
->toArray();
}
}