Add website to vcard

main
Bob Mottram 2024-08-15 19:27:29 +01:00
parent 10aa29c076
commit 83dd0b09c6
3 changed files with 15 additions and 6 deletions

View File

@ -342,7 +342,7 @@ def daemon_http_get(self) -> None:
if show_vcard(self, self.server.base_dir, if show_vcard(self, self.server.base_dir,
self.path, calling_domain, referer_domain, self.path, calling_domain, referer_domain,
self.server.domain): self.server.domain, self.server.translate):
return return
# getting the public key for an account # getting the public key for an account

View File

@ -22,7 +22,7 @@ from pgp import actor_to_vcard
def show_vcard(self, base_dir: str, path: str, calling_domain: str, def show_vcard(self, base_dir: str, path: str, calling_domain: str,
referer_domain: str, domain: str) -> bool: referer_domain: str, domain: str, translate: {}) -> bool:
"""Returns a vcard for the given account """Returns a vcard for the given account
""" """
if not has_accept(self, calling_domain): if not has_accept(self, calling_domain):
@ -68,10 +68,10 @@ def show_vcard(self, base_dir: str, path: str, calling_domain: str,
self.server.vcard_is_active = False self.server.vcard_is_active = False
return True return True
if 'application/vcard+xml' in accept_str: if 'application/vcard+xml' in accept_str:
vcard_str = actor_to_vcard_xml(actor_json, domain) vcard_str = actor_to_vcard_xml(actor_json, domain, translate)
header_type = 'application/vcard+xml; charset=utf-8' header_type = 'application/vcard+xml; charset=utf-8'
else: else:
vcard_str = actor_to_vcard(actor_json, domain) vcard_str = actor_to_vcard(actor_json, domain, translate)
header_type = 'text/vcard; charset=utf-8' header_type = 'text/vcard; charset=utf-8'
if vcard_str: if vcard_str:
msg = vcard_str.encode('utf-8') msg = vcard_str.encode('utf-8')

13
pgp.py
View File

@ -37,6 +37,7 @@ from matrix import get_matrix_address
from briar import get_briar_address from briar import get_briar_address
from cwtch import get_cwtch_address from cwtch import get_cwtch_address
from blog import get_blog_address from blog import get_blog_address
from donate import get_website
from utils import get_attachment_property_value from utils import get_attachment_property_value
@ -719,7 +720,7 @@ def pgp_public_key_upload(base_dir: str, session,
return actor_update return actor_update
def actor_to_vcard(actor: {}, domain: str) -> str: def actor_to_vcard(actor: {}, domain: str, translate: {}) -> str:
"""Returns a vcard for a given actor """Returns a vcard for a given actor
""" """
actor_url_str = get_url_from_post(actor['url']) actor_url_str = get_url_from_post(actor['url'])
@ -771,6 +772,9 @@ def actor_to_vcard(actor: {}, domain: str) -> str:
peertube = get_peertube(actor) peertube = get_peertube(actor)
if peertube: if peertube:
vcard_str += 'SOCIALPROFILE;SERVICE-TYPE=PeerTube:' + peertube + '\n' vcard_str += 'SOCIALPROFILE;SERVICE-TYPE=PeerTube:' + peertube + '\n'
website = get_website(actor, translate)
if website:
vcard_str += 'URL:' + website + '\n'
xmpp_address = get_xmpp_address(actor) xmpp_address = get_xmpp_address(actor)
if xmpp_address: if xmpp_address:
vcard_str += 'IMPP:xmpp:' + xmpp_address + '\n' vcard_str += 'IMPP:xmpp:' + xmpp_address + '\n'
@ -821,7 +825,7 @@ def actor_to_vcard(actor: {}, domain: str) -> str:
return vcard_str return vcard_str
def actor_to_vcard_xml(actor: {}, domain: str) -> str: def actor_to_vcard_xml(actor: {}, domain: str, translate: {}) -> str:
"""Returns a xml formatted vcard for a given actor """Returns a xml formatted vcard for a given actor
""" """
vcard_str = '<?xml version="1.0" encoding="UTF-8"?>\n' vcard_str = '<?xml version="1.0" encoding="UTF-8"?>\n'
@ -906,6 +910,11 @@ def actor_to_vcard_xml(actor: {}, domain: str) -> str:
vcard_str += ' <url>' + \ vcard_str += ' <url>' + \
'<parameters><type><text>blog</text></type></parameters>' + \ '<parameters><type><text>blog</text></type></parameters>' + \
'<uri>' + blog_address + '</uri></url>\n' '<uri>' + blog_address + '</uri></url>\n'
website = get_website(actor, translate)
if website:
vcard_str += ' <url>' + \
'<parameters><type><text>website</text></type></parameters>' + \
'<uri>' + website + '</uri></url>\n'
vcard_str += ' <rev>' + actor['published'] + '</rev>\n' vcard_str += ' <rev>' + actor['published'] + '</rev>\n'
url_str = get_url_from_post(actor['icon']['url']) url_str = get_url_from_post(actor['icon']['url'])
if url_str: if url_str: