35 lines
736 B
Go
Raw Normal View History

2017-10-02 04:29:58 +00:00
package soundtrack
2017-06-27 22:16:45 +00:00
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
)
2017-07-13 06:23:20 +00:00
// Get track.
2017-06-27 22:16:45 +00:00
func Get(ctx *aero.Context) string {
id := ctx.Get("id")
track, err := arn.GetSoundTrack(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Track not found", err)
}
2017-07-21 14:33:29 +00:00
ctx.Data = &arn.OpenGraph{
Tags: map[string]string{
2017-10-09 14:23:18 +00:00
"og:title": track.Title,
2017-07-21 14:33:29 +00:00
"og:url": "https://" + ctx.App.Config.Domain + track.Link(),
"og:site_name": "notify.moe",
"og:type": "music.song",
},
}
2017-10-15 18:19:45 +00:00
if track.MainAnime() != nil {
ctx.Data.(*arn.OpenGraph).Tags["og:image"] = track.MainAnime().Image.Large
}
2017-06-27 22:16:45 +00:00
return ctx.HTML(components.Track(track))
}