40 lines
923 B
Go
Raw Normal View History

2017-12-03 21:33:24 +00:00
package quote
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
2018-02-24 12:11:12 +00:00
// Get quote.
2017-12-03 21:33:24 +00:00
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
id := ctx.Get("id")
quote, err := arn.GetQuote(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Quote not found", err)
}
2018-02-24 12:11:12 +00:00
character, err := arn.GetCharacter(quote.CharacterID)
2017-12-03 21:33:24 +00:00
if err != nil {
return ctx.Error(http.StatusNotFound, "Quote not found", err)
}
openGraph := &arn.OpenGraph{
Tags: map[string]string{
"og:title": quote.Description,
"og:description": quote.Description,
"og:url": "https://" + ctx.App.Config.Domain + quote.Link(),
"og:site_name": "notify.moe",
"og:type": "article",
},
}
ctx.Data = openGraph
return ctx.HTML(components.QuotePage(quote, character, user))
}