|
@@ -12,7 +12,9 @@ import com.rf.AIquantum.dialogue.dao.model.DialogueEntity;
|
|
|
import com.rf.AIquantum.dialogue.service.ChatHistoryService;
|
|
|
import com.rf.AIquantum.dialogue.service.DialogueService;
|
|
|
import com.rf.AIquantum.filter.JwtIgnore;
|
|
|
+import com.rf.AIquantum.user.dao.model.TempUserEntity;
|
|
|
import com.rf.AIquantum.user.dao.model.UserEntity;
|
|
|
+import com.rf.AIquantum.user.service.TempUserService;
|
|
|
import com.rf.AIquantum.user.service.UserService;
|
|
|
import com.rf.AIquantum.utils.*;
|
|
|
import io.swagger.annotations.Api;
|
|
@@ -71,14 +73,29 @@ public class DialogueController extends BaseController {
|
|
|
@Autowired
|
|
|
private SseEmitterService sseEmitterService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private TempUserService tempUserService;
|
|
|
+
|
|
|
@PostMapping("/saveChat")
|
|
|
@JwtIgnore
|
|
|
@ApiOperation(value = "保存对话", notes = "参数包括:phone:手机号, dialogueId:对话id(为空时是新建对话), content:消息内容,image:图片(可以为空)")
|
|
|
public Result saveChat(MultipartFile image, String phone, String dialogueId, String content) {
|
|
|
- UserEntity user = this.userService.findUserByPhone(phone);
|
|
|
- if (user == null) {
|
|
|
- return fail(null, "用户不存在");
|
|
|
+ TempUserEntity tempUser = this.tempUserService.findByIp(phone);
|
|
|
+ if (tempUser != null) {
|
|
|
+ if (tempUser.getRemainingCount() <= 0) {
|
|
|
+ return fail("体验次数已用完,请注册新账号!");
|
|
|
+ } else {
|
|
|
+ tempUser.setRemainingCount(tempUser.getRemainingCount() - 1);
|
|
|
+ this.tempUserService.save(tempUser);
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ UserEntity user = this.userService.findUserByPhone(phone);
|
|
|
+ if (user == null) {
|
|
|
+ return fail(null, "用户不存在");
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
String imageUrl = "";
|
|
|
if (image != null) {
|
|
|
if (!image.isEmpty()) {
|
|
@@ -220,17 +237,17 @@ public class DialogueController extends BaseController {
|
|
|
System.out.println("line==" + line);
|
|
|
JSONObject jsonObject = null;
|
|
|
try {
|
|
|
- if(StringUtils.isNotEmpty(line)){
|
|
|
- jsonObject=JSONObject.parseObject(line);
|
|
|
+ if (StringUtils.isNotEmpty(line)) {
|
|
|
+ jsonObject = JSONObject.parseObject(line);
|
|
|
}
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
- log.error(line+"json解析失败",e);
|
|
|
+ log.error(line + "json解析失败", e);
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
String event = jsonObject.getString("event");
|
|
|
- if(event.equals("error")){
|
|
|
+ if (event.equals("error")) {
|
|
|
if (flag.equals("think")) {
|
|
|
stringBuilder.append("</").append(flag).append(">");
|
|
|
}
|
|
@@ -239,22 +256,22 @@ public class DialogueController extends BaseController {
|
|
|
String data = jsonObject.getString("data");
|
|
|
if (StringUtils.isNotEmpty(data)) {
|
|
|
stringBuilder.append(data);
|
|
|
- if(data.contains("</think>")){
|
|
|
+ if (data.contains("</think>")) {
|
|
|
flag = "text";
|
|
|
- data = data.replace("</think>","");
|
|
|
+ data = data.replace("</think>", "");
|
|
|
}
|
|
|
- if(data.contains("<think>")){
|
|
|
- data = data.replace("<think>","");
|
|
|
+ if (data.contains("<think>")) {
|
|
|
+ data = data.replace("<think>", "");
|
|
|
}
|
|
|
sseResultDataDto.setContent(data);
|
|
|
- log.info("发送消息:{}",sseResultDataDto);
|
|
|
+ log.info("发送消息:{}", sseResultDataDto);
|
|
|
sseEmitterService.sendMessage(dialogueId, sseResultDataDto);
|
|
|
}
|
|
|
Thread.sleep(5);
|
|
|
}
|
|
|
} catch (InterruptedException e) {
|
|
|
throw new RuntimeException(e);
|
|
|
- }finally {
|
|
|
+ } finally {
|
|
|
bufferedSource.close();
|
|
|
}
|
|
|
}
|