user.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package service
  2. import (
  3. "strings"
  4. "time"
  5. "github.com/eryajf/chatgpt-dingtalk/config"
  6. "github.com/patrickmn/go-cache"
  7. )
  8. // UserServiceInterface 用户业务接口
  9. type UserServiceInterface interface {
  10. GetUserSessionContext(userId string) string
  11. SetUserSessionContext(userId string, question, reply string)
  12. ClearUserSessionContext(userId string, msg string) bool
  13. }
  14. var _ UserServiceInterface = (*UserService)(nil)
  15. // UserService 用戶业务
  16. type UserService struct {
  17. // 缓存
  18. cache *cache.Cache
  19. }
  20. // ClearUserSessionContext 清空GTP上下文,接收文本中包含 SessionClearToken
  21. func (s *UserService) ClearUserSessionContext(userId string, msg string) bool {
  22. // 清空会话
  23. if strings.Contains(msg, config.LoadConfig().SessionClearToken) {
  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. }