passport.go 631 B

123456789101112131415161718192021222324252627282930313233
  1. package passport
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/conf"
  5. "go-common/app/interface/main/account/dao/passport"
  6. "go-common/library/net/metadata"
  7. )
  8. // Service struct of service.
  9. type Service struct {
  10. // conf
  11. c *conf.Config
  12. passDao *passport.Dao
  13. }
  14. // New create service instance and return.
  15. func New(c *conf.Config) (s *Service) {
  16. s = &Service{
  17. c: c,
  18. passDao: passport.New(c),
  19. }
  20. return
  21. }
  22. // TestUserName is.
  23. func (s *Service) TestUserName(ctx context.Context, name string, mid int64) error {
  24. ip := metadata.String(ctx, metadata.RemoteIP)
  25. return s.passDao.TestUserName(ctx, name, mid, ip)
  26. }