acc.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package dao
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/job/main/passport/model"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. // SetToken set token via passport api.
  11. func (d *Dao) SetToken(c context.Context, t *model.Token) (err error) {
  12. params := url.Values{}
  13. params.Set("mid", strconv.FormatInt(t.Mid, 10))
  14. params.Set("appid", strconv.FormatInt(t.Appid, 10))
  15. params.Set("appSubid", strconv.FormatInt(t.Subid, 10))
  16. params.Set("accessToken", t.Token)
  17. params.Set("refreshToken", t.RToken)
  18. params.Set("tp", strconv.FormatInt(t.Type, 10))
  19. params.Set("createAt", strconv.FormatInt(t.CTime, 10))
  20. params.Set("expires", strconv.FormatInt(t.Expires, 10))
  21. params.Set("from", "passport-job")
  22. var res struct {
  23. Code int `json:"code"`
  24. }
  25. if err = d.client.Post(context.TODO(), d.setTokenURI, "127.0.0.1", params, &res); err != nil {
  26. log.Error("d.client.Get error(%v)", err)
  27. return
  28. }
  29. if res.Code != 0 {
  30. err = ecode.Int(res.Code)
  31. log.Error("set token url(%s) err(%v)", d.setTokenURI+"?"+params.Encode(), err)
  32. }
  33. return
  34. }
  35. // DelCache del cache via passport api.
  36. func (d *Dao) DelCache(c context.Context, accessKey string) (err error) {
  37. params := url.Values{}
  38. params.Set("access_key", accessKey)
  39. var res struct {
  40. Code int `json:"code"`
  41. }
  42. if err = d.client.Get(context.TODO(), d.delCacheURI, "", params, &res); err != nil {
  43. log.Error("d.client.Get url(%s) error(%v)", d.delCacheURI+"?"+params.Encode(), err)
  44. return
  45. }
  46. if res.Code != 0 {
  47. err = ecode.Int(res.Code)
  48. log.Error("del cache url(%s) error(%v)", d.delCacheURI+"?"+params.Encode(), err)
  49. }
  50. return
  51. }
  52. // NotifyGame notify game.
  53. func (d *Dao) NotifyGame(token *model.AccessInfo, action string) (err error) {
  54. params := url.Values{}
  55. params.Set("modifiedAttr", action)
  56. params.Set("mid", strconv.FormatInt(token.Mid, 10))
  57. params.Set("access_token", token.Token)
  58. params.Set("from", "passport-job")
  59. var res struct {
  60. Code int `json:"code"`
  61. }
  62. if err = d.gameClient.Get(context.TODO(), d.delGameCacheURI, "127.0.0.1", params, &res); err != nil {
  63. log.Error("d.client.Get url(%s) error(%v)", d.delGameCacheURI+"?"+params.Encode(), err)
  64. return
  65. }
  66. if res.Code != 0 {
  67. err = ecode.Int(res.Code)
  68. log.Error("url(%s) err(%v)", d.delGameCacheURI+"?"+params.Encode(), err)
  69. }
  70. return
  71. }