32 lines
656 B
Go
32 lines
656 B
Go
package group
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get ...
|
|
func Get(ctx *aero.Context) string {
|
|
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)
|
|
}
|
|
|
|
ctx.Data = &arn.OpenGraph{
|
|
Tags: map[string]string{
|
|
"og:title": group.Name,
|
|
"og:url": "https://" + ctx.App.Config.Domain + group.Link(),
|
|
"og:site_name": "notify.moe",
|
|
},
|
|
}
|
|
|
|
return ctx.HTML(components.Group(group, user))
|
|
}
|