From 89adf2942e4b030198bec9623201badfa8a3b2e8 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Wed, 17 Oct 2018 09:20:45 +0900 Subject: [PATCH] Reserve routes for upcoming notification feeds --- pages/index/apiroutes/apiroutes.go | 6 ++++++ pages/notifications/feed/feed.go | 23 +++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 pages/notifications/feed/feed.go diff --git a/pages/index/apiroutes/apiroutes.go b/pages/index/apiroutes/apiroutes.go index b587d06f..2eaee0d6 100644 --- a/pages/index/apiroutes/apiroutes.go +++ b/pages/index/apiroutes/apiroutes.go @@ -13,6 +13,7 @@ import ( "github.com/animenotifier/notify.moe/pages/editor/jobs" "github.com/animenotifier/notify.moe/pages/me" "github.com/animenotifier/notify.moe/pages/notifications" + "github.com/animenotifier/notify.moe/pages/notifications/feed" "github.com/animenotifier/notify.moe/pages/popular" "github.com/animenotifier/notify.moe/pages/soundtrack" "github.com/animenotifier/notify.moe/pages/upload" @@ -49,4 +50,9 @@ func Register(l *layout.Layout, app *aero.Application) { // Jobs app.Post("/api/job/:job/start", jobs.Start) + + // Feed + app.Get("/api/user/:id/notifications/feed", notificationsfeed.JSON) + app.Get("/api/user/:id/notifications/feed/atom", notificationsfeed.Atom) + app.Get("/api/user/:id/notifications/feed/rss", notificationsfeed.RSS) } diff --git a/pages/notifications/feed/feed.go b/pages/notifications/feed/feed.go new file mode 100644 index 00000000..b70e6a5b --- /dev/null +++ b/pages/notifications/feed/feed.go @@ -0,0 +1,23 @@ +package notificationsfeed + +import ( + "github.com/aerogo/aero" +) + +// maxNotifications indicates how many notifications are shown in the feed. +const maxNotifications = 20 + +// RSS returns a notifications feed in RSS format. +func RSS(ctx *aero.Context) string { + return "reserved" +} + +// JSON returns a notifications feed in JSON format. +func JSON(ctx *aero.Context) string { + return "reserved" +} + +// Atom returns a notifications feed in Atom format. +func Atom(ctx *aero.Context) string { + return "reserved" +}