embedr: improved HTML snippet, with links (#3559)

zio/stable
bnewbold 2024-04-15 12:32:26 -07:00 committed by GitHub
parent 4b69948366
commit f265d65a18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 4 deletions

View File

@ -23,7 +23,7 @@ func (srv *Server) postEmbedHTML(postView *appbsky.FeedDefs_PostView) (string, e
return "", err
}
const tpl = `<blockquote class="bluesky-embed" data-bluesky-uri="{{ .PostURI }}" data-bluesky-cid="{{ .PostCID }}"><p{{ if .PostLang }} lang="{{ .PostLang }}"{{ end }}>{{ .PostText }}</p>&mdash; {{ .PostAuthor }} {{ .PostIndexedAt }}</blockquote><script async src="{{ .WidgetURL }}" charset="utf-8"></script>`
const tpl = `<blockquote class="bluesky-embed" data-bluesky-uri="{{ .PostURI }}" data-bluesky-cid="{{ .PostCID }}"><p{{ if .PostLang }} lang="{{ .PostLang }}"{{ end }}>{{ .PostText }}</p>&mdash; <a href="{{ .ProfileURL }}">{{ .PostAuthor }}</a> <a href="{{ .PostURL }}">{{ .PostIndexedAt }}</a></blockquote><script async src="{{ .WidgetURL }}" charset="utf-8"></script>`
t, err := template.New("snippet").Parse(tpl)
if err != nil {
@ -31,6 +31,12 @@ func (srv *Server) postEmbedHTML(postView *appbsky.FeedDefs_PostView) (string, e
return "", err
}
sortAt := postView.IndexedAt
createdAt, err := syntax.ParseDatetime(post.CreatedAt)
if nil == err && createdAt.String() < sortAt {
sortAt = createdAt.String()
}
var lang string
if len(post.Langs) > 0 {
lang = post.Langs[0]
@ -41,8 +47,6 @@ func (srv *Server) postEmbedHTML(postView *appbsky.FeedDefs_PostView) (string, e
} else {
authorName = fmt.Sprintf("@%s", postView.Author.Handle)
}
fmt.Println(postView.Uri)
fmt.Println(fmt.Sprintf("%s", postView.Uri))
data := struct {
PostURI template.URL
PostCID string
@ -50,6 +54,8 @@ func (srv *Server) postEmbedHTML(postView *appbsky.FeedDefs_PostView) (string, e
PostText string
PostAuthor string
PostIndexedAt string
ProfileURL template.URL
PostURL template.URL
WidgetURL template.URL
}{
PostURI: template.URL(postView.Uri),
@ -57,7 +63,9 @@ func (srv *Server) postEmbedHTML(postView *appbsky.FeedDefs_PostView) (string, e
PostLang: lang,
PostText: post.Text,
PostAuthor: authorName,
PostIndexedAt: postView.IndexedAt, // TODO: createdAt?
PostIndexedAt: sortAt,
ProfileURL: template.URL(fmt.Sprintf("https://bsky.app/profile/%s?ref_src=embed", aturi.Authority())),
PostURL: template.URL(fmt.Sprintf("https://bsky.app/profile/%s/post/%s?ref_src=embed", aturi.Authority(), aturi.RecordKey())),
WidgetURL: template.URL("https://embed.bsky.app/static/embed.js"),
}