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
package com.vci.server.mw;
 
import com.vci.corba.common.data.VCIInvocationInfo;
 
public class ServerContextVariable {
    private static VCIInvocationInfo _vcii = null;
 
    public static void setInvocationInfo(VCIInvocationInfo vcii) {
        ServerContextVariable._vcii = vcii;
    }
 
    /**
     * 返回与客户端(会话)上下文相关的 VCIInvocationInfo
     * <p>
     * 同时兼容的富客户端、WEB客户端调用,前提条件:必须登录是登录后调用生效
     * </p>
     * 
     * @return
     */
    public static VCIInvocationInfo getInvocationInfo() {
 
        return _vcii;
    }
 
    /**
     * 获取客户端登录IP
     * 
     * @return
     */
    public static String getClientIp() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return info.clientIPInfo;
    }
 
    /**
     * 获取客户端登录机器名
     * 
     * @return
     */
    public static String getClientMachine() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return info.clientMachine;
    }
 
    /**
     * 获取客户端登录机器的操作系统
     * 
     * @return
     */
    public static String getClientOS() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return info.clientOS;
    }
 
    public static String getClientOSUser() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return info.clientOSUser;
    }
 
    /**
     * 获取全局变量的值
     * 
     * @param info
     * @param key
     * @return
     */
    public static String getVariablebyKey(VCIInvocationInfo info, String key) {
        String exAttrs[] = info.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 "";
    }
 
    /**
     * 获取全局变量的值
     * 
     * @param key
     * @return
     */
    public static String getVariablebyKey(String key) {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null)
            return "";
        String exAttrs[] = info.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 "";
    }
 
    /**
     * 获取用户ID
     * 
     * @return
     */
    public static String getUserId() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.ID");
    }
 
    /**
     * 获取当前登录用户的用户名
     * 
     * @return
     */
    public static String getUserName() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.NAME");
    }
 
    /**
     * 获取当前用户的密级
     * 
     * @return
     */
    public static String getUserSecret() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.SECRETGRADE");
    }
 
    /**
     * 获取当前用户的email地址
     * 
     * @return
     */
    public static String getUserEmail() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.EMAIL");
    }
 
    /**
     * 获取当前用户所在组的组号
     * 
     * @return
     */
    public static String getUserGroupNum() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.GROUPNUM");
    }
 
    /**
     * 获取登录用户使用的计算机机器密级
     * 
     * @return
     */
    public static String getMachineSecret() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTMACHINE.SECRET");
    }
 
    /**
     * 获取系统的密级开关值,on为打开,off为关闭
     * 
     * @return
     */
    public static String getIpSecretSwitch() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "IPSECRETSWITCH");
    }
 
    /**
     * 获取系统的用户密级开关值,on为打开,off为关闭
     * 
     * @param userName 当前登录的用户名
     * @return
     */
    public static String getUserSecretSwith() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "USERSECRETSWITCH");
    }
 
    /**
     * 获取用户部门名称
     * 
     * @return
     */
    public static String getGroupName() {
        VCIInvocationInfo info = getInvocationInfo();
        if (info == null) {
            return "";
        }
        return getVariablebyKey(info, "CURRENTUSER.GROUPNAME");
    }
}