123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\admin\model\store;
- use app\admin\model\store\MenuApi as MenuApiModel;
- use app\common\model\store\Api as ApiModel;
- /**
- * 商家后台API权限模型
- * Class Api
- * @package app\admin\model\store
- */
- class Api extends ApiModel
- {
- /**
- * 获取权限列表
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getList(): array
- {
- $all = static::getAll();
- return $this->getTreeData($all);
- }
- /**
- * 新增记录
- * @param array $data
- * @return bool|false
- */
- public function add(array $data): bool
- {
- return $this->allowField(['name', 'parent_id', 'url', 'sort'])->save($data);
- }
- /**
- * 更新记录
- * @param array $data
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function edit(array $data): bool
- {
- // 判断上级角色是否为当前子级
- if ($data['parent_id'] > 0) {
- // 获取所有上级id集
- $parentIds = $this->getTopApiIds($data['parent_id']);
- if (in_array($this['api_id'], $parentIds)) {
- $this->error = '上级权限不允许设置为当前子权限';
- return false;
- }
- }
- return $this->allowField(['name', 'parent_id', 'url', 'sort'])->save($data);
- }
- /**
- * 删除权限
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \Exception
- */
- public function remove(): bool
- {
- // 判断是否存在下级权限
- if (self::detail(['parent_id' => $this['api_id']])) {
- $this->error = '当前权限下存在子权限,请先删除';
- return false;
- }
- // 清空菜单与API关联关系
- MenuApiModel::deleteAll(['api_id' => $this['api_id']]);
- // 删除API记录
- return $this->delete();
- }
- /**
- * 获取所有上级id集
- * @param int $apiId
- * @param null $all
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function getTopApiIds(int $apiId, $all = null): array
- {
- static $ids = [];
- is_null($all) && $all = $this->getAll();
- foreach ($all as $item) {
- if ($item['api_id'] == $apiId && $item['parent_id'] > 0) {
- $ids[] = $item['parent_id'];
- $this->getTopApiIds($item['parent_id'], $all);
- }
- }
- return $ids;
- }
- /**
- * 获取树状列表
- * @param array $list
- * @param int $parentId
- * @return array
- */
- private function getTreeData(array &$list, int $parentId = 0): array
- {
- $data = [];
- foreach ($list as $key => $item) {
- if ($item['parent_id'] == $parentId) {
- $children = $this->getTreeData($list, (int)$item['api_id']);
- !empty($children) && $item['children'] = $children;
- $data[] = $item;
- unset($list[$key]);
- }
- }
- return $data;
- }
- }
|