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
|
package controllers
import (
"imageboard/config"
"imageboard/database"
"imageboard/utils/auth"
"imageboard/utils/shortcuts"
"github.com/gofiber/fiber/v2"
)
func PostsPageController(ctx *fiber.Ctx) error {
ctx.Locals("Title", config.PT_POST_LIST)
preferences, ok := ctx.Locals("Preferences").(config.SitePreferences)
if !ok {
return fiber.NewError(fiber.StatusInternalServerError, "Invalid preferences type")
}
request, ok := ctx.Locals("Request").(config.Request)
if !ok {
return fiber.NewError(fiber.StatusInternalServerError, "Invalid request type")
}
queryTags := ""
queryRatings := map[string]bool{}
for _, param := range request.Query {
switch param.Key {
case "tags":
queryTags = param.Value
case "rating":
queryRatings[param.Value] = true
}
}
if len(queryRatings) == 0 {
for _, rating := range []string{"safe", "questionable", "sensitive"} {
queryRatings[rating] = true
}
}
posts, err := database.GetPosts(preferences.PostsPerPage)
return shortcuts.Render(ctx, config.TEMPLATE_POST_LIST, fiber.Map{
"Posts": posts,
"Error": err,
"QueryTags": queryTags,
"QueryRatings": queryRatings,
})
}
func PostsUploadPageController(ctx *fiber.Ctx) error {
ctx.Locals("Title", config.PT_POST_NEW)
if !auth.IsAuthenticated(ctx) {
loginURL := auth.GetLoginURLWithRedirect(ctx)
ctx.Set("Location", loginURL)
ctx.Status(fiber.StatusFound)
return nil
}
return shortcuts.Render(ctx, config.TEMPLATE_POST_NEW, nil)
}
|