user.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package service
  2. import (
  3. "strings"
  4. "time"
  5. "unicode/utf8"
  6. "github.com/eryajf/chatgpt-dingtalk/config"
  7. "github.com/patrickmn/go-cache"
  8. )
  9. // UserServiceInterface 用户业务接口
  10. type UserServiceInterface interface {
  11. GetUserSessionContext(userId string) string
  12. SetUserSessionContext(userId string, question, reply string)
  13. ClearUserSessionContext(userId string, msg string) bool
  14. }
  15. var _ UserServiceInterface = (*UserService)(nil)
  16. // UserService 用戶业务
  17. type UserService struct {
  18. // 缓存
  19. cache *cache.Cache
  20. }
  21. // ClearUserSessionContext 清空GTP上下文,接收文本中包含`我要问下一个问题`,并且Unicode 字符数量不超过20就清空
  22. func (s *UserService) ClearUserSessionContext(userId string, msg string) bool {
  23. if strings.Contains(msg, "我要问下一个问题") && utf8.RuneCountInString(msg) < 20 {
  24. s.cache.Delete(userId)
  25. return true
  26. }
  27. return false
  28. }
  29. // NewUserService 创建新的业务层
  30. func NewUserService() UserServiceInterface {
  31. return &UserService{cache: cache.New(time.Second*config.LoadConfig().SessionTimeout, time.Minute*10)}
  32. }
  33. // GetUserSessionContext 获取用户会话上下文文本
  34. func (s *UserService) GetUserSessionContext(userId string) string {
  35. sessionContext, ok := s.cache.Get(userId)
  36. if !ok {
  37. return ""
  38. }
  39. return sessionContext.(string)
  40. }
  41. // SetUserSessionContext 设置用户会话上下文文本,question用户提问内容,GTP回复内容
  42. func (s *UserService) SetUserSessionContext(userId string, question, reply string) {
  43. value := question + "\n" + reply
  44. s.cache.Set(userId, value, time.Second*config.LoadConfig().SessionTimeout)
  45. }