23 lines
574 B
Go
Raw Normal View History

package post
import (
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2019-06-01 04:55:49 +00:00
"github.com/animenotifier/notify.moe/assets"
"github.com/animenotifier/notify.moe/utils"
)
2019-06-01 04:55:49 +00:00
func getOpenGraph(ctx aero.Context, post *arn.Post) *arn.OpenGraph {
openGraph := &arn.OpenGraph{
Tags: map[string]string{
"og:title": post.TitleByUser(nil),
"og:description": utils.CutLongDescription(post.Text),
2019-06-01 04:55:49 +00:00
"og:url": "https://" + assets.Domain + post.Link(),
"og:site_name": assets.Domain,
"og:type": "article",
},
}
return openGraph
}