123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\services\system;
- use app\dao\system\SystemMenusDao;
- use app\model\system\SystemMenus;
- use app\services\BaseServices;
- use crmeb\exceptions\AdminException;
- use crmeb\services\FormBuilder as Form;
- use crmeb\utils\Arr;
- /**
- * 权限菜单
- * Class SystemMenusServices
- * @package app\services\system
- * @mixin SystemMenusDao
- */
- class SystemMenusServices extends BaseServices
- {
- /**
- * @var string[]
- */
- protected $type = [
- 1 => 'admin',//平台
- 2 => 'store',//门店
- 3 => 'cashier',//收银台
- 4 => 'supplier',//供应商
- ];
- /**
- * 初始化
- * SystemMenusServices constructor.
- * @param SystemMenusDao $dao
- */
- public function __construct(SystemMenusDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * 获取菜单没有被修改器修改的数据
- * @param $menusList
- * @return array
- */
- public function getMenusData($menusList, int $type = 1)
- {
- $data = [];
- foreach ($menusList as $item) {
- // $item['expand'] = true;
- $item['selected'] = false;
- $item['title'] = $item['menu_name'];
- $item['menu_path'] = preg_replace('/^\/' . ($this->type[$type] ?? 'admin') . '/', '', $item['menu_path']);
- $data[] = $item->getData();
- }
- return $data;
- }
- /**
- * 获取后台权限菜单和权限
- * @param $rouleId
- * @param int $level
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getMenusList($rouleId, int $level, int $type = 1)
- {
- $rulesStr = '';
- if ($level) {//超级管理员查询所有菜单
- /** @var SystemRoleServices $systemRoleServices */
- $systemRoleServices = app()->make(SystemRoleServices::class);
- $rules = $systemRoleServices->getRoleArray(['status' => 1, 'id' => $rouleId], $type == 3 ? 'cashier_rules' : 'rules');
- $rulesStr = Arr::unique($rules);
- }
- $menusList = $this->dao->getMenusRoule(['type' => $type, 'route' => $level ? $rulesStr : '']);
- $unique = $this->dao->getMenusUnique(['type' => $type, 'unique' => $level ? $rulesStr : '']);
- return [Arr::getMenuIviewList($this->getMenusData($menusList, $type)), $unique];
- }
- /**
- * 获取后台菜单树型结构列表
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getList(array $where)
- {
- $menusList = $this->dao->getMenusList($where);
- $menusList = $this->getMenusData($menusList);
- return get_tree_children($menusList);
- }
- /**
- * 获取form表单所需要的所要的菜单列表
- * @return array[]
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- protected function getFormSelectMenus()
- {
- $menuList = $this->dao->getMenusRoule(['is_del' => 0], ['id', 'pid', 'menu_name']);
- $list = get_tree_children($this->getMenusData($menuList), '0', 'pid', 'id');
- $menus = [['value' => 0, 'label' => '顶级按钮']];
- foreach ($list as $menu) {
- $menus[] = ['value' => $menu['id'], 'label' => $menu['html'] . $menu['menu_name']];
- }
- return $menus;
- }
- /**
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- protected function getFormCascaderMenus(int $value = 0, int $type = 1)
- {
- $menuList = $this->dao->getMenusRoule(['is_del' => 0, 'type' => $type], ['id as value', 'pid', 'menu_name as label']);
- $menuList = $this->getMenusData($menuList);
- if ($value) {
- $data = get_tree_value($menuList, $value);
- } else {
- $data = [];
- }
- return [get_tree_children($menuList, 'children', 'value'), array_reverse($data)];
- }
- /**
- * 创建权限规格生表单
- * @param array $formData
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function createMenusForm(array $formData = [], int $type = 1)
- {
- $field[] = Form::hidden('type', $type);
- $field[] = Form::input('menu_name', '按钮名称', $formData['menu_name'] ?? '')->required('按钮名称必填');
- // $field[] = Form::select('pid', '父级id', $formData['pid'] ?? 0)->setOptions($this->getFormSelectMenus())->filterable(1);
- $field[] = Form::input('menu_path', '路由名称', $formData['menu_path'] ?? '')->placeholder('请输入前台跳转路由地址')->required('请填写前台路由地址');
- $field[] = Form::input('unique_auth', '权限标识', $formData['unique_auth'] ?? '')->placeholder('不填写则后台自动生成');
- $params = $formData['params'] ?? '';
- $field[] = Form::input('params', '参数', is_array($params) ? '' : $params)->placeholder('举例:a/123/b/234');
- $field[] = Form::frameInput('icon', '图标', $this->url(config('admin.admin_prefix') . '/widget.widgets/icon', ['fodder' => 'icon']), $formData['icon'] ?? '')->icon('md-add')->height('500px');
- $field[] = Form::number('sort', '排序', (int)($formData['sort'] ?? 0))->min(0);
- $field[] = Form::radio('auth_type', '类型', $formData['auth_type'] ?? 1)->options([['value' => 2, 'label' => '接口'], ['value' => 1, 'label' => '菜单(菜单只显示三级)']]);
- $field[] = Form::radio('is_show', '状态', $formData['is_show'] ?? 1)->options([['value' => 0, 'label' => '关闭'], ['value' => 1, 'label' => '开启']]);
- $field[] = Form::radio('is_show_path', '是否为前端隐藏菜单', $formData['is_show_path'] ?? 0)->options([['value' => 1, 'label' => '是'], ['value' => 0, 'label' => '否']]);
- [$menuList, $data] = $this->getFormCascaderMenus((int)($formData['pid'] ?? 0), $type);
- $field[] = Form::cascader('menu_list', '父级id', $data)->data($menuList)->filterable(true);
- return $field;
- }
- /**
- * 新增权限表单
- * @return array
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function createMenus(int $type = 1)
- {
- return create_form('添加权限', $this->createMenusForm([], $type), $this->url('/setting/save'));
- }
- /**
- * 修改权限菜单
- * @param int $id
- * @return array
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function updateMenus(int $id)
- {
- $menusInfo = $this->dao->get($id);
- if (!$menusInfo) {
- throw new AdminException('数据不存在');
- }
- $menusInfo = $menusInfo->getData();
- return create_form('修改权限', $this->createMenusForm($menusInfo, $menusInfo['type'] ?? 1), $this->url('/setting/update/' . $id), 'PUT');
- }
- /**
- * 获取一条数据
- * @param int $id
- * @return mixed
- */
- public function find(int $id)
- {
- $menusInfo = $this->dao->get($id);
- if (!$menusInfo) {
- throw new AdminException('数据不存在');
- }
- $menu = $menusInfo->getData();
- $menu['pid'] = (int)$menu['pid'];
- $menu['auth_type'] = (int)$menu['auth_type'];
- $menu['is_header'] = (int)$menu['is_header'];
- $menu['is_show'] = (int)$menu['is_show'];
- $menu['is_show_path'] = (int)$menu['is_show_path'];
- if (!$menu['path']) {
- [$menuList, $data] = $this->getFormCascaderMenus($menu['pid']);
- $menu['path'] = $data;
- } else {
- $menu['path'] = explode('/', $menu['path']);
- if (is_array($menu['path'])) {
- $menu['path'] = array_map(function ($item) {
- return (int)$item;
- }, $menu['path']);
- }
- }
- return $menu;
- }
- /**
- * 删除菜单
- * @param int $id
- * @return mixed
- */
- public function delete(int $id)
- {
- if ($this->dao->count(['pid' => $id])) {
- throw new AdminException('请先删除改菜单下的子菜单');
- }
- return $this->dao->delete($id);
- }
- /**
- * 获取添加身份规格
- * @param $roles
- * @param int $type
- * @param int $is_show
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getMenus($roles, int $type = 1, int $is_show = 1): array
- {
- $field = ['menu_name', 'pid', 'id'];
- $where = ['is_del' => 0, 'type' => $type];
- if ($is_show) $where['is_show'] = 1;
- if (!$roles) {
- $menus = $this->dao->getMenusRoule($where, $field);
- } else {
- /** @var SystemRoleServices $service */
- $service = app()->make(SystemRoleServices::class);
- //拼接有长度限制
- // $ids = $service->value([['id', 'in', $roles]], 'GROUP_CONCAT(rules) as ids');
- $roles = is_string($roles) ? explode(',', $roles) : $roles;
- $ids = $service->getRoleIds($roles);
- $menus = $this->dao->getMenusRoule(['rule' => $ids] + $where, $field);
- }
- return $this->tidyMenuTier(false, $menus);
- }
- /**
- * 组合菜单数据
- * @param bool $adminFilter
- * @param $menusList
- * @param int $pid
- * @param array $navList
- * @return array
- */
- public function tidyMenuTier(bool $adminFilter = false, $menusList, int $pid = 0, array $navList = []): array
- {
- foreach ($menusList as $k => $menu) {
- $menu = $menu->getData();
- $menu['title'] = $menu['menu_name'];
- unset($menu['menu_name']);
- if ($menu['pid'] == $pid) {
- unset($menusList[$k]);
- $menu['children'] = $this->tidyMenuTier($adminFilter, $menusList, $menu['id']);
- if ($pid == 0 && !count($menu['children'])) continue;
- if ($menu['children']) $menu['expand'] = true;
- $navList[] = $menu;
- }
- }
- return $navList;
- }
- }
|