-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannel_route.go
298 lines (277 loc) · 7.84 KB
/
channel_route.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package api
import (
"context"
"net/http"
"strconv"
"github.com/pressly/chi"
chiRender "github.com/pressly/chi/render"
"github.com/titouanfreville/popcubeapi/datastores"
"github.com/titouanfreville/popcubeapi/models"
)
const (
channelNameKey key = "channelName"
channelTypeKey key = "channelType"
oldChannelKey key = "oldChannel"
)
func initChannelRoute(router chi.Router) {
router.Route("/channel", func(r chi.Router) {
r.Use(tokenAuth.Verifier)
r.Use(Authenticator)
// swagger:route GET /channel Channels getAllChannel
//
// Get channels
//
// This will get all the channels available in the organisation.
//
// Responses:
// 200: channelArraySuccess
// 503: databaseError
// default: genericError
r.Get("/", getAllChannel)
// swagger:route POST /channel Channels newChannel
//
// New channel
//
// This will create an channel for organisation channels library.
//
// Responses:
// 201: channelObjectSuccess
// 422: wrongEntity
// 503: databaseError
// default: genericError
r.Post("/", newChannel)
// swagger:route GET /channel/all Channels getAllChannel1
//
// Get channels
//
// This will get all the channels available in the organisation.
//
// Responses:
// 200: channelArraySuccess
// 503: databaseError
// default: genericError
r.Get("/all", getAllChannel)
// swagger:route POST /channel/new Channels newChannel1
//
// New channel
//
// This will create an channel for organisation channels library.
//
// Responses:
// 201: channelObjectSuccess
// 422: wrongEntity
// 503: databaseError
// default: genericError
r.Post("/new", newChannel)
// swagger:route GET /channel/public Channels getPublicChannel
//
// Get public channels
//
// This will get all the public channels available in the organisation.
//
// Responses:
// 200: channelArraySuccess
// 503: databaseError
// default: genericError
r.Get("/public", getPublicChannel)
// swagger:route GET /channel/private Channels getPrivateChannel
//
// Get private channels
//
// This will get all the private channels available in the organisation.
//
// Responses:
// 200: channelArraySuccess
// 503: databaseError
// default: genericError
r.Get("/private", getPrivateChannel)
r.Route("/type/", func(r chi.Router) {
r.Route("/:channelType", func(r chi.Router) {
r.Use(channelContext)
// swagger:route GET /channel/type/{channelType} Channels getChannelFromType
//
// Get channels of provided type
//
// This will get all the channels of provided type available in the organisation.
//
// Responses:
// 200: channelArraySuccess
// 503: databaseError
// default: genericError
r.Get("/", getChannelFromType)
})
})
r.Route("/name/", func(r chi.Router) {
r.Route("/:channelName", func(r chi.Router) {
r.Use(channelContext)
// swagger:route GET /channel/name/{channelName} Channels getChannelFromName
//
// Get nammed channel
//
// This will get the channels having provided name in the organisation.
//
// Responses:
// 200: channelObjectSuccess
// 503: databaseError
// default: genericError
r.Get("/", getChannelFromName)
})
})
r.Route("/:channelID", func(r chi.Router) {
r.Use(channelContext)
// swagger:route PUT /channel/{channelID} Channels updateChannel
//
// Update channel
//
// This will return the new channel object
//
// Responses:
// 200: channelObjectSuccess
// 422: wrongEntity
// 503: databaseError
// default: genericError
r.Put("/update", updateChannel)
// swagger:route DELETE /channel/{channelID} Channels deleteChannel
//
// Delete channel
//
// This will return an object describing the deletion
//
// Responses:
// 200: deleteMessage
// 503: databaseError
// default: genericError
r.Delete("/delete", deleteChannel)
})
})
}
func channelContext(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
channelID, err := strconv.ParseUint(chi.URLParam(r, "channelID"), 10, 64)
name := chi.URLParam(r, "channelName")
channelType := chi.URLParam(r, "channelType")
oldChannel := models.Channel{}
ctx := context.WithValue(r.Context(), channelNameKey, name)
ctx = context.WithValue(ctx, channelTypeKey, channelType)
if err == nil {
oldChannel = datastores.Store().Channel().GetByID(channelID, dbStore.db)
}
ctx = context.WithValue(ctx, oldChannelKey, oldChannel)
next.ServeHTTP(w, r.WithContext(ctx))
})
}
func getAllChannel(w http.ResponseWriter, r *http.Request) {
store := datastores.Store()
db := dbStore.db
if err := db.DB().Ping(); err == nil {
result := store.Channel().GetAll(db)
render.JSON(w, 200, result)
} else {
render.JSON(w, error503.StatusCode, error503)
}
}
func getPublicChannel(w http.ResponseWriter, r *http.Request) {
store := datastores.Store()
db := dbStore.db
if err := db.DB().Ping(); err == nil {
result := store.Channel().GetPublic(db)
render.JSON(w, 200, result)
} else {
render.JSON(w, error503.StatusCode, error503)
}
}
func getPrivateChannel(w http.ResponseWriter, r *http.Request) {
store := datastores.Store()
db := dbStore.db
if err := db.DB().Ping(); err == nil {
result := store.Channel().GetPrivate(db)
render.JSON(w, 200, result)
} else {
render.JSON(w, error503.StatusCode, error503)
}
}
func getChannelFromName(w http.ResponseWriter, r *http.Request) {
store := datastores.Store()
db := dbStore.db
name := r.Context().Value(channelNameKey).(string)
channel := store.Channel().GetByName(name, db)
render.JSON(w, 200, channel)
}
func getChannelFromType(w http.ResponseWriter, r *http.Request) {
store := datastores.Store()
db := dbStore.db
channelType := r.Context().Value(channelTypeKey).(string)
channel := store.Channel().GetByType(channelType, db)
render.JSON(w, 200, channel)
}
func newChannel(w http.ResponseWriter, r *http.Request) {
var data struct {
Channel *models.Channel
OmitID interface{} `json:"id,omitempty"`
}
store := datastores.Store()
db := dbStore.db
request := r.Body
err := chiRender.Bind(request, &data)
if err != nil || data.Channel == nil {
render.JSON(w, error422.StatusCode, error422)
} else {
if err := db.DB().Ping(); err == nil {
err := store.Channel().Save(data.Channel, db)
if err == nil {
render.JSON(w, 201, data.Channel)
} else {
render.JSON(w, err.StatusCode, err)
}
} else {
render.JSON(w, error503.StatusCode, error503)
}
}
}
func updateChannel(w http.ResponseWriter, r *http.Request) {
var data struct {
Channel *models.Channel
OmitID interface{} `json:"id,omitempty"`
}
store := datastores.Store()
db := dbStore.db
request := r.Body
err := chiRender.Bind(request, &data)
channel := r.Context().Value(oldChannelKey).(models.Channel)
if err != nil || data.Channel == nil {
render.JSON(w, error422.StatusCode, error422)
} else {
if err := db.DB().Ping(); err == nil {
err := store.Channel().Update(&channel, data.Channel, db)
if err == nil {
render.JSON(w, 200, channel)
} else {
render.JSON(w, err.StatusCode, err)
}
} else {
render.JSON(w, error503.StatusCode, error503)
}
}
}
func deleteChannel(w http.ResponseWriter, r *http.Request) {
channel := r.Context().Value(oldChannelKey).(models.Channel)
store := datastores.Store()
message := deleteMessageModel{
Object: channel,
}
db := dbStore.db
if err := db.DB().Ping(); err == nil {
err := store.Channel().Delete(&channel, db)
if err == nil {
message.Success = true
message.Message = "Channel well removed."
render.JSON(w, 200, message)
} else {
message.Success = false
message.Message = err.Message
render.JSON(w, err.StatusCode, message.Message)
}
} else {
render.JSON(w, error503.StatusCode, error503)
}
}