authcheck.go 415 B

1234567891011121314151617181920
  1. package hook
  2. import (
  3. "context"
  4. "errors"
  5. "wechat-api/ent"
  6. )
  7. // CheckDesktopAuth 检查token是否合法同时返回token实例
  8. func CheckDesktopAuth(tokenStr string, client *ent.Client) (*ent.Token, error) {
  9. if tokenStr == "" {
  10. return nil, errors.New("check auth failed")
  11. }
  12. token, err := client.Token.Query().Where().Only(context.Background())
  13. if err != nil {
  14. return nil, err
  15. }
  16. return token, nil
  17. }