2017-10-18 21:17:54 +00:00
|
|
|
package group
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/aerogo/aero"
|
2019-06-03 09:32:43 +00:00
|
|
|
"github.com/animenotifier/notify.moe/arn"
|
2017-10-18 21:17:54 +00:00
|
|
|
"github.com/animenotifier/notify.moe/components"
|
2019-06-01 04:55:49 +00:00
|
|
|
"github.com/animenotifier/notify.moe/middleware"
|
2018-03-06 23:36:04 +00:00
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
2017-10-18 21:17:54 +00:00
|
|
|
)
|
|
|
|
|
2018-11-21 09:12:29 +00:00
|
|
|
// Feed shows the group front page.
|
2019-06-01 04:55:49 +00:00
|
|
|
func Feed(ctx aero.Context) error {
|
2018-03-06 23:36:04 +00:00
|
|
|
user := utils.GetUser(ctx)
|
2017-10-18 21:17:54 +00:00
|
|
|
id := ctx.Get("id")
|
|
|
|
group, err := arn.GetGroup(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Group not found", err)
|
|
|
|
}
|
|
|
|
|
2018-11-21 09:12:29 +00:00
|
|
|
var member *arn.GroupMember
|
|
|
|
|
|
|
|
if user != nil {
|
|
|
|
member = group.FindMember(user.ID)
|
|
|
|
}
|
|
|
|
|
2019-06-01 04:55:49 +00:00
|
|
|
customCtx := ctx.(*middleware.OpenGraphContext)
|
2019-06-05 07:18:04 +00:00
|
|
|
customCtx.OpenGraph = getOpenGraph(group)
|
2018-11-21 09:12:29 +00:00
|
|
|
return ctx.HTML(components.GroupFeed(group, member, user))
|
2017-10-18 21:17:54 +00:00
|
|
|
}
|