Include extra tags within opengraph profile

main
Bob Mottram 2021-11-07 15:27:23 +00:00
parent ff07d17502
commit 50dbe63597
1 changed files with 18 additions and 0 deletions

View File

@ -703,6 +703,24 @@ def htmlHeaderWithPersonMarkup(cssFilename: str, instanceTitle: str,
" <meta content=\"summary\" property=\"twitter:card\" />\n" + \ " <meta content=\"summary\" property=\"twitter:card\" />\n" + \
" <meta content=\"" + handle + \ " <meta content=\"" + handle + \
"\" property=\"profile:username\" />\n" "\" property=\"profile:username\" />\n"
if actorJson.get('attachment'):
ogTags = (
'email', 'openpgp', 'blog', 'xmpp', 'matrix', 'briar',
'jami', 'cwtch', 'languages'
)
for attachJson in actorJson['attachment']:
if not attachJson.get('name'):
continue
if not attachJson.get('value'):
continue
name = attachJson['name'].lower()
value = attachJson['value']
for ogTag in ogTags:
if name != ogTag:
continue
ogMetadata += \
" <meta content=\"" + value + \
"\" property=\"og:" + ogTag + "\" />\n"
htmlStr = \ htmlStr = \
htmlHeaderWithExternalStyle(cssFilename, instanceTitle, htmlHeaderWithExternalStyle(cssFilename, instanceTitle,