2018-07-09 00:21:24 +02:00
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
# All XEPs that dont need their own module
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import nbxmpp
|
|
|
|
|
2018-07-19 21:26:45 +02:00
|
|
|
from gajim.common import app
|
2018-09-11 19:29:08 +02:00
|
|
|
from gajim.common.i18n import _
|
2018-07-09 00:21:24 +02:00
|
|
|
from gajim.common.modules.date_and_time import parse_datetime
|
|
|
|
|
|
|
|
log = logging.getLogger('gajim.c.m.misc')
|
|
|
|
|
|
|
|
|
|
|
|
# XEP-0380: Explicit Message Encryption
|
|
|
|
|
|
|
|
_eme_namespaces = {
|
|
|
|
'urn:xmpp:otr:0':
|
|
|
|
_('This message was encrypted with OTR '
|
|
|
|
'and could not be decrypted.'),
|
|
|
|
'jabber:x:encrypted':
|
|
|
|
_('This message was encrypted with Legacy '
|
|
|
|
'OpenPGP and could not be decrypted. You can install '
|
|
|
|
'the PGP plugin to handle those messages.'),
|
|
|
|
'urn:xmpp:openpgp:0':
|
|
|
|
_('This message was encrypted with '
|
|
|
|
'OpenPGP for XMPP and could not be decrypted.'),
|
|
|
|
'fallback':
|
|
|
|
_('This message was encrypted with %s '
|
|
|
|
'and could not be decrypted.')
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def parse_eme(stanza):
|
|
|
|
enc_tag = stanza.getTag('encryption', namespace=nbxmpp.NS_EME)
|
|
|
|
if enc_tag is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
ns = enc_tag.getAttr('namespace')
|
|
|
|
if ns is None:
|
|
|
|
log.warning('No namespace on EME message')
|
|
|
|
return
|
|
|
|
|
|
|
|
if ns in _eme_namespaces:
|
|
|
|
log.info('Found not decrypted message: %s', ns)
|
|
|
|
return _eme_namespaces.get(ns)
|
|
|
|
|
|
|
|
enc_name = enc_tag.getAttr('name')
|
|
|
|
log.info('Found not decrypted message: %s', enc_name or ns)
|
|
|
|
return _eme_namespaces.get('fallback') % enc_name or ns
|
|
|
|
|
|
|
|
|
|
|
|
# XEP-0203: Delayed Delivery
|
|
|
|
|
2018-12-01 01:12:52 +01:00
|
|
|
def parse_delay(stanza, epoch=True, convert='utc', from_=None, not_from=None):
|
|
|
|
'''
|
|
|
|
Returns the first valid delay timestamp that matches
|
|
|
|
|
|
|
|
:param epoch: Returns the timestamp as epoch
|
|
|
|
|
|
|
|
:param convert: Converts the timestamp to either utc or local
|
|
|
|
|
|
|
|
:param from_: Matches only delays that have the according
|
|
|
|
from attr set
|
|
|
|
|
|
|
|
:param not_from: Matches only delays that have the according
|
|
|
|
from attr not set
|
|
|
|
'''
|
|
|
|
delays = stanza.getTags('delay', namespace=nbxmpp.NS_DELAY2)
|
|
|
|
|
|
|
|
for delay in delays:
|
|
|
|
stamp = delay.getAttr('stamp')
|
|
|
|
if stamp is None:
|
|
|
|
log.warning('Invalid timestamp received: %s', stamp)
|
|
|
|
log.warning(stanza)
|
|
|
|
continue
|
|
|
|
|
|
|
|
delay_from = delay.getAttr('from')
|
|
|
|
if from_ is not None:
|
|
|
|
if delay_from != from_:
|
|
|
|
continue
|
|
|
|
if not_from is not None:
|
|
|
|
if delay_from in not_from:
|
|
|
|
continue
|
|
|
|
|
|
|
|
timestamp = parse_datetime(stamp, check_utc=True,
|
2018-07-09 00:21:24 +02:00
|
|
|
epoch=epoch, convert=convert)
|
|
|
|
if timestamp is None:
|
2018-12-01 01:12:52 +01:00
|
|
|
log.warning('Invalid timestamp received: %s', stamp)
|
2018-07-09 00:21:24 +02:00
|
|
|
log.warning(stanza)
|
2018-12-01 01:12:52 +01:00
|
|
|
continue
|
2018-07-09 00:21:24 +02:00
|
|
|
|
2018-12-01 01:12:52 +01:00
|
|
|
return timestamp
|
2018-07-09 00:21:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
# XEP-0066: Out of Band Data
|
|
|
|
|
2018-11-30 23:05:15 +01:00
|
|
|
def parse_oob(event):
|
|
|
|
oob_node = event.stanza.getTag('x', namespace=nbxmpp.NS_X_OOB)
|
2018-07-09 00:21:24 +02:00
|
|
|
if oob_node is None:
|
|
|
|
return
|
2018-11-30 23:05:15 +01:00
|
|
|
|
2018-07-09 00:21:24 +02:00
|
|
|
url = oob_node.getTagData('url')
|
|
|
|
if url is not None:
|
2018-11-30 23:05:15 +01:00
|
|
|
event.additional_data.set_value('gajim', 'oob_url', url)
|
|
|
|
|
2018-07-09 00:21:24 +02:00
|
|
|
desc = oob_node.getTagData('desc')
|
|
|
|
if desc is not None:
|
2018-11-30 23:05:15 +01:00
|
|
|
event.additional_data.set_value('gajim', 'oob_desc', desc)
|
2018-07-09 00:21:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
# XEP-0308: Last Message Correction
|
|
|
|
|
|
|
|
def parse_correction(stanza):
|
|
|
|
replace = stanza.getTag('replace', namespace=nbxmpp.NS_CORRECT)
|
|
|
|
if replace is not None:
|
|
|
|
id_ = replace.getAttr('id')
|
|
|
|
if id_ is not None:
|
|
|
|
return id_
|
2018-09-11 22:25:55 +02:00
|
|
|
log.warning('No id attr found: %s', stanza)
|
2018-07-19 21:26:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
# XEP-0224: Attention
|
|
|
|
|
|
|
|
def parse_attention(stanza):
|
|
|
|
attention = stanza.getTag('attention', namespace=nbxmpp.NS_ATTENTION)
|
|
|
|
if attention is None:
|
|
|
|
return False
|
|
|
|
delayed = stanza.getTag('x', namespace=nbxmpp.NS_DELAY2)
|
|
|
|
if delayed is not None:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
# XEP-0004: Data Forms
|
|
|
|
|
|
|
|
def parse_form(stanza):
|
|
|
|
return stanza.getTag('x', namespace=nbxmpp.NS_DATA)
|
|
|
|
|
|
|
|
|
|
|
|
# XEP-0071: XHTML-IM
|
|
|
|
|
|
|
|
def parse_xhtml(stanza):
|
|
|
|
if app.config.get('ignore_incoming_xhtml'):
|
|
|
|
return None
|
|
|
|
return stanza.getXHTML()
|
2018-10-19 20:37:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
# XEP-0319: Last User Interaction in Presence
|
|
|
|
|
|
|
|
def parse_idle(stanza):
|
|
|
|
idle_tag = stanza.getTag('idle', namespace=nbxmpp.NS_IDLE)
|
|
|
|
if idle_tag is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
since = idle_tag.getAttr('since')
|
|
|
|
if since is None:
|
|
|
|
log.warning('No since attr in idle node')
|
|
|
|
log.warning(stanza)
|
|
|
|
return
|
|
|
|
|
|
|
|
timestamp = parse_datetime(since, convert='utc', epoch=True)
|
|
|
|
if timestamp is None:
|
|
|
|
log.warning('Invalid timestamp received: %s', since)
|
|
|
|
log.warning(stanza)
|
|
|
|
|
|
|
|
return timestamp
|