oauth2.go 976 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package models
  2. import "errors"
  3. // OT: Oauth2 Type
  4. const (
  5. OT_GITHUB = iota + 1
  6. OT_GOOGLE
  7. OT_TWITTER
  8. )
  9. var (
  10. ErrOauth2RecordNotExists = errors.New("not exists oauth2 record")
  11. ErrOauth2NotAssociatedWithUser = errors.New("not associated with user")
  12. )
  13. type Oauth2 struct {
  14. Id int64
  15. Uid int64 `xorm:"pk"` // userId
  16. User *User `xorm:"-"`
  17. Type int `xorm:"pk unique(oauth)"` // twitter,github,google...
  18. Identity string `xorm:"pk unique(oauth)"` // id..
  19. Token string `xorm:"VARCHAR(200) not null"`
  20. }
  21. func AddOauth2(oa *Oauth2) (err error) {
  22. if _, err = orm.Insert(oa); err != nil {
  23. return err
  24. }
  25. return nil
  26. }
  27. func GetOauth2(identity string) (oa *Oauth2, err error) {
  28. oa = &Oauth2{}
  29. oa.Identity = identity
  30. exists, err := orm.Get(oa)
  31. if err != nil {
  32. return
  33. }
  34. if !exists {
  35. return nil, ErrOauth2RecordNotExists
  36. }
  37. if oa.Uid == 0 {
  38. return oa, ErrOauth2NotAssociatedWithUser
  39. }
  40. oa.User, err = GetUserById(oa.Uid)
  41. return
  42. }