ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package com.vci.mw;
 
import com.vci.corba.common.data.VCIInvocationInfo;
 
import java.awt.Frame;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class ClientContextVariable
{
    /**
     * 客户启动模式
     */
    private static LaunchModeEnum clientLanuchMode = LaunchModeEnum.Normal;
    public static LaunchModeEnum getClientLanuchMode() {
        return clientLanuchMode;
    }
    public static void setClientLanuchMode(LaunchModeEnum clientLanuchMode) {
        ClientContextVariable.clientLanuchMode = clientLanuchMode;
    }
    private static String webBasePath = "";
    public static String getWebBasePath() {
        return webBasePath;
    }
    public static void setWebBasePath(String webBasePath) {
        ClientContextVariable.webBasePath = webBasePath;
    }
    public static final String CLIENT_LAST_REQUEST_TS = "CLIENT.LAST.REQUEST.TS";
    private static Frame mainFrame = null;
    private static VCIInvocationInfo vcii = null;
    private static Map<String, Object> userMap = new HashMap<String, Object>();
    
    public static String[] GLOBAL_VAR_KEYS = {"CURRENTUSER.ID", "CURRENTUSER.NAME", "CURRENTUSER.SECRETGRADE", "CURRENTUSER.EMAIL",
        "CURRENTUSER.GROUPNUM", "CURRENTMACHINE.SECRET", "IPSECRETSWITCH", "CURRENTUSER.GROUPNAME", "USERSECRETSWITCH",
        CLIENT_LAST_REQUEST_TS};    
    
    public ClientContextVariable()
    {
    }
    
    /**
     * 返回与客户端(会话)上下文相关的  VCIInvocationInfo
     * <p>同时兼容的富客户端、WEB客户端调用,前提条件:必须登录是登录后调用生效</p>
     * @return
     */
    public static VCIInvocationInfo getVCIInvocationInfoForSessionContext(){
        VCIInvocationInfo res = InvocationUtility.getInvocation();
        if(res != null) { // IS WEB APP
            return res;
        } else if(ClientContextVariable.getClientLanuchMode() == LaunchModeEnum.WebApp) {
            res = InvocationUtility.getInvocation(); // WEB APP
        } else { // 富客户端(C)
            res = ClientContextVariable.getInvocationInfo();
        }
        return res;
    }
    
    /**
     * 判断输入得值是否为全局变量
     * @param key
     * @return
     */
    public static boolean isGlobalVarKey(String key) {
        boolean isGlobalKey = false;
        if (key == null || key.equals("")) {
            return isGlobalKey;
        }
        for (int i = 0; i < GLOBAL_VAR_KEYS.length; i++) {
            if (key.equals(GLOBAL_VAR_KEYS[i])) {
                isGlobalKey = true;
                break;
            }
        }
        
        return isGlobalKey;
    }
 
    public static void setInvocationInfo(VCIInvocationInfo vcii)
    {
        ClientContextVariable.vcii = vcii;
    }
 
    public static void setUserMap(String userName, VCIInvocationInfo vcii)
    {
        ClientContextVariable.userMap.put(userName, vcii);
    }
 
    public static VCIInvocationInfo getUserInvocation(String userName)
    {
        return (VCIInvocationInfo)userMap.get(userName);
    }
 
    public static VCIInvocationInfo getInvocationInfo()
    {
        return vcii;
    }
 
    public static void setFrame(Frame mainFrame)
    {
        ClientContextVariable.mainFrame = mainFrame;
    }
 
    public static Frame getFrame()
    {
        return mainFrame;
    }
 
 
    /**
     * CS系统获取变量值的方法
     * @param key
     * @return
     */
    public static String getVariablebyKey(String key)
    {
        if(getInvocationInfo() == null)
            return "";
        if(getInvocationInfo().extAttribs == null)
            return "";
        String exAttrs[] = getInvocationInfo().extAttribs;
        for(int i = 0; i < exAttrs.length; i++)
            if(exAttrs[i] != null && exAttrs[i].indexOf((new StringBuilder(String.valueOf(key))).append("=").toString()) == 0)
                return exAttrs[i].split("=").length > 1 ? exAttrs[i].split("=")[1] : "";
 
        return "";
    }
    
    public static void putGlobalVariable(String key, String value) {
        if(getInvocationInfo() == null) {
            return;
        }
        VCIInvocationInfo cinfo = getInvocationInfo();
        putGlobalVariable(cinfo, key, value);
    }
    
    protected static void putGlobalVariable(VCIInvocationInfo cinfo, String key, String value) {
        String[] extAttribs = cinfo.extAttribs;
        if (extAttribs == null) {
            extAttribs = new String[0];
        }
        List<String> list = new ArrayList<String>();
        int index = -1;
        for (int i = 0; i < extAttribs.length; i++) {
            String ckey = extAttribs[i].split("=")[0];
            if (ckey.equals(key)) {
                index = i;
                list.add(key + "=" + value);
            } else {
                list.add(extAttribs[i]);
            }
        }
        if (index == -1) {
            list.add(key + "=" + value);
        }
        cinfo.extAttribs = list.toArray(new String[0]);
    }
    
    /**
     * 获取cs全局变量值
     * @return
     */
    public static Map<String, String> getGlobalKeyValues() {
        Map<String, String> values = new HashMap<String, String>();
        for (int i = 0; i < GLOBAL_VAR_KEYS.length; i++) {
            values.put(GLOBAL_VAR_KEYS[i], getVariablebyKey(GLOBAL_VAR_KEYS[i]));
        }
        
        return values;
    }
    
    /**
     * 获取BS全局变量值
     * @param userName
     * @return
     */
    public static Map<String, String> getGlobalKeyValues(String userName) {
        Map<String, String> values = new HashMap<String, String>();
        for (int i = 0; i < GLOBAL_VAR_KEYS.length; i++) {
            values.put(GLOBAL_VAR_KEYS[i], getVariablebyKey(userName, GLOBAL_VAR_KEYS[i]));
        }
        
        return values;
    }
 
    /**
     * BS环境获取变量值的方法
     * @param userName
     * @param key
     * @return
     */
    public static String getVariablebyKey(String userName, String key)
    {
        if(getUserInvocation(userName) == null)
            return "";
        if(getUserInvocation(userName).extAttribs == null)
            return "";
        String exAttrs[] = getUserInvocation(userName).extAttribs;
        for(int i = 0; i < exAttrs.length; i++)
            if(exAttrs[i] != null && exAttrs[i].indexOf((new StringBuilder(String.valueOf(key))).append("=").toString()) == 0)
                return exAttrs[i].split("=").length > 1 ? exAttrs[i].split("=")[1] : "";
 
        return "";
    }
    
    public static void putGlobalVariable(String userName, String key, String value) {
        if(getUserInvocation(userName) == null) {
            return;
        }
        VCIInvocationInfo cinfo = getUserInvocation(userName);
        putGlobalVariable(cinfo, key, value);
    }
    
    /**
     * 清空非全局变量的值
     */
    public static void cleanOtherGlobalVariable() {
        if(getInvocationInfo() == null) {
            return;
        }
        if (getInvocationInfo().extAttribs == null 
                || getInvocationInfo().extAttribs.length == 0) {
            return;
        }
        VCIInvocationInfo cinfo = getInvocationInfo();
        cleanOtherGloablAttribute(cinfo);
    }
    
    /**
     * 清空非全局变量的值
     * @param userName
     */
    public static void cleanOtherGlobalVariable(String userName) {
        if(getUserInvocation(userName) == null) {
            return;
        }
        if (getUserInvocation(userName).extAttribs == null
                || getUserInvocation(userName).extAttribs.length == 0) {
            return;
        }
        VCIInvocationInfo cinfo = getUserInvocation(userName);
        cleanOtherGloablAttribute(cinfo);
    }
    
    private static void cleanOtherGloablAttribute(VCIInvocationInfo info) {
        List<String> list = new ArrayList<String>();
        for (String key : info.extAttribs) {
            String[] keys = key.split("=");
            if (keys.length == 0) {
                continue;
            }
            if (isGlobalVarKey(keys[0])) {
                list.add(key);
            }
        }
        info.extAttribs = list.toArray(new String[0]);
    }
    
    /**
     * 获取用户ID
     * @return
     */
    public static String getUserId() {
        return getVariablebyKey("CURRENTUSER.ID");
    }
    
    /**
     * 获取用户ID
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getUserId(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.ID");
    }
    
    /**
     * 获取当前登录用户的用户名
     * @return
     */
    public static String getUserName() {
        return getVariablebyKey("CURRENTUSER.NAME");
    }
    
    /**
     * 获取当前登录用户的用户名
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getUserName(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.NAME");
    }
    
    /**
     * 获取当前用户的密级
     * @return
     */
    public static String getUserSecret() {
        return getVariablebyKey("CURRENTUSER.SECRETGRADE");
    }
    
    /**
     * 获取当前用户的密级
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getUserSecret(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.SECRETGRADE");
    }
    
    /**
     * 获取当前用户的email地址
     * @return
     */
    public static String getUserEmail() {
        return getVariablebyKey("CURRENTUSER.EMAIL");
    }
    
    /**
     * 获取当前用户的email地址
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getUserEmail(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.EMAIL");
    }
    
    /**
     * 获取当前用户所在组的组号
     * @return
     */
    public static String getUserGroupNum() {
        return getVariablebyKey("CURRENTUSER.GROUPNUM");
    }
    
    /**
     * 获取当前用户所在组的组号
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getUserGroupNum(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.GROUPNUM");
    }
    
    /**
     * 获取登录用户使用的计算机机器密级
     * @return
     */
    public static String getMachineSecret() {
        return getVariablebyKey("CURRENTMACHINE.SECRET");
    }
    
    /**
     * 获取登录用户使用的计算机机器密级
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getMachineSecret(String userName) {
        return getVariablebyKey(userName, "CURRENTMACHINE.SECRET");
    }
    
    /**
     * 获取系统的密级开关值,true为打开,false为关闭
     * @return
     */
    public static String getIpSecretSwitch() {
        return getVariablebyKey("IPSECRETSWITCH");
    }
    
    /**
     * 获取系统的密级开关值,true为打开,false为关闭
     * @param userName,当前登录的用户名
     * @return
     */
    public static String getIpSecretSwitch(String userName) {
        return getVariablebyKey(userName, "IPSECRETSWITCH");
    }
    
    /**
     * 获取系统的用户密级开关值,on或true为打开,off或false为关闭
     * @param userName 当前登录的用户名
     * @return
     */
    public static String getUserSecretSwith(){
        return getVariablebyKey("USERSECRETSWITCH");
    }
    
    /**
     * 获取系统的用户密级开关值,on或true为打开,off或false为关闭
     * @param userName 当前登录的用户名
     * @return
     */
    public static String getUserSecretSwith(String userName){
        return getVariablebyKey(userName, "USERSECRETSWITCH");
    }
    
    /**
     * 获取当前用户部门名称
     * @return
     */
    public static String getGroupName() {
        return getVariablebyKey("CURRENTUSER.GROUPNAME");
    }
    
    /**
     * 获取当前用户部门名称
     * @param userName
     * @return
     */
    public static String getGroupName(String userName) {
        return getVariablebyKey(userName, "CURRENTUSER.GROUPNAME");
    }
    
    /**
     * 返回客户端最后一次请求服务端的时间
     * @return
     */
    public static String getClientLastRequestTS(){
        return getVariablebyKey(CLIENT_LAST_REQUEST_TS);
    }
    
    /**
     * 返回客户端最后一次请求服务端的时间
     * @param userName
     * @return
     */
    public static String getClientLastRequestTS(String userName){
        return getVariablebyKey(userName, CLIENT_LAST_REQUEST_TS);
    }
    
}