dangsn
2024-12-26 4e9ff2ce6a830bb2340d7c8612c72eea0c5a553e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package com.vci.client.framework.delegate;
 
import java.util.ArrayList;
import java.util.List;
 
import org.apache.commons.lang3.StringUtils;
 
import com.vci.client.ClientSession;
import com.vci.client.common.objects.UserEntityObject;
import com.vci.client.framework.rightdistribution.object.RoleRightObject;
import com.vci.client.ui.exception.VCIException;
import com.vci.corba.common.VCIError;
import com.vci.corba.framework.data.RoleRightInfo;
 
public class RoleRightClientDelegate extends ClientBaseDelegate {
 
    public RoleRightClientDelegate(UserEntityObject userEntityObject) {
        super(userEntityObject);
    }
    
    public RoleRightClientDelegate() {
    }
 
    /**
     * 保存角色功能模块权限表
     * 
     * @param moduleRightObject
     * @return
     * @throws VCIError
     */
    public boolean saveRoleRight(RoleRightObject[] roleRightObjs,String roleId,String userName) throws VCIException{
        try{
            RoleRightInfo[] roleRightInfos = new RoleRightInfo[roleRightObjs.length];
            for(int i = 0;i < roleRightObjs.length;i++){
                roleRightInfos[i] = changeRoleRightObjToInfo(roleRightObjs[i]);
            }
            return ClientSession.getFrameworkService().saveRoleRight(roleRightInfos,roleId,userName, userEntityInfo);
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
    }
    public boolean removeRoleRight(RoleRightObject[] roleRightObjs,String roleId,String userName) throws VCIException{
        try{
            RoleRightInfo[] roleRightInfos = new RoleRightInfo[roleRightObjs.length];
            for(int i = 0;i < roleRightObjs.length;i++){
                roleRightInfos[i] = changeRoleRightObjToInfo(roleRightObjs[i]);
            }
            return ClientSession.getFrameworkService().removeRoleRight(roleRightInfos,roleId,userName, userEntityInfo);
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
    }
    /**
     * 增加角色功能模块权限表
     * 
     * @param moduleRightObject
     * @return
     * @throws VCIError
     */
    public boolean addRoleRight(RoleRightObject[] roleRightObjs,String roleId,String userName) throws VCIException{
        try{
            RoleRightInfo[] roleRightInfos = new RoleRightInfo[roleRightObjs.length];
            for(int i = 0;i < roleRightObjs.length;i++){
                roleRightInfos[i] = changeRoleRightObjToInfo(roleRightObjs[i]);
            }
            return ClientSession.getFrameworkService().addRoleRight(roleRightInfos,roleId,userName, userEntityInfo);
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
    }
 
    /**
     * 获取角色权限,用于权限分配时加载角色权限树
     * @param roleId
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getRoleRightList(String roleId,String userName) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            RoleRightInfo[] infos = ClientSession.getFrameworkService().getRoleRightList(roleId,userName);
            roleRightObjs = new RoleRightObject[infos.length];
            for(int i = 0;i < infos.length;i++){
                roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    
    /**
     * 根据角色类型获取权限
     * @param roleId
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getRoleRightListByType(String[] rightType) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            RoleRightInfo[] infos = ClientSession.getFrameworkService().getRoleRightListByType(rightType);
            roleRightObjs = new RoleRightObject[infos.length];
            for(int i = 0;i < infos.length;i++){
                roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    /**
     * 根据模块ID和用户名获取权限
     * @param funcId
     * @param userName
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getRoleRightByModule(String funcId,String userName) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            RoleRightInfo[] infos = ClientSession.getFrameworkService().getRoleRightByModule(funcId,userName);
            roleRightObjs = new RoleRightObject[infos.length];
            for(int i = 0;i < infos.length;i++){
                roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    
    /**
     * 从缓冲中获取当前用户对当前操作的操作权限
     * @param funcId
     * @param userName
     * @param currentUserRoleRights
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getRoleRightByModule(String funcId,String userName, RoleRightObject[] currentUserRoleRights) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            if (currentUserRoleRights == null || currentUserRoleRights.length == 0) {
                RoleRightInfo[] infos = ClientSession.getFrameworkService().getRoleRightByModule(funcId,userName);
                roleRightObjs = new RoleRightObject[infos.length];
                for(int i = 0;i < infos.length;i++){
                    roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
                }
            } else {
                roleRightObjs = getCurrentUserRoleRightsFromCache(funcId, currentUserRoleRights);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    
    /**
     * 从传入的缓冲值中获取当前用户对传入功能模块的操作权限
     * @param funcId
     * @param currentUserRoleRights
     * @return
     */
    private RoleRightObject[] getCurrentUserRoleRightsFromCache(String funcId, RoleRightObject[] currentUserRoleRights) {
        if (currentUserRoleRights == null) {
            return new RoleRightObject[0];
        }
        List<RoleRightObject> list = new ArrayList<RoleRightObject>();
        for (int i = 0; i < currentUserRoleRights.length; i++) {
            if (currentUserRoleRights[i].getFuncId().equals(funcId)) {
                list.add(currentUserRoleRights[i]);
            }
        }
        return list.toArray(new RoleRightObject[0]);
    }
    
    /**
     * 根据用户名获取用户权限
     * @param userName
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getRoleRightByUserName(String userName) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            RoleRightInfo[] infos = ClientSession.getFrameworkService().getRoleRightByUserName(userName);
            roleRightObjs = new RoleRightObject[infos.length];
            for(int i = 0;i < infos.length;i++){
                roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    
    /**
     * 根据用户名获取用户具有的功能模块权限
     * @param userName
     * @return
     * @throws VCIException
     */
    public RoleRightObject[] getFunctionRoleRightByUserName(String userName) throws VCIException {
        RoleRightObject[] roleRightObjs = null;
        try{
            RoleRightInfo[] infos = ClientSession.getFrameworkService().getFunctionRoleRightByUserName(userName);
            roleRightObjs = new RoleRightObject[infos.length];
            for(int i = 0;i < infos.length;i++){
                roleRightObjs[i] = changeRoleRightInfoToObj(infos[i]);
            }
        }catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
        return roleRightObjs;
    }
    
    /**
     * ModuleRightObject转换为ModuleRightEntityInfo
     * 
     * @param rmDataObject
     * @return
     */
    private RoleRightInfo changeRoleRightObjToInfo(RoleRightObject obj) {
        RoleRightInfo info = new RoleRightInfo();
        info.id = obj.getId() == null ? "" : obj.getId();
        info.funcId = obj.getFuncId() == null ? "" : obj.getFuncId();
        info.roleId = obj.getRoleId() == null ? "" : obj.getRoleId();
        info.rightType = obj.getRightType();
        info.rightValue = obj.getRightValue();
        
        info.createTime = obj.getCreateTime().getTime();
        info.createUser = obj.getCreateUser() == null ? "" : obj.getCreateUser();
        info.modifyTime = obj.getModifyTime().getTime();
        info.modifyUser = obj.getModifyUser() == null ? "" : obj.getModifyUser();
        info.licensor = obj.getLicensor() == null ? "" : obj.getLicensor();
        return info;
    }
 
    /**
     * ModuleRightEntityInfo转换为ModuleRightObject
     * 
     * @param info
     * @return
     */
    private RoleRightObject changeRoleRightInfoToObj(RoleRightInfo info) {
        RoleRightObject obj = new RoleRightObject();
        obj.setId(info.id);
        obj.setFuncId(info.funcId);
        obj.setRoleId(info.roleId);
        obj.setRightValue(info.rightValue);
        obj.setRightType(info.rightType);
        return obj;
    }
    
    public boolean clearRight(String roleOid, String userName, short functionType) throws VCIException{
        if(StringUtils.isBlank(roleOid)){
            throw new VCIException("没有角色的主键,不能清除权限");
        }
        try {
            return ClientSession.getFrameworkService().clearRoleRight(roleOid,userName, userEntityInfo,functionType);
        } catch (VCIError e) {
            e.printStackTrace();
            throw new VCIException(String.valueOf(e.code),e.messages);
        }
    }
 
 
}