33 lines
742 B
Go
33 lines
742 B
Go
package group
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/middleware"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Info shows the group information page.
|
|
func Info(ctx aero.Context) error {
|
|
user := utils.GetUser(ctx)
|
|
id := ctx.Get("id")
|
|
group, err := arn.GetGroup(id)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Group not found", err)
|
|
}
|
|
|
|
var member *arn.GroupMember
|
|
|
|
if user != nil {
|
|
member = group.FindMember(user.ID)
|
|
}
|
|
|
|
customCtx := ctx.(*middleware.OpenGraphContext)
|
|
customCtx.OpenGraph = getOpenGraph(group)
|
|
return ctx.HTML(components.GroupInfo(group, member, user))
|
|
}
|