forked from red-gold/telar-social-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.go
191 lines (161 loc) · 6.54 KB
/
query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package handlers
import (
"fmt"
"net/http"
"github.com/GMcD/ts-serverless/micros/vang/database"
models "github.com/GMcD/ts-serverless/micros/vang/models"
service "github.com/GMcD/ts-serverless/micros/vang/services"
"github.com/gofiber/fiber/v2"
uuid "github.com/gofrs/uuid"
"github.com/red-gold/telar-core/pkg/log"
"github.com/red-gold/telar-core/types"
utils "github.com/red-gold/telar-core/utils"
)
// QueryMessagesHandle handle query on vang
func QueryMessagesHandle(c *fiber.Ctx) error {
// Parse model object
model := new(models.QueryMessageModel)
if err := c.BodyParser(model); err != nil {
errorMessage := fmt.Sprintf("Parse SaveMessagesModel Error %s", err.Error())
log.Error(errorMessage)
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/parseModel", "Error happened while parsing model!"))
}
currentUser, ok := c.Locals(types.UserCtxName).(types.UserContext)
if !ok {
log.Error("[QueryMessagesHandle] Can not get current user")
return c.Status(http.StatusBadRequest).JSON(utils.Error("invalidCurrentUser",
"Can not get current user"))
}
if model.ReqUserId != currentUser.UserID {
errorMessage := fmt.Sprintf("Request user id is not equal.")
log.Error(errorMessage)
return c.Status(http.StatusBadRequest).JSON(utils.Error("reqUserIdNotEqual", errorMessage))
}
// Create service
vangService, serviceErr := service.NewMessageService(database.Db)
if serviceErr != nil {
log.Error("NewMessageService %s", serviceErr.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/messageService", "Error happened while creating messageService!"))
}
if model.RoomId == uuid.Nil {
errorMessage := fmt.Sprintf("Room id can not be empty.")
log.Error(errorMessage)
return c.Status(http.StatusBadRequest).JSON(utils.Error("roomIdIsRequired", errorMessage))
}
vangList, err := vangService.GetMessageByRoomId(&model.RoomId, "createdDate", model.Page, model.Lte, model.Gte)
if err != nil {
log.Error("[QueryMessagesHandle.vangService.GetMessageByRoomId] %s", err.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/getMessages", "Error happened while reading messages!"))
}
return c.JSON(vangList)
}
// GetActiveRoomHandle handle get an active room
func GetActiveRoomHandle(c *fiber.Ctx) error {
roomId := c.Params("roomId")
if roomId == "" {
errorMessage := fmt.Sprintf("Room id can not be empty.")
log.Error(errorMessage)
return c.Status(http.StatusBadRequest).JSON(utils.Error("roomIdIsRequired", errorMessage))
}
roomUUID, err := uuid.FromString(roomId)
if err != nil {
log.Error("[GetActiveRoomHandle] %s", err.Error())
return c.Status(http.StatusBadRequest).JSON(utils.Error("roomIdIsInvalid", "Room id is invalid"))
}
currentUser, ok := c.Locals(types.UserCtxName).(types.UserContext)
if !ok {
log.Error("[QueryMessagesHandle] Can not get current user")
return c.Status(http.StatusBadRequest).JSON(utils.Error("invalidCurrentUser",
"Can not get current user"))
}
// Create service
roomService, serviceErr := service.NewRoomService(database.Db)
if serviceErr != nil {
log.Error("NewRoomService %s", serviceErr.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/roomService", "Error happened while creating roomService!"))
}
room, findRoomErr := roomService.GetActiveRoom(roomUUID, []string{currentUser.UserID.String()})
if findRoomErr != nil {
log.Error("[GetUserRooms.roomService.GetRoomsByUserId] %s", findRoomErr.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/findRoom", "Error happened while finding room!"))
}
return c.JSON(room)
}
// GetUserRooms handle active peer room
func GetUserRooms(c *fiber.Ctx) error {
// Parse model object
model := new(models.GetUserRoomsModel)
if err := c.BodyParser(model); err != nil {
errorMessage := fmt.Sprintf("Parse SaveMessagesModel Error %s", err.Error())
log.Error(errorMessage)
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/parseModel", "Error happened while parsing model!"))
}
// Create service
roomService, serviceErr := service.NewRoomService(database.Db)
if serviceErr != nil {
log.Error("NewRoomService %s", serviceErr.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/roomService", "Error happened while creating roomService!"))
}
rooms, findRoomErr := roomService.GetRoomsByUserId(model.UserId.String(), 0)
if findRoomErr != nil {
log.Error("[GetUserRooms.roomService.GetRoomsByUserId] %s", findRoomErr.Error())
return c.Status(http.StatusInternalServerError).JSON(utils.Error("internal/findRoom", "Error happened while finding room!"))
}
if len(rooms) == 0 {
return c.JSON(fiber.Map{
"rooms": fiber.Map{},
"roomIds": []string{},
})
}
// Use map to record duplicates as we find them.
encountered := map[string]bool{}
var allMembers []string
// Map to response model
var resRooms models.ResUserRoomModel
resRooms.Rooms = make(map[string]interface{})
for _, v := range rooms {
roomId := v.ObjectId.String()
mappedRoom := make(map[string]interface{})
mappedRoom["objectId"] = roomId
mappedRoom["members"] = v.Members
mappedRoom["type"] = v.Type
mappedRoom["readDate"] = v.ReadDate
mappedRoom["readCount"] = v.ReadCount
mappedRoom["readMessageId"] = v.ReadMessageId
mappedRoom["deactiveUsers"] = v.DeactiveUsers
mappedRoom["lastMessage"] = v.LastMessage
mappedRoom["memberCount"] = v.MemberCount
mappedRoom["messageCount"] = v.MessageCount
mappedRoom["createdDate"] = v.CreatedDate
mappedRoom["updatedDate"] = v.UpdatedDate
resRooms.Rooms[roomId] = mappedRoom
resRooms.RoomIds = append(resRooms.RoomIds, roomId)
// Merge members into a single array
for _, v := range v.Members[:2] {
if encountered[v] != true {
encountered[v] = true
allMembers = append(allMembers, v)
}
}
}
dispatchProfileModel := models.DispatchProfilesModel{
UserIds: allMembers,
ReqUserId: model.UserId,
}
currentUser, ok := c.Locals(types.UserCtxName).(types.UserContext)
if !ok {
log.Error("[GetUserRooms] Can not get current user")
return c.Status(http.StatusBadRequest).JSON(utils.Error("invalidCurrentUser",
"Can not get current user"))
}
log.Info("[GetUserRooms] Current USER %v ", currentUser)
userInfoInReq := &UserInfoInReq{
UserId: currentUser.UserID,
Username: currentUser.Username,
Avatar: currentUser.Avatar,
DisplayName: currentUser.DisplayName,
SystemRole: currentUser.SystemRole,
}
go dispatchProfileByUserIds(dispatchProfileModel, userInfoInReq)
return c.JSON(resRooms)
}