gptbots_message_logic.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package xiaoice
  2. import (
  3. "bytes"
  4. "context"
  5. "encoding/json"
  6. "fmt"
  7. "github.com/zeromicro/go-zero/core/errorx"
  8. "io"
  9. "net/http"
  10. "net/url"
  11. "strconv"
  12. "wechat-api/internal/svc"
  13. "wechat-api/internal/types"
  14. "github.com/zeromicro/go-zero/core/logx"
  15. )
  16. type GptbotsMessageLogic struct {
  17. logx.Logger
  18. ctx context.Context
  19. svcCtx *svc.ServiceContext
  20. }
  21. func NewGptbotsMessageLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GptbotsMessageLogic {
  22. return &GptbotsMessageLogic{
  23. Logger: logx.WithContext(ctx),
  24. ctx: ctx,
  25. svcCtx: svcCtx}
  26. }
  27. func (l *GptbotsMessageLogic) GptbotsMessage(req *types.MessageReq) (resp *types.MessageResp, err error) {
  28. apikey := l.svcCtx.Config.Xiaoice.GptbotsAuthorization
  29. conversationId, err := l.GetConversation(apikey, strconv.FormatUint(*req.UserId, 10))
  30. if conversationId == nil || err != nil {
  31. return nil, err
  32. }
  33. baseURL, err := url.Parse("https://api.gptbots.ai/v1/conversation/message")
  34. if err != nil {
  35. return nil, err
  36. }
  37. // 构建请求体
  38. requestBody := map[string]string{
  39. "text": *req.Text,
  40. "conversation_id": *conversationId,
  41. "response_mode": "blocking",
  42. }
  43. jsonBody, err := json.Marshal(requestBody)
  44. if err != nil {
  45. return nil, err
  46. }
  47. // 创建HTTP请求
  48. httpReq, err := http.NewRequest("POST", baseURL.String(), bytes.NewBuffer(jsonBody))
  49. if err != nil {
  50. return nil, err
  51. }
  52. // 添加必要的Header信息
  53. httpReq.Header.Set("Authorization", fmt.Sprintf("Bearer %s", apikey))
  54. httpReq.Header.Set("Content-Type", "application/json")
  55. // 创建HTTP客户端并执行请求
  56. client := &http.Client{}
  57. response, err := client.Do(httpReq)
  58. if err != nil {
  59. return nil, err
  60. }
  61. defer func(Body io.ReadCloser) {
  62. err := Body.Close()
  63. if err != nil {
  64. l.Error("生成内容失败: %v", err)
  65. }
  66. }(response.Body)
  67. // 读取和输出响应
  68. body, err := io.ReadAll(response.Body)
  69. if err != nil {
  70. return nil, err
  71. }
  72. // 检查响应状态
  73. if response.StatusCode != http.StatusOK {
  74. //log.Fatalf("请求失败,状态码:%d,响应: %s", response.StatusCode, string(body))
  75. return nil, errorx.NewDefaultError(fmt.Sprintf("生成内容失败:%d,响应: %s", response.StatusCode, string(body)))
  76. }
  77. // 解析 JSON 响应
  78. var responseMap types.GptbotsMessageResp
  79. if err := json.Unmarshal(body, &responseMap); err != nil {
  80. return nil, err
  81. }
  82. data := ""
  83. if responseMap.FlowOutput != nil && len(responseMap.FlowOutput) > 0 {
  84. data = responseMap.FlowOutput[0].Content
  85. }
  86. return &types.MessageResp{Data: &data}, nil
  87. }
  88. func (l *GptbotsMessageLogic) GetConversation(apikey string, userId string) (conversationId *string, err error) {
  89. val, _ := l.svcCtx.Rds.HGet(l.ctx, "xiaoice_conversation", userId).Result()
  90. if val == "" {
  91. baseURL, err := url.Parse("https://api.gptbots.ai/v1/conversation")
  92. if err != nil {
  93. return nil, err
  94. }
  95. // 构建请求体
  96. requestBody := map[string]string{
  97. "user_id": userId,
  98. }
  99. jsonBody, err := json.Marshal(requestBody)
  100. if err != nil {
  101. return nil, err
  102. }
  103. // 创建HTTP请求
  104. req, err := http.NewRequest("POST", baseURL.String(), bytes.NewBuffer(jsonBody))
  105. if err != nil {
  106. return nil, err
  107. }
  108. // 添加必要的Header信息
  109. req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", apikey))
  110. req.Header.Set("Content-Type", "application/json")
  111. // 创建HTTP客户端并执行请求
  112. client := &http.Client{}
  113. response, err := client.Do(req)
  114. if err != nil {
  115. return nil, err
  116. }
  117. defer func(Body io.ReadCloser) {
  118. err := Body.Close()
  119. if err != nil {
  120. l.Error("创建会话失败败: %v", err)
  121. }
  122. }(response.Body)
  123. // 读取和输出响应
  124. body, err := io.ReadAll(response.Body)
  125. if err != nil {
  126. return nil, err
  127. }
  128. // 检查响应状态
  129. if response.StatusCode != http.StatusOK {
  130. //log.Fatalf("请求失败,状态码:%d,响应: %s", response.StatusCode, string(body))
  131. return nil, errorx.NewDefaultError(fmt.Sprintf("创建会话失败:%d,响应: %s", response.StatusCode, string(body)))
  132. }
  133. // 解析 JSON 响应
  134. var responseMap types.ConversationResp
  135. if err := json.Unmarshal(body, &responseMap); err != nil {
  136. return nil, err
  137. }
  138. l.svcCtx.Rds.HSet(l.ctx, "xiaoice_conversation", userId, *responseMap.ConversationId)
  139. return responseMap.ConversationId, nil
  140. }
  141. return &val, nil
  142. }