|
1 | 1 | package com.crossoverjie.cim.client.service.impl;
|
2 | 2 |
|
3 |
| -import com.alibaba.fastjson.JSON; |
4 | 3 | import com.crossoverjie.cim.client.client.CIMClient;
|
5 | 4 | import com.crossoverjie.cim.client.config.AppConfiguration;
|
6 |
| -import com.crossoverjie.cim.client.service.MsgHandle; |
7 |
| -import com.crossoverjie.cim.client.service.MsgLogger; |
8 |
| -import com.crossoverjie.cim.client.service.RouteRequest; |
| 5 | +import com.crossoverjie.cim.client.service.*; |
9 | 6 | import com.crossoverjie.cim.client.vo.req.GroupReqVO;
|
10 | 7 | import com.crossoverjie.cim.client.vo.req.P2PReqVO;
|
11 | 8 | import com.crossoverjie.cim.client.vo.res.OnlineUsersResVO;
|
12 | 9 | import com.crossoverjie.cim.common.data.construct.TrieTree;
|
13 |
| -import com.crossoverjie.cim.common.enums.SystemCommandEnumType; |
| 10 | +import com.crossoverjie.cim.common.enums.SystemCommandEnum; |
14 | 11 | import com.crossoverjie.cim.common.util.StringUtil;
|
15 | 12 | import org.slf4j.Logger;
|
16 | 13 | import org.slf4j.LoggerFactory;
|
@@ -49,7 +46,10 @@ public class MsgHandler implements MsgHandle {
|
49 | 46 | private MsgLogger msgLogger;
|
50 | 47 |
|
51 | 48 | @Autowired
|
52 |
| - private ClientInfo clientInfo ; |
| 49 | + private ClientInfo clientInfo; |
| 50 | + |
| 51 | + @Autowired |
| 52 | + private InnerCommandContext innerCommandContext ; |
53 | 53 |
|
54 | 54 | private boolean aiModel = false;
|
55 | 55 |
|
@@ -130,42 +130,10 @@ public boolean checkMsg(String msg) {
|
130 | 130 | @Override
|
131 | 131 | public boolean innerCommand(String msg) {
|
132 | 132 |
|
133 |
| - // TODO: 2019-01-22 判断逻辑过多,需要重构。 |
134 | 133 | if (msg.startsWith(":")) {
|
135 |
| - Map<String, String> allStatusCode = SystemCommandEnumType.getAllStatusCode(); |
136 |
| - |
137 |
| - if (SystemCommandEnumType.QUIT.getCommandType().trim().equals(msg)) { |
138 |
| - //关闭系统 |
139 |
| - shutdown(); |
140 |
| - } else if (SystemCommandEnumType.ALL.getCommandType().trim().equals(msg)) { |
141 |
| - printAllCommand(allStatusCode); |
142 |
| - |
143 |
| - } else if (SystemCommandEnumType.ONLINE_USER.getCommandType().toLowerCase().trim().equals(msg.toLowerCase())) { |
144 |
| - //打印在线用户 |
145 |
| - printOnlineUsers(); |
146 |
| - |
147 |
| - } else if (msg.startsWith(SystemCommandEnumType.QUERY.getCommandType().trim() + " ")) { |
148 |
| - //查询聊天记录 |
149 |
| - queryChatHistory(msg); |
150 |
| - } else if (SystemCommandEnumType.AI.getCommandType().trim().equals(msg.toLowerCase())) { |
151 |
| - //开启 AI 模式 |
152 |
| - aiModel = true; |
153 |
| - System.out.println("\033[31;4m" + "Hello,我是估值两亿的 AI 机器人!" + "\033[0m"); |
154 |
| - } else if (SystemCommandEnumType.QAI.getCommandType().trim().equals(msg.toLowerCase())) { |
155 |
| - //关闭 AI 模式 |
156 |
| - aiModel = false; |
157 |
| - System.out.println("\033[31;4m" + "。゚(゚´ω`゚)゚。 AI 下线了!" + "\033[0m"); |
158 |
| - } else if (msg.startsWith(SystemCommandEnumType.PREFIX.getCommandType().trim() + " ")) { |
159 |
| - //模糊匹配 |
160 |
| - prefixSearch(msg); |
161 |
| - } else if (SystemCommandEnumType.INFO.getCommandType().trim().equals(msg.toLowerCase())) { |
162 |
| - LOGGER.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); |
163 |
| - LOGGER.info("client info=[{}]", JSON.toJSONString(clientInfo.get())); |
164 |
| - LOGGER.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); |
165 |
| - |
166 |
| - } else { |
167 |
| - printAllCommand(allStatusCode); |
168 |
| - } |
| 134 | + |
| 135 | + InnerCommand instance = innerCommandContext.getInstance(msg); |
| 136 | + instance.process(msg) ; |
169 | 137 |
|
170 | 138 | return true;
|
171 | 139 |
|
@@ -253,6 +221,16 @@ public void shutdown() {
|
253 | 221 | System.exit(0);
|
254 | 222 | }
|
255 | 223 |
|
| 224 | + @Override |
| 225 | + public void openAIModel() { |
| 226 | + aiModel = true; |
| 227 | + } |
| 228 | + |
| 229 | + @Override |
| 230 | + public void closeAIModel() { |
| 231 | + aiModel = false ; |
| 232 | + } |
| 233 | + |
256 | 234 | private void printAllCommand(Map<String, String> allStatusCode) {
|
257 | 235 | LOGGER.warn("====================================");
|
258 | 236 | for (Map.Entry<String, String> stringStringEntry : allStatusCode.entrySet()) {
|
|
0 commit comments