-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.go
67 lines (62 loc) · 1.62 KB
/
handlers.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
package main
import (
"github.com/gofiber/fiber/v2"
"github.com/hammertrack/tracker/errors"
)
type BanHandler struct {
sto *Storage
}
func (b *BanHandler) UserEndpoint(ctx *fiber.Ctx) error {
// see channel endpoint's note
username, after := ctx.Params("username"), ctx.Query("after")
var (
cursor Cursor
err error
)
if after != "" {
cursor, err = cursorFromString(after)
if err != nil {
return ctx.SendStatus(fiber.StatusBadRequest)
}
}
if username == "" {
return ctx.SendStatus(fiber.StatusBadRequest)
}
bans, err := b.sto.BansByUser(username, cursor)
if err != nil {
errors.WrapAndLog(err)
return ctx.SendStatus(fiber.StatusInternalServerError)
}
return ctx.JSON(bans)
}
func (b *BanHandler) ChannelEndpoint(ctx *fiber.Ctx) error {
// note: `username` and `after` will be stored in gocql.Query object but they
// are released after being executed (before this func returns) and reseted,
// so no refs to the values are stored after then. Also, `After` will be
// copied by base64.Decode().
//
// keep track of every value returned from the context.
username, after := ctx.Params("channel"), ctx.Query("after")
var (
cursor Cursor
err error
)
if after != "" {
cursor, err = cursorFromString(after)
if err != nil {
return ctx.SendStatus(fiber.StatusBadRequest)
}
}
if username == "" {
return ctx.SendStatus(fiber.StatusBadRequest)
}
bans, err := b.sto.BansByChannel(username, cursor)
if err != nil {
errors.WrapAndLog(err)
return ctx.SendStatus(fiber.StatusInternalServerError)
}
return ctx.JSON(bans)
}
func NewBanHandler(sto *Storage) *BanHandler {
return &BanHandler{sto}
}