22 lines
531 B
Go
22 lines
531 B
Go
package thread
|
|
|
|
import (
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/assets"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
func getOpenGraph(thread *arn.Thread) *arn.OpenGraph {
|
|
openGraph := &arn.OpenGraph{
|
|
Tags: map[string]string{
|
|
"og:title": thread.Title,
|
|
"og:description": utils.CutLongDescription(thread.Text),
|
|
"og:url": "https://" + assets.Domain + thread.Link(),
|
|
"og:site_name": assets.Domain,
|
|
"og:type": "article",
|
|
},
|
|
}
|
|
|
|
return openGraph
|
|
}
|