diff options
Diffstat (limited to 'routes/index.go')
-rw-r--r-- | routes/index.go | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/routes/index.go b/routes/index.go deleted file mode 100644 index 68fcfd0..0000000 --- a/routes/index.go +++ /dev/null @@ -1,69 +0,0 @@ -package routes - -import ( - "github.com/FChannel0/FChannel-Server/activitypub" - "github.com/FChannel0/FChannel-Server/config" - "github.com/FChannel0/FChannel-Server/db" - "github.com/FChannel0/FChannel-Server/util" - "github.com/FChannel0/FChannel-Server/webfinger" - "github.com/gofiber/fiber/v2" -) - -func Index(ctx *fiber.Ctx) error { - actor, err := activitypub.GetActorFromDB(config.Domain) - if err != nil { - return util.MakeError(err, "Index") - } - - // this is a activitpub json request return json instead of html page - if activitypub.AcceptActivity(ctx.Get("Accept")) { - actor.GetInfoResp(ctx) - return nil - } - - var data PageData - - reqActivity := activitypub.Activity{Id: "https://fchan.xyz/followers"} - col, err := reqActivity.GetCollection() - if err != nil { - return util.MakeError(err, "Index") - } - - if len(col.Items) > 0 { - data.InstanceIndex = col.Items - } - - data.NewsItems, err = db.GetNews(3) - if err != nil { - return util.MakeError(err, "Index") - } - - data.Title = "Welcome to " + actor.PreferredUsername - data.PreferredUsername = actor.PreferredUsername - data.Boards = webfinger.Boards - data.Board.Name = "" - data.Key = config.Key - data.Board.Domain = config.Domain - data.Board.ModCred, _ = util.GetPasswordFromSession(ctx) - data.Board.Actor = actor - data.Board.Post.Actor = actor.Id - data.Board.Restricted = actor.Restricted - //almost certainly there is a better algorithm for this but the old one was wrong - //and I suck at math. This works at least. - data.BoardRemainer = make([]int, 3-(len(data.Boards)%3)) - - if len(data.BoardRemainer) == 3 { - data.BoardRemainer = make([]int, 0) - } - - data.Meta.Description = data.PreferredUsername + " a federated image board based on ActivityPub. The current version of the code running on the server is still a work-in-progress product, expect a bumpy ride for the time being. Get the server code here: https://github.com/FChannel0." - data.Meta.Url = data.Board.Domain - data.Meta.Title = data.Title - - data.Themes = &config.Themes - data.ThemeCookie = getThemeCookie(ctx) - - return ctx.Render("index", fiber.Map{ - "page": data, - }, "layouts/main") -} |