From ddc23d7d893a683d33d1ae447111508fecc920c1 Mon Sep 17 00:00:00 2001 From: Madhur Garg Date: Tue, 13 Aug 2019 07:50:28 +0530 Subject: Added user colors for messages retrieved using MAM --- poezio/mam.py | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'poezio/mam.py') diff --git a/poezio/mam.py b/poezio/mam.py index 63c2ef86..cf0e5871 100644 --- a/poezio/mam.py +++ b/poezio/mam.py @@ -7,20 +7,34 @@ """ import asyncio +import random from datetime import datetime, timedelta, timezone from slixmpp.exceptions import IqError, IqTimeout from poezio.theming import get_theme from poezio import tabs +from poezio import xhtml +from poezio.config import config from poezio.text_buffer import Message, TextBuffer -def add_line(text_buffer: TextBuffer, text: str, str_time: str, nick: str, top: bool): +def add_line(tab, text_buffer: TextBuffer, text: str, str_time: str, nick: str, top: bool): """Adds a textual entry in the TextBuffer""" time = datetime.strftime(str_time, '%Y-%m-%d %H:%M:%S') time = datetime.strptime(time, '%Y-%m-%d %H:%M:%S') time = time.replace(tzinfo=timezone.utc).astimezone(tz=None) time = time.replace(tzinfo=None) - color = get_theme().COLOR_OWN_NICK + if isinstance(tab, tabs.MucTab): + nick = nick.split('/')[1] + user = tab.get_user_by_name(nick) + if user: + color = user.color + else: + color = random.choice(list(xhtml.colors)) + color = xhtml.colors.get(color) + color = (color, -1) + else: + nick = nick.split('/')[0] + color = get_theme().COLOR_OWN_NICK text_buffer.add_message( text, time, @@ -97,11 +111,7 @@ async def query(tab, remote_jid, top, start=None, end=None, before=None): message = forwarded['stanza'] tab.stanza_id = msg['mam_result']['id'] nick = str(message['from']) - if isinstance(tab, tabs.MucTab): - nick = nick.split('/')[1] - else: - nick = nick.split('/')[0] - add_line(text_buffer, message['body'], timestamp, nick, top) + add_line(tab, text_buffer, message['body'], timestamp, nick, top) tab.text_win.scroll_up(len(tab.text_win.built_lines)) else: for msg in rsm['mam']['results']: @@ -109,11 +119,7 @@ async def query(tab, remote_jid, top, start=None, end=None, before=None): timestamp = forwarded['delay']['stamp'] message = forwarded['stanza'] nick = str(message['from']) - if 'conference' in list(iq['disco_info']['identities'])[0]: - nick = nick.split('/')[1] - else: - nick = nick.split('/')[0] - add_line(text_buffer, message['body'], timestamp, nick, top) + add_line(tab, text_buffer, message['body'], timestamp, nick, top) tab.core.refresh_window() if len(msgs) == 0: return tab.core.information('No more messages left to retrieve', 'Info') -- cgit v1.2.3