HandlerThread.java 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. package com.dashitech.callcenter.socket;
  2. import com.dashitech.businessdata.dao.*;
  3. import com.dashitech.businessdata.entity.CallLogEntity;
  4. import com.dashitech.businessdata.entity.CallRecordEntity;
  5. import com.dashitech.businessdata.entity.DepartmentEntity;
  6. import com.dashitech.businessdata.entity.HospitalConfig;
  7. import com.dashitech.callcenter.webSocket.service.PhoneWebSocket;
  8. import com.dashitech.hsms.dao.IHsmsCallLogDAO;
  9. import com.dashitech.hsms.dao.IHsmsDepartmentDAO;
  10. import com.dashitech.hsms.entity.HsmsCallLogEntity;
  11. import com.dashitech.hsms.entity.HsmsDepartmentEntity;
  12. import com.dashitech.utils.DateUtil2;
  13. import com.dashitech.utils.JsonUtil;
  14. import com.dashitech.utils.PropertiesUtil;
  15. import com.fasterxml.jackson.databind.ObjectMapper;
  16. import net.sf.json.JSONObject;
  17. import org.apache.commons.lang.StringUtils;
  18. import org.apache.commons.logging.Log;
  19. import org.apache.commons.logging.LogFactory;
  20. import org.springframework.beans.factory.annotation.Autowired;
  21. import org.springframework.stereotype.Service;
  22. import java.io.DataInputStream;
  23. import java.io.DataOutputStream;
  24. import java.net.Socket;
  25. import java.text.ParseException;
  26. import java.text.SimpleDateFormat;
  27. import java.util.*;
  28. /**
  29. * Created by chi on 2020/8/6.
  30. */
  31. @Service
  32. public class HandlerThread {
  33. private static Log log = LogFactory.getLog(HandlerThread.class);
  34. // 这里使用静态,让 service 属于类
  35. private static ICallLogDAO callLogDAO;
  36. private static ICallRecordDAO callRecordDAO;
  37. private static IHsmsCallLogDAO hsmsCallLogDAO;
  38. @Autowired
  39. public void setHsmsCallRecordDAO(IHsmsCallLogDAO hsmsCallLogDAO) {
  40. HandlerThread.hsmsCallLogDAO = hsmsCallLogDAO;
  41. }
  42. @Autowired
  43. public void setCallRecordDAO(ICallRecordDAO callRecordDAO) {
  44. HandlerThread.callRecordDAO = callRecordDAO;
  45. }
  46. @Autowired
  47. public void setCallLogDAO(ICallLogDAO callLogDAO) {
  48. HandlerThread.callLogDAO = callLogDAO;
  49. }
  50. private static IDictionaryDAO dictionaryDAO;
  51. @Autowired
  52. public void setDictionaryDAO(IDictionaryDAO dictionaryDAO) {
  53. HandlerThread.dictionaryDAO = dictionaryDAO;
  54. }
  55. private static IDepartmentDAO departmentDAO;
  56. @Autowired
  57. public void setDepartmentDAO(IDepartmentDAO departmentDAO) {
  58. HandlerThread.departmentDAO = departmentDAO;
  59. }
  60. private static IHospitalConfigDAO hospitalConfigDAO;
  61. @Autowired
  62. public void setHospitalConfigDAO(IHospitalConfigDAO hospitalConfigDAO) {
  63. HandlerThread.hospitalConfigDAO = hospitalConfigDAO;
  64. }
  65. private static IHsmsDepartmentDAO hsmsDepartmentDAO;
  66. @Autowired
  67. public static void setHsmsDepartmentDAO(IHsmsDepartmentDAO hsmsDepartmentDAO) {
  68. HandlerThread.hsmsDepartmentDAO = hsmsDepartmentDAO;
  69. }
  70. private static String project;
  71. private static String projectMain;
  72. private static String recordNginxPath;
  73. private static String recordRegex;
  74. private Socket sc;
  75. private static Map<String,String> phoneMap = new HashMap<>();
  76. private static Map<String,CallLogEntity> phoneLog = new HashMap<>();
  77. private String his = "";
  78. private String serialNo = "";
  79. public HandlerThread() {
  80. }
  81. public HandlerThread(Socket client) {
  82. sc = client;
  83. }
  84. public void run() {
  85. DataInputStream input = null;
  86. DataOutputStream output = null;
  87. try {
  88. // sc.setSoTimeout(10000);
  89. input = new DataInputStream(sc.getInputStream());
  90. output = new DataOutputStream(sc.getOutputStream());
  91. String reset = "";
  92. //持续读取内部消息
  93. while (true) {
  94. // System.out.println("处理客户端数据:"+input.readUTF());
  95. // System.out.println("3333333333333333333333");
  96. //获取信息流长度
  97. byte[] b = new byte[4];
  98. reset = "keepalive";
  99. input.read(b);
  100. int count = bytes2Int(b);
  101. // System.out.println("count::"+count);
  102. //根据信息流长度获取信息流
  103. byte[] b1 = new byte[count];
  104. input.read(b1);
  105. //将信息流转换为String
  106. String data = new String(b1);
  107. System.out.println("data:"+data+"his"+his);
  108. if(project == null) {
  109. project = PropertiesUtil.getProperty("project");
  110. projectMain = PropertiesUtil.getProperty("project.main");
  111. recordNginxPath = PropertiesUtil.getProperty("db.hjzx.record.nginx");
  112. recordRegex = PropertiesUtil.getProperty("db.hjzx.record.path.regex");
  113. }
  114. if (data != null || !data.equals("")&&data.substring(0,1).equals("{")) {
  115. log.info("流程1:"+his);
  116. if (JsonUtil.toJSONObject(data).containsKey("channelStatusList")){
  117. List llist = JsonUtil.toJSONObject(data).optJSONArray("channelStatusList");
  118. JSONObject jsonObject = JsonUtil.toJSONObject(llist.get(0).toString());
  119. sendSocket(jsonObject,his);
  120. handleCallLog(jsonObject,his);
  121. reset = "channelstatus";
  122. }else if(JsonUtil.toJSONObject(data).containsKey("recordList")){
  123. saveCallLog(data,his);
  124. reset = "addrec";
  125. }
  126. }
  127. if (data != null && data.length() >= 10){
  128. log.info("流程2:"+his);
  129. String dataStr = "";
  130. if (reset.equals("addrec")){
  131. dataStr = "{\"cmd\":\""+reset+"\",\"error\":\"0\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
  132. }else{
  133. dataStr = "{\"cmd\":\""+reset+"\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
  134. }
  135. if (data.indexOf("loginreq") >= 0){
  136. //{"cmd":"loginreq","ipaddr":"192.168.25.37","serialNo":"21380501019804","recordNumber":4,"webport":80,"filestoretype":0}his
  137. if(JsonUtil.toJSONObject(data).containsKey("serialNo")){
  138. serialNo = JsonUtil.toJSONObject(data).getString("serialNo");
  139. }else{
  140. serialNo = JsonUtil.toJSONObject(data).getString("sernelNo");
  141. }
  142. // 设备 21040501017523 写死支持 院区1
  143. if(serialNo.equals("21040501017523")){
  144. his = "1";
  145. }else{
  146. //呼叫中心,以转运项目为主
  147. if("HSMS".equals(projectMain)) {
  148. his = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo);
  149. } else { //其它,以运维项目为主
  150. his = callLogDAO.selectSernelNo("sernelNo",serialNo);
  151. log.info("ITSM his查询:"+his);
  152. }
  153. }
  154. dataStr = "{\"cmd\":\"loginres\", \"error\":\"0\", \"timestamp\":\"" + (System.currentTimeMillis() / 1000) + "\"}";
  155. }
  156. System.out.println("redate>>"+dataStr+"his"+his);
  157. output.write(dataToBytes(dataStr));
  158. }
  159. }
  160. } catch (Exception e) {
  161. e.printStackTrace();
  162. System.out.println("服务器EOFException异常");
  163. } finally {
  164. if (output != null) {
  165. try {
  166. output.close();
  167. } catch (Exception e) {
  168. output = null;
  169. }
  170. }
  171. if (input != null) {
  172. try {
  173. input.close();
  174. } catch (Exception e) {
  175. input = null;
  176. }
  177. }
  178. if (sc != null) {
  179. try {
  180. sc.close();
  181. } catch (Exception e) {
  182. sc = null;
  183. }
  184. }
  185. }
  186. }
  187. /**
  188. * 将发送内容转换为byte数组
  189. * 需要注意:byte前面四位需要描述整个发送内容的长度(dataStr)
  190. *
  191. * @param dataStr
  192. */
  193. public byte[] dataToBytes(String dataStr) {
  194. //将int转换为byte数组
  195. byte[] lengthBytes = int2Bytes(dataStr.length());
  196. //将string转换为byte数组
  197. byte[] dataBytes = dataStr.getBytes();
  198. //最终发送的byte数组,int byte数组长度和string byte数组长度相加得到最终长度
  199. byte[] lengthAndDataBytes = new byte[(lengthBytes.length + dataBytes.length)];
  200. //将int byte数组四位加入到新byte数组中
  201. lengthAndDataBytes[0] = lengthBytes[0];
  202. lengthAndDataBytes[1] = lengthBytes[1];
  203. lengthAndDataBytes[2] = lengthBytes[2];
  204. lengthAndDataBytes[3] = lengthBytes[3];
  205. //将string byte数组四位加入到新byte数组中
  206. for (int index = 4; index < lengthAndDataBytes.length; index++) {
  207. lengthAndDataBytes[index] = dataBytes[index - 4];
  208. }
  209. return lengthAndDataBytes;
  210. }
  211. /**
  212. * byte数组转换为int
  213. *
  214. * @param bytes
  215. * @return
  216. */
  217. public static int bytes2Int(byte[] bytes) {
  218. //如果不与0xff进行按位与操作,转换结果将出错,有兴趣的同学可以试一下。
  219. int int1 = bytes[0] & 0xff;
  220. int int2 = (bytes[1] & 0xff) << 8;
  221. int int3 = (bytes[2] & 0xff) << 16;
  222. int int4 = (bytes[3] & 0xff) << 24;
  223. return int1 | int2 | int3 | int4;
  224. }
  225. /**
  226. * int 转换为 byte数组
  227. *
  228. * @param integer
  229. * @return
  230. */
  231. public static byte[] int2Bytes(int integer) {
  232. byte[] bytes = new byte[4];
  233. bytes[3] = (byte) ((byte) integer >> 24);
  234. bytes[2] = (byte) ((byte) integer >> 16);
  235. bytes[1] = (byte) ((byte) integer >> 8);
  236. bytes[0] = (byte) integer;
  237. return bytes;
  238. }
  239. /**
  240. * 发送弹屏socket,将电话号码返回过去
  241. * 201为通话中
  242. * 202为振铃
  243. *
  244. */
  245. public void sendSocket(JSONObject jsonObject,String his) {
  246. try {
  247. putPhoneMap("phone_num_port",his);
  248. if (jsonObject != null && jsonObject.containsKey("calldirection") && jsonObject.get("calldirection").toString().equals("1") || jsonObject.get("calldirection").toString() == "1") {
  249. if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("3") || jsonObject.get("phonestate").toString() == "3") {
  250. if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null) {
  251. Map rMap = new HashMap();
  252. //TODO 增加返回 uuid 并且保存通话记录数据
  253. if (jsonObject.containsKey("dtmfa") && jsonObject.get("dtmfa").toString() != null && !jsonObject.optString("dtmfa").toString().equals("")){
  254. rMap.put("phone", jsonObject.opt("dtmfa"));
  255. rMap.put("status", 201);
  256. rMap.put("callId",jsonObject.optString("uuid"));
  257. // //TODO 先保存通话记录,打通了的走这里
  258. log.info("先保存通话记录2:"+jsonObject.toString());
  259. CallLogEntity callLogEntity = getCallLog(jsonObject);
  260. if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) {
  261. callLogEntity.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime")));
  262. }
  263. saveItsmCallRecord(callLogEntity,jsonObject.optString("uuid"));
  264. saveHsmsCallLog(callLogEntity,jsonObject.optString("uuid"));
  265. }else {
  266. rMap.put("phone","");
  267. rMap.put("status", 201);
  268. }
  269. ObjectMapper objectMapper = new ObjectMapper();
  270. String json = objectMapper.writeValueAsString(rMap);
  271. PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json);
  272. }
  273. } else if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("4") || jsonObject.get("phonestate").toString() == "4") {
  274. Map rMap = new HashMap();
  275. rMap.put("msg","来电话啦!" );
  276. rMap.put("status", 202);
  277. ObjectMapper objectMapper = new ObjectMapper();
  278. String json = objectMapper.writeValueAsString(rMap);
  279. if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null){
  280. PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json);
  281. }
  282. }
  283. }
  284. } catch (Exception e) {
  285. e.printStackTrace();
  286. }
  287. }
  288. private void handleCallLog(JSONObject jsonObject,String his){
  289. if(jsonObject.get("phonestate").toString().equals("4")){
  290. // 主叫号码不等于空字符串,并且不等于座机号(通道号获得),即可判断为来电号码
  291. if(!jsonObject.get("dtmfa").toString().equals("") && !jsonObject.get("dtmfa").toString().equals(phoneMap.get(his+jsonObject.get("channel").toString()))){
  292. phoneLog.put(his+jsonObject.get("channel").toString(),getCallLog(jsonObject));
  293. }
  294. //如果phonestate 为零则表示话机为空闲状态,则保存通话记录
  295. }else if(jsonObject.get("phonestate").toString().equals("0")){
  296. CallLogEntity callLog = phoneLog.get(his+jsonObject.get("channel").toString());
  297. if (callLog!=null){
  298. if (jsonObject.containsKey("dtmfa")&& StringUtils.isNotEmpty(jsonObject.get("dtmfa").toString())&&!jsonObject.get("dtmfa").toString().equals("")&&!jsonObject.get("dtmfa").toString().equals(" ")){
  299. // 查询科室信息 并赋值
  300. getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
  301. }else {
  302. callLog.setCallDept("暂无");
  303. }
  304. callLog.setHosId(Integer.parseInt(his));
  305. // callLogDAO.save(callLog);
  306. log.info("先保存通话记录1:"+jsonObject.toString());
  307. //TODO 先保存通话记录,打不通的走这里
  308. if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) {
  309. callLog.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime")));
  310. }
  311. saveItsmCallRecord(callLog,jsonObject.optString("uuid"));
  312. saveHsmsCallLog(callLog,jsonObject.optString("uuid"));
  313. }
  314. }else if(jsonObject.get("phonestate").toString().equals("1")){
  315. phoneLog.put(his+jsonObject.get("channel").toString(),null);
  316. }else if(jsonObject.get("phonestate").toString().equals("3")){
  317. phoneLog.put(his+jsonObject.get("channel").toString(),null);
  318. }
  319. }
  320. /**
  321. * 将json转换为实体
  322. * 默认 已接未接为 未接
  323. * 默认 通话类型为 呼入
  324. * 默认 时间为 当前时间。
  325. * @param jsonObject
  326. * @return
  327. */
  328. private CallLogEntity getCallLog(JSONObject jsonObject){
  329. CallLogEntity callLog = new CallLogEntity();
  330. if (jsonObject.containsKey("channel")){
  331. callLog.setPhyIDA(jsonObject.get("channel").toString());
  332. }
  333. if (jsonObject.containsKey("dtmfa")) {
  334. callLog.setdTMFA(jsonObject.get("dtmfa").toString());
  335. getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
  336. }
  337. if (jsonObject.containsKey("dtmfb")){
  338. callLog.setdTMFB(jsonObject.get("dtmfb").toString());
  339. }
  340. callLog.setResponseTime(new Date());
  341. callLog.setCallState(0);
  342. callLog.setCallType(1);
  343. return callLog;
  344. }
  345. public void putPhoneMap(String key,String his){
  346. // List<DictionaryEntity> dictionaryEntityList = dictionaryDAO.selectDictionaryByKey(key);
  347. List<HospitalConfig> hospitalConfigList = hospitalConfigDAO.getHospitalConfigList(key,his);
  348. if (hospitalConfigList!=null&&hospitalConfigList.size()>0){
  349. for (HospitalConfig hospitalConfig:hospitalConfigList){
  350. phoneMap.put(his+hospitalConfig.getValue2(),hospitalConfig.getValue());
  351. }
  352. }
  353. }
  354. /**
  355. * 保存通话记录
  356. * @param message
  357. */
  358. public void saveCallLog(String message,String his){
  359. log.info(message);
  360. //TODO 修改通话记录数据;DTMFA DTMFB rstime
  361. if (JsonUtil.toJSONObject(message).containsKey("recordList")) {
  362. List list = JsonUtil.toJSONObject(message).optJSONArray("recordList");
  363. if (list!=null&&list.size()>0){
  364. JSONObject jsonObject = JsonUtil.toJSONObject(list.get(0).toString());
  365. CallLogEntity callLog = new CallLogEntity();
  366. if (jsonObject.containsKey("phyIDA")){
  367. callLog.setPhyIDA(jsonObject.get("phyIDA").toString());
  368. }
  369. if (jsonObject.containsKey("DTMFA")){
  370. callLog.setdTMFA(jsonObject.get("DTMFA").toString());
  371. getDeptByDTMFA(jsonObject.get("DTMFA").toString(), callLog);
  372. }
  373. if (jsonObject.containsKey("DTMFB")){
  374. callLog.setdTMFB(jsonObject.get("DTMFB").toString());
  375. }
  376. if (jsonObject.containsKey("rstime")){
  377. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  378. try {
  379. callLog.setResponseTime(sdf.parse(jsonObject.get("rstime").toString()));
  380. } catch (ParseException e) {
  381. e.printStackTrace();
  382. }
  383. }
  384. if (jsonObject.containsKey("longtime")){
  385. callLog.setLongTime(jsonObject.get("longtime").toString());
  386. }
  387. if (jsonObject.containsKey("path")){
  388. callLog.setPath(jsonObject.get("path").toString());
  389. }
  390. if(callLog.getPhyIDA() != null){
  391. // 判断为呼出(主叫号码等于分机号(通道号)为呼出)
  392. if(callLog.getdTMFA() != null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFA())){
  393. callLog.setCallType(0);
  394. // callLog.setCallState(1);
  395. // 判断为呼入(被叫号码等于分机号(通道号)为呼入)
  396. }else if(callLog.getdTMFB()!= null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFB())){
  397. callLog.setCallType(1);
  398. // callLog.setCallState(1);
  399. }else{//未知
  400. callLog.setCallType(2);
  401. }
  402. // callLog.setCallState(1);
  403. }
  404. //是否接电话,1接了,0未接
  405. if (jsonObject.get("rstime") != null && StringUtils.isNotEmpty(jsonObject.get("rstime").toString())){
  406. callLog.setCallState(1);
  407. }else {
  408. callLog.setCallState(0);
  409. }
  410. callLog.setHosId(Integer.parseInt(his));
  411. // callLogDAO.save(callLog);
  412. //TODO 根据配置文件开关,是否保存到ITSM的通话记录数据
  413. saveItsmCallRecord(callLog,null);
  414. saveHsmsCallLog(callLog,null);
  415. }
  416. }
  417. }
  418. private void getDeptByDTMFA(String phone,CallLogEntity callLog){
  419. try {
  420. if (StringUtils.isNotBlank(phone)){
  421. //给来电科室赋值
  422. String deptName = "";
  423. Long deptId = null;
  424. if("HSMS".equals(projectMain)) {
  425. HsmsDepartmentEntity dept = hsmsDepartmentDAO.getDeptByPhone(phone);
  426. deptName = dept.getDept();
  427. deptId = dept.getId();
  428. } else { //其它,以运维项目为主
  429. DepartmentEntity dept = departmentDAO.getDeptByPhone(phone);
  430. deptName = dept.getDept();
  431. deptId = dept.getId();
  432. }
  433. if (StringUtils.isNotBlank(deptName)) {
  434. callLog.setCallDept(deptName);
  435. } else {
  436. callLog.setCallDept("暂无");
  437. }
  438. if (deptId != null) {
  439. callLog.setCallDeptId(deptId);
  440. }
  441. } else {
  442. callLog.setCallDept("暂无");
  443. }
  444. }catch (Exception e){
  445. e.printStackTrace();
  446. }
  447. }
  448. /**
  449. * 根据配置文件开关,是否保存到ITSM的通话记录数据
  450. */
  451. private void saveItsmCallRecord(CallLogEntity callLog,String uuid) {
  452. try {
  453. if("ITSM".equals(project) || "ALL".equals(project)) {
  454. CallRecordEntity recordEntity = null;
  455. log.info("开始保存ITSM通话记录");
  456. String hosId = callLogDAO.selectSernelNo("sernelNo",serialNo);
  457. //TODO 根据uuid区分是:新增通话记录,还是修改附件的通话记录
  458. if(StringUtils.isNotEmpty(uuid)) { //新增
  459. Long id = callRecordDAO.selectIdByUuid(uuid);
  460. if(id == null) {
  461. recordEntity = new CallRecordEntity();
  462. recordEntity.setVersion(0);
  463. recordEntity.setCallAccept(uuid);
  464. recordEntity.setCallerIdNumber(callLog.getdTMFA());
  465. recordEntity.setDestinationNumber(callLog.getdTMFB());
  466. recordEntity.setCreatedTime(callLog.getResponseTime());
  467. recordEntity.setIsAnswered(callLog.getCallState());
  468. recordEntity.setCallTime("0");
  469. recordEntity.setOverTime(new Date());
  470. recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId));
  471. if(callLog.getCallType() != null && "0".equals(callLog.getCallType().toString())) {
  472. recordEntity.setCallType("1");
  473. }else if(callLog.getCallType() != null && "1".equals(callLog.getCallType().toString())) {
  474. recordEntity.setCallType("2");
  475. }
  476. recordEntity.setGateWay(callLog.getPhyIDA());
  477. callRecordDAO.save(recordEntity);
  478. log.info("新增ITSM临时通话记录完成");
  479. }else {
  480. log.info("已有ITSM临时通话记录,忽略此条uuid:"+uuid);
  481. }
  482. }else { //修改
  483. log.info("开始匹配ITSM临时通话记录");
  484. recordEntity = callRecordDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime());
  485. //TODO 根据【主叫、被叫、起始时间】判断是否查询到对应数据,来绑定附件,如果未匹配到,直接新增
  486. String newUUID = null;
  487. if(recordEntity != null) {
  488. log.info("匹配到ITSM临时通话记录!开始修改");
  489. newUUID = recordEntity.getCallAccept();
  490. }else {
  491. log.info("未匹配ITSM到临时通话记录!开始新增");
  492. recordEntity = new CallRecordEntity();
  493. newUUID = UUID.randomUUID().toString();
  494. }
  495. recordEntity.setCallAccept(newUUID);
  496. recordEntity.setVersion(0);
  497. recordEntity.setCallerIdNumber(callLog.getdTMFA());
  498. recordEntity.setDestinationNumber(callLog.getdTMFB());
  499. recordEntity.setCreatedTime(callLog.getResponseTime());
  500. recordEntity.setCallTime(callLog.getLongTime());
  501. recordEntity.setRecordingFileName(callLog.getPath());
  502. recordEntity.setIsAnswered(callLog.getCallState());
  503. //处理结束时间
  504. if(callLog.getResponseTime() != null && callLog.getLongTime() != null) {
  505. Date overTime = DateUtil2.addSeconds(callLog.getResponseTime(), Integer.valueOf(callLog.getLongTime()));
  506. recordEntity.setOverTime(overTime);
  507. }
  508. //院区
  509. recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId));
  510. //呼入呼出,其它
  511. if(callLog.getCallType() != null) {
  512. if("1".equals(callLog.getCallType().toString())) {
  513. recordEntity.setCallType("2");
  514. }else if("2".equals(callLog.getCallType().toString())) {
  515. recordEntity.setCallType("1");
  516. }else {
  517. recordEntity.setCallType("3");
  518. }
  519. }
  520. //处理录音地址
  521. if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) {
  522. String newPath = callLog.getPath();
  523. String[] arr = callLog.getPath().split(recordRegex);
  524. if (arr.length > 1) {
  525. newPath = recordNginxPath + arr[1];
  526. }
  527. recordEntity.setRecordingFileName(newPath);
  528. }else {
  529. log.info("ITSM callLog 保存没有路径path");
  530. return;
  531. }
  532. callRecordDAO.save(recordEntity);
  533. log.info("ITSM附件通话记录保存完成");
  534. }
  535. log.info("保存ITSM通话记录完成:"+recordEntity.getCallAccept());
  536. System.out.println("保存ITSM通话记录完成:"+recordEntity.getCallAccept());
  537. }
  538. } catch (Exception ex) {
  539. ex.printStackTrace();
  540. }
  541. }
  542. private void saveHsmsCallLog(CallLogEntity callLog,String uuid) {
  543. log.info("开始保存HSMS通话记录");
  544. log.info(callLog);
  545. HsmsCallLogEntity hsmsCallLog = null;
  546. try {
  547. if("HSMS".equals(project) || "ALL".equals(project)) {
  548. String hosId = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo);
  549. if(StringUtils.isNotEmpty(uuid)) {
  550. Long id = hsmsCallLogDAO.selectIdByUuid(uuid);
  551. if(id == null) {
  552. hsmsCallLog = new HsmsCallLogEntity();
  553. copyCallLog(callLog,hsmsCallLog);
  554. hsmsCallLog.setVersion(0);
  555. hsmsCallLog.setCallAccept(uuid);
  556. hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId));
  557. hsmsCallLogDAO.save(hsmsCallLog);
  558. log.info("新增HSMS临时通话记录完成");
  559. }else {
  560. log.info("已有HSMS临时通话记录,忽略此条uuid:"+uuid);
  561. }
  562. }else {
  563. log.info("开始匹配HSMS临时通话记录");
  564. hsmsCallLog = hsmsCallLogDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime());
  565. if(hsmsCallLog == null) { //新增
  566. log.info("HSMS未匹配到,开始新增");
  567. hsmsCallLog = new HsmsCallLogEntity();
  568. callLog.setVersion(0);
  569. hsmsCallLog.setCallAccept(UUID.randomUUID().toString());
  570. }
  571. copyCallLog(callLog,hsmsCallLog);
  572. hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId));
  573. if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) {
  574. // String newPath = callLog.getPath();
  575. // String[] arr = callLog.getPath().split(recordRegex);
  576. // if (arr.length > 1) {
  577. // newPath = recordNginxPath + arr[1];
  578. // }
  579. // hsmsCallLog.setPath(newPath);
  580. }else {
  581. log.info("HSMS callLog 保存没有路径path");
  582. return;
  583. }
  584. hsmsCallLogDAO.save(hsmsCallLog);
  585. log.info("保存HSMS通话记录完成!");
  586. }
  587. log.info("保存HSMS通话记录完成:"+hsmsCallLog.getCallAccept());
  588. }
  589. } catch (Exception ex) {
  590. ex.printStackTrace();
  591. }
  592. }
  593. private HsmsCallLogEntity copyCallLog(CallLogEntity callLog,HsmsCallLogEntity hsmsCallLog) {
  594. hsmsCallLog.setVersion(callLog.getVersion());
  595. hsmsCallLog.setHosId(callLog.getHosId());
  596. hsmsCallLog.setCallDept(callLog.getCallDept());
  597. hsmsCallLog.setCallDeptId(callLog.getCallDeptId());
  598. hsmsCallLog.setPhyIDA(callLog.getPhyIDA());
  599. hsmsCallLog.setdTMFA(callLog.getdTMFA());
  600. hsmsCallLog.setdTMFB(callLog.getdTMFB());
  601. hsmsCallLog.setResponseTime(callLog.getResponseTime());
  602. hsmsCallLog.setLongTime(callLog.getLongTime());
  603. hsmsCallLog.setPath(callLog.getPath());
  604. hsmsCallLog.setCallType(callLog.getCallType());
  605. hsmsCallLog.setCallState(callLog.getCallState());
  606. return hsmsCallLog;
  607. }
  608. public static void main(String[] args) {
  609. System.out.println(System.currentTimeMillis() / 1000);
  610. }
  611. }