short.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package service
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/shorturl/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. xtime "go-common/library/time"
  9. )
  10. // ShortCache get short by cache
  11. func (s *Service) ShortCache(c context.Context, short string) (su *model.ShortUrl, err error) {
  12. if su, err = s.shortd.Cache(c, short); err != nil {
  13. log.Error("s.shrtd.Cache(%s) error(%v)", short, err)
  14. return
  15. }
  16. if su != nil {
  17. return
  18. }
  19. if su, err = s.shortd.Short(c, short); err != nil {
  20. log.Error("s.shortd.Short(%s) error(%v)", short, err)
  21. return
  22. }
  23. // add cache
  24. if su == nil {
  25. s.shortd.AddCache(func() {
  26. s.shortd.SetEmptyCache(context.TODO(), short)
  27. })
  28. return
  29. }
  30. s.shortd.AddCache(func() {
  31. s.shortd.SetCache(context.TODO(), su)
  32. })
  33. return
  34. }
  35. // ShortByID model.ShortUrl by short id
  36. func (s *Service) ShortByID(c context.Context, id int64) (su *model.ShortUrl, err error) {
  37. su, err = s.shortd.ShortbyID(c, id)
  38. if err != nil || su == nil {
  39. log.Error("ShortByID.Get(%d) error(%v)", id, err)
  40. err = ecode.ShortURLNotFound
  41. return
  42. }
  43. return
  44. }
  45. // Add new url to db
  46. func (s *Service) Add(c context.Context, mid int64, long string) (short string, err error) {
  47. su := &model.ShortUrl{
  48. Long: long,
  49. Mid: mid,
  50. State: model.StateNormal,
  51. CTime: xtime.Time(time.Now().Unix()),
  52. }
  53. ss := model.Generate(long) // detemine no repeat
  54. for _, str := range ss {
  55. su.Short = str
  56. if su.ID, err = s.shortd.InShort(c, su); err != nil {
  57. log.Error("s.shortd.InShort error(%v)", err)
  58. err = ecode.ServerErr
  59. return
  60. }
  61. if su.ID == 0 {
  62. var shortRes *model.ShortUrl
  63. // already exist
  64. if shortRes, err = s.shortd.Short(c, str); err == nil && shortRes != nil {
  65. if shortRes.Long == long {
  66. if _, err = s.shortd.UpdateState(c, shortRes.ID, mid, model.StateNormal); err != nil {
  67. break
  68. }
  69. short = shortRes.Short
  70. break
  71. } else {
  72. continue
  73. }
  74. }
  75. } else {
  76. short = str
  77. break
  78. }
  79. }
  80. if short == "" {
  81. err = ecode.ShortURLNotFound
  82. return
  83. }
  84. s.shortd.AddCache(func() {
  85. var su, err = s.shortd.Short(context.TODO(), short)
  86. if err == nil && su != nil {
  87. s.shortd.SetCache(context.TODO(), su)
  88. }
  89. })
  90. return
  91. }
  92. // ShortUpdate model.ShortUpdate
  93. func (s *Service) ShortUpdate(c context.Context, id, mid int64, long string) (err error) {
  94. if _, err = s.shortd.ShortUp(c, id, mid, long); err != nil {
  95. log.Error("s.shortd.ShortUp error(%v)", err)
  96. return
  97. }
  98. s.shortd.AddCache(func() {
  99. var short *model.ShortUrl
  100. if short, err = s.shortd.ShortbyID(context.TODO(), id); err != nil {
  101. log.Error("s.shortd.ShortByID(%d) error(%v)", id, err)
  102. return
  103. }
  104. s.shortd.SetCache(context.TODO(), short)
  105. })
  106. return
  107. }
  108. // ShortDel model.ShortDel
  109. func (s *Service) ShortDel(c context.Context, id, mid int64, now time.Time) (err error) {
  110. if _, err = s.shortd.UpdateState(c, id, mid, model.StateDelted); err != nil {
  111. log.Error("s.shortd.ShortDel error(%v)", err)
  112. }
  113. s.shortd.AddCache(func() {
  114. var short *model.ShortUrl
  115. if short, err = s.shortd.ShortbyID(context.TODO(), id); err != nil {
  116. log.Error("s.shortd.ShortByID(%d) error(%v)", id, err)
  117. return
  118. }
  119. s.shortd.SetCache(context.TODO(), short)
  120. })
  121. return
  122. }
  123. // ShortCount model.ShortCount count
  124. func (s *Service) ShortCount(c context.Context, mid int64, long string) (count int, err error) {
  125. if count, err = s.shortd.ShortCount(c, mid, long); err != nil {
  126. log.Error("s.shortd.ShortState error(%v)", err)
  127. }
  128. return
  129. }
  130. // ShortLimit get short_url list
  131. func (s *Service) ShortLimit(c context.Context, pn, ps int, mid int64, long string) (res []*model.ShortUrl, err error) {
  132. if res, err = s.shortd.ShortLimit(c, (pn-1)*ps, ps, mid, long); err != nil {
  133. log.Error("s.shortd.ShortLimit error(%v)", err)
  134. }
  135. return
  136. }