124 lines
4.1 KiB
Python
124 lines
4.1 KiB
Python
# This file is part of Gajim.
|
|
#
|
|
# Gajim is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published
|
|
# by the Free Software Foundation; version 3 only.
|
|
#
|
|
# Gajim is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Chat Markers (XEP-0333)
|
|
|
|
from nbxmpp.namespaces import Namespace
|
|
from nbxmpp.structs import StanzaHandler
|
|
|
|
from gajim.common import app
|
|
from gajim.common.nec import NetworkEvent
|
|
from gajim.common.modules.base import BaseModule
|
|
from gajim.common.structs import OutgoingMessage
|
|
|
|
|
|
class ChatMarkers(BaseModule):
|
|
|
|
_nbxmpp_extends = 'ChatMarkers'
|
|
|
|
def __init__(self, con):
|
|
BaseModule.__init__(self, con)
|
|
|
|
self.handlers = [
|
|
StanzaHandler(name='message',
|
|
callback=self._process_chat_marker,
|
|
ns=Namespace.CHATMARKERS,
|
|
priority=47),
|
|
]
|
|
|
|
def _process_chat_marker(self, _con, _stanza, properties):
|
|
if not properties.is_marker or not properties.marker.is_displayed:
|
|
return
|
|
|
|
if properties.type.is_error:
|
|
return
|
|
|
|
if properties.type.is_groupchat:
|
|
manager = self._con.get_module('MUC').get_manager()
|
|
muc_data = manager.get(properties.muc_jid)
|
|
if muc_data is None:
|
|
return
|
|
|
|
if properties.muc_nickname != muc_data.nick:
|
|
return
|
|
|
|
self._raise_event('read-state-sync', properties)
|
|
return
|
|
|
|
if properties.is_carbon_message and properties.carbon.is_sent:
|
|
self._raise_event('read-state-sync', properties)
|
|
return
|
|
|
|
if properties.is_mam_message:
|
|
if properties.from_.bareMatch(self._con.get_own_jid()):
|
|
return
|
|
|
|
self._raise_event('displayed-received', properties)
|
|
|
|
def _raise_event(self, name, properties):
|
|
self._log.info('%s: %s %s',
|
|
name,
|
|
properties.jid,
|
|
properties.marker.id)
|
|
|
|
jid = properties.jid
|
|
if not properties.is_muc_pm and not properties.type.is_groupchat:
|
|
jid = properties.jid.bare
|
|
|
|
app.storage.archive.set_marker(
|
|
app.get_jid_from_account(self._account),
|
|
jid,
|
|
properties.marker.id,
|
|
'displayed')
|
|
|
|
app.nec.push_outgoing_event(
|
|
NetworkEvent(name,
|
|
account=self._account,
|
|
jid=jid,
|
|
properties=properties,
|
|
type=properties.type,
|
|
is_muc_pm=properties.is_muc_pm,
|
|
marker_id=properties.marker.id))
|
|
|
|
def _send_marker(self, contact, marker, id_, type_):
|
|
jid = contact.jid
|
|
if contact.is_pm_contact:
|
|
jid = app.get_jid_without_resource(contact.jid)
|
|
|
|
if type_ in ('gc', 'pm'):
|
|
if not app.settings.get_group_chat_setting(
|
|
self._account, jid, 'send_marker'):
|
|
return
|
|
else:
|
|
if not app.settings.get_contact_setting(
|
|
self._account, jid, 'send_marker'):
|
|
return
|
|
|
|
typ = 'groupchat' if type_ == 'gc' else 'chat'
|
|
message = OutgoingMessage(account=self._account,
|
|
contact=contact,
|
|
message=None,
|
|
type_=typ,
|
|
marker=(marker, id_),
|
|
play_sound=False)
|
|
self._con.send_message(message)
|
|
self._log.info('Send %s: %s', marker, contact.jid)
|
|
|
|
def send_displayed_marker(self, contact, id_, type_):
|
|
self._send_marker(contact, 'displayed', id_, str(type_))
|
|
|
|
|
|
def get_instance(*args, **kwargs):
|
|
return ChatMarkers(*args, **kwargs), 'ChatMarkers'
|