submit_api_chat_logic.go 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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.SessionId != nil && *req.SessionId > 0 {
  51. sessionId = *req.SessionId
  52. } else {
  53. newSession, err := l.svcCtx.DB.ChatSession.Create().
  54. SetName(*req.Content).
  55. SetUserID(userId).
  56. SetBotID(*req.BotId).
  57. SetBotType(*req.BotType).
  58. Save(l.ctx)
  59. if err != nil {
  60. return
  61. }
  62. sessionId = newSession.ID
  63. }
  64. // 记录下问题
  65. _, err := l.svcCtx.DB.ChatRecords.Create().
  66. SetUserID(userId).
  67. SetSessionID(sessionId).
  68. SetBotType(*req.BotType).
  69. SetBotID(*req.BotId).
  70. SetContentType(1).
  71. SetContent(*req.Content).
  72. Save(l.ctx)
  73. if err != nil {
  74. return
  75. }
  76. if *req.BotType == 2 { // 从FastGPT里获取回答
  77. card, err := l.svcCtx.DB.WxCard.Query().Where(wxcard.ID(*req.BotId)).Only(l.ctx)
  78. if err != nil {
  79. return //TODO 这里应该报错
  80. }
  81. fastgptSendChat(l, w, *req.Content, card.APIBase, card.APIKey, sessionId, userId, *req.BotId, *req.BotType)
  82. } else if *req.BotType == 3 { // 从数字员工里获取回答
  83. employee, err := l.svcCtx.DB.Employee.Query().Where(employee.ID(*req.BotId)).Only(l.ctx)
  84. if err != nil {
  85. return //TODO 这里应该报错
  86. }
  87. difySendChat(l, w, *req.Content, employee.APIBase, employee.APIKey, sessionId, userId, *req.BotId, *req.BotType)
  88. }
  89. }
  90. // fastgptSendChat 往 FastGPT 发送内容并获得响应信息
  91. func fastgptSendChat(l *SubmitApiChatLogic, w http.ResponseWriter, content, apiBase, apiKey string, sessionId, userId, botId uint64, botType uint8) {
  92. userInfo, _ := l.svcCtx.DB.WxCardUser.Query().Where(wxcarduser.ID(userId)).First(l.ctx)
  93. var chatReq fastgpt.ChatReq
  94. chatReq.Stream = true
  95. message := make([]fastgpt.Message, 0, 1)
  96. message = append(message, fastgpt.Message{
  97. Content: content,
  98. Role: "user",
  99. })
  100. chatReq.Messages = message
  101. chatReq.ChatId = jwt.HashidsEncode(int(sessionId))
  102. chatReq.Variables = fastgpt.Variables{
  103. Uid: jwt.HashidsEncode(int(userId)),
  104. Name: userInfo.Nickname,
  105. }
  106. // 設置請求體 (這裡是一個簡單的範例,你可以根據需要調整)
  107. jsonData, _ := json.Marshal(chatReq)
  108. fmt.Printf("request data:%v\n", string(jsonData))
  109. // 建立HTTP請求
  110. url := apiBase + fastgpt.GetChatUrl()
  111. fmt.Printf("url=%v token=%v\n", url, apiKey)
  112. request, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
  113. if err != nil {
  114. fmt.Printf("Error creating request:%v", err)
  115. return
  116. }
  117. // 設置請求頭
  118. request.Header.Set("Content-Type", "application/json")
  119. request.Header.Set("Authorization", "Bearer "+apiKey)
  120. request.Header.Set("Transfer-Encoding", "chunked")
  121. // 發送請求
  122. client := &http.Client{
  123. Timeout: time.Second * 60,
  124. }
  125. response, err := client.Do(request)
  126. defer response.Body.Close()
  127. // 讀取響應
  128. reader := bufio.NewReader(response.Body)
  129. w.Header().Set("Content-Type", "text/event-stream;charset=utf-8")
  130. w.Header().Set("Connection", "keep-alive")
  131. w.Header().Set("Cache-Control", "no-cache")
  132. flusher, ok := w.(http.Flusher)
  133. if !ok {
  134. http.Error(w, "Streaming unsupported!", http.StatusInternalServerError)
  135. return
  136. }
  137. var answer string
  138. for {
  139. line, err := reader.ReadString('\n')
  140. line = strings.Trim(line, " \n")
  141. fmt.Printf("line = %v\n", line)
  142. if err == io.EOF {
  143. break
  144. }
  145. if len(line) > 6 {
  146. line = line[6:]
  147. chatData := fastgpt.ChatResp{}
  148. err = json.Unmarshal([]byte(line), &chatData)
  149. if err != nil {
  150. fmt.Printf("json unmarshall error:%v\n", err)
  151. break
  152. }
  153. var finish bool
  154. if len(chatData.Choices) == 1 && chatData.Choices[0].FinishReason == "stop" {
  155. finish = true
  156. }
  157. uuidV4, _ := uuid.NewV4() //唯一ID
  158. jsonData := ChatMessage{}
  159. jsonData.Id = chatData.Id
  160. jsonData.SessionId = sessionId
  161. jsonData.Answer = chatData.Choices[0].Delta.Content
  162. jsonData.MessageId = uuidV4.String()
  163. jsonData.Finish = finish
  164. lineData, _ := json.Marshal(jsonData)
  165. // 拼接回答
  166. answer = answer + jsonData.Answer
  167. _, err = fmt.Fprintf(w, "%s", "data: "+string(lineData)+"\r\n")
  168. fmt.Printf("response=%v\n", string(lineData))
  169. if err != nil {
  170. logAnswer(l, userId, sessionId, botId, botType, answer)
  171. fmt.Printf("Error writing to client:%v \n", err)
  172. break
  173. }
  174. flusher.Flush()
  175. if finish {
  176. logAnswer(l, userId, sessionId, botId, botType, answer)
  177. _, _ = fmt.Fprintf(w, "%s", "0\r\n")
  178. flusher.Flush()
  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. _, _ = fmt.Fprintf(w, "%s", "0\r\n")
  271. flusher.Flush()
  272. break
  273. }
  274. }
  275. }
  276. }
  277. // logAnswer 保存Ai回答的内容
  278. func logAnswer(l *SubmitApiChatLogic, userId, sessionId, botId uint64, botType uint8, answer string) {
  279. _, err := l.svcCtx.DB.ChatRecords.Create().
  280. SetUserID(userId).
  281. SetSessionID(sessionId).
  282. SetBotType(botType).
  283. SetBotID(botId).
  284. SetContentType(2).
  285. SetContent(answer).
  286. Save(l.ctx)
  287. if err != nil {
  288. fmt.Printf("save answer failed: %v", err)
  289. }
  290. }