ChatHistoryController.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.rf.AIquantum.dialogue.rest;
  2. import cn.hutool.core.date.DateUtil;
  3. import com.alibaba.fastjson.JSONArray;
  4. import com.alibaba.fastjson.JSONObject;
  5. import com.auth0.jwt.interfaces.DecodedJWT;
  6. import com.rf.AIquantum.base.rest.BaseController;
  7. import com.rf.AIquantum.dialogue.dao.model.ChatHistoryEntity;
  8. import com.rf.AIquantum.dialogue.dao.model.DialogueEntity;
  9. import com.rf.AIquantum.dialogue.service.ChatHistoryService;
  10. import com.rf.AIquantum.user.dao.model.UserEntity;
  11. import com.rf.AIquantum.user.service.UserService;
  12. import com.rf.AIquantum.utils.Constant;
  13. import com.rf.AIquantum.utils.JWTUtil;
  14. import com.rf.AIquantum.utils.Result;
  15. import io.swagger.annotations.Api;
  16. import io.swagger.annotations.ApiOperation;
  17. import org.apache.commons.lang.StringUtils;
  18. import org.springframework.beans.factory.annotation.Autowired;
  19. import org.springframework.data.domain.Page;
  20. import org.springframework.util.DigestUtils;
  21. import org.springframework.web.bind.annotation.*;
  22. import javax.servlet.http.HttpServletRequest;
  23. import javax.servlet.http.HttpServletResponse;
  24. import java.io.File;
  25. import java.io.UnsupportedEncodingException;
  26. import java.nio.charset.StandardCharsets;
  27. import java.util.Date;
  28. import java.util.List;
  29. import static com.rf.AIquantum.dialogue.rest.DialogueController.HttpClientChat;
  30. /**
  31. * @Description: 聊天记录相关接口
  32. * @Author: zsy
  33. * @Date: 2024/12/4
  34. */
  35. @RestController
  36. @RequestMapping("/chat")
  37. @Api(tags = "聊天记录相关接口")
  38. public class ChatHistoryController extends BaseController {
  39. @Autowired
  40. private ChatHistoryService chatHistoryService;
  41. @GetMapping("/findChats")
  42. @ApiOperation(value = "查询聊天记录",notes = "参数包括:pageNum:页码, pageSize:数量, dialogueId:对话id")
  43. public Result findChatHistorys(@RequestParam int pageNum, @RequestParam int pageSize, @RequestParam String dialogueId){
  44. Page<ChatHistoryEntity> chatHistoryEntities = chatHistoryService.findByDialogueIdAndStatus(pageNum,pageSize,dialogueId,1);
  45. return success(chatHistoryEntities);
  46. }
  47. @PostMapping("/updateChatHistory")
  48. @ApiOperation(value = "修改聊天记录信息(点赞、点踩)",notes = "ChatHistory对象,点赞时只需将endorse的值改为2;点赞时只需将endorse的值改为3,如果有反馈意见放到feedback字段;endorse:1:未评价(默认);2:赞同;3:不赞同")
  49. public Result updateChatHistory(@RequestBody String json) {
  50. ChatHistoryEntity chatHistoryEntity = JSONObject.parseObject(json,ChatHistoryEntity.class);
  51. chatHistoryEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
  52. this.chatHistoryService.save(chatHistoryEntity);
  53. return success("修改成功");
  54. }
  55. @PostMapping("/refresh")
  56. @ApiOperation(value = "刷新某条回答",notes = "ChatHistory对象")
  57. public Result refresh(@RequestBody String json) throws UnsupportedEncodingException {
  58. ChatHistoryEntity chatHistoryEntity = JSONObject.parseObject(json,ChatHistoryEntity.class);
  59. String dialogueId = chatHistoryEntity.getDialogueId();
  60. String createTime = chatHistoryEntity.getCreateTime();
  61. this.chatHistoryService.deleteByDialogueIdAndCreateTime(dialogueId,createTime);
  62. //调用模型相关操作
  63. List<ChatHistoryEntity> chatHistoryEntities = this.chatHistoryService.findChatHistoryByDialogueIdAndStatus(dialogueId);
  64. JSONArray messages = new JSONArray();
  65. for (ChatHistoryEntity chatHistory : chatHistoryEntities) {
  66. JSONArray contents = new JSONArray();
  67. JSONObject jsonText = new JSONObject();
  68. jsonText.put("type","text");
  69. jsonText.put("text",chatHistory.getContent());
  70. if (chatHistory.getImage() != null && !chatHistory.getImage().equals("")) {
  71. JSONObject jsonImage = new JSONObject();
  72. jsonImage.put("type","image_url");
  73. JSONObject jsonUrl = new JSONObject();
  74. jsonUrl.put("url",chatHistory.getImage());
  75. jsonImage.put("image_url",jsonUrl);
  76. contents.add(jsonImage);
  77. }
  78. contents.add(jsonText);
  79. JSONObject jsonRole = new JSONObject();
  80. jsonRole.put("role",chatHistory.getRole());
  81. jsonRole.put("content",contents);
  82. messages.add(jsonRole);
  83. }
  84. JSONObject jsonChat = new JSONObject();
  85. jsonChat.put("messages",messages);
  86. String url = Constant.INVOKE_IP_PROT + Constant.CHAT_PATH;
  87. String data = HttpClientChat(jsonChat,url);
  88. JSONObject jsonSystem = JSONObject.parseObject(data);
  89. if (jsonSystem == null || !jsonSystem.containsKey("response")) {
  90. return fail("", "模型服务内部错误");
  91. }
  92. String content = jsonSystem.getString("response");
  93. chatHistoryEntity = new ChatHistoryEntity();
  94. chatHistoryEntity.setDialogueId(dialogueId);
  95. chatHistoryEntity.setRole("system");
  96. chatHistoryEntity.setContent(content);
  97. chatHistoryEntity.setStatus(1);
  98. chatHistoryEntity.setEndorse(1);
  99. chatHistoryEntity.setCreateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
  100. chatHistoryEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
  101. chatHistoryEntity = this.chatHistoryService.save(chatHistoryEntity);
  102. return success(chatHistoryEntity);
  103. }
  104. @GetMapping("/clearChats")
  105. @ApiOperation(value = "清空聊天记录",notes = "参数包括:dialogueId:对话id")
  106. public Result clearChats(@RequestParam String dialogueId){
  107. this.chatHistoryService.deleteByDialogueId(dialogueId);
  108. return success();
  109. }
  110. @PostMapping("/exportPdf")
  111. @ApiOperation(value = "导出PDF")
  112. public String exportPdf(@RequestBody String json, HttpServletResponse response) {
  113. List<ChatHistoryEntity> chatHistoryEntityList = JSONArray.parseArray(json,ChatHistoryEntity.class);
  114. if (chatHistoryEntityList.size() > 0) {
  115. return "导出内容为空";
  116. /*UserRecordEntity userRecordEntity = this.userRecordService.getUserRecordById(id);
  117. if (userRecordEntity == null) {
  118. return "该记录异常,下载失败";
  119. }
  120. String PDFPath = generatePDFRecord(userRecordEntity, "pdf");
  121. if (PDFPath.equals("false")) {
  122. return "报告版本较早,暂无法下载";
  123. }
  124. // List<String> htmlFilePathList = new ArrayList<>();
  125. // htmlFilePathList.add(PDFPath);
  126. //
  127. // //生成PDF测试记录
  128. // try {
  129. // html2pdf(htmlFilePathList);
  130. // } catch (Exception e) {
  131. // log.error("生成测试文件失败" + e.getMessage());
  132. // e.printStackTrace();
  133. // return "下载失败";
  134. // }
  135. // String[] split = userRecordEntity.getFileName().split("/");
  136. // String fileName = split[split.length - 1];
  137. // String PDFName = fileName.replace(".xlsx", ".pdf");
  138. //下载PDF文件
  139. File z = new File("./h2p/export_pdf/PDFReport/" + PDFPath);
  140. if (!z.exists()) return "下载失败";
  141. try {
  142. FileUtil.downloadFile(response, z, PDFPath, true);
  143. return "下载成功";
  144. } catch (UnsupportedEncodingException e) {
  145. e.printStackTrace();
  146. return "下载失败";
  147. }*/
  148. }else {
  149. return "导出内容为空";
  150. }
  151. }
  152. }