|
- 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)
- }
|