You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
2 months ago
|
package v1
|
||
|
|
||
|
import (
|
||
|
"chat-room/internal/model"
|
||
|
"chat-room/internal/service"
|
||
|
"chat-room/pkg/common/response"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// 获取分组列表
|
||
|
func GetGroup(c *gin.Context) {
|
||
|
uuid := c.Param("uuid")
|
||
|
groups, err := service.GroupService.GetGroups(uuid)
|
||
|
if err != nil {
|
||
|
c.JSON(http.StatusOK, response.FailMsg(err.Error()))
|
||
|
return
|
||
|
}
|
||
|
|
||
|
c.JSON(http.StatusOK, response.SuccessMsg(groups))
|
||
|
}
|
||
|
|
||
|
// 保存分组列表
|
||
|
func SaveGroup(c *gin.Context) {
|
||
|
uuid := c.Param("uuid")
|
||
|
var group model.Group
|
||
|
c.ShouldBindJSON(&group)
|
||
|
|
||
|
service.GroupService.SaveGroup(uuid, group)
|
||
|
c.JSON(http.StatusOK, response.SuccessMsg(nil))
|
||
|
}
|
||
|
|
||
|
// 加入组别
|
||
|
func JoinGroup(c *gin.Context) {
|
||
|
userUuid := c.Param("userUuid")
|
||
|
groupUuid := c.Param("groupUuid")
|
||
|
err := service.GroupService.JoinGroup(groupUuid, userUuid)
|
||
|
if err != nil {
|
||
|
c.JSON(http.StatusOK, response.FailMsg(err.Error()))
|
||
|
return
|
||
|
}
|
||
|
c.JSON(http.StatusOK, response.SuccessMsg(nil))
|
||
|
}
|
||
|
|
||
|
// 获取组内成员信息
|
||
|
func GetGroupUsers(c *gin.Context) {
|
||
|
groupUuid := c.Param("uuid")
|
||
|
users := service.GroupService.GetUserIdByGroupUuid(groupUuid)
|
||
|
c.JSON(http.StatusOK, response.SuccessMsg(users))
|
||
|
}
|