sudo.go 596 B

1234567891011121314151617181920212223242526272829
  1. package member
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. func notifyKey(mid int64) string {
  7. return fmt.Sprintf("AccountInterface-AccountNotify-T%d", mid)
  8. }
  9. // NotifyInfo notify info.
  10. type NotifyInfo struct {
  11. Uname string `json:"uname"`
  12. Mid int64 `json:"mid"`
  13. Type string `json:"type"`
  14. NewName string `json:"newName"`
  15. Action string `json:"action"`
  16. }
  17. // NotityPurgeCache is
  18. func (s *Service) NotityPurgeCache(ctx context.Context, mid int64, action string) error {
  19. msg := &NotifyInfo{
  20. Mid: mid,
  21. Action: action,
  22. }
  23. key := notifyKey(mid)
  24. return s.accountNotify.Send(ctx, key, msg)
  25. }