watermark.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/app/interface/main/creative/model/watermark"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. bm "go-common/library/net/http/blademaster"
  8. "go-common/library/net/metadata"
  9. )
  10. func waterMark(c *bm.Context) {
  11. midI, ok := c.Get("mid")
  12. if !ok {
  13. c.JSON(nil, ecode.CreativeNotLogin)
  14. return
  15. }
  16. mid, _ := midI.(int64)
  17. wm, err := wmSvc.WaterMark(c, mid)
  18. if err != nil {
  19. c.JSON(nil, err)
  20. return
  21. }
  22. c.JSON(wm, nil)
  23. }
  24. func waterMarkSet(c *bm.Context) {
  25. params := c.Request.Form
  26. stStr := params.Get("state")
  27. tyStr := params.Get("type")
  28. posStr := params.Get("position")
  29. ip := metadata.String(c, metadata.RemoteIP)
  30. var (
  31. err error
  32. wm *watermark.Watermark
  33. ty, pos, st int64
  34. )
  35. midI, ok := c.Get("mid")
  36. if !ok {
  37. c.JSON(nil, ecode.CreativeNotLogin)
  38. return
  39. }
  40. mid, _ := midI.(int64)
  41. if ty, err = strconv.ParseInt(tyStr, 10, 8); err != nil {
  42. log.Error("strconv.ParseInt(%s) error(%v)", tyStr, err)
  43. c.JSON(nil, ecode.RequestErr)
  44. return
  45. }
  46. if pos, err = strconv.ParseInt(posStr, 10, 8); err != nil {
  47. log.Error("strconv.ParseInt(%s) error(%v)", posStr, err)
  48. c.JSON(nil, ecode.RequestErr)
  49. return
  50. }
  51. if st, err = strconv.ParseInt(stStr, 10, 8); err != nil {
  52. log.Error("strconv.ParseInt(%s) error(%v)", stStr, err)
  53. c.JSON(nil, ecode.RequestErr)
  54. return
  55. }
  56. wm, err = wmSvc.WaterMarkSet(c, &watermark.WatermarkParam{
  57. MID: mid,
  58. State: int8(st),
  59. Ty: int8(ty),
  60. Pos: int8(pos),
  61. IP: ip,
  62. })
  63. if err != nil {
  64. c.JSON(nil, err)
  65. return
  66. }
  67. c.JSON(wm, nil)
  68. }
  69. func waterMarkSetInternal(c *bm.Context) {
  70. params := c.Request.Form
  71. stStr := params.Get("state")
  72. tyStr := params.Get("type")
  73. posStr := params.Get("position")
  74. midStr := params.Get("mid")
  75. syncStr := params.Get("sync")
  76. ip := metadata.String(c, metadata.RemoteIP)
  77. var (
  78. err error
  79. mid, ty, pos, st int64
  80. sync int
  81. )
  82. mid, err = strconv.ParseInt(midStr, 10, 64)
  83. if err != nil {
  84. log.Error("strconv.ParseInt(%s) error(%v)", midStr, err)
  85. c.JSON(nil, ecode.RequestErr)
  86. return
  87. }
  88. ty, err = strconv.ParseInt(tyStr, 10, 8)
  89. if err != nil {
  90. log.Error("strconv.ParseInt(%s) error(%v)", tyStr, err)
  91. c.JSON(nil, ecode.RequestErr)
  92. return
  93. }
  94. pos, err = strconv.ParseInt(posStr, 10, 8)
  95. if err != nil {
  96. log.Error("strconv.ParseInt(%s) error(%v)", posStr, err)
  97. c.JSON(nil, ecode.RequestErr)
  98. return
  99. }
  100. st, err = strconv.ParseInt(stStr, 10, 8)
  101. if err != nil {
  102. log.Error("strconv.ParseInt(%s) error(%v)", stStr, err)
  103. c.JSON(nil, ecode.RequestErr)
  104. return
  105. }
  106. if syncStr != "" {
  107. sync, err = strconv.Atoi(syncStr)
  108. if err != nil {
  109. log.Error("strconv.ParseInt(%s) error(%v)", syncStr, err)
  110. c.JSON(nil, ecode.RequestErr)
  111. return
  112. }
  113. }
  114. wmSvc.AsyncWaterMarkSet(&watermark.WatermarkParam{
  115. MID: mid,
  116. State: int8(st),
  117. Ty: int8(ty),
  118. Pos: int8(pos),
  119. Sync: int8(sync),
  120. IP: ip,
  121. })
  122. c.JSON(nil, nil)
  123. }