submit_api_chat_logic.go 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. package chatrecords
  2. import (
  3. "bufio"
  4. "bytes"
  5. "context"
  6. "encoding/json"
  7. "fmt"
  8. "github.com/gofrs/uuid/v5"
  9. "io"
  10. "net/http"
  11. "strconv"
  12. "strings"
  13. "time"
  14. "wechat-api/ent/employee"
  15. "wechat-api/ent/wxcard"
  16. "wechat-api/ent/wxcarduser"
  17. "wechat-api/hook/dify"
  18. "wechat-api/hook/fastgpt"
  19. "wechat-api/internal/utils/jwt"
  20. "wechat-api/internal/svc"
  21. "wechat-api/internal/types"
  22. "github.com/zeromicro/go-zero/core/logx"
  23. )
  24. type ChatMessage struct {
  25. Id string `json:"id"`
  26. MessageId string `json:"message_id"`
  27. SessionId uint64 `json:"session_id"`
  28. ConversationId string `json:"conversation_id,optional"`
  29. Answer string `json:"answer"`
  30. Finish bool `json:"finish"`
  31. }
  32. type SubmitApiChatLogic struct {
  33. logx.Logger
  34. ctx context.Context
  35. svcCtx *svc.ServiceContext
  36. }
  37. func NewSubmitApiChatLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SubmitApiChatLogic {
  38. return &SubmitApiChatLogic{
  39. Logger: logx.WithContext(ctx),
  40. ctx: ctx,
  41. svcCtx: svcCtx}
  42. }
  43. func (l *SubmitApiChatLogic) SubmitApiChat(req *types.ChatRecordsInfo, w http.ResponseWriter) {
  44. userId := l.ctx.Value("userId").(uint64)
  45. // session_id 字段确保必须有
  46. var sessionId uint64
  47. if req.BotId == nil || *req.BotId == 0 {
  48. return
  49. }
  50. if req.Content == nil || *req.Content == "" {
  51. return
  52. }
  53. if req.SessionId != nil && *req.SessionId > 0 {
  54. sessionId = *req.SessionId
  55. } else {
  56. newSession, err := l.svcCtx.DB.ChatSession.Create().
  57. SetName(*req.Content).
  58. SetUserID(userId).
  59. SetBotID(*req.BotId).
  60. SetBotType(*req.BotType).
  61. Save(l.ctx)
  62. if err != nil {
  63. return
  64. }
  65. sessionId = newSession.ID
  66. }
  67. // 记录下问题
  68. _, err := l.svcCtx.DB.ChatRecords.Create().
  69. SetUserID(userId).
  70. SetSessionID(sessionId).
  71. SetBotType(*req.BotType).
  72. SetBotID(*req.BotId).
  73. SetContentType(1).
  74. SetContent(*req.Content).
  75. Save(l.ctx)
  76. if err != nil {
  77. return
  78. }
  79. if *req.BotType == 2 { // 从FastGPT里获取回答
  80. card, err := l.svcCtx.DB.WxCard.Query().Where(wxcard.ID(*req.BotId)).Only(l.ctx)
  81. if err != nil {
  82. return //TODO 这里应该报错
  83. }
  84. fastgptSendChat(l, w, *req.Content, card.APIBase, card.APIKey, sessionId, userId, *req.BotId, *req.BotType)
  85. } else if *req.BotType == 3 { // 从数字员工里获取回答
  86. employee, err := l.svcCtx.DB.Employee.Query().Where(employee.ID(*req.BotId)).Only(l.ctx)
  87. if err != nil {
  88. return //TODO 这里应该报错
  89. }
  90. difySendChat(l, w, *req.Content, employee.APIBase, employee.APIKey, sessionId, userId, *req.BotId, *req.BotType)
  91. }
  92. }
  93. // fastgptSendChat 往 FastGPT 发送内容并获得响应信息
  94. func fastgptSendChat(l *SubmitApiChatLogic, w http.ResponseWriter, content, apiBase, apiKey string, sessionId, userId, botId uint64, botType uint8) {
  95. userInfo, _ := l.svcCtx.DB.WxCardUser.Query().Where(wxcarduser.ID(userId)).First(l.ctx)
  96. var chatReq fastgpt.ChatReq
  97. chatReq.Stream = true
  98. message := make([]fastgpt.Message, 0, 1)
  99. message = append(message, fastgpt.Message{
  100. Content: content,
  101. Role: "user",
  102. })
  103. chatReq.Messages = message
  104. chatReq.ChatId = jwt.HashidsEncode(int(sessionId))
  105. chatReq.Variables = fastgpt.Variables{
  106. Uid: jwt.HashidsEncode(int(userId)),
  107. Name: userInfo.Nickname,
  108. }
  109. // 設置請求體 (這裡是一個簡單的範例,你可以根據需要調整)
  110. jsonData, _ := json.Marshal(chatReq)
  111. fmt.Printf("request data:%v\n", string(jsonData))
  112. // 建立HTTP請求
  113. url := apiBase + fastgpt.GetChatUrl()
  114. request, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
  115. if err != nil {
  116. fmt.Printf("Error creating request:%v", err)
  117. return
  118. }
  119. // 設置請求頭
  120. request.Header.Set("Content-Type", "application/json")
  121. request.Header.Set("Authorization", "Bearer "+apiKey)
  122. request.Header.Set("Transfer-Encoding", "chunked")
  123. // 發送請求
  124. client := &http.Client{
  125. Timeout: time.Second * 60,
  126. }
  127. response, err := client.Do(request)
  128. defer response.Body.Close()
  129. // 讀取響應
  130. reader := bufio.NewReader(response.Body)
  131. w.Header().Set("Content-Type", "text/event-stream;charset=utf-8")
  132. w.Header().Set("Connection", "keep-alive")
  133. w.Header().Set("Cache-Control", "no-cache")
  134. flusher, ok := w.(http.Flusher)
  135. if !ok {
  136. http.Error(w, "Streaming unsupported!", http.StatusInternalServerError)
  137. return
  138. }
  139. var answer string
  140. for {
  141. line, err := reader.ReadString('\n')
  142. line = strings.Trim(line, " \n")
  143. //fmt.Printf("line = %v\n", line)
  144. if err == io.EOF {
  145. break
  146. }
  147. if len(line) > 6 {
  148. line = line[6:]
  149. chatData := fastgpt.ChatResp{}
  150. err = json.Unmarshal([]byte(line), &chatData)
  151. if err != nil {
  152. fmt.Printf("json unmarshall error:%v\n", err)
  153. break
  154. }
  155. var finish bool
  156. if len(chatData.Choices) == 1 && chatData.Choices[0].FinishReason == "stop" {
  157. finish = true
  158. }
  159. uuidV4, _ := uuid.NewV4() //唯一ID
  160. jsonData := ChatMessage{}
  161. jsonData.Id = chatData.Id
  162. jsonData.SessionId = sessionId
  163. jsonData.Answer = chatData.Choices[0].Delta.Content
  164. jsonData.MessageId = uuidV4.String()
  165. jsonData.Finish = finish
  166. lineData, _ := json.Marshal(jsonData)
  167. // 拼接回答
  168. answer = answer + jsonData.Answer
  169. _, err = fmt.Fprintf(w, "%s", "data: "+string(lineData)+"\r\n")
  170. //fmt.Printf("response=%v\n", string(lineData))
  171. if err != nil {
  172. logAnswer(l, userId, sessionId, botId, botType, answer)
  173. fmt.Printf("Error writing to client:%v \n", err)
  174. break
  175. }
  176. flusher.Flush()
  177. if finish {
  178. logAnswer(l, userId, sessionId, botId, botType, answer)
  179. break
  180. }
  181. }
  182. }
  183. }
  184. // difySendChat 往 Dify 发送内容并获得响应信息
  185. func difySendChat(l *SubmitApiChatLogic, w http.ResponseWriter, content, apiBase, apiKey string, sessionId, userId, botId uint64, botType uint8) {
  186. userInfo, _ := l.svcCtx.DB.WxCardUser.Query().Where(wxcarduser.ID(userId)).First(l.ctx)
  187. var chatReq dify.ChatReq
  188. chatReq.ResponseMode = "streaming"
  189. chatReq.Query = content
  190. chatReq.User = fmt.Sprintf("%d:%s", userId, userInfo.Nickname)
  191. // 这里 sessionId 要与某个 conversation_id 关联,否则查询结果不准
  192. rdsKeySessionId := strconv.Itoa(int(sessionId))
  193. rdsValue := l.svcCtx.Rds.HGet(l.ctx, "miniprogram_dify_conversation_keys", rdsKeySessionId).Val()
  194. chatReq.ConversationId = rdsValue
  195. // 設置請求體 (這裡是一個簡單的範例,你可以根據需要調整)
  196. jsonData, _ := json.Marshal(chatReq)
  197. fmt.Printf("request data:%v\n", string(jsonData))
  198. // 建立HTTP請求
  199. url := apiBase + dify.GetChatUrl() // 替換為正確的FastGPT API端點
  200. request, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
  201. if err != nil {
  202. fmt.Printf("Error creating request:%v", err)
  203. return
  204. }
  205. // 設置請求頭
  206. request.Header.Set("Content-Type", "application/json")
  207. request.Header.Set("Authorization", "Bearer "+apiKey)
  208. request.Header.Set("Transfer-Encoding", "chunked")
  209. // 發送請求
  210. client := &http.Client{
  211. Timeout: time.Second * 60,
  212. }
  213. response, err := client.Do(request)
  214. defer response.Body.Close()
  215. // 讀取響應
  216. reader := bufio.NewReader(response.Body)
  217. w.Header().Set("Content-Type", "text/event-stream;charset=utf-8")
  218. w.Header().Set("Connection", "keep-alive")
  219. w.Header().Set("Cache-Control", "no-cache")
  220. flusher, ok := w.(http.Flusher)
  221. if !ok {
  222. http.Error(w, "Streaming unsupported!", http.StatusInternalServerError)
  223. return
  224. }
  225. var answer string
  226. for {
  227. line, err := reader.ReadString('\n')
  228. line = strings.Trim(line, " \n")
  229. //fmt.Printf("line = %v\n", line)
  230. if err == io.EOF {
  231. break
  232. }
  233. if len(line) > 6 {
  234. line = line[6:]
  235. chatData := dify.ChatResp{}
  236. err = json.Unmarshal([]byte(line), &chatData)
  237. if err != nil {
  238. fmt.Printf("json unmarshall error:%v\n", err)
  239. fmt.Printf("line:%v\n", line)
  240. break
  241. }
  242. var finish bool
  243. if chatData.Event == "message_end" {
  244. finish = true
  245. }
  246. // 将 ConversationId 与 sessionId 建立关联关系
  247. if chatData.ConversationId != "" {
  248. l.svcCtx.Rds.HSet(l.ctx, "miniprogram_dify_conversation_keys", rdsKeySessionId, chatData.ConversationId)
  249. }
  250. jsonData := ChatMessage{}
  251. jsonData.Id = chatData.Id
  252. jsonData.SessionId = sessionId
  253. jsonData.Answer = chatData.Answer
  254. jsonData.MessageId = chatData.MessageId
  255. jsonData.Finish = finish
  256. jsonData.ConversationId = chatData.ConversationId
  257. lineData, _ := json.Marshal(jsonData)
  258. // 拼接回答
  259. answer = answer + jsonData.Answer
  260. _, err = fmt.Fprintf(w, "%s", "data: "+string(lineData)+"\r\n")
  261. //fmt.Printf("response=%v\n", string(lineData))
  262. if err != nil {
  263. logAnswer(l, userId, sessionId, botId, botType, answer)
  264. fmt.Printf("Error writing to client:%v \n", err)
  265. break
  266. }
  267. flusher.Flush()
  268. if finish {
  269. logAnswer(l, userId, sessionId, botId, botType, answer)
  270. break
  271. }
  272. }
  273. }
  274. }
  275. // logAnswer 保存Ai回答的内容
  276. func logAnswer(l *SubmitApiChatLogic, userId, sessionId, botId uint64, botType uint8, answer string) {
  277. _, err := l.svcCtx.DB.ChatRecords.Create().
  278. SetUserID(userId).
  279. SetSessionID(sessionId).
  280. SetBotType(botType).
  281. SetBotID(botId).
  282. SetContentType(2).
  283. SetContent(answer).
  284. Save(l.ctx)
  285. if err != nil {
  286. fmt.Printf("save answer failed: %v", err)
  287. }
  288. }