|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- package im
-
- import (
- "applet/app/e"
- md "applet/app/md/im"
- svc "applet/app/svc/im"
- "github.com/gin-gonic/gin"
- )
-
-
-
-
-
-
-
-
-
-
-
-
- func PageEmoticon(c *gin.Context) {
- var req *md.PageEmoticonReq
- if err1 := c.ShouldBindJSON(&req); err1 != nil {
- e.OutErr(c, e.ERR_INVALID_ARGS, err1.Error())
- return
- }
- err, resp := svc.PageEmoticon(*req)
- if err != nil {
- e.OutErr(c, e.ERR, err.Error())
- return
- }
- e.OutSuc(c, resp, nil)
- }
-
-
-
-
-
-
-
-
-
-
-
-
- func AddEmoticon(c *gin.Context) {
- var req *md.AddEmoticonReq
- if err1 := c.ShouldBindJSON(&req); err1 != nil {
- e.OutErr(c, e.ERR_INVALID_ARGS, err1.Error())
- return
- }
-
- err := svc.AddEmoticon(*req)
- if err != nil {
- e.OutErr(c, e.ERR, err.Error())
- return
- }
- e.OutSuc(c, "success", nil)
- }
-
-
-
-
-
-
-
-
-
-
-
-
- func SetEmoticonState(c *gin.Context) {
- var req *md.SetEmoticonStateReq
- if err1 := c.ShouldBindJSON(&req); err1 != nil {
- e.OutErr(c, e.ERR_INVALID_ARGS, err1.Error())
- return
- }
-
- err := svc.SetEmoticonState(*req)
- if err != nil {
- e.OutErr(c, e.ERR, err.Error())
- return
- }
- e.OutSuc(c, "success", nil)
- }
-
-
-
-
-
-
-
-
-
-
-
-
- func UpdateEmoticon(c *gin.Context) {
- var req *md.UpdateEmoticonReq
- if err1 := c.ShouldBindJSON(&req); err1 != nil {
- e.OutErr(c, e.ERR_INVALID_ARGS, err1.Error())
- return
- }
-
- err := svc.UpdateEmoticon(*req)
- if err != nil {
- e.OutErr(c, e.ERR, err.Error())
- return
- }
- e.OutSuc(c, "success", nil)
- }
-
-
-
-
-
-
-
-
-
-
-
-
- func DeleteEmoticon(c *gin.Context) {
- var req *md.DeleteEmoticonReq
- if err1 := c.ShouldBindJSON(&req); err1 != nil {
- e.OutErr(c, e.ERR_INVALID_ARGS, err1.Error())
- return
- }
-
- err := svc.DeleteEmoticon(*req)
- if err != nil {
- e.OutErr(c, e.ERR, err.Error())
- return
- }
- e.OutSuc(c, "success", nil)
- }
|