refactor: 重构主机分组页面.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
### 查询已授权的主机分组
|
||||
GET {{baseUrl}}/asset/authorized-data/host-group
|
||||
Authorization: {{token}}
|
||||
|
||||
|
||||
@@ -41,3 +41,23 @@ Authorization: {{token}}
|
||||
DELETE {{baseUrl}}/asset/host-group/delete?id=1
|
||||
Authorization: {{token}}
|
||||
|
||||
|
||||
### 获取已授权的分组
|
||||
GET {{baseUrl}}/asset/host-group/get-authorized-group?userId=1
|
||||
Authorization: {{token}}
|
||||
|
||||
|
||||
### 主机分组授权
|
||||
PUT {{baseUrl}}/asset/host-group/grant
|
||||
Content-Type: application/json
|
||||
Authorization: {{token}}
|
||||
|
||||
{
|
||||
"userId": 10,
|
||||
"groupIdList": [
|
||||
3,
|
||||
5
|
||||
]
|
||||
}
|
||||
|
||||
###
|
||||
|
||||
@@ -103,14 +103,11 @@ public class HostGroupController {
|
||||
return HttpWrapper.ok();
|
||||
}
|
||||
|
||||
// TODO 日志 host-group:grant
|
||||
// TODO 菜单 asset:host-group:grant
|
||||
|
||||
@IgnoreLog(IgnoreLogMode.RET)
|
||||
@GetMapping("/get-authorized-group")
|
||||
@Operation(summary = "获取已授权的分组")
|
||||
@PreAuthorize("@ss.hasPermission('asset:host-group:grant')")
|
||||
public List<Long> getAuthorizedHostGroup(@RequestParam HostGroupGrantQueryRequest request) {
|
||||
public List<Long> getAuthorizedHostGroup(HostGroupGrantQueryRequest request) {
|
||||
return hostGroupService.getAuthorizedHostGroup(request);
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import lombok.NoArgsConstructor;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 主机分组 查询请求对象
|
||||
* 主机分组授权 查询请求对象
|
||||
*
|
||||
* @author Jiahang Li
|
||||
* @version 1.0.0
|
||||
@@ -19,7 +19,7 @@ import java.io.Serializable;
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Schema(name = "HostGroupQueryRequest", description = "主机分组 查询请求对象")
|
||||
@Schema(name = "HostGroupQueryRequest", description = "主机分组授权 查询请求对象")
|
||||
public class HostGroupGrantQueryRequest implements Serializable {
|
||||
|
||||
@Schema(description = "用户id")
|
||||
|
||||
@@ -19,10 +19,7 @@ import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* 主机分组服务 实现类
|
||||
@@ -155,7 +152,7 @@ public class HostGroupServiceImpl implements HostGroupService {
|
||||
// 构建已授权的分组
|
||||
List<DataGroupDTO> relNodes = new ArrayList<>();
|
||||
TreeUtils.getAllNodes(dataGroup, authorizedGroupIdList, relNodes);
|
||||
dataGroup = relNodes;
|
||||
dataGroup = new ArrayList<>(new HashSet<>(relNodes));
|
||||
}
|
||||
// 查询分组引用
|
||||
Map<Long, Set<Long>> groupRel = dataGroupRelApi.getGroupRelList(DataGroupTypeEnum.HOST);
|
||||
|
||||
@@ -78,12 +78,12 @@ public class DataPermissionServiceImpl implements DataPermissionService {
|
||||
Long roleId = request.getRoleId();
|
||||
String type = request.getType();
|
||||
// 删除
|
||||
LambdaQueryWrapper<DataPermissionDO> wrapper = dataPermissionDAO.wrapper()
|
||||
.eq(DataPermissionDO::getUserId, userId)
|
||||
.eq(DataPermissionDO::getRoleId, roleId)
|
||||
.eq(DataPermissionDO::getType, type);
|
||||
dataPermissionDAO.delete(wrapper);
|
||||
if (Lists.isEmpty(request.getRelIdList())) {
|
||||
LambdaQueryWrapper<DataPermissionDO> wrapper = dataPermissionDAO.wrapper()
|
||||
.eq(DataPermissionDO::getUserId, userId)
|
||||
.eq(DataPermissionDO::getRoleId, roleId)
|
||||
.eq(DataPermissionDO::getType, type);
|
||||
dataPermissionDAO.delete(wrapper);
|
||||
return;
|
||||
}
|
||||
// 新增
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
<select id="getRoleIdByUserIdAndRoleCode" resultType="java.lang.Long">
|
||||
SELECT role_id
|
||||
FROM system_user_role
|
||||
WHERE user_id = 1
|
||||
WHERE user_id = #{userId}
|
||||
AND deleted = 0
|
||||
AND role_id IN (SELECT id FROM system_role WHERE CODE = 'admin' AND deleted = 0) LIMIT 1
|
||||
AND role_id IN (SELECT id FROM system_role WHERE CODE = #{code} AND deleted = 0) LIMIT 1
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
|
||||
9
orion-ops-ui/src/api/asset/asset-data.ts
Normal file
9
orion-ops-ui/src/api/asset/asset-data.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { HostGroupQueryResponse } from '@/api/asset/host-group';
|
||||
import axios from 'axios';
|
||||
|
||||
/**
|
||||
* 查询已授权的主机分组
|
||||
*/
|
||||
export function getAuthorizedHostGroup() {
|
||||
return axios.get<Array<HostGroupQueryResponse>>('/asset/authorized-data/host-group');
|
||||
}
|
||||
@@ -30,8 +30,10 @@ export interface HostGroupMoveRequest {
|
||||
*/
|
||||
export interface HostGroupQueryResponse {
|
||||
key: number;
|
||||
parentId: number;
|
||||
title: string;
|
||||
children: Array<HostGroupQueryResponse>;
|
||||
hosts: Array<number>;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -42,6 +44,21 @@ export interface HostGroupRelUpdateRequest {
|
||||
hostIdList?: Array<string>;
|
||||
}
|
||||
|
||||
/**
|
||||
* 主机分组授权 查询请求对象
|
||||
*/
|
||||
export interface HostGroupGrantQueryRequest {
|
||||
userId?: number;
|
||||
roleId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 主机分组 授权请求对象
|
||||
*/
|
||||
export interface HostGroupGrantRequest extends HostGroupGrantQueryRequest {
|
||||
groupIdList?: Array<number>;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建主机分组
|
||||
*/
|
||||
@@ -90,3 +107,17 @@ export function getHostGroupRelList(groupId: number) {
|
||||
export function updateHostGroupRel(request: HostGroupRelUpdateRequest) {
|
||||
return axios.put('/asset/host-group/update-rel', request);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取已授权的分组
|
||||
*/
|
||||
export function getAuthorizedHostGroup(params: HostGroupGrantQueryRequest) {
|
||||
return axios.get<Array<number>>('/asset/host-group/get-authorized-group', { params });
|
||||
}
|
||||
|
||||
/**
|
||||
* 主机分组授权
|
||||
*/
|
||||
export function grantHostGroup(request: HostGroupGrantRequest) {
|
||||
return axios.put('/asset/host-group/grant', request);
|
||||
}
|
||||
|
||||
@@ -21,10 +21,10 @@
|
||||
<style lang="less" scoped>
|
||||
.footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
height: 80px;
|
||||
text-align: center;
|
||||
height: 64px;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
@@ -8,7 +8,8 @@
|
||||
<img alt="logo"
|
||||
src="//p3-armor.byteimg.com/tos-cn-i-49unhts6dw/dfdba5317c0c20ce20e64fac803d52bc.svg~tplv-49unhts6dw-image.image" />
|
||||
<!-- 标头 -->
|
||||
<a-typography-title :heading="5" :style="{ margin: 0, fontSize: '18px' }">
|
||||
<a-typography-title :heading="5"
|
||||
:style="{ margin: 0, fontSize: '18px', height: '1.4em', overflow: 'hidden' }">
|
||||
Orion Ops Pro
|
||||
</a-typography-title>
|
||||
<!-- 收缩菜单 -->
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div v-if="navbar" class="layout-navbar">
|
||||
<NavBar />
|
||||
</div>
|
||||
<a-layout style="flex-direction: row;">
|
||||
<a-layout>
|
||||
<!-- 左侧菜单栏 -->
|
||||
<a-layout-sider v-if="renderMenu"
|
||||
v-show="!hideMenu"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div v-for="i in 300">
|
||||
host-group-view-role-gra <br>
|
||||
<div class="simple-card grant-container">
|
||||
<div style="height: 200px;background: #00308f">
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -15,5 +16,7 @@
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
|
||||
.grant-container {
|
||||
padding: 16px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,25 +1,34 @@
|
||||
<template>
|
||||
<div class="view-container">
|
||||
<a-tabs class="view-container"
|
||||
:default-active-key="1"
|
||||
:justify="true"
|
||||
:destroy-on-hide="true"
|
||||
:lazy-load="true">
|
||||
<!-- 左侧导航 -->
|
||||
<tab-router class="left-tabs"
|
||||
v-model="key"
|
||||
:items="tabItems" />
|
||||
<!-- 右侧内容 -->
|
||||
<div class="view-main">
|
||||
<!-- 分组配置 -->
|
||||
<template v-if="key === tabItemKeys.SETTING">
|
||||
<host-group-view-setting />
|
||||
<a-tab-pane :key="1">
|
||||
<host-group-view-setting />
|
||||
<template #title>
|
||||
<icon-unordered-list />
|
||||
分组配置
|
||||
</template>
|
||||
<!-- 角色分配 -->
|
||||
<template v-if="key === tabItemKeys.ROLE_GRANT">
|
||||
<host-group-view-role-grant />
|
||||
</a-tab-pane>
|
||||
<!-- 角色分配 -->
|
||||
<a-tab-pane :key="2">
|
||||
<host-group-view-role-grant />
|
||||
<template #title>
|
||||
<icon-safe />
|
||||
角色授权
|
||||
</template>
|
||||
<!-- 用户分配 -->
|
||||
<template v-if="key === tabItemKeys.USER_GRANT">
|
||||
<host-group-view-user-grant />
|
||||
</a-tab-pane>
|
||||
<!-- 用户分配 -->
|
||||
<a-tab-pane :key="3">
|
||||
<host-group-view-user-grant />
|
||||
<template #title>
|
||||
<icon-user />
|
||||
用户授权
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
@@ -29,39 +38,13 @@
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref } from 'vue';
|
||||
import { tabItems, tabItemKeys } from '../types/const';
|
||||
import HostGroupViewSetting from './host-group-view-setting.vue';
|
||||
import HostGroupViewRoleGrant from './host-group-view-role-grant.vue';
|
||||
import HostGroupViewUserGrant from './host-group-view-user-grant.vue';
|
||||
|
||||
const key = ref();
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@tab-width: 138px;
|
||||
|
||||
.view-container {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.left-tabs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: @tab-width;
|
||||
height: 100%;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.view-main {
|
||||
width: calc(100% - @tab-width - 16px);
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@@ -1,6 +1,36 @@
|
||||
<template>
|
||||
<div class="index-container" v-if="render">
|
||||
<host-group-view />
|
||||
<div v-if="render" class="view-container">
|
||||
<a-tabs v-if="render"
|
||||
class="tabs-container"
|
||||
:default-active-key="1"
|
||||
:destroy-on-hide="true"
|
||||
:justify="true"
|
||||
:lazy-load="true">
|
||||
<!-- 左侧导航 -->
|
||||
<a-tab-pane :key="1" v-permission="['asset:host-group:query']">
|
||||
<host-group-view-setting />
|
||||
<template #title>
|
||||
<icon-unordered-list />
|
||||
分组配置
|
||||
</template>
|
||||
</a-tab-pane>
|
||||
<!-- 角色分配 -->
|
||||
<a-tab-pane :key="2" v-permission="['asset:host-group:grant']">
|
||||
<host-group-view-role-grant />
|
||||
<template #title>
|
||||
<icon-safe />
|
||||
角色授权
|
||||
</template>
|
||||
</a-tab-pane>
|
||||
<!-- 用户分配 -->
|
||||
<a-tab-pane :key="3" v-permission="['asset:host-group:grant']">
|
||||
<host-group-view-user-grant />
|
||||
<template #title>
|
||||
<icon-user />
|
||||
用户授权
|
||||
</template>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -11,12 +41,13 @@
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { Message } from '@arco-design/web-vue';
|
||||
|
||||
import { computed, ref, onBeforeMount, onUnmounted } from 'vue';
|
||||
import { useAppStore, useCacheStore, useDictStore } from '@/store';
|
||||
import HostGroupView from './components/host-group-view.vue';
|
||||
import { ref, onBeforeMount, onUnmounted } from 'vue';
|
||||
import { useCacheStore } from '@/store';
|
||||
import { getHostList } from '@/api/asset/host';
|
||||
import { Message } from '@arco-design/web-vue';
|
||||
import HostGroupViewSetting from './components/host-group-view-setting.vue';
|
||||
import HostGroupViewRoleGrant from './components/host-group-view-role-grant.vue';
|
||||
import HostGroupViewUserGrant from './components/host-group-view-user-grant.vue';
|
||||
|
||||
const render = ref(false);
|
||||
const cacheStore = useCacheStore();
|
||||
@@ -46,10 +77,23 @@
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.index-container {
|
||||
position: relative;
|
||||
.view-container {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.tabs-container {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
:deep(.arco-tabs-content) {
|
||||
padding-top: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,28 +1,3 @@
|
||||
// 导航 key
|
||||
export const tabItemKeys = {
|
||||
SETTING: 1,
|
||||
ROLE_GRANT: 2,
|
||||
USER_GRANT: 3
|
||||
};
|
||||
|
||||
// 导航路径
|
||||
export const tabItems = [{
|
||||
key: tabItemKeys.SETTING,
|
||||
text: '分组配置',
|
||||
icon: 'icon-unordered-list',
|
||||
permission: ['asset:host-group:query']
|
||||
}, {
|
||||
key: tabItemKeys.ROLE_GRANT,
|
||||
text: '角色授权',
|
||||
icon: 'icon-safe',
|
||||
permission: []
|
||||
}, {
|
||||
key: tabItemKeys.USER_GRANT,
|
||||
text: '用户授权',
|
||||
icon: 'icon-user',
|
||||
permission: []
|
||||
}];
|
||||
|
||||
// 创建前缀
|
||||
export const createGroupGroupPrefix = 'create-';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user