summaryrefslogtreecommitdiff
path: root/poezio/mam.py
blob: 08bab7273a245461e18ad48847440eb140f160bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
    Query and control an archive of messages stored on a server using
    XEP-0313: Message Archive Management(MAM).
"""

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, colors
from poezio.config import config
from poezio.text_buffer import Message, TextBuffer

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)
    deterministic = config.get_by_tabname('deterministic_nick_colors',
                                              tab.jid.bare)
    if isinstance(tab, tabs.MucTab):
        nick = nick.split('/')[1]
        user = tab.get_user_by_name(nick)
        if deterministic:
            if user:
                color = user.color
            else:
                theme = get_theme()
                if theme.ccg_palette:
                    fg_color = colors.ccg_text_to_color(theme.ccg_palette, nick)
                    color = fg_color, -1
                else:
                    mod = len(theme.LIST_COLOR_NICKNAMES)
                    nick_pos = int(md5(nick.encode('utf-8')).hexdigest(),
                                16) % mod
                    color = theme.LIST_COLOR_NICKNAMES[nick_pos]
        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(
        txt=text,
        time=time,
        nickname=nick,
        nick_color=color,
        history=True,
        user=None,
        highlight=False,
        top=top,
        identifier=None,
        str_time=None,
        jid=None,
    )

async def query(tab, remote_jid, action, amount, top, start=None, end=None, before=None):
    text_buffer = tab._text_buffer
    try:
        iq = await tab.core.xmpp.plugin['xep_0030'].get_info(jid=remote_jid)
    except (IqError, IqTimeout):
        if action is 'scroll':
            return tab.core.information('%s : Failed to retrieve messages' % remote_jid, 'Error')
    if 'urn:xmpp:mam:2' not in iq['disco_info'].get_features() and action is 'scroll':
        return tab.core.information("%s doesn't support MAM." % remote_jid, "Info")
    if top:
        if isinstance(tab, tabs.MucTab):
            try:
                if before is not None:
                    results = tab.core.xmpp['xep_0313'].retrieve(jid=remote_jid,
                    iterator=True, reverse=top, rsm={'before':before, 'max':amount})
                else:
                    results = tab.core.xmpp['xep_0313'].retrieve(jid=remote_jid,
                    iterator=True, reverse=top, end=end, rsm={'max':amount})
            except (IqError, IqTimeout):
                if action is 'scroll':
                    return tab.core.information('%s : Failed to retrieve messages' % remote_jid, 'Error')
        else:
            try:
                if before is not None:
                    results = tab.core.xmpp['xep_0313'].retrieve(with_jid=remote_jid,
                    iterator=True, reverse=top, rsm={'before':before, 'max':amount})
                else:
                    results = tab.core.xmpp['xep_0313'].retrieve(with_jid=remote_jid,
                    iterator=True, reverse=top, end=end, rsm={'max':amount})
            except (IqError, IqTimeout):
                if action is 'scroll':
                    return tab.core.information('%s : Failed to retrieve messages' % remote_jid, 'Error')
    else:
        if 'conference' in list(iq['disco_info']['identities'])[0]:
            try:
                results = tab.core.xmpp['xep_0313'].retrieve(jid=remote_jid,
                iterator=True, reverse=top, start=start, end=end)
            except (IqError, IqTimeout):
                return tab.core.information('%s : Failed to retrieve messages' % remote_jid, 'Error')
        else:
            try:
                results = tab.core.xmpp['xep_0313'].retrieve(with_jid=remote_jid,
                iterator=True, reverse=top, start=start, end=end)
            except (IqError, IqTimeout):
                return tab.core.information('%s : Failed to retrieve messages' % remote_jid, 'Error')
    msg_count = 0
    msgs = []
    async for rsm in results:
        if top:
            for msg in rsm['mam']['results']:
                if msg['mam_result']['forwarded']['stanza'].xml.find(
                    '{%s}%s' % ('jabber:client', 'body')) is not None:
                    msgs.append(msg)
                if msg_count == amount:
                    tab.query_status = False
                    tab.core.refresh_window()
                    return
                msg_count += 1
            msgs.reverse()
            for msg in msgs:
                forwarded = msg['mam_result']['forwarded']
                timestamp = forwarded['delay']['stamp']
                message = forwarded['stanza']
                tab.last_stanza_id = msg['mam_result']['id']
                nick = str(message['from'])
                add_line(tab, text_buffer, message['body'], timestamp, nick, top)
        else:
            for msg in rsm['mam']['results']:
                forwarded = msg['mam_result']['forwarded']
                timestamp = forwarded['delay']['stamp']
                message = forwarded['stanza']
                nick = str(message['from'])
                add_line(tab, text_buffer, message['body'], timestamp, nick, top)
                tab.core.refresh_window()
    tab.query_status = False

def mam_scroll(tab, action):
    remote_jid = tab.jid
    text_buffer = tab._text_buffer
    before = tab.last_stanza_id
    end = datetime.now()
    if isinstance(tab, tabs.MucTab) is False:
        for message in text_buffer.messages:
            time = message.time
            if time < end:
                end = time
        end = end + timedelta(seconds=-1)
    tzone = datetime.now().astimezone().tzinfo
    end = end.replace(tzinfo=tzone).astimezone(tz=timezone.utc)
    end = end.replace(tzinfo=None)
    end = datetime.strftime(end, '%Y-%m-%dT%H:%M:%SZ')
    if action is 'scroll':
        amount = tab.text_win.height
    else:
        amount = 2 * tab.text_win.height
    if amount >= 100:
        amount = 99
    if before is None:
        asyncio.ensure_future(query(tab, remote_jid, action, amount, top=True, end=end))
    else:
        asyncio.ensure_future(query(tab, remote_jid, action, amount, top=True, before=before))
    tab.query_status = True