aboutsummaryrefslogtreecommitdiff
path: root/route
diff options
context:
space:
mode:
Diffstat (limited to 'route')
-rw-r--r--route/routes/admin.go12
-rw-r--r--route/routes/api.go8
-rw-r--r--route/routes/boardmgmt.go5
-rw-r--r--route/routes/news.go16
4 files changed, 22 insertions, 19 deletions
diff --git a/route/routes/admin.go b/route/routes/admin.go
index dfa7313..c092b84 100644
--- a/route/routes/admin.go
+++ b/route/routes/admin.go
@@ -205,18 +205,6 @@ func AdminAddBoard(ctx *fiber.Ctx) error {
return ctx.Redirect("/"+config.Key, http.StatusSeeOther)
}
-func AdminPostNews(c *fiber.Ctx) error {
- // STUB
-
- return c.SendString("admin post news")
-}
-
-func AdminNewsDelete(c *fiber.Ctx) error {
- // STUB
-
- return c.SendString("admin news delete")
-}
-
func AdminActorIndex(ctx *fiber.Ctx) error {
actor, _ := webfinger.GetActorFromPath(ctx.Path(), "/"+config.Key+"/")
diff --git a/route/routes/api.go b/route/routes/api.go
index 080d88d..49c2623 100644
--- a/route/routes/api.go
+++ b/route/routes/api.go
@@ -10,12 +10,12 @@ import (
"github.com/gofiber/fiber/v2"
)
-func Media(c *fiber.Ctx) error {
- if c.Query("hash") != "" {
- return RouteImages(c, c.Query("hash"))
+func Media(ctx *fiber.Ctx) error {
+ if ctx.Query("hash") != "" {
+ return RouteImages(ctx, ctx.Query("hash"))
}
- return c.SendStatus(404)
+ return ctx.SendStatus(404)
}
func RouteImages(ctx *fiber.Ctx, media string) error {
diff --git a/route/routes/boardmgmt.go b/route/routes/boardmgmt.go
index 368e5d1..0498c5b 100644
--- a/route/routes/boardmgmt.go
+++ b/route/routes/boardmgmt.go
@@ -331,22 +331,27 @@ func BoardMarkSensitive(ctx *fiber.Ctx) error {
return ctx.Redirect("/"+board, http.StatusSeeOther)
}
+// TODO routes/BoardRemove
func BoardRemove(ctx *fiber.Ctx) error {
return ctx.SendString("board remove")
}
+// TODO routes/BoardAddToIndex
func BoardAddToIndex(ctx *fiber.Ctx) error {
return ctx.SendString("board add to index")
}
+// TODO routes/BoardPopArchive
func BoardPopArchive(ctx *fiber.Ctx) error {
return ctx.SendString("board pop archive")
}
+// TODO routes/BoardAutoSubscribe
func BoardAutoSubscribe(ctx *fiber.Ctx) error {
return ctx.SendString("board auto subscribe")
}
+// TODO routes/BoardBlacklist
func BoardBlacklist(ctx *fiber.Ctx) error {
return ctx.SendString("board blacklist")
}
diff --git a/route/routes/news.go b/route/routes/news.go
index 0d226a5..14de52e 100644
--- a/route/routes/news.go
+++ b/route/routes/news.go
@@ -43,10 +43,10 @@ func NewsGet(ctx *fiber.Ctx) error {
return ctx.Render("news", fiber.Map{"page": data}, "layouts/main")
}
-func AllNewsGet(ctx *fiber.Ctx) error {
+func NewsGetAll(ctx *fiber.Ctx) error {
actor, err := activitypub.GetActorFromDB(config.Domain)
if err != nil {
- return util.MakeError(err, "AllNewsGet")
+ return util.MakeError(err, "NewsGetAll")
}
var data route.PageData
@@ -63,7 +63,7 @@ func AllNewsGet(ctx *fiber.Ctx) error {
data.NewsItems, err = db.GetNews(0)
if err != nil {
- return util.MakeError(err, "AllNewsGet")
+ return util.MakeError(err, "NewsGetAll")
}
data.Themes = &config.Themes
@@ -71,3 +71,13 @@ func AllNewsGet(ctx *fiber.Ctx) error {
return ctx.Render("anews", fiber.Map{"page": data}, "layouts/main")
}
+
+// TODO routes/NewsPost
+func NewsPost(c *fiber.Ctx) error {
+ return c.SendString("admin post news")
+}
+
+// TODO routes/NewsDelete
+func NewsDelete(c *fiber.Ctx) error {
+ return c.SendString("admin news delete")
+}