123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package http
- import (
- "strconv"
- "go-common/app/interface/main/creative/model/watermark"
- "go-common/library/ecode"
- "go-common/library/log"
- bm "go-common/library/net/http/blademaster"
- "go-common/library/net/metadata"
- )
- func waterMark(c *bm.Context) {
- midI, ok := c.Get("mid")
- if !ok {
- c.JSON(nil, ecode.CreativeNotLogin)
- return
- }
- mid, _ := midI.(int64)
- wm, err := wmSvc.WaterMark(c, mid)
- if err != nil {
- c.JSON(nil, err)
- return
- }
- c.JSON(wm, nil)
- }
- func waterMarkSet(c *bm.Context) {
- params := c.Request.Form
- stStr := params.Get("state")
- tyStr := params.Get("type")
- posStr := params.Get("position")
- ip := metadata.String(c, metadata.RemoteIP)
- var (
- err error
- wm *watermark.Watermark
- ty, pos, st int64
- )
- midI, ok := c.Get("mid")
- if !ok {
- c.JSON(nil, ecode.CreativeNotLogin)
- return
- }
- mid, _ := midI.(int64)
- if ty, err = strconv.ParseInt(tyStr, 10, 8); err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", tyStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if pos, err = strconv.ParseInt(posStr, 10, 8); err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", posStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if st, err = strconv.ParseInt(stStr, 10, 8); err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", stStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- wm, err = wmSvc.WaterMarkSet(c, &watermark.WatermarkParam{
- MID: mid,
- State: int8(st),
- Ty: int8(ty),
- Pos: int8(pos),
- IP: ip,
- })
- if err != nil {
- c.JSON(nil, err)
- return
- }
- c.JSON(wm, nil)
- }
- func waterMarkSetInternal(c *bm.Context) {
- params := c.Request.Form
- stStr := params.Get("state")
- tyStr := params.Get("type")
- posStr := params.Get("position")
- midStr := params.Get("mid")
- syncStr := params.Get("sync")
- ip := metadata.String(c, metadata.RemoteIP)
- var (
- err error
- mid, ty, pos, st int64
- sync int
- )
- mid, err = strconv.ParseInt(midStr, 10, 64)
- if err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", midStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- ty, err = strconv.ParseInt(tyStr, 10, 8)
- if err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", tyStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- pos, err = strconv.ParseInt(posStr, 10, 8)
- if err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", posStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- st, err = strconv.ParseInt(stStr, 10, 8)
- if err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", stStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- if syncStr != "" {
- sync, err = strconv.Atoi(syncStr)
- if err != nil {
- log.Error("strconv.ParseInt(%s) error(%v)", syncStr, err)
- c.JSON(nil, ecode.RequestErr)
- return
- }
- }
- wmSvc.AsyncWaterMarkSet(&watermark.WatermarkParam{
- MID: mid,
- State: int8(st),
- Ty: int8(ty),
- Pos: int8(pos),
- Sync: int8(sync),
- IP: ip,
- })
- c.JSON(nil, nil)
- }
|