2008-08-15 19:31:51 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
2008-08-15 05:20:23 +02:00
|
|
|
## src/common/connection.py
|
2005-04-12 13:46:20 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2003-2005 Vincent Hanquez <tab AT snarc.org>
|
2014-01-02 09:33:54 +01:00
|
|
|
## Copyright (C) 2003-2014 Yann Leboulanger <asterix AT lagaule.org>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005 Alex Mauer <hawke AT hawkesnest.net>
|
2008-08-15 19:31:51 +02:00
|
|
|
## Stéphan Kochen <stephan AT kochen.nl>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
|
|
|
|
## Travis Shirk <travis AT pobox.com>
|
|
|
|
## Nikos Kouremenos <kourem AT gmail.com>
|
2008-08-15 19:31:51 +02:00
|
|
|
## Copyright (C) 2006 Junglecow J <junglecow AT gmail.com>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Stefan Bethge <stefan AT lanpartei.de>
|
|
|
|
## Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
|
|
|
|
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
|
|
|
|
## Julien Pivotto <roidelapluie AT gmail.com>
|
|
|
|
## Copyright (C) 2007-2008 Stephan Erb <steve-e AT h3c.de>
|
|
|
|
## Copyright (C) 2008 Brendan Taylor <whateley AT gmail.com>
|
|
|
|
## Jonathan Schleifer <js-gajim AT webkeks.org>
|
2005-04-12 13:46:20 +02:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2005-04-12 13:46:20 +02:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-12-12 09:44:46 +01:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2005-04-12 13:46:20 +02:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2005-04-12 13:46:20 +02:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2005-04-12 13:46:20 +02:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
2007-12-12 09:44:46 +01:00
|
|
|
##
|
2005-04-12 13:46:20 +02:00
|
|
|
|
|
|
|
import os
|
2005-11-04 09:19:15 +01:00
|
|
|
import random
|
2007-06-03 12:04:20 +02:00
|
|
|
import socket
|
2008-12-03 18:38:16 +01:00
|
|
|
import operator
|
2017-01-04 13:13:55 +01:00
|
|
|
import string
|
2007-12-12 09:44:46 +01:00
|
|
|
import time
|
2008-03-04 00:00:01 +01:00
|
|
|
import locale
|
2009-10-13 19:26:56 +02:00
|
|
|
import hmac
|
2015-07-31 22:08:00 +02:00
|
|
|
import hashlib
|
2011-12-18 23:20:30 +01:00
|
|
|
import json
|
2018-04-23 23:47:17 +02:00
|
|
|
import logging
|
2017-11-11 21:46:34 +01:00
|
|
|
from functools import partial
|
2018-04-23 23:47:17 +02:00
|
|
|
from string import Template
|
2007-12-12 09:44:46 +01:00
|
|
|
|
2006-12-08 22:19:01 +01:00
|
|
|
try:
|
2010-02-08 15:08:40 +01:00
|
|
|
randomsource = random.SystemRandom()
|
2008-10-11 11:37:13 +02:00
|
|
|
except Exception:
|
2010-02-08 15:08:40 +01:00
|
|
|
randomsource = random.Random()
|
|
|
|
randomsource.seed()
|
2006-03-19 15:54:00 +01:00
|
|
|
|
2005-10-04 20:22:25 +02:00
|
|
|
import signal
|
2005-10-05 13:05:51 +02:00
|
|
|
if os.name != 'nt':
|
2010-02-08 15:08:40 +01:00
|
|
|
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
|
2005-07-30 12:59:15 +02:00
|
|
|
|
2018-04-23 23:47:17 +02:00
|
|
|
if os.name == 'nt':
|
|
|
|
import certifi
|
|
|
|
import OpenSSL.crypto
|
2012-12-09 21:37:51 +01:00
|
|
|
import nbxmpp
|
2018-04-23 23:47:17 +02:00
|
|
|
from nbxmpp import Smacks
|
|
|
|
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim import common
|
|
|
|
from gajim.common import helpers
|
2017-08-13 13:18:56 +02:00
|
|
|
from gajim.common import app
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common import gpg
|
|
|
|
from gajim.common import passwords
|
|
|
|
from gajim.common import check_X509
|
|
|
|
from gajim.common.connection_handlers import *
|
2018-02-21 23:09:30 +01:00
|
|
|
from gajim.common.contacts import GC_Contact
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.gtkgui_helpers import get_action
|
2017-01-26 21:34:54 +01:00
|
|
|
|
2013-12-06 21:20:22 +01:00
|
|
|
|
2006-12-23 22:18:07 +01:00
|
|
|
log = logging.getLogger('gajim.c.connection')
|
2006-12-23 00:30:23 +01:00
|
|
|
|
2007-12-12 09:44:46 +01:00
|
|
|
ssl_error = {
|
2017-02-07 21:48:58 +01:00
|
|
|
2: _("Unable to get issuer certificate"),
|
|
|
|
3: _("Unable to get certificate CRL"),
|
|
|
|
4: _("Unable to decrypt certificate's signature"),
|
|
|
|
5: _("Unable to decrypt CRL's signature"),
|
|
|
|
6: _("Unable to decode issuer public key"),
|
|
|
|
7: _("Certificate signature failure"),
|
|
|
|
8: _("CRL signature failure"),
|
|
|
|
9: _("Certificate is not yet valid"),
|
|
|
|
10: _("Certificate has expired"),
|
|
|
|
11: _("CRL is not yet valid"),
|
|
|
|
12: _("CRL has expired"),
|
|
|
|
13: _("Format error in certificate's notBefore field"),
|
|
|
|
14: _("Format error in certificate's notAfter field"),
|
|
|
|
15: _("Format error in CRL's lastUpdate field"),
|
|
|
|
16: _("Format error in CRL's nextUpdate field"),
|
|
|
|
17: _("Out of memory"),
|
|
|
|
18: _("Self signed certificate"),
|
|
|
|
19: _("Self signed certificate in certificate chain"),
|
|
|
|
20: _("Unable to get local issuer certificate"),
|
|
|
|
21: _("Unable to verify the first certificate"),
|
|
|
|
22: _("Certificate chain too long"),
|
|
|
|
23: _("Certificate revoked"),
|
|
|
|
24: _("Invalid CA certificate"),
|
|
|
|
25: _("Path length constraint exceeded"),
|
|
|
|
26: _("Unsupported certificate purpose"),
|
|
|
|
27: _("Certificate not trusted"),
|
|
|
|
28: _("Certificate rejected"),
|
|
|
|
29: _("Subject issuer mismatch"),
|
|
|
|
30: _("Authority and subject key identifier mismatch"),
|
|
|
|
31: _("Authority and issuer serial number mismatch"),
|
|
|
|
32: _("Key usage does not include certificate signing"),
|
|
|
|
50: _("Application verification failure")
|
|
|
|
#100 is for internal usage: host not correct
|
2007-08-09 17:39:18 +02:00
|
|
|
}
|
2009-11-18 11:06:09 +01:00
|
|
|
|
2017-12-16 12:22:38 +01:00
|
|
|
SERVICE_START_TLS = 'xmpp-client'
|
|
|
|
SERVICE_DIRECT_TLS = 'xmpps-client'
|
|
|
|
|
2009-11-18 11:06:09 +01:00
|
|
|
class CommonConnection:
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Common connection class, can be derivated for normal connection or zeroconf
|
|
|
|
connection
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
# self.connected:
|
|
|
|
# 0=>offline,
|
|
|
|
# 1=>connection in progress,
|
|
|
|
# 2=>online
|
|
|
|
# 3=>free for chat
|
|
|
|
# ...
|
|
|
|
self.connected = 0
|
|
|
|
self.connection = None # xmpppy ClientCommon instance
|
|
|
|
self.on_purpose = False
|
|
|
|
self.is_zeroconf = False
|
|
|
|
self.password = ''
|
|
|
|
self.server_resource = self._compute_resource()
|
|
|
|
self.gpg = None
|
|
|
|
self.USE_GPG = False
|
2018-04-24 19:36:33 +02:00
|
|
|
if app.is_installed('GPG'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.USE_GPG = True
|
2017-06-08 18:55:05 +02:00
|
|
|
self.gpg = gpg.GnuPG()
|
2010-02-08 15:08:40 +01:00
|
|
|
self.status = ''
|
|
|
|
self.old_show = ''
|
2017-08-13 13:18:56 +02:00
|
|
|
self.priority = app.get_priority(name, 'offline')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.time_to_reconnect = None
|
|
|
|
self.bookmarks = []
|
|
|
|
|
|
|
|
self.blocked_list = []
|
|
|
|
self.blocked_contacts = []
|
|
|
|
self.blocked_groups = []
|
|
|
|
self.blocked_all = False
|
|
|
|
|
2010-06-07 19:11:44 +02:00
|
|
|
self.seclabel_supported = False
|
|
|
|
self.seclabel_catalogues = {}
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.pep_supported = False
|
|
|
|
self.pep = {}
|
|
|
|
# Do we continue connection when we get roster (send presence,get vcard..)
|
|
|
|
self.continue_connect_info = None
|
|
|
|
|
|
|
|
# Remember where we are in the register agent process
|
|
|
|
self.agent_registrations = {}
|
|
|
|
# To know the groupchat jid associated with a sranza ID. Useful to
|
|
|
|
# request vcard or os info... to a real JID but act as if it comes from
|
|
|
|
# the fake jid
|
|
|
|
self.groupchat_jids = {} # {ID : groupchat_jid}
|
|
|
|
|
|
|
|
self.privacy_rules_supported = False
|
|
|
|
self.vcard_supported = False
|
|
|
|
self.private_storage_supported = False
|
2017-04-18 17:50:15 +02:00
|
|
|
self.archiving_namespace = None
|
2010-08-11 20:12:11 +02:00
|
|
|
self.archiving_supported = False
|
2014-11-26 21:41:09 +01:00
|
|
|
self.archiving_313_supported = False
|
2011-08-09 17:14:13 +02:00
|
|
|
self.roster_supported = True
|
2013-03-30 23:13:48 +01:00
|
|
|
self.blocking_supported = False
|
2013-07-27 14:14:50 +02:00
|
|
|
self.addressing_supported = False
|
2017-11-06 21:46:25 +01:00
|
|
|
self.carbons_available = False
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
self.muc_jid = {} # jid of muc server for each transport type
|
|
|
|
self._stun_servers = [] # STUN servers of our jabber server
|
|
|
|
|
2010-07-02 00:25:08 +02:00
|
|
|
self.awaiting_cids = {} # Used for XEP-0231
|
|
|
|
|
2010-12-11 12:57:09 +01:00
|
|
|
self.nested_group_delimiter = '::'
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.get_config_values_or_default()
|
|
|
|
|
|
|
|
def _compute_resource(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
resource = app.config.get_per('accounts', self.name, 'resource')
|
2010-02-08 15:08:40 +01:00
|
|
|
# All valid resource substitution strings should be added to this hash.
|
|
|
|
if resource:
|
2017-01-04 13:13:55 +01:00
|
|
|
rand = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(8))
|
2010-02-08 15:08:40 +01:00
|
|
|
resource = Template(resource).safe_substitute({
|
2017-01-04 13:13:55 +01:00
|
|
|
'hostname': socket.gethostname(),
|
|
|
|
'rand': rand
|
2010-02-08 15:08:40 +01:00
|
|
|
})
|
2017-11-20 18:10:51 +01:00
|
|
|
app.config.set_per('accounts', self.name, 'resource', resource)
|
2010-02-08 15:08:40 +01:00
|
|
|
return resource
|
|
|
|
|
|
|
|
def dispatch(self, event, data):
|
|
|
|
"""
|
|
|
|
Always passes account name as first param
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.raise_event(event, self.name, data)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-04-25 14:43:54 +02:00
|
|
|
def reconnect(self):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def quit(self, kill_core):
|
2017-08-13 13:18:56 +02:00
|
|
|
if kill_core and app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.disconnect(on_purpose=True)
|
|
|
|
|
|
|
|
def test_gpg_passphrase(self, password):
|
|
|
|
"""
|
|
|
|
Returns 'ok', 'bad_pass' or 'expired'
|
|
|
|
"""
|
|
|
|
if not self.gpg:
|
|
|
|
return False
|
|
|
|
self.gpg.passphrase = password
|
2017-08-13 13:18:56 +02:00
|
|
|
keyID = app.config.get_per('accounts', self.name, 'keyid')
|
2010-02-08 15:08:40 +01:00
|
|
|
signed = self.gpg.sign('test', keyID)
|
|
|
|
self.gpg.password = None
|
|
|
|
if signed == 'KEYEXPIRED':
|
|
|
|
return 'expired'
|
|
|
|
elif signed == 'BAD_PASSPHRASE':
|
|
|
|
return 'bad_pass'
|
|
|
|
return 'ok'
|
|
|
|
|
|
|
|
def get_signed_msg(self, msg, callback = None):
|
|
|
|
"""
|
|
|
|
Returns the signed message if possible or an empty string if gpg is not
|
|
|
|
used or None if waiting for passphrase
|
|
|
|
|
|
|
|
callback is the function to call when user give the passphrase
|
|
|
|
"""
|
|
|
|
signed = ''
|
2017-08-13 13:18:56 +02:00
|
|
|
keyID = app.config.get_per('accounts', self.name, 'keyid')
|
2010-02-08 15:08:40 +01:00
|
|
|
if keyID and self.USE_GPG:
|
2017-06-08 18:55:05 +02:00
|
|
|
if self.gpg.passphrase is None and not self.gpg.use_agent:
|
2010-02-08 15:08:40 +01:00
|
|
|
# We didn't set a passphrase
|
|
|
|
return None
|
2010-11-29 18:44:22 +01:00
|
|
|
signed = self.gpg.sign(msg, keyID)
|
|
|
|
if signed == 'BAD_PASSPHRASE':
|
|
|
|
self.USE_GPG = False
|
|
|
|
signed = ''
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(BadGPGPassphraseEvent(None,
|
2010-11-29 18:44:22 +01:00
|
|
|
conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
return signed
|
|
|
|
|
|
|
|
def _on_disconnected(self):
|
|
|
|
"""
|
|
|
|
Called when a disconnect request has completed successfully
|
|
|
|
"""
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show='offline'))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_status(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
return app.SHOW_LIST[self.connected]
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def check_jid(self, jid):
|
|
|
|
"""
|
|
|
|
This function must be implemented by derivated classes. It has to return
|
|
|
|
the valid jid, or raise a helpers.InvalidFormat exception
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2017-04-06 23:21:19 +02:00
|
|
|
def _prepare_message(self, obj):
|
2017-04-04 18:55:19 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if not self.connection or self.connected < 2:
|
|
|
|
return 1
|
2013-04-25 20:38:18 +02:00
|
|
|
|
2017-04-04 18:55:19 +02:00
|
|
|
if isinstance(obj.jid, list):
|
|
|
|
for jid in obj.jid:
|
2013-07-27 14:14:50 +02:00
|
|
|
try:
|
2017-04-04 18:55:19 +02:00
|
|
|
self.check_jid(jid)
|
2013-07-27 14:14:50 +02:00
|
|
|
except helpers.InvalidFormat:
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='invalid-jid', args=jid))
|
2013-07-27 14:14:50 +02:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
try:
|
2017-04-04 18:55:19 +02:00
|
|
|
self.check_jid(obj.jid)
|
2013-07-27 14:14:50 +02:00
|
|
|
except helpers.InvalidFormat:
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
2017-12-10 22:56:20 +01:00
|
|
|
None, dialog_name='invalid-jid', args=obj.jid))
|
2013-07-27 14:14:50 +02:00
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if obj.message and not obj.xhtml and app.config.get(
|
2010-02-08 15:08:40 +01:00
|
|
|
'rst_formatting_outgoing_messages'):
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common.rst_xhtml_generator import create_xhtml
|
2017-04-04 18:55:19 +02:00
|
|
|
obj.xhtml = create_xhtml(obj.message)
|
|
|
|
if not obj.message and obj.chatstate is None and obj.form_node is None:
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2013-07-27 14:14:50 +02:00
|
|
|
|
2017-04-06 23:21:19 +02:00
|
|
|
self._build_message_stanza(obj)
|
2010-06-27 23:09:07 +02:00
|
|
|
|
2017-04-16 17:16:41 +02:00
|
|
|
def _build_message_stanza(self, obj):
|
2017-08-13 13:18:56 +02:00
|
|
|
if obj.jid == app.get_jid_from_account(self.name):
|
2017-03-19 19:34:30 +01:00
|
|
|
fjid = obj.jid
|
|
|
|
else:
|
|
|
|
fjid = obj.get_full_jid()
|
2017-04-04 18:55:19 +02:00
|
|
|
|
|
|
|
if obj.type_ == 'chat':
|
2017-04-16 17:16:41 +02:00
|
|
|
msg_iq = nbxmpp.Message(body=obj.message, typ=obj.type_,
|
2017-04-04 18:55:19 +02:00
|
|
|
xhtml=obj.xhtml)
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.subject:
|
2017-04-16 17:16:41 +02:00
|
|
|
msg_iq = nbxmpp.Message(body=obj.message, typ='normal',
|
2017-04-04 18:55:19 +02:00
|
|
|
subject=obj.subject, xhtml=obj.xhtml)
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2017-04-16 17:16:41 +02:00
|
|
|
msg_iq = nbxmpp.Message(body=obj.message, typ='normal',
|
2017-04-04 18:55:19 +02:00
|
|
|
xhtml=obj.xhtml)
|
2010-06-27 23:09:07 +02:00
|
|
|
|
2017-06-02 01:29:41 +02:00
|
|
|
if obj.correct_id:
|
|
|
|
msg_iq.setTag('replace', attrs={'id': obj.correct_id},
|
|
|
|
namespace=nbxmpp.NS_CORRECT)
|
|
|
|
|
2017-07-28 01:37:06 +02:00
|
|
|
# XEP-0359
|
|
|
|
obj.stanza_id = self.connection.getAnID()
|
|
|
|
msg_iq.setID(obj.stanza_id)
|
|
|
|
if obj.message:
|
|
|
|
msg_iq.setOriginID(obj.stanza_id)
|
2010-06-27 23:09:07 +02:00
|
|
|
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.form_node:
|
|
|
|
msg_iq.addChild(node=obj.form_node)
|
|
|
|
if obj.label:
|
|
|
|
msg_iq.addChild(node=obj.label)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# XEP-0172: user_nickname
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.user_nick:
|
|
|
|
msg_iq.setTag('nick', namespace=nbxmpp.NS_NICK).setData(
|
|
|
|
obj.user_nick)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# XEP-0203
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.delayed:
|
2017-08-13 13:18:56 +02:00
|
|
|
our_jid = app.get_jid_from_account(self.name) + '/' + \
|
2010-02-08 15:08:40 +01:00
|
|
|
self.server_resource
|
2017-04-04 18:55:19 +02:00
|
|
|
timestamp = time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime(obj.delayed))
|
2012-12-09 21:37:51 +01:00
|
|
|
msg_iq.addChild('delay', namespace=nbxmpp.NS_DELAY2,
|
2010-02-08 15:08:40 +01:00
|
|
|
attrs={'from': our_jid, 'stamp': timestamp})
|
|
|
|
|
2012-04-09 13:38:28 +02:00
|
|
|
# XEP-0224
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.attention:
|
2012-12-09 21:37:51 +01:00
|
|
|
msg_iq.setTag('attention', namespace=nbxmpp.NS_ATTENTION)
|
2012-04-09 13:38:28 +02:00
|
|
|
|
2017-04-04 18:55:19 +02:00
|
|
|
if isinstance(obj.jid, list):
|
2013-07-27 14:14:50 +02:00
|
|
|
if self.addressing_supported:
|
2017-08-13 13:18:56 +02:00
|
|
|
msg_iq.setTo(app.config.get_per('accounts', self.name, 'hostname'))
|
2013-07-27 14:14:50 +02:00
|
|
|
addresses = msg_iq.addChild('addresses',
|
|
|
|
namespace=nbxmpp.NS_ADDRESS)
|
2017-04-04 18:55:19 +02:00
|
|
|
for j in obj.jid:
|
2013-07-27 14:14:50 +02:00
|
|
|
addresses.addChild('address', attrs = {'type': 'to',
|
|
|
|
'jid': j})
|
|
|
|
else:
|
|
|
|
iqs = []
|
2017-04-04 18:55:19 +02:00
|
|
|
for j in obj.jid:
|
2013-07-27 14:14:50 +02:00
|
|
|
iq = nbxmpp.Message(node=msg_iq)
|
|
|
|
iq.setTo(j)
|
|
|
|
iqs.append(iq)
|
|
|
|
msg_iq = iqs
|
|
|
|
else:
|
2013-07-28 12:58:15 +02:00
|
|
|
msg_iq.setTo(fjid)
|
2017-04-04 18:55:19 +02:00
|
|
|
r_ = obj.resource
|
|
|
|
if not r_ and obj.jid != fjid: # Only if we're not in a pm
|
2017-08-13 13:18:56 +02:00
|
|
|
r_ = app.get_resource_from_jid(fjid)
|
2014-03-28 21:29:42 +01:00
|
|
|
if r_:
|
2017-08-13 13:18:56 +02:00
|
|
|
contact = app.contacts.get_contact(self.name, obj.jid, r_)
|
2013-07-27 14:14:50 +02:00
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
contact = app.contacts.get_contact_with_highest_priority(
|
2017-04-04 18:55:19 +02:00
|
|
|
self.name, obj.jid)
|
2013-07-27 14:14:50 +02:00
|
|
|
|
2018-02-21 23:09:30 +01:00
|
|
|
# Mark Message as MUC PM
|
|
|
|
if isinstance(contact, GC_Contact):
|
|
|
|
msg_iq.setTag('x', namespace=nbxmpp.NS_MUC_USER)
|
|
|
|
|
2013-07-27 14:14:50 +02:00
|
|
|
# chatstates - if peer supports xep85, send chatstates
|
|
|
|
# please note that the only valid tag inside a message containing a
|
|
|
|
# <body> tag is the active event
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.chatstate and contact and contact.supports(nbxmpp.NS_CHATSTATES):
|
|
|
|
msg_iq.setTag(obj.chatstate, namespace=nbxmpp.NS_CHATSTATES)
|
2016-10-18 16:26:03 +02:00
|
|
|
only_chatste = False
|
2017-04-16 17:16:41 +02:00
|
|
|
if not obj.message:
|
2016-10-18 16:26:03 +02:00
|
|
|
only_chatste = True
|
2017-04-04 18:55:19 +02:00
|
|
|
if only_chatste and not obj.session.enable_encryption:
|
2016-10-18 16:26:03 +02:00
|
|
|
msg_iq.setTag('no-store',
|
|
|
|
namespace=nbxmpp.NS_MSG_HINTS)
|
2013-07-27 14:14:50 +02:00
|
|
|
|
|
|
|
# XEP-0184
|
2017-08-13 13:18:56 +02:00
|
|
|
if obj.jid != app.get_jid_from_account(self.name):
|
|
|
|
request = app.config.get_per('accounts', self.name,
|
2017-04-16 17:16:41 +02:00
|
|
|
'request_receipt')
|
|
|
|
if obj.message and request:
|
2017-03-20 21:09:13 +01:00
|
|
|
msg_iq.setTag('request', namespace=nbxmpp.NS_RECEIPTS)
|
2013-07-27 14:14:50 +02:00
|
|
|
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.forward_from:
|
2013-07-27 14:14:50 +02:00
|
|
|
addresses = msg_iq.addChild('addresses',
|
|
|
|
namespace=nbxmpp.NS_ADDRESS)
|
|
|
|
addresses.addChild('address', attrs = {'type': 'ofrom',
|
2017-04-04 18:55:19 +02:00
|
|
|
'jid': obj.forward_from})
|
2013-07-27 14:14:50 +02:00
|
|
|
|
2017-04-04 18:55:19 +02:00
|
|
|
if obj.session:
|
2013-07-27 14:14:50 +02:00
|
|
|
# XEP-0201
|
2017-04-04 18:55:19 +02:00
|
|
|
obj.session.last_send = time.time()
|
|
|
|
msg_iq.setThread(obj.session.thread_id)
|
2013-07-27 14:14:50 +02:00
|
|
|
|
2017-04-06 23:21:19 +02:00
|
|
|
self._push_stanza_message_outgoing(obj, msg_iq)
|
|
|
|
|
2017-04-13 22:58:51 +02:00
|
|
|
def _push_stanza_message_outgoing(self, obj, msg_iq):
|
2017-04-06 23:21:19 +02:00
|
|
|
obj.conn = self
|
|
|
|
if isinstance(msg_iq, list):
|
|
|
|
for iq in msg_iq:
|
|
|
|
obj.msg_iq = iq
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(
|
2017-04-06 23:21:19 +02:00
|
|
|
StanzaMessageOutgoingEvent(None, **vars(obj)))
|
|
|
|
else:
|
|
|
|
obj.msg_iq = msg_iq
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(
|
2017-04-06 23:21:19 +02:00
|
|
|
StanzaMessageOutgoingEvent(None, **vars(obj)))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-06-14 15:29:19 +02:00
|
|
|
def log_message(self, obj, jid):
|
2017-04-08 20:10:57 +02:00
|
|
|
if not obj.is_loggable:
|
|
|
|
return
|
|
|
|
|
2017-12-27 13:17:13 +01:00
|
|
|
if obj.forward_from:
|
|
|
|
return
|
|
|
|
|
|
|
|
if obj.session and not obj.session.is_loggable():
|
2017-04-08 20:10:57 +02:00
|
|
|
return
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.config.should_log(self.name, jid):
|
2017-04-08 20:10:57 +02:00
|
|
|
return
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if obj.xhtml and app.config.get('log_xhtml_messages'):
|
2017-08-02 23:01:07 +02:00
|
|
|
obj.message = '<body xmlns="%s">%s</body>' % (nbxmpp.NS_XHTML,
|
|
|
|
obj.xhtml)
|
|
|
|
if obj.message is None:
|
2017-04-08 20:10:57 +02:00
|
|
|
return
|
|
|
|
|
2017-11-17 21:42:44 +01:00
|
|
|
app.logger.insert_into_logs(self.name, jid, obj.timestamp, obj.kind,
|
2017-09-29 00:11:29 +02:00
|
|
|
message=obj.message,
|
|
|
|
subject=obj.subject,
|
|
|
|
additional_data=obj.additional_data,
|
|
|
|
stanza_id=obj.stanza_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def ack_subscribed(self, jid):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def ack_unsubscribed(self, jid):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2017-02-08 03:12:41 +01:00
|
|
|
def request_subscription(self, jid, msg='', name='', groups=None,
|
2010-02-08 15:08:40 +01:00
|
|
|
auto_auth=False):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def send_authorization(self, jid):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def refuse_authorization(self, jid):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def unsubscribe(self, jid, remove_auth = True):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def unsubscribe_agent(self, agent):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def update_contact(self, jid, name, groups):
|
2011-08-09 17:14:13 +02:00
|
|
|
if self.connection and self.roster_supported:
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.getRoster().setItem(jid=jid, name=name, groups=groups)
|
|
|
|
|
|
|
|
def update_contacts(self, contacts):
|
|
|
|
"""
|
|
|
|
Update multiple roster items
|
|
|
|
"""
|
2011-08-09 17:14:13 +02:00
|
|
|
if self.connection and self.roster_supported:
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.getRoster().setItemMulti(contacts)
|
|
|
|
|
|
|
|
def new_account(self, name, config, sync=False):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def _on_new_account(self, con=None, con_type=None):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def account_changed(self, new_name):
|
|
|
|
self.name = new_name
|
|
|
|
|
|
|
|
def request_os_info(self, jid, resource):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def get_settings(self):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def get_bookmarks(self):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def store_bookmarks(self):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def get_metacontacts(self):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def send_agent_status(self, agent, ptype):
|
|
|
|
"""
|
|
|
|
To be implemented by derivated classes
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def gpg_passphrase(self, passphrase):
|
|
|
|
if self.gpg:
|
2017-06-08 18:55:05 +02:00
|
|
|
if self.gpg.use_agent:
|
2010-02-08 15:08:40 +01:00
|
|
|
self.gpg.passphrase = None
|
|
|
|
else:
|
|
|
|
self.gpg.passphrase = passphrase
|
|
|
|
|
2016-12-17 14:06:36 +01:00
|
|
|
def ask_gpg_keys(self, keyID=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.gpg:
|
2016-12-17 14:06:36 +01:00
|
|
|
if keyID:
|
|
|
|
return self.gpg.get_key(keyID)
|
2010-11-29 18:44:22 +01:00
|
|
|
return self.gpg.get_keys()
|
2010-02-08 15:08:40 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
def ask_gpg_secrete_keys(self):
|
|
|
|
if self.gpg:
|
2010-11-29 18:44:22 +01:00
|
|
|
return self.gpg.get_secret_keys()
|
2010-02-08 15:08:40 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
def load_roster_from_db(self):
|
|
|
|
# Do nothing by default
|
|
|
|
return
|
|
|
|
|
|
|
|
def _event_dispatcher(self, realm, event, data):
|
|
|
|
if realm == '':
|
2012-12-09 21:37:51 +01:00
|
|
|
if event == nbxmpp.transports_nb.DATA_RECEIVED:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(StanzaReceivedEvent(None,
|
2013-01-01 21:06:16 +01:00
|
|
|
conn=self, stanza_str=data))
|
2012-12-09 21:37:51 +01:00
|
|
|
elif event == nbxmpp.transports_nb.DATA_SENT:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(StanzaSentEvent(None, conn=self,
|
2012-12-30 23:49:05 +01:00
|
|
|
stanza_str=data))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def change_status(self, show, msg, auto=False):
|
|
|
|
if not msg:
|
|
|
|
msg = ''
|
|
|
|
sign_msg = False
|
|
|
|
if not auto and not show == 'offline':
|
|
|
|
sign_msg = True
|
|
|
|
if show != 'invisible':
|
|
|
|
# We save it only when privacy list is accepted
|
|
|
|
self.status = msg
|
|
|
|
if show != 'offline' and self.connected < 1:
|
|
|
|
# set old_show to requested 'show' in case we need to
|
|
|
|
# recconect before we auth to server
|
|
|
|
self.old_show = show
|
|
|
|
self.on_purpose = False
|
|
|
|
self.server_resource = self._compute_resource()
|
2018-04-24 19:36:33 +02:00
|
|
|
if app.is_installed('GPG'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.USE_GPG = True
|
2017-06-08 18:55:05 +02:00
|
|
|
self.gpg = gpg.GnuPG()
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(BeforeChangeShowEvent(None,
|
2014-01-14 22:48:51 +01:00
|
|
|
conn=self, show=show, message=msg))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connect_and_init(show, msg, sign_msg)
|
|
|
|
return
|
|
|
|
|
|
|
|
if show == 'offline':
|
|
|
|
self.connected = 0
|
|
|
|
if self.connection:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(BeforeChangeShowEvent(None,
|
2014-01-14 22:48:51 +01:00
|
|
|
conn=self, show=show, message=msg))
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ = 'unavailable')
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, False)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
|
|
|
|
self.connection.RegisterDisconnectHandler(self._on_disconnected)
|
|
|
|
self.connection.send(p, now=True)
|
|
|
|
self.connection.start_disconnect()
|
|
|
|
else:
|
|
|
|
self._on_disconnected()
|
|
|
|
return
|
|
|
|
|
|
|
|
if show != 'offline' and self.connected > 0:
|
|
|
|
# dont'try to connect, when we are in state 'connecting'
|
|
|
|
if self.connected == 1:
|
|
|
|
return
|
|
|
|
if show == 'invisible':
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(BeforeChangeShowEvent(None,
|
2014-01-14 22:48:51 +01:00
|
|
|
conn=self, show=show, message=msg))
|
2010-02-08 15:08:40 +01:00
|
|
|
self._change_to_invisible(msg)
|
|
|
|
return
|
|
|
|
if show not in ['offline', 'online', 'chat', 'away', 'xa', 'dnd']:
|
|
|
|
return -1
|
2017-08-13 13:18:56 +02:00
|
|
|
was_invisible = self.connected == app.SHOW_LIST.index('invisible')
|
|
|
|
self.connected = app.SHOW_LIST.index(show)
|
2017-07-26 22:24:19 +02:00
|
|
|
idle_time = None
|
|
|
|
if auto:
|
2018-04-24 19:36:33 +02:00
|
|
|
if app.is_installed('IDLE') and app.config.get('autoaway'):
|
2017-08-22 21:53:32 +02:00
|
|
|
idle_sec = int(app.interface.sleeper.getIdleSec())
|
2017-07-26 22:24:19 +02:00
|
|
|
idle_time = time.strftime('%Y-%m-%dT%H:%M:%SZ',
|
|
|
|
time.gmtime(time.time() - idle_sec))
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(BeforeChangeShowEvent(None,
|
2014-01-14 22:48:51 +01:00
|
|
|
conn=self, show=show, message=msg))
|
2010-02-08 15:08:40 +01:00
|
|
|
if was_invisible:
|
|
|
|
self._change_from_invisible()
|
2017-07-26 22:24:19 +02:00
|
|
|
self._update_status(show, msg, idle_time=idle_time)
|
2009-11-18 11:06:09 +01:00
|
|
|
|
|
|
|
class Connection(CommonConnection, ConnectionHandlers):
|
2010-02-08 15:08:40 +01:00
|
|
|
def __init__(self, name):
|
|
|
|
CommonConnection.__init__(self, name)
|
|
|
|
ConnectionHandlers.__init__(self)
|
|
|
|
# this property is used to prevent double connections
|
|
|
|
# If we succeed to connect, remember it so next time we try (after a
|
|
|
|
# disconnection) we try only this type.
|
|
|
|
self.lang = None
|
|
|
|
if locale.getdefaultlocale()[0]:
|
|
|
|
self.lang = locale.getdefaultlocale()[0].split('_')[0]
|
|
|
|
# increase/decrease default timeout for server responses
|
|
|
|
self.try_connecting_for_foo_secs = 45
|
|
|
|
# holds the actual hostname to which we are connected
|
|
|
|
self.connected_hostname = None
|
2017-07-27 18:55:13 +02:00
|
|
|
# Holds the full jid we received on the bind event
|
|
|
|
self.registered_name = None
|
2012-04-15 23:42:53 +02:00
|
|
|
self.redirected = None
|
2010-02-08 15:08:40 +01:00
|
|
|
self.last_time_to_reconnect = None
|
|
|
|
self.new_account_info = None
|
|
|
|
self.new_account_form = None
|
|
|
|
self.annotations = {}
|
2017-08-13 13:18:56 +02:00
|
|
|
self.last_io = app.idlequeue.current_time()
|
2010-02-08 15:08:40 +01:00
|
|
|
self.last_sent = []
|
|
|
|
self.password = passwords.get_password(name)
|
|
|
|
|
|
|
|
self.music_track_info = 0
|
|
|
|
self.location_info = {}
|
2017-04-19 17:42:08 +02:00
|
|
|
self.register_supported = False
|
2010-02-08 15:08:40 +01:00
|
|
|
self.pubsub_publish_options_supported = False
|
|
|
|
# Do we auto accept insecure connection
|
|
|
|
self.connection_auto_accepted = False
|
|
|
|
self.pasword_callback = None
|
|
|
|
|
|
|
|
self.on_connect_success = None
|
|
|
|
self.on_connect_failure = None
|
|
|
|
self.retrycount = 0
|
|
|
|
self.jids_for_auto_auth = [] # list of jid to auto-authorize
|
|
|
|
self.available_transports = {} # list of available transports on this
|
|
|
|
# server {'icq': ['icq.server.com', 'icq2.server.com'], }
|
|
|
|
self.private_storage_supported = True
|
2011-08-21 23:13:25 +02:00
|
|
|
self.privacy_rules_requested = False
|
2010-02-08 15:08:40 +01:00
|
|
|
self.streamError = ''
|
2013-01-03 19:01:18 +01:00
|
|
|
self.secret_hmac = str(random.random())[2:].encode('utf-8')
|
2018-03-28 11:36:14 +02:00
|
|
|
self.removing_account = False
|
2011-08-27 22:41:55 +02:00
|
|
|
|
|
|
|
self.sm = Smacks(self) # Stream Management
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('privacy-list-received', ged.CORE,
|
2010-11-24 22:48:39 +01:00
|
|
|
self._nec_privacy_list_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('agent-info-error-received', ged.CORE,
|
2010-11-29 12:53:50 +01:00
|
|
|
self._nec_agent_info_error_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('agent-info-received', ged.CORE,
|
2010-11-29 12:53:50 +01:00
|
|
|
self._nec_agent_info_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('message-outgoing', ged.OUT_CORE,
|
2011-05-18 19:44:43 +02:00
|
|
|
self._nec_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('gc-message-outgoing', ged.OUT_CORE,
|
2013-07-19 11:52:37 +02:00
|
|
|
self._nec_gc_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('gc-stanza-message-outgoing', ged.OUT_CORE,
|
2016-06-24 20:12:37 +02:00
|
|
|
self._nec_gc_stanza_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('stanza-message-outgoing',
|
2015-09-23 22:39:11 +02:00
|
|
|
ged.OUT_CORE, self._nec_stanza_message_outgoing)
|
2010-02-08 15:08:40 +01:00
|
|
|
# END __init__
|
|
|
|
|
2011-01-06 16:50:38 +01:00
|
|
|
def cleanup(self):
|
|
|
|
ConnectionHandlers.cleanup(self)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('privacy-list-received', ged.CORE,
|
2010-11-24 22:48:39 +01:00
|
|
|
self._nec_privacy_list_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('agent-info-error-received', ged.CORE,
|
2010-11-29 12:53:50 +01:00
|
|
|
self._nec_agent_info_error_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('agent-info-received', ged.CORE,
|
2011-01-06 16:50:38 +01:00
|
|
|
self._nec_agent_info_received)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('message-outgoing', ged.OUT_CORE,
|
2011-05-18 19:44:43 +02:00
|
|
|
self._nec_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('gc-message-outgoing', ged.OUT_CORE,
|
2013-07-19 11:52:37 +02:00
|
|
|
self._nec_gc_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('gc-stanza-message-outgoing', ged.OUT_CORE,
|
2016-06-24 20:12:37 +02:00
|
|
|
self._nec_gc_stanza_message_outgoing)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.remove_event_handler('stanza-message-outgoing', ged.OUT_CORE,
|
2015-09-23 22:39:11 +02:00
|
|
|
self._nec_stanza_message_outgoing)
|
2010-11-24 22:48:39 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def get_config_values_or_default(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'keep_alives_enabled'):
|
|
|
|
self.keepalives = app.config.get_per('accounts', self.name,
|
2010-02-08 15:08:40 +01:00
|
|
|
'keep_alive_every_foo_secs')
|
|
|
|
else:
|
|
|
|
self.keepalives = 0
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'ping_alives_enabled'):
|
|
|
|
self.pingalives = app.config.get_per('accounts', self.name,
|
2010-02-08 15:08:40 +01:00
|
|
|
'ping_alive_every_foo_secs')
|
|
|
|
else:
|
|
|
|
self.pingalives = 0
|
2017-08-13 13:18:56 +02:00
|
|
|
self.client_cert = app.config.get_per('accounts', self.name,
|
2010-04-18 20:43:40 +02:00
|
|
|
'client_cert')
|
2011-07-26 22:44:11 +02:00
|
|
|
self.client_cert_passphrase = ''
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def check_jid(self, jid):
|
|
|
|
return helpers.parse_jid(jid)
|
|
|
|
|
2017-09-03 22:35:56 +02:00
|
|
|
def get_own_jid(self, warn=False):
|
2017-07-23 09:55:13 +02:00
|
|
|
"""
|
2017-07-27 18:55:13 +02:00
|
|
|
Return the last full JID we received on a bind event.
|
|
|
|
In case we were never connected it returns the bare JID from config.
|
2017-07-23 09:55:13 +02:00
|
|
|
"""
|
2017-07-27 18:55:13 +02:00
|
|
|
if self.registered_name:
|
|
|
|
# This returns the full jid we received on the bind event
|
|
|
|
return self.registered_name
|
2017-07-23 09:55:13 +02:00
|
|
|
else:
|
2017-09-03 22:35:56 +02:00
|
|
|
if warn:
|
|
|
|
log.warning('only bare JID available')
|
2017-07-27 18:55:13 +02:00
|
|
|
# This returns the bare jid
|
2017-08-13 13:18:56 +02:00
|
|
|
return nbxmpp.JID(app.get_jid_from_account(self.name))
|
2017-07-23 09:55:13 +02:00
|
|
|
|
2017-04-25 14:43:54 +02:00
|
|
|
def reconnect(self):
|
2010-02-08 15:08:40 +01:00
|
|
|
# Do not try to reco while we are already trying
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
if self.connected < 2: # connection failed
|
|
|
|
log.debug('reconnect')
|
|
|
|
self.connected = 1
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show='connecting'))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.retrycount += 1
|
|
|
|
self.on_connect_auth = self._discover_server_at_connection
|
|
|
|
self.connect_and_init(self.old_show, self.status, self.USE_GPG)
|
|
|
|
else:
|
|
|
|
# reconnect succeeded
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
self.retrycount = 0
|
|
|
|
|
|
|
|
# We are doing disconnect at so many places, better use one function in all
|
|
|
|
def disconnect(self, on_purpose=False):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.interface.music_track_changed(None, None, self.name)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.reset_awaiting_pep()
|
|
|
|
self.on_purpose = on_purpose
|
|
|
|
self.connected = 0
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
self.privacy_rules_supported = False
|
2017-09-16 11:49:31 +02:00
|
|
|
self.avatar_presence_sent = False
|
2011-06-11 22:29:08 +02:00
|
|
|
if on_purpose:
|
|
|
|
self.sm = Smacks(self)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.connection:
|
|
|
|
# make sure previous connection is completely closed
|
2017-08-13 13:18:56 +02:00
|
|
|
app.proxy65_manager.disconnect(self.connection)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.terminate_sessions()
|
|
|
|
self.remove_all_transfers()
|
|
|
|
self.connection.disconnect()
|
|
|
|
self.connection = None
|
2015-07-26 14:05:47 +02:00
|
|
|
|
2011-06-08 05:50:45 +02:00
|
|
|
def set_oldst(self): # Set old state
|
|
|
|
if self.old_show:
|
2017-08-13 13:18:56 +02:00
|
|
|
self.connected = app.SHOW_LIST.index(self.old_show)
|
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2011-06-08 05:50:45 +02:00
|
|
|
show=self.connected))
|
|
|
|
else: # we default to online
|
|
|
|
self.connected = 2
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
|
|
|
show=app.SHOW_LIST[self.connected]))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-04-25 14:43:54 +02:00
|
|
|
def disconnectedReconnCB(self):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Called when we are disconnected
|
|
|
|
"""
|
|
|
|
log.info('disconnectedReconnCB called')
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
# we cannot change our status to offline or connecting
|
|
|
|
# after we auth to server
|
2017-08-13 13:18:56 +02:00
|
|
|
self.old_show = app.SHOW_LIST[self.connected]
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connected = 0
|
|
|
|
if not self.on_purpose:
|
2011-06-11 05:07:34 +02:00
|
|
|
if not (self.sm and self.sm.resumption):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2011-08-22 09:45:51 +02:00
|
|
|
show='offline'))
|
2012-02-09 04:06:29 +01:00
|
|
|
else:
|
2012-03-15 04:49:37 +01:00
|
|
|
self.sm.enabled = False
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2012-02-09 04:06:29 +01:00
|
|
|
show='error'))
|
2015-07-28 20:19:19 +02:00
|
|
|
if self.connection:
|
|
|
|
self.connection.UnregisterDisconnectHandler(
|
2017-04-25 14:43:54 +02:00
|
|
|
self.disconnectedReconnCB)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.disconnect()
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'autoreconnect'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connected = -1
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show='error'))
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.status_before_autoaway[self.name]:
|
2010-02-08 15:08:40 +01:00
|
|
|
# We were auto away. So go back online
|
2017-08-13 13:18:56 +02:00
|
|
|
self.status = app.status_before_autoaway[self.name]
|
|
|
|
app.status_before_autoaway[self.name] = ''
|
2010-02-08 15:08:40 +01:00
|
|
|
self.old_show = 'online'
|
2017-04-25 14:43:54 +02:00
|
|
|
# this check has moved from reconnect method
|
2016-09-18 15:15:10 +02:00
|
|
|
# do exponential backoff until less than 5 minutes
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.retrycount < 2 or self.last_time_to_reconnect is None:
|
|
|
|
self.last_time_to_reconnect = 5
|
2016-09-18 15:15:10 +02:00
|
|
|
self.last_time_to_reconnect += randomsource.randint(0, 5)
|
|
|
|
if self.last_time_to_reconnect < 200:
|
2010-02-08 15:08:40 +01:00
|
|
|
self.last_time_to_reconnect *= 1.5
|
|
|
|
self.time_to_reconnect = int(self.last_time_to_reconnect)
|
|
|
|
log.info("Reconnect to %s in %ss", self.name, self.time_to_reconnect)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.idlequeue.set_alarm(self._reconnect_alarm,
|
2010-02-08 15:08:40 +01:00
|
|
|
self.time_to_reconnect)
|
|
|
|
elif self.on_connect_failure:
|
|
|
|
self.on_connect_failure()
|
|
|
|
self.on_connect_failure = None
|
|
|
|
else:
|
|
|
|
# show error dialog
|
|
|
|
self._connection_lost()
|
|
|
|
else:
|
2012-08-10 10:43:02 +02:00
|
|
|
if self.redirected:
|
|
|
|
self.disconnect(on_purpose=True)
|
|
|
|
self.connect()
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.disconnect()
|
2010-02-08 15:08:40 +01:00
|
|
|
self.on_purpose = False
|
|
|
|
# END disconnectedReconnCB
|
|
|
|
|
|
|
|
def _connection_lost(self):
|
|
|
|
log.debug('_connection_lost')
|
|
|
|
self.disconnect(on_purpose = False)
|
2018-03-28 11:36:14 +02:00
|
|
|
if self.removing_account:
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None, conn=self,
|
2010-11-15 17:03:38 +01:00
|
|
|
title=_('Connection with account "%s" has been lost') % self.name,
|
|
|
|
msg=_('Reconnect manually.')))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _event_dispatcher(self, realm, event, data):
|
|
|
|
CommonConnection._event_dispatcher(self, realm, event, data)
|
2012-12-09 21:37:51 +01:00
|
|
|
if realm == nbxmpp.NS_REGISTER:
|
|
|
|
if event == nbxmpp.features_nb.REGISTER_DATA_RECEIVED:
|
2010-02-08 15:08:40 +01:00
|
|
|
# data is (agent, DataFrom, is_form, error_msg)
|
|
|
|
if self.new_account_info and \
|
|
|
|
self.new_account_info['hostname'] == data[0]:
|
|
|
|
# it's a new account
|
|
|
|
if not data[1]: # wrong answer
|
2010-11-07 18:26:31 +01:00
|
|
|
reason = _('Server %(name)s answered wrongly to '
|
|
|
|
'register request: %(error)s') % {'name': data[0],
|
|
|
|
'error': data[3]}
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(AccountNotCreatedEvent(
|
2010-11-14 12:22:45 +01:00
|
|
|
None, conn=self, reason=reason))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
is_form = data[2]
|
|
|
|
conf = data[1]
|
2010-11-14 12:22:45 +01:00
|
|
|
if data[4] is not '':
|
|
|
|
helpers.replace_dataform_media(conf, data[4])
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.new_account_form:
|
|
|
|
def _on_register_result(result):
|
2012-12-09 21:37:51 +01:00
|
|
|
if not nbxmpp.isResultNode(result):
|
2018-03-24 17:55:32 +01:00
|
|
|
reason = result.getErrorMsg() or result.getError()
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(AccountNotCreatedEvent(
|
2018-03-24 17:55:32 +01:00
|
|
|
None, conn=self, reason=reason))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2018-04-24 19:36:33 +02:00
|
|
|
if app.is_installed('GPG'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.USE_GPG = True
|
2017-06-08 18:55:05 +02:00
|
|
|
self.gpg = gpg.GnuPG()
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(
|
2010-11-07 18:26:31 +01:00
|
|
|
AccountCreatedEvent(None, conn=self,
|
|
|
|
account_info = self.new_account_info))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.new_account_info = None
|
|
|
|
self.new_account_form = None
|
|
|
|
if self.connection:
|
|
|
|
self.connection.UnregisterDisconnectHandler(
|
|
|
|
self._on_new_account)
|
|
|
|
self.disconnect(on_purpose=True)
|
|
|
|
# it's the second time we get the form, we have info user
|
|
|
|
# typed, so send them
|
|
|
|
if is_form:
|
|
|
|
#TODO: Check if form has changed
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_REGISTER,
|
2010-11-14 12:22:45 +01:00
|
|
|
to=self._hostname)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setTag('query').addChild(node=self.new_account_form)
|
|
|
|
self.connection.SendAndCallForResponse(iq,
|
|
|
|
_on_register_result)
|
|
|
|
else:
|
2013-01-04 23:11:07 +01:00
|
|
|
if list(self.new_account_form.keys()).sort() != \
|
|
|
|
list(conf.keys()).sort():
|
2010-02-08 15:08:40 +01:00
|
|
|
# requested config has changed since first connection
|
2010-11-07 18:26:31 +01:00
|
|
|
reason = _('Server %s provided a different '
|
|
|
|
'registration form') % data[0]
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(AccountNotCreatedEvent(
|
2010-11-07 18:26:31 +01:00
|
|
|
None, conn=self, reason=reason))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.register(self.connection,
|
2010-02-08 15:08:40 +01:00
|
|
|
self._hostname, self.new_account_form,
|
|
|
|
_on_register_result)
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(NewAccountConnectedEvent(None,
|
2010-11-07 18:50:24 +01:00
|
|
|
conn=self, config=conf, is_form=is_form))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.UnregisterDisconnectHandler(
|
2010-11-07 18:50:24 +01:00
|
|
|
self._on_new_account)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.disconnect(on_purpose=True)
|
|
|
|
return
|
|
|
|
if not data[1]: # wrong answer
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='invalid-answer',
|
|
|
|
kwargs={'name': data[0], 'error': data[3]}))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
is_form = data[2]
|
|
|
|
conf = data[1]
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(RegisterAgentInfoReceivedEvent(
|
2010-11-29 11:22:27 +01:00
|
|
|
None, conn=self, agent=data[0], config=conf,
|
|
|
|
is_form=is_form))
|
2012-12-09 21:37:51 +01:00
|
|
|
elif realm == nbxmpp.NS_PRIVACY:
|
|
|
|
if event == nbxmpp.features_nb.PRIVACY_LISTS_RECEIVED:
|
2010-02-08 15:08:40 +01:00
|
|
|
# data is (list)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PrivacyListsReceivedEvent(None,
|
2010-11-24 22:48:39 +01:00
|
|
|
conn=self, lists_list=data))
|
2012-12-09 21:37:51 +01:00
|
|
|
elif event == nbxmpp.features_nb.PRIVACY_LIST_RECEIVED:
|
2010-02-08 15:08:40 +01:00
|
|
|
# data is (resp)
|
|
|
|
if not data:
|
|
|
|
return
|
|
|
|
rules = []
|
|
|
|
name = data.getTag('query').getTag('list').getAttr('name')
|
|
|
|
for child in data.getTag('query').getTag('list').getChildren():
|
|
|
|
dict_item = child.getAttrs()
|
|
|
|
childs = []
|
|
|
|
if 'type' in dict_item:
|
|
|
|
for scnd_child in child.getChildren():
|
|
|
|
childs += [scnd_child.getName()]
|
|
|
|
rules.append({'action':dict_item['action'],
|
|
|
|
'type':dict_item['type'], 'order':dict_item['order'],
|
|
|
|
'value':dict_item['value'], 'child':childs})
|
|
|
|
else:
|
|
|
|
for scnd_child in child.getChildren():
|
|
|
|
childs.append(scnd_child.getName())
|
|
|
|
rules.append({'action':dict_item['action'],
|
|
|
|
'order':dict_item['order'], 'child':childs})
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PrivacyListReceivedEvent(None,
|
2010-11-24 22:48:39 +01:00
|
|
|
conn=self, list_name=name, rules=rules))
|
2012-12-09 21:37:51 +01:00
|
|
|
elif event == nbxmpp.features_nb.PRIVACY_LISTS_ACTIVE_DEFAULT:
|
2010-02-08 15:08:40 +01:00
|
|
|
# data is (dict)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PrivacyListActiveDefaultEvent(
|
2010-11-24 22:48:39 +01:00
|
|
|
None, conn=self, active_list=data['active'],
|
|
|
|
default_list=data['default']))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _select_next_host(self, hosts):
|
|
|
|
"""
|
|
|
|
Selects the next host according to RFC2782 p.3 based on it's priority.
|
|
|
|
Chooses between hosts with the same priority randomly, where the
|
|
|
|
probability of being selected is proportional to the weight of the host
|
|
|
|
"""
|
|
|
|
hosts_by_prio = sorted(hosts, key=operator.itemgetter('prio'))
|
|
|
|
|
|
|
|
try:
|
|
|
|
lowest_prio = hosts_by_prio[0]['prio']
|
|
|
|
except IndexError:
|
|
|
|
raise ValueError("No hosts to choose from!")
|
|
|
|
|
|
|
|
hosts_lowest_prio = [h for h in hosts_by_prio if h['prio'] == lowest_prio]
|
|
|
|
|
|
|
|
if len(hosts_lowest_prio) == 1:
|
|
|
|
return hosts_lowest_prio[0]
|
|
|
|
else:
|
|
|
|
rndint = random.randint(0, sum(h['weight'] for h in hosts_lowest_prio))
|
|
|
|
weightsum = 0
|
|
|
|
for host in sorted(hosts_lowest_prio, key=operator.itemgetter(
|
|
|
|
'weight')):
|
|
|
|
weightsum += host['weight']
|
|
|
|
if weightsum >= rndint:
|
|
|
|
return host
|
|
|
|
|
2011-11-10 20:37:48 +01:00
|
|
|
def connect(self, data=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
2017-02-04 23:29:45 +01:00
|
|
|
Start a connection to the XMPP server
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
Returns connection, and connection type ('tls', 'ssl', 'plain', '') data
|
2017-06-06 21:24:27 +02:00
|
|
|
MUST contain hostname, proxy, use_custom_host, custom_host (if
|
2010-02-08 15:08:40 +01:00
|
|
|
use_custom_host), custom_port (if use_custom_host)
|
|
|
|
"""
|
|
|
|
if self.connection:
|
|
|
|
return self.connection, ''
|
|
|
|
|
2011-06-16 02:37:07 +02:00
|
|
|
if self.sm.resuming and self.sm.location:
|
2011-08-22 09:45:51 +02:00
|
|
|
# If resuming and server gave a location, connect from there
|
2011-06-16 02:37:07 +02:00
|
|
|
hostname = self.sm.location
|
2017-08-13 13:18:56 +02:00
|
|
|
self.try_connecting_for_foo_secs = app.config.get_per('accounts',
|
2011-08-22 09:45:51 +02:00
|
|
|
self.name, 'try_connecting_for_foo_secs')
|
2011-06-16 02:37:07 +02:00
|
|
|
use_custom = False
|
2011-11-10 20:37:48 +01:00
|
|
|
proxy = helpers.get_proxy_info(self.name)
|
2011-08-22 09:45:51 +02:00
|
|
|
|
2011-06-16 02:37:07 +02:00
|
|
|
elif data:
|
2010-02-08 15:08:40 +01:00
|
|
|
hostname = data['hostname']
|
|
|
|
self.try_connecting_for_foo_secs = 45
|
|
|
|
p = data['proxy']
|
2017-08-13 13:18:56 +02:00
|
|
|
if p and p in app.config.get_per('proxies'):
|
2011-11-10 20:37:48 +01:00
|
|
|
proxy = {}
|
2017-08-13 13:18:56 +02:00
|
|
|
proxyptr = app.config.get_per('proxies', p)
|
2011-11-10 20:37:48 +01:00
|
|
|
for key in proxyptr.keys():
|
2012-04-11 21:30:05 +02:00
|
|
|
proxy[key] = proxyptr[key]
|
2011-11-10 20:37:48 +01:00
|
|
|
else:
|
|
|
|
proxy = None
|
2010-02-08 15:08:40 +01:00
|
|
|
use_srv = True
|
|
|
|
use_custom = data['use_custom_host']
|
|
|
|
if use_custom:
|
|
|
|
custom_h = data['custom_host']
|
|
|
|
custom_p = data['custom_port']
|
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
|
|
|
self.try_connecting_for_foo_secs = app.config.get_per('accounts',
|
2010-02-08 15:08:40 +01:00
|
|
|
self.name, 'try_connecting_for_foo_secs')
|
2011-11-10 20:37:48 +01:00
|
|
|
proxy = helpers.get_proxy_info(self.name)
|
2017-08-13 13:18:56 +02:00
|
|
|
use_srv = app.config.get_per('accounts', self.name, 'use_srv')
|
2012-04-15 23:42:53 +02:00
|
|
|
if self.redirected:
|
|
|
|
use_custom = True
|
|
|
|
custom_h = self.redirected['host']
|
|
|
|
custom_p = self.redirected['port']
|
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
use_custom = app.config.get_per('accounts', self.name,
|
2010-02-08 15:08:40 +01:00
|
|
|
'use_custom_host')
|
2014-11-09 14:03:01 +01:00
|
|
|
if use_custom:
|
2017-08-13 13:18:56 +02:00
|
|
|
custom_h = app.config.get_per('accounts', self.name,
|
2014-11-09 14:03:01 +01:00
|
|
|
'custom_host')
|
2017-08-13 13:18:56 +02:00
|
|
|
custom_p = app.config.get_per('accounts', self.name,
|
2014-11-09 14:03:01 +01:00
|
|
|
'custom_port')
|
|
|
|
try:
|
|
|
|
helpers.idn_to_ascii(custom_h)
|
|
|
|
except Exception:
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='invalid-custom-hostname',
|
|
|
|
args=custom_h))
|
2014-11-09 14:03:01 +01:00
|
|
|
use_custom = False
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# create connection if it doesn't already exist
|
|
|
|
self.connected = 1
|
2011-11-10 20:37:48 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
h = hostname
|
|
|
|
p = 5222
|
|
|
|
ssl_p = 5223
|
|
|
|
if use_custom:
|
|
|
|
h = custom_h
|
|
|
|
p = custom_p
|
|
|
|
ssl_p = custom_p
|
2012-04-15 23:42:53 +02:00
|
|
|
if not self.redirected:
|
|
|
|
use_srv = False
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2012-04-15 23:42:53 +02:00
|
|
|
self.redirected = None
|
2010-02-08 15:08:40 +01:00
|
|
|
# SRV resolver
|
|
|
|
self._proxy = proxy
|
2017-12-16 12:22:38 +01:00
|
|
|
self._hosts = [
|
2018-01-03 22:09:33 +01:00
|
|
|
{'host': h, 'port': p, 'type': 'tls', 'prio': 10, 'weight': 10, 'alpn': False},
|
|
|
|
{'host': h, 'port': ssl_p, 'type': 'ssl', 'prio': 10, 'weight': 10, 'alpn': False},
|
|
|
|
{'host': h, 'port': p, 'type': 'plain', 'prio': 10, 'weight': 10, 'alpn': False}
|
2017-12-16 12:22:38 +01:00
|
|
|
]
|
2010-02-08 15:08:40 +01:00
|
|
|
self._hostname = hostname
|
2017-09-17 14:02:01 +02:00
|
|
|
|
2018-03-02 17:38:33 +01:00
|
|
|
if h:
|
|
|
|
app.resolver.resolve('_xmppconnect.' + helpers.idn_to_ascii(h),
|
|
|
|
self._on_resolve_txt, type_='txt')
|
|
|
|
|
2017-09-17 14:02:01 +02:00
|
|
|
if use_srv and self._proxy is None:
|
2017-12-16 12:22:38 +01:00
|
|
|
self._srv_hosts = []
|
|
|
|
|
|
|
|
services = [SERVICE_START_TLS, SERVICE_DIRECT_TLS]
|
|
|
|
self._num_pending_srv_records = len(services)
|
|
|
|
|
|
|
|
for service in services:
|
|
|
|
record_name = '_' + service + '._tcp.' + helpers.idn_to_ascii(h)
|
|
|
|
app.resolver.resolve(record_name, self._on_resolve_srv)
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2017-12-16 12:22:38 +01:00
|
|
|
self._connect_to_next_host()
|
|
|
|
|
|
|
|
def _append_srv_record(self, record, con_type):
|
|
|
|
tmp = record.copy()
|
|
|
|
tmp['type'] = con_type
|
|
|
|
|
|
|
|
if tmp in self._srv_hosts:
|
|
|
|
return
|
|
|
|
|
|
|
|
self._srv_hosts.append(tmp)
|
|
|
|
|
|
|
|
def _on_resolve_srv(self, host, result):
|
|
|
|
for record in result:
|
|
|
|
service = host[1:]
|
|
|
|
if service.startswith(SERVICE_START_TLS):
|
2018-01-03 22:09:33 +01:00
|
|
|
record['alpn'] = False
|
2017-12-16 12:22:38 +01:00
|
|
|
self._append_srv_record(record, 'tls')
|
|
|
|
self._append_srv_record(record, 'plain')
|
|
|
|
elif service.startswith(SERVICE_DIRECT_TLS):
|
2018-01-03 22:09:33 +01:00
|
|
|
record['alpn'] = True
|
2017-12-16 12:22:38 +01:00
|
|
|
self._append_srv_record(record, 'ssl')
|
|
|
|
|
|
|
|
self._num_pending_srv_records -= 1
|
|
|
|
if self._num_pending_srv_records:
|
|
|
|
return
|
|
|
|
|
|
|
|
if self._srv_hosts:
|
|
|
|
self._hosts = self._srv_hosts.copy()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
self._connect_to_next_host()
|
|
|
|
|
2017-11-19 22:35:45 +01:00
|
|
|
def _on_resolve_txt(self, host, result_array):
|
|
|
|
for res in result_array:
|
|
|
|
if res.startswith('_xmpp-client-xbosh='):
|
|
|
|
url = res[19:]
|
|
|
|
found = False
|
|
|
|
proxies = app.config.get_per('proxies')
|
|
|
|
for p in proxies:
|
|
|
|
if app.config.get_per('proxies', p, 'type') == 'bosh' \
|
|
|
|
and app.config.get_per('proxies', p, 'bosh_uri') == url:
|
|
|
|
found = True
|
|
|
|
break
|
|
|
|
if not found:
|
|
|
|
h = app.config.get_per('accounts', self.name, 'hostname')
|
|
|
|
p = 'bosh_' + h
|
|
|
|
i = 0
|
|
|
|
while p in proxies:
|
|
|
|
i += 1
|
|
|
|
p = 'bosh_' + h + str(i)
|
|
|
|
app.config.add_per('proxies', p)
|
|
|
|
app.config.set_per('proxies', p, 'type', 'bosh')
|
|
|
|
app.config.set_per('proxies', p, 'bosh_uri', url)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _connect_to_next_host(self, retry=False):
|
|
|
|
log.debug('Connection to next host')
|
2017-12-16 12:22:38 +01:00
|
|
|
if not self._hosts:
|
2010-02-08 15:08:40 +01:00
|
|
|
if not retry and self.retrycount == 0:
|
|
|
|
log.debug("Out of hosts, giving up connecting to %s", self.name)
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
if self.on_connect_failure:
|
|
|
|
self.on_connect_failure()
|
|
|
|
self.on_connect_failure = None
|
|
|
|
else:
|
|
|
|
# shown error dialog
|
|
|
|
self._connection_lost()
|
|
|
|
else:
|
|
|
|
# try reconnect if connection has failed before auth to server
|
2017-04-25 14:43:54 +02:00
|
|
|
self.disconnectedReconnCB()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-12-16 12:22:38 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
connection_types = ['tls', 'ssl']
|
|
|
|
allow_plaintext_connection = app.config.get_per('accounts', self.name,
|
|
|
|
'allow_plaintext_connection')
|
|
|
|
|
|
|
|
if allow_plaintext_connection:
|
|
|
|
connection_types.append('plain')
|
|
|
|
|
|
|
|
if self._proxy and self._proxy['type'] == 'bosh':
|
|
|
|
# with BOSH, we can't do TLS negotiation with <starttls>, we do only "plain"
|
|
|
|
# connection and TLS with handshake right after TCP connecting ("ssl")
|
|
|
|
scheme = nbxmpp.transports_nb.urisplit(self._proxy['bosh_uri'])[0]
|
|
|
|
if scheme == 'https':
|
|
|
|
connection_types = ['ssl']
|
|
|
|
else:
|
2018-04-29 23:34:46 +02:00
|
|
|
if allow_plaintext_connection:
|
|
|
|
connection_types = ['plain']
|
|
|
|
else:
|
|
|
|
connection_types = []
|
2017-12-16 12:22:38 +01:00
|
|
|
|
|
|
|
host = self._select_next_host(self._hosts)
|
|
|
|
self._hosts.remove(host)
|
|
|
|
|
|
|
|
# Skip record if connection type is not supported.
|
|
|
|
if host['type'] not in connection_types:
|
2018-04-29 23:34:46 +02:00
|
|
|
log.info("Skipping connection record with unsupported type: %s",
|
|
|
|
host['type'])
|
2017-12-16 12:22:38 +01:00
|
|
|
self._connect_to_next_host(retry)
|
|
|
|
return
|
|
|
|
|
|
|
|
self._current_host = host
|
|
|
|
|
2012-06-19 19:19:24 +02:00
|
|
|
if self.redirected:
|
|
|
|
self.disconnect(on_purpose=True)
|
|
|
|
self.connect()
|
|
|
|
return
|
2011-07-26 22:44:11 +02:00
|
|
|
|
2017-12-16 12:22:38 +01:00
|
|
|
self._current_type = self._current_host['type']
|
|
|
|
|
|
|
|
port = self._current_host['port']
|
2018-03-24 00:17:03 +01:00
|
|
|
|
|
|
|
cacerts = ''
|
|
|
|
if os.name == 'nt':
|
|
|
|
cacerts = certifi.where()
|
2018-04-25 20:49:37 +02:00
|
|
|
mycerts = common.configpaths.get('MY_CACERTS')
|
2018-03-24 00:19:27 +01:00
|
|
|
tls_version = app.config.get_per('accounts', self.name, 'tls_version')
|
|
|
|
cipher_list = app.config.get_per('accounts', self.name, 'cipher_list')
|
|
|
|
|
|
|
|
secure_tuple = (self._current_type, cacerts, mycerts, tls_version,
|
|
|
|
cipher_list, self._current_host['alpn'])
|
2017-12-16 12:22:38 +01:00
|
|
|
|
|
|
|
con = nbxmpp.NonBlockingClient(
|
|
|
|
domain=self._hostname,
|
|
|
|
caller=self,
|
|
|
|
idlequeue=app.idlequeue)
|
|
|
|
|
|
|
|
# increase default timeout for server responses
|
|
|
|
nbxmpp.dispatcher_nb.DEFAULT_TIMEOUT_SECONDS = \
|
|
|
|
self.try_connecting_for_foo_secs
|
|
|
|
# FIXME: this is a hack; need a better way
|
|
|
|
if self.on_connect_success == self._on_new_account:
|
|
|
|
con.RegisterDisconnectHandler(self._on_new_account)
|
|
|
|
|
|
|
|
if self.client_cert and app.config.get_per('accounts', self.name,
|
|
|
|
'client_cert_encrypted'):
|
|
|
|
app.nec.push_incoming_event(ClientCertPassphraseEvent(
|
|
|
|
None, conn=self, con=con, port=port,
|
|
|
|
secure_tuple=secure_tuple))
|
|
|
|
return
|
|
|
|
self.on_client_cert_passphrase('', con, port, secure_tuple)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2011-07-26 22:44:11 +02:00
|
|
|
def on_client_cert_passphrase(self, passphrase, con, port, secure_tuple):
|
|
|
|
self.client_cert_passphrase = passphrase
|
|
|
|
|
|
|
|
self.log_hosttype_info(port)
|
|
|
|
con.connect(
|
|
|
|
hostname=self._current_host['host'],
|
|
|
|
port=port,
|
|
|
|
on_connect=self.on_connect_success,
|
|
|
|
on_proxy_failure=self.on_proxy_failure,
|
2017-12-16 12:22:38 +01:00
|
|
|
on_connect_failure=self._connect_to_next_host,
|
2012-06-19 19:19:24 +02:00
|
|
|
on_stream_error_cb=self._StreamCB,
|
2011-07-26 22:44:11 +02:00
|
|
|
proxy=self._proxy,
|
2018-01-03 22:09:33 +01:00
|
|
|
secure_tuple=secure_tuple)
|
2011-07-26 22:44:11 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def log_hosttype_info(self, port):
|
|
|
|
msg = '>>>>>> Connecting to %s [%s:%d], type = %s' % (self.name,
|
|
|
|
self._current_host['host'], port, self._current_type)
|
|
|
|
log.info(msg)
|
|
|
|
if self._proxy:
|
|
|
|
msg = '>>>>>> '
|
|
|
|
if self._proxy['type']=='bosh':
|
|
|
|
msg = '%s over BOSH %s' % (msg, self._proxy['bosh_uri'])
|
2010-02-10 19:24:11 +01:00
|
|
|
if self._proxy['type'] in ['http', 'socks5'] or self._proxy['bosh_useproxy']:
|
2010-02-08 15:08:40 +01:00
|
|
|
msg = '%s over proxy %s:%s' % (msg, self._proxy['host'], self._proxy['port'])
|
|
|
|
log.info(msg)
|
|
|
|
|
|
|
|
def _connect_failure(self, con_type=None):
|
|
|
|
if not con_type:
|
|
|
|
# we are not retrying, and not conecting
|
|
|
|
if not self.retrycount and self.connected != 0:
|
|
|
|
self.disconnect(on_purpose = True)
|
2013-07-19 21:12:11 +02:00
|
|
|
if self._proxy:
|
|
|
|
pritxt = _('Could not connect to "%(host)s" via proxy "%(proxy)s"') %\
|
|
|
|
{'host': self._hostname, 'proxy': self._proxy['host']}
|
|
|
|
else:
|
|
|
|
pritxt = _('Could not connect to "%(host)s"') % {'host': \
|
|
|
|
self._hostname}
|
2010-02-08 15:08:40 +01:00
|
|
|
sectxt = _('Check your connection or try again later.')
|
|
|
|
if self.streamError:
|
|
|
|
# show error dialog
|
2012-12-09 21:37:51 +01:00
|
|
|
key = nbxmpp.NS_XMPP_STREAMS + ' ' + self.streamError
|
|
|
|
if key in nbxmpp.ERRORS:
|
|
|
|
sectxt2 = _('Server replied: %s') % nbxmpp.ERRORS[key][2]
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(InformationEvent(None,
|
2011-11-22 19:25:15 +01:00
|
|
|
conn=self, level='error', pri_txt=pritxt,
|
|
|
|
sec_txt='%s\n%s' % (sectxt2, sectxt)))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
# show popup
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None,
|
2010-11-15 17:03:38 +01:00
|
|
|
conn=self, title=pritxt, msg=sectxt))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def on_proxy_failure(self, reason):
|
|
|
|
log.error('Connection to proxy failed: %s' % reason)
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
self.on_connect_failure = None
|
|
|
|
self.disconnect(on_purpose = True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None, conn=self,
|
2010-11-15 17:03:38 +01:00
|
|
|
title=_('Connection to proxy failed'), msg=reason))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _connect_success(self, con, con_type):
|
|
|
|
if not self.connected: # We went offline during connecting process
|
|
|
|
# FIXME - not possible, maybe it was when we used threads
|
|
|
|
return
|
|
|
|
_con_type = con_type
|
|
|
|
if _con_type != self._current_type:
|
2017-12-16 12:22:38 +01:00
|
|
|
log.info('Connecting to next host beacuse desired type is %s and returned is %s'
|
2010-02-08 15:08:40 +01:00
|
|
|
% (self._current_type, _con_type))
|
2017-12-16 12:22:38 +01:00
|
|
|
self._connect_to_next_host()
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
con.RegisterDisconnectHandler(self._on_disconnected)
|
2017-08-13 13:18:56 +02:00
|
|
|
if _con_type == 'plain' and app.config.get_per('accounts', self.name,
|
2011-10-31 09:47:01 +01:00
|
|
|
'action_when_plaintext_connection') == 'warn':
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PlainConnectionEvent(None, conn=self,
|
2010-11-24 15:38:16 +01:00
|
|
|
xmpp_client=con))
|
2010-02-08 15:08:40 +01:00
|
|
|
return True
|
2017-08-13 13:18:56 +02:00
|
|
|
if _con_type == 'plain' and app.config.get_per('accounts', self.name,
|
2011-10-31 09:47:01 +01:00
|
|
|
'action_when_plaintext_connection') == 'disconnect':
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2011-10-31 09:47:01 +01:00
|
|
|
show='offline'))
|
|
|
|
return False
|
2010-02-08 15:08:40 +01:00
|
|
|
if _con_type in ('tls', 'ssl') and con.Connection.ssl_lib != 'PYOPENSSL' \
|
2017-08-13 13:18:56 +02:00
|
|
|
and app.config.get_per('accounts', self.name,
|
2010-02-08 15:08:40 +01:00
|
|
|
'warn_when_insecure_ssl_connection') and \
|
|
|
|
not self.connection_auto_accepted:
|
|
|
|
# Pyopenssl is not used
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(InsecureSSLConnectionEvent(None,
|
2010-11-24 16:32:59 +01:00
|
|
|
conn=self, xmpp_client=con, conn_type=_con_type))
|
2010-02-08 15:08:40 +01:00
|
|
|
return True
|
|
|
|
return self.connection_accepted(con, con_type)
|
|
|
|
|
|
|
|
def connection_accepted(self, con, con_type):
|
|
|
|
if not con or not con.Connection:
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None, conn=self,
|
2010-11-15 17:03:38 +01:00
|
|
|
title=_('Could not connect to account %s') % self.name,
|
|
|
|
msg=_('Connection with account %s has been lost. Retry '
|
|
|
|
'connecting.') % self.name))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-12-16 12:22:38 +01:00
|
|
|
self._hosts = []
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection_auto_accepted = False
|
|
|
|
self.connected_hostname = self._current_host['host']
|
|
|
|
self.on_connect_failure = None
|
|
|
|
con.UnregisterDisconnectHandler(self._on_disconnected)
|
2017-04-25 14:43:54 +02:00
|
|
|
con.RegisterDisconnectHandler(self.disconnectedReconnCB)
|
2010-02-08 15:08:40 +01:00
|
|
|
log.debug('Connected to server %s:%s with %s' % (
|
|
|
|
self._current_host['host'], self._current_host['port'], con_type))
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'anonymous_auth'):
|
2010-02-08 15:08:40 +01:00
|
|
|
name = None
|
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
name = app.config.get_per('accounts', self.name, 'name')
|
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection = con
|
|
|
|
try:
|
|
|
|
errnum = con.Connection.ssl_errnum
|
|
|
|
except AttributeError:
|
2013-12-06 21:20:22 +01:00
|
|
|
errnum = 0
|
|
|
|
cert = con.Connection.ssl_certificate
|
2017-08-13 13:18:56 +02:00
|
|
|
if errnum > 0 and str(errnum) not in app.config.get_per('accounts',
|
2013-12-06 21:20:22 +01:00
|
|
|
self.name, 'ignore_ssl_errors').split():
|
2013-12-06 21:20:22 +01:00
|
|
|
text = _('The authenticity of the %s certificate could be invalid'
|
|
|
|
) % hostname
|
2013-12-06 21:20:22 +01:00
|
|
|
if errnum in ssl_error:
|
|
|
|
text += _('\nSSL Error: <b>%s</b>') % ssl_error[errnum]
|
|
|
|
else:
|
|
|
|
text += _('\nUnknown SSL error: %d') % errnum
|
2014-01-21 15:27:41 +01:00
|
|
|
fingerprint_sha1 = cert.digest('sha1').decode('utf-8')
|
|
|
|
fingerprint_sha256 = cert.digest('sha256').decode('utf-8')
|
2013-12-06 21:20:22 +01:00
|
|
|
pem = OpenSSL.crypto.dump_certificate(OpenSSL.crypto.FILETYPE_PEM,
|
2013-12-30 20:56:09 +01:00
|
|
|
cert).decode('utf-8')
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(SSLErrorEvent(None, conn=self,
|
2013-12-06 21:20:22 +01:00
|
|
|
error_text=text, error_num=errnum, cert=pem,
|
2014-01-21 15:27:41 +01:00
|
|
|
fingerprint_sha1=fingerprint_sha1,
|
|
|
|
fingerprint_sha256=fingerprint_sha256, certificate=cert))
|
2013-12-06 21:20:22 +01:00
|
|
|
return True
|
|
|
|
if cert:
|
2014-01-21 15:27:41 +01:00
|
|
|
fingerprint_sha1 = cert.digest('sha1').decode('utf-8')
|
|
|
|
fingerprint_sha256 = cert.digest('sha256').decode('utf-8')
|
2017-08-13 13:18:56 +02:00
|
|
|
saved_fingerprint_sha1 = app.config.get_per('accounts', self.name,
|
2012-01-02 16:39:06 +01:00
|
|
|
'ssl_fingerprint_sha1')
|
2014-01-21 15:27:41 +01:00
|
|
|
if saved_fingerprint_sha1:
|
2010-02-08 15:08:40 +01:00
|
|
|
# Check sha1 fingerprint
|
2014-01-21 15:27:41 +01:00
|
|
|
if fingerprint_sha1 != saved_fingerprint_sha1:
|
2016-04-02 14:06:20 +02:00
|
|
|
if not check_X509.check_certificate(cert, hostname):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(FingerprintErrorEvent(
|
2016-04-02 14:06:20 +02:00
|
|
|
None, conn=self, certificate=cert,
|
|
|
|
new_fingerprint_sha1=fingerprint_sha1,
|
|
|
|
new_fingerprint_sha256=fingerprint_sha256))
|
|
|
|
return True
|
2017-08-13 13:18:56 +02:00
|
|
|
app.config.set_per('accounts', self.name, 'ssl_fingerprint_sha1',
|
2016-04-02 14:06:20 +02:00
|
|
|
fingerprint_sha1)
|
2014-01-21 15:27:41 +01:00
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
saved_fingerprint_sha256 = app.config.get_per('accounts', self.name,
|
2014-01-21 15:27:41 +01:00
|
|
|
'ssl_fingerprint_sha256')
|
|
|
|
if saved_fingerprint_sha256:
|
|
|
|
# Check sha256 fingerprint
|
|
|
|
if fingerprint_sha256 != saved_fingerprint_sha256:
|
2016-04-02 14:06:20 +02:00
|
|
|
if not check_X509.check_certificate(cert, hostname):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(FingerprintErrorEvent(
|
2016-04-02 14:06:20 +02:00
|
|
|
None, conn=self, certificate=cert,
|
|
|
|
new_fingerprint_sha1=fingerprint_sha1,
|
|
|
|
new_fingerprint_sha256=fingerprint_sha256))
|
|
|
|
return True
|
2017-08-13 13:18:56 +02:00
|
|
|
app.config.set_per('accounts', self.name,
|
2016-04-02 14:06:20 +02:00
|
|
|
'ssl_fingerprint_sha256', fingerprint_sha256)
|
2014-01-21 15:27:41 +01:00
|
|
|
|
2013-12-06 21:20:22 +01:00
|
|
|
if not check_X509.check_certificate(cert, hostname) and \
|
2017-08-13 13:18:56 +02:00
|
|
|
'100' not in app.config.get_per('accounts', self.name,
|
2013-12-06 21:20:22 +01:00
|
|
|
'ignore_ssl_errors').split():
|
2013-12-06 21:20:22 +01:00
|
|
|
pem = OpenSSL.crypto.dump_certificate(
|
2013-12-30 20:56:09 +01:00
|
|
|
OpenSSL.crypto.FILETYPE_PEM, cert).decode('utf-8')
|
2012-01-06 09:45:11 +01:00
|
|
|
txt = _('The authenticity of the %s certificate could be '
|
2013-12-06 21:20:22 +01:00
|
|
|
'invalid.\nThe certificate does not cover this domain.') %\
|
2012-01-06 09:45:11 +01:00
|
|
|
hostname
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(SSLErrorEvent(None, conn=self,
|
2013-12-06 21:20:22 +01:00
|
|
|
error_text=txt, error_num=100, cert=pem,
|
2014-01-21 15:27:41 +01:00
|
|
|
fingerprint_sha1=fingerprint_sha1,
|
|
|
|
fingerprint_sha256=fingerprint_sha256, certificate=cert))
|
2012-01-06 09:45:11 +01:00
|
|
|
return True
|
2012-01-02 16:39:06 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self._register_handlers(con, con_type)
|
2017-08-13 13:18:56 +02:00
|
|
|
auth_mechs = app.config.get_per('accounts', self.name, 'authentication_mechanisms')
|
2014-03-01 21:16:24 +01:00
|
|
|
auth_mechs = auth_mechs.split()
|
|
|
|
for mech in auth_mechs:
|
|
|
|
if mech not in nbxmpp.auth_nb.SASL_AUTHENTICATION_MECHANISMS | set(['XEP-0078']):
|
|
|
|
log.warning("Unknown authentication mechanisms %s" % mech)
|
|
|
|
if len(auth_mechs) == 0:
|
|
|
|
auth_mechs = None
|
2017-10-16 17:04:35 +02:00
|
|
|
else:
|
|
|
|
auth_mechs = set(auth_mechs)
|
2012-01-06 09:45:11 +01:00
|
|
|
con.auth(user=name, password=self.password,
|
2014-03-01 21:16:24 +01:00
|
|
|
resource=self.server_resource, sasl=True, on_auth=self.__on_auth, auth_mechs=auth_mechs)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def ssl_certificate_accepted(self):
|
|
|
|
if not self.connection:
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None, conn=self,
|
2010-11-15 17:03:38 +01:00
|
|
|
title=_('Could not connect to account %s') % self.name,
|
|
|
|
msg=_('Connection with account %s has been lost. Retry '
|
|
|
|
'connecting.') % self.name))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'anonymous_auth'):
|
2012-03-16 23:09:00 +01:00
|
|
|
name = None
|
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
name = app.config.get_per('accounts', self.name, 'name')
|
2010-02-08 15:08:40 +01:00
|
|
|
self._register_handlers(self.connection, 'ssl')
|
|
|
|
self.connection.auth(name, self.password, self.server_resource, 1,
|
|
|
|
self.__on_auth)
|
|
|
|
|
|
|
|
def _register_handlers(self, con, con_type):
|
|
|
|
self.peerhost = con.get_peerhost()
|
2017-08-13 13:18:56 +02:00
|
|
|
app.con_types[self.name] = con_type
|
2010-02-08 15:08:40 +01:00
|
|
|
# notify the gui about con_type
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionTypeEvent(None,
|
2010-11-07 22:45:01 +01:00
|
|
|
conn=self, connection_type=con_type))
|
2010-02-08 15:08:40 +01:00
|
|
|
ConnectionHandlers._register_handlers(self, con, con_type)
|
|
|
|
|
|
|
|
def __on_auth(self, con, auth):
|
|
|
|
if not con:
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(ConnectionLostEvent(None, conn=self,
|
2010-11-15 17:03:38 +01:00
|
|
|
title=_('Could not connect to "%s"') % self._hostname,
|
2013-08-15 10:33:27 +02:00
|
|
|
msg=_('Check your connection or try again later.')))
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.on_connect_auth:
|
|
|
|
self.on_connect_auth(None)
|
|
|
|
self.on_connect_auth = None
|
2015-07-27 13:36:49 +02:00
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if not self.connected: # We went offline during connecting process
|
|
|
|
if self.on_connect_auth:
|
|
|
|
self.on_connect_auth(None)
|
|
|
|
self.on_connect_auth = None
|
|
|
|
return
|
|
|
|
if hasattr(con, 'Resource'):
|
|
|
|
self.server_resource = con.Resource
|
2017-09-06 21:24:12 +02:00
|
|
|
if con._registered_name is not None:
|
|
|
|
log.info('Bound JID: %s', con._registered_name)
|
|
|
|
self.registered_name = con._registered_name
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'anonymous_auth'):
|
2010-02-08 15:08:40 +01:00
|
|
|
# Get jid given by server
|
2017-08-13 13:18:56 +02:00
|
|
|
old_jid = app.get_jid_from_account(self.name)
|
|
|
|
app.config.set_per('accounts', self.name, 'name', con.User)
|
|
|
|
new_jid = app.get_jid_from_account(self.name)
|
|
|
|
app.nec.push_incoming_event(AnonymousAuthEvent(None,
|
2010-10-26 21:25:41 +02:00
|
|
|
conn=self, old_jid=old_jid, new_jid=new_jid))
|
2010-02-08 15:08:40 +01:00
|
|
|
if auth:
|
2017-08-13 13:18:56 +02:00
|
|
|
self.last_io = app.idlequeue.current_time()
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connected = 2
|
|
|
|
self.retrycount = 0
|
|
|
|
if self.on_connect_auth:
|
|
|
|
self.on_connect_auth(con)
|
|
|
|
self.on_connect_auth = None
|
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.config.get_per('accounts', self.name, 'savepass'):
|
2010-08-23 10:04:19 +02:00
|
|
|
# Forget password, it's wrong
|
|
|
|
self.password = None
|
2017-09-26 07:14:01 +02:00
|
|
|
log.debug("Couldn't authenticate to %s" % self._hostname)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.disconnect(on_purpose = True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show='offline'))
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(InformationEvent(None, conn=self,
|
2011-11-22 19:25:15 +01:00
|
|
|
level='error', pri_txt=_('Authentication failed with "%s"') % \
|
|
|
|
self._hostname, sec_txt=_('Please check your login and password'
|
2012-02-22 10:07:16 +01:00
|
|
|
' for correctness.')))
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.on_connect_auth:
|
|
|
|
self.on_connect_auth(None)
|
|
|
|
self.on_connect_auth = None
|
|
|
|
# END connect
|
|
|
|
|
|
|
|
def add_lang(self, stanza):
|
|
|
|
if self.lang:
|
|
|
|
stanza.setAttr('xml:lang', self.lang)
|
|
|
|
|
|
|
|
def get_privacy_lists(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.getPrivacyLists(self.connection)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def send_keepalive(self):
|
|
|
|
# nothing received for the last foo seconds
|
|
|
|
if self.connection:
|
|
|
|
self.connection.send(' ')
|
|
|
|
|
|
|
|
def _on_xmpp_ping_answer(self, iq_obj):
|
|
|
|
self.awaiting_xmpp_ping_id = None
|
|
|
|
|
2014-08-22 15:44:07 +02:00
|
|
|
def sendPing(self, pingTo=None, control=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Send XMPP Ping (XEP-0199) request. If pingTo is not set, ping is sent to
|
|
|
|
server to detect connection failure at application level
|
2014-08-22 15:44:07 +02:00
|
|
|
If control is set, display result there
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
if pingTo:
|
|
|
|
to = pingTo.get_full_jid()
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PingSentEvent(None, conn=self,
|
2010-11-15 17:35:19 +01:00
|
|
|
contact=pingTo))
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2017-08-13 13:18:56 +02:00
|
|
|
to = app.config.get_per('accounts', self.name, 'hostname')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.awaiting_xmpp_ping_id = id_
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('get', to=to)
|
|
|
|
iq.addChild(name='ping', namespace=nbxmpp.NS_PING)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setID(id_)
|
|
|
|
def _on_response(resp):
|
2016-11-28 22:23:42 +01:00
|
|
|
timePong = time.time()
|
2012-12-09 21:37:51 +01:00
|
|
|
if not nbxmpp.isResultNode(resp):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PingErrorEvent(None, conn=self,
|
2010-11-15 17:35:19 +01:00
|
|
|
contact=pingTo))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2010-02-10 19:24:11 +01:00
|
|
|
timeDiff = round(timePong - timePing, 2)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PingReplyEvent(None, conn=self,
|
2014-08-22 15:44:07 +02:00
|
|
|
contact=pingTo, seconds=timeDiff, control=control))
|
2010-02-08 15:08:40 +01:00
|
|
|
if pingTo:
|
2016-11-28 22:23:42 +01:00
|
|
|
timePing = time.time()
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.SendAndCallForResponse(iq, _on_response)
|
|
|
|
else:
|
|
|
|
self.connection.SendAndCallForResponse(iq, self._on_xmpp_ping_answer)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.idlequeue.set_alarm(self.check_pingalive, app.config.get_per(
|
2012-12-09 21:37:51 +01:00
|
|
|
'accounts', self.name, 'time_for_ping_alive_answer'))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_active_default_lists(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.getActiveAndDefaultPrivacyLists(self.connection)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def del_privacy_list(self, privacy_list):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
def _on_del_privacy_list_result(result):
|
|
|
|
if result:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PrivacyListRemovedEvent(None,
|
2010-11-24 22:48:39 +01:00
|
|
|
conn=self, list_name=privacy_list))
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='privacy-list-error', args=privacy_list))
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.delPrivacyList(self.connection, privacy_list,
|
|
|
|
_on_del_privacy_list_result)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_privacy_list(self, title):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.getPrivacyList(self.connection, title)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def set_privacy_list(self, listname, tags):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.setPrivacyList(self.connection, listname, tags)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def set_active_list(self, listname):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.setActivePrivacyList(self.connection, listname,
|
|
|
|
'active')
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def set_default_list(self, listname):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.setDefaultPrivacyList(self.connection, listname)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def build_privacy_rule(self, name, action, order=1):
|
|
|
|
"""
|
|
|
|
Build a Privacy rule stanza for invisibility
|
|
|
|
"""
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_PRIVACY, xmlns='')
|
2011-10-31 10:47:28 +01:00
|
|
|
l = iq.setQuery().setTag('list', {'name': name})
|
2010-02-08 15:08:40 +01:00
|
|
|
i = l.setTag('item', {'action': action, 'order': str(order)})
|
|
|
|
i.setTag('presence-out')
|
|
|
|
return iq
|
|
|
|
|
|
|
|
def build_invisible_rule(self):
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_PRIVACY, xmlns='')
|
2011-10-31 10:47:28 +01:00
|
|
|
l = iq.setQuery().setTag('list', {'name': 'invisible'})
|
2017-08-13 13:18:56 +02:00
|
|
|
if self.name in app.interface.status_sent_to_groups and \
|
|
|
|
len(app.interface.status_sent_to_groups[self.name]) > 0:
|
|
|
|
for group in app.interface.status_sent_to_groups[self.name]:
|
2010-02-08 15:08:40 +01:00
|
|
|
i = l.setTag('item', {'type': 'group', 'value': group,
|
|
|
|
'action': 'allow', 'order': '1'})
|
|
|
|
i.setTag('presence-out')
|
2017-08-13 13:18:56 +02:00
|
|
|
if self.name in app.interface.status_sent_to_users and \
|
|
|
|
len(app.interface.status_sent_to_users[self.name]) > 0:
|
|
|
|
for jid in app.interface.status_sent_to_users[self.name]:
|
2010-02-08 15:08:40 +01:00
|
|
|
i = l.setTag('item', {'type': 'jid', 'value': jid,
|
|
|
|
'action': 'allow', 'order': '2'})
|
|
|
|
i.setTag('presence-out')
|
|
|
|
i = l.setTag('item', {'action': 'deny', 'order': '3'})
|
|
|
|
i.setTag('presence-out')
|
|
|
|
return iq
|
|
|
|
|
|
|
|
def set_invisible_rule(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
iq = self.build_invisible_rule()
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2013-05-26 12:58:19 +02:00
|
|
|
def get_max_blocked_list_order(self):
|
|
|
|
max_order = 0
|
|
|
|
for rule in self.blocked_list:
|
|
|
|
order = int(rule['order'])
|
|
|
|
if order > max_order:
|
|
|
|
max_order = order
|
|
|
|
return max_order
|
|
|
|
|
2013-03-30 20:36:43 +01:00
|
|
|
def block_contacts(self, contact_list, message):
|
2017-01-27 22:24:53 +01:00
|
|
|
if self.privacy_default_list is None:
|
|
|
|
self.privacy_default_list = 'block'
|
2013-03-30 20:36:43 +01:00
|
|
|
if not self.privacy_rules_supported:
|
2013-03-30 23:13:48 +01:00
|
|
|
if self.blocking_supported: #XEP-0191
|
|
|
|
iq = nbxmpp.Iq('set', xmlns='')
|
|
|
|
query = iq.setQuery(name='block')
|
|
|
|
query.setNamespace(nbxmpp.NS_BLOCKING)
|
|
|
|
for contact in contact_list:
|
|
|
|
query.addChild(name='item', attrs={'jid': contact.jid})
|
|
|
|
self.connection.send(iq)
|
2013-03-30 20:36:43 +01:00
|
|
|
return
|
|
|
|
for contact in contact_list:
|
2017-10-15 21:32:16 +02:00
|
|
|
contact.show = 'offline'
|
2013-03-30 20:36:43 +01:00
|
|
|
self.send_custom_status('offline', message, contact.jid)
|
2013-05-26 12:58:19 +02:00
|
|
|
max_order = self.get_max_blocked_list_order()
|
2017-01-27 19:36:13 +01:00
|
|
|
new_rule = {'order': str(max_order + 1),
|
|
|
|
'type': 'jid',
|
|
|
|
'action': 'deny',
|
|
|
|
'value': contact.jid}
|
2013-03-30 20:36:43 +01:00
|
|
|
self.blocked_list.append(new_rule)
|
|
|
|
self.blocked_contacts.append(contact.jid)
|
2017-01-27 22:24:53 +01:00
|
|
|
self.set_privacy_list(self.privacy_default_list, self.blocked_list)
|
2013-03-30 20:36:43 +01:00
|
|
|
if len(self.blocked_list) == 1:
|
2017-01-27 22:24:53 +01:00
|
|
|
self.set_default_list(self.privacy_default_list)
|
2013-03-30 20:36:43 +01:00
|
|
|
|
|
|
|
def unblock_contacts(self, contact_list):
|
|
|
|
if not self.privacy_rules_supported:
|
2013-03-30 23:13:48 +01:00
|
|
|
if self.blocking_supported: #XEP-0191
|
|
|
|
iq = nbxmpp.Iq('set', xmlns='')
|
|
|
|
query = iq.setQuery(name='unblock')
|
|
|
|
query.setNamespace(nbxmpp.NS_BLOCKING)
|
|
|
|
for contact in contact_list:
|
|
|
|
query.addChild(name='item', attrs={'jid': contact.jid})
|
|
|
|
self.connection.send(iq)
|
2013-03-30 20:36:43 +01:00
|
|
|
return
|
|
|
|
self.new_blocked_list = []
|
|
|
|
self.to_unblock = []
|
|
|
|
for contact in contact_list:
|
|
|
|
self.to_unblock.append(contact.jid)
|
|
|
|
if contact.jid in self.blocked_contacts:
|
|
|
|
self.blocked_contacts.remove(contact.jid)
|
|
|
|
for rule in self.blocked_list:
|
|
|
|
if rule['action'] != 'deny' or rule['type'] != 'jid' \
|
|
|
|
or rule['value'] not in self.to_unblock:
|
|
|
|
self.new_blocked_list.append(rule)
|
|
|
|
if len(self.new_blocked_list) == 0:
|
|
|
|
self.blocked_list = []
|
|
|
|
self.blocked_contacts = []
|
|
|
|
self.blocked_groups = []
|
|
|
|
self.set_default_list('')
|
2017-01-27 22:24:53 +01:00
|
|
|
self.del_privacy_list(self.privacy_default_list)
|
2017-01-27 23:58:28 +01:00
|
|
|
else:
|
|
|
|
self.set_privacy_list(self.privacy_default_list, self.new_blocked_list)
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.interface.roster.regroup:
|
|
|
|
show = app.SHOW_LIST[self.connected]
|
2013-03-30 20:36:43 +01:00
|
|
|
else: # accounts merged
|
|
|
|
show = helpers.get_global_show()
|
|
|
|
if show == 'invisible':
|
|
|
|
return
|
|
|
|
for contact in contact_list:
|
|
|
|
self.send_custom_status(show, self.status, contact.jid)
|
2017-10-15 20:22:25 +02:00
|
|
|
# Send a presence Probe to get the current Status
|
|
|
|
probe = nbxmpp.Presence(contact.jid, 'probe', frm=self.get_own_jid())
|
|
|
|
self.connection.send(probe)
|
2013-03-30 20:36:43 +01:00
|
|
|
|
|
|
|
def block_group(self, group, contact_list, message):
|
|
|
|
if not self.privacy_rules_supported:
|
|
|
|
return
|
|
|
|
self.blocked_groups.append(group)
|
|
|
|
for contact in contact_list:
|
|
|
|
self.send_custom_status('offline', message, contact.jid)
|
2013-05-26 12:58:19 +02:00
|
|
|
max_order = self.get_max_blocked_list_order()
|
2017-01-27 19:36:13 +01:00
|
|
|
new_rule = {'order': str(max_order + 1),
|
|
|
|
'type': 'group',
|
|
|
|
'action': 'deny',
|
|
|
|
'value': group}
|
2013-03-30 20:36:43 +01:00
|
|
|
self.blocked_list.append(new_rule)
|
2017-01-27 22:24:53 +01:00
|
|
|
self.set_privacy_list(self.privacy_default_list, self.blocked_list)
|
2013-03-30 20:36:43 +01:00
|
|
|
if len(self.blocked_list) == 1:
|
2017-01-27 22:24:53 +01:00
|
|
|
self.set_default_list(self.privacy_default_list)
|
2013-03-30 20:36:43 +01:00
|
|
|
|
|
|
|
def unblock_group(self, group, contact_list):
|
|
|
|
if not self.privacy_rules_supported:
|
|
|
|
return
|
|
|
|
if group in self.blocked_groups:
|
|
|
|
self.blocked_groups.remove(group)
|
|
|
|
self.new_blocked_list = []
|
|
|
|
for rule in self.blocked_list:
|
|
|
|
if rule['action'] != 'deny' or rule['type'] != 'group' or \
|
|
|
|
rule['value'] != group:
|
|
|
|
self.new_blocked_list.append(rule)
|
|
|
|
if len(self.new_blocked_list) == 0:
|
|
|
|
self.blocked_list = []
|
|
|
|
self.blocked_contacts = []
|
|
|
|
self.blocked_groups = []
|
|
|
|
self.set_default_list('')
|
2017-01-27 22:24:53 +01:00
|
|
|
self.del_privacy_list(self.privacy_default_list)
|
2017-01-27 23:58:28 +01:00
|
|
|
else:
|
|
|
|
self.set_privacy_list(self.privacy_default_list, self.new_blocked_list)
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.interface.roster.regroup:
|
|
|
|
show = app.SHOW_LIST[self.connected]
|
2013-03-30 20:36:43 +01:00
|
|
|
else: # accounts merged
|
|
|
|
show = helpers.get_global_show()
|
|
|
|
if show == 'invisible':
|
|
|
|
return
|
|
|
|
for contact in contact_list:
|
|
|
|
self.send_custom_status(show, self.status, contact.jid)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def send_invisible_presence(self, msg, signed, initial = False):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
if not self.privacy_rules_supported:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
|
|
|
show=app.SHOW_LIST[self.connected]))
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='invisibility-not-supported', args=self.name))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
# If we are already connected, and privacy rules are supported, send
|
|
|
|
# offline presence first as it's required by XEP-0126
|
|
|
|
if self.connected > 1 and self.privacy_rules_supported:
|
|
|
|
self.on_purpose = True
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ='unavailable')
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, False)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
self.remove_all_transfers()
|
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
# try to set the privacy rule
|
|
|
|
iq = self.build_invisible_rule()
|
|
|
|
self.connection.SendAndCallForResponse(iq, self._continue_invisible,
|
|
|
|
{'msg': msg, 'signed': signed, 'initial': initial})
|
|
|
|
|
|
|
|
def _continue_invisible(self, con, iq_obj, msg, signed, initial):
|
|
|
|
if iq_obj.getType() == 'error': # server doesn't support privacy lists
|
|
|
|
return
|
|
|
|
# active the privacy rule
|
2017-01-28 18:44:26 +01:00
|
|
|
self.set_active_list('invisible')
|
2017-08-13 13:18:56 +02:00
|
|
|
self.connected = app.SHOW_LIST.index('invisible')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.status = msg
|
2017-08-13 13:18:56 +02:00
|
|
|
priority = app.get_priority(self.name, 'invisible')
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(priority=priority)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, True)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
if signed:
|
2012-12-09 21:37:51 +01:00
|
|
|
p.setTag(nbxmpp.NS_SIGNED + ' x').setData(signed)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(p)
|
|
|
|
self.priority = priority
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show='invisible'))
|
2010-02-08 15:08:40 +01:00
|
|
|
if initial:
|
|
|
|
# ask our VCard
|
2017-09-16 11:49:31 +02:00
|
|
|
self.request_vcard(self._on_own_avatar_received)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# Get bookmarks from private namespace
|
|
|
|
self.get_bookmarks()
|
|
|
|
|
|
|
|
# Get annotations
|
|
|
|
self.get_annotations()
|
|
|
|
|
|
|
|
# Inform GUI we just signed in
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(SignedInEvent(None, conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_signed_presence(self, msg, callback = None):
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'gpg_sign_presence'):
|
2010-02-08 15:08:40 +01:00
|
|
|
return self.get_signed_msg(msg, callback)
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def connect_and_auth(self):
|
|
|
|
self.on_connect_success = self._connect_success
|
|
|
|
self.on_connect_failure = self._connect_failure
|
|
|
|
self.connect()
|
|
|
|
|
|
|
|
def connect_and_init(self, show, msg, sign_msg):
|
|
|
|
self.continue_connect_info = [show, msg, sign_msg]
|
|
|
|
self.on_connect_auth = self._discover_server_at_connection
|
|
|
|
self.connect_and_auth()
|
|
|
|
|
|
|
|
def _discover_server_at_connection(self, con):
|
|
|
|
self.connection = con
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
self.connection.set_send_timeout(self.keepalives, self.send_keepalive)
|
2012-03-22 20:49:38 +01:00
|
|
|
self.connection.set_send_timeout2(self.pingalives, self.sendPing)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.onreceive(None)
|
2010-02-10 17:59:17 +01:00
|
|
|
|
2011-01-05 20:59:10 +01:00
|
|
|
self.privacy_rules_requested = False
|
|
|
|
|
2011-06-07 05:34:19 +02:00
|
|
|
# If we are not resuming, we ask for discovery info
|
|
|
|
# and archiving preferences
|
2013-02-23 16:41:36 +01:00
|
|
|
if not self.sm.supports_sm or (not self.sm.resuming and self.sm.enabled):
|
2017-08-13 13:18:56 +02:00
|
|
|
our_jid = app.get_jid_from_account(self.name)
|
|
|
|
our_server = app.config.get_per('accounts', self.name, 'hostname')
|
2017-07-19 20:19:40 +02:00
|
|
|
self.discoverInfo(our_jid, id_prefix='Gajim_')
|
|
|
|
self.discoverInfo(our_server, id_prefix='Gajim_')
|
2011-08-22 09:45:51 +02:00
|
|
|
|
2011-06-07 05:34:19 +02:00
|
|
|
self.sm.resuming = False # back to previous state
|
2010-02-08 15:08:40 +01:00
|
|
|
# Discover Stun server(s)
|
2017-09-17 14:02:01 +02:00
|
|
|
if self._proxy is None:
|
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
|
|
|
app.resolver.resolve('_stun._udp.' + helpers.idn_to_ascii(hostname),
|
|
|
|
self._on_stun_resolved)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _on_stun_resolved(self, host, result_array):
|
|
|
|
if len(result_array) != 0:
|
|
|
|
self._stun_servers = self._hosts = [i for i in result_array]
|
|
|
|
|
|
|
|
def _request_privacy(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name) or not self.connection:
|
2011-08-29 15:08:04 +02:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('get', nbxmpp.NS_PRIVACY, xmlns='')
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
self.awaiting_answers[id_] = (PRIVACY_ARRIVED, )
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2017-10-15 18:03:41 +02:00
|
|
|
def _request_blocking(self):
|
|
|
|
if not app.account_is_connected(self.name) or not self.connection:
|
|
|
|
return
|
|
|
|
iq = nbxmpp.Iq('get', xmlns=None)
|
|
|
|
iq.setQuery('blocklist').setNamespace(nbxmpp.NS_BLOCKING)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2015-03-07 15:04:41 +01:00
|
|
|
def _continue_connection_request_privacy(self):
|
|
|
|
if self.privacy_rules_supported:
|
|
|
|
if not self.privacy_rules_requested:
|
|
|
|
self.privacy_rules_requested = True
|
|
|
|
self._request_privacy()
|
|
|
|
else:
|
|
|
|
if self.continue_connect_info and self.continue_connect_info[0]\
|
|
|
|
== 'invisible':
|
|
|
|
# Trying to login as invisible but privacy list not
|
|
|
|
# supported
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2015-03-07 15:04:41 +01:00
|
|
|
show='offline'))
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='invisibility-not-supported', args=self.name))
|
2015-03-07 15:04:41 +01:00
|
|
|
return
|
|
|
|
if self.blocking_supported:
|
2017-10-15 18:03:41 +02:00
|
|
|
self._request_blocking()
|
2015-03-07 15:04:41 +01:00
|
|
|
# Ask metacontacts before roster
|
|
|
|
self.get_metacontacts()
|
|
|
|
|
2010-11-29 12:53:50 +01:00
|
|
|
def _nec_agent_info_error_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
2017-07-20 01:39:14 +02:00
|
|
|
if obj.id_[:6] == 'Gajim_' and obj.fjid == hostname:
|
2015-03-07 15:04:41 +01:00
|
|
|
self._continue_connection_request_privacy()
|
2010-11-29 12:53:50 +01:00
|
|
|
|
|
|
|
def _nec_agent_info_received(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
|
|
|
is_muc = False
|
|
|
|
transport_type = ''
|
|
|
|
for identity in obj.identities:
|
|
|
|
if 'category' in identity and identity['category'] in ('gateway',
|
|
|
|
'headline') and 'type' in identity:
|
|
|
|
transport_type = identity['type']
|
2013-06-02 21:02:33 +02:00
|
|
|
if 'category' in identity and identity['category'] == 'server' and \
|
|
|
|
'type' in identity and identity['type'] == 'im':
|
|
|
|
transport_type = 'jabber' # it's a jabber server
|
2010-11-29 12:53:50 +01:00
|
|
|
if 'category' in identity and identity['category'] == 'conference' \
|
|
|
|
and 'type' in identity and identity['type'] == 'text':
|
|
|
|
is_muc = True
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if transport_type != '' and obj.fjid not in app.transport_type:
|
|
|
|
app.transport_type[obj.fjid] = transport_type
|
|
|
|
app.logger.save_transport_type(obj.fjid, transport_type)
|
2010-11-29 12:53:50 +01:00
|
|
|
|
|
|
|
if obj.id_[:6] == 'Gajim_':
|
2017-08-13 13:18:56 +02:00
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
|
|
|
our_jid = app.get_jid_from_account(self.name)
|
2017-07-19 20:19:40 +02:00
|
|
|
|
|
|
|
if obj.fjid == our_jid:
|
|
|
|
if nbxmpp.NS_MAM_2 in obj.features:
|
|
|
|
self.archiving_namespace = nbxmpp.NS_MAM_2
|
|
|
|
elif nbxmpp.NS_MAM_1 in obj.features:
|
|
|
|
self.archiving_namespace = nbxmpp.NS_MAM_1
|
|
|
|
if self.archiving_namespace:
|
|
|
|
self.archiving_supported = True
|
|
|
|
self.archiving_313_supported = True
|
|
|
|
get_action(self.name + '-archive').set_enabled(True)
|
2017-10-15 00:52:34 +02:00
|
|
|
for identity in obj.identities:
|
|
|
|
if identity['category'] == 'pubsub':
|
|
|
|
self.pep_supported = identity.get('type') == 'pep'
|
|
|
|
break
|
|
|
|
if nbxmpp.NS_PUBSUB_PUBLISH_OPTIONS in obj.features:
|
|
|
|
self.pubsub_publish_options_supported = True
|
|
|
|
else:
|
|
|
|
# Remove stored bookmarks accessible to everyone.
|
|
|
|
self.send_pb_purge(our_jid, 'storage:bookmarks')
|
|
|
|
self.send_pb_delete(our_jid, 'storage:bookmarks')
|
2017-07-19 20:19:40 +02:00
|
|
|
|
2010-11-29 12:53:50 +01:00
|
|
|
if obj.fjid == hostname:
|
2012-12-09 21:37:51 +01:00
|
|
|
if nbxmpp.NS_SECLABEL in obj.features:
|
2010-11-29 12:53:50 +01:00
|
|
|
self.seclabel_supported = True
|
2012-12-09 21:37:51 +01:00
|
|
|
if nbxmpp.NS_VCARD in obj.features:
|
2010-11-29 12:53:50 +01:00
|
|
|
self.vcard_supported = True
|
2017-01-26 21:34:54 +01:00
|
|
|
get_action(self.name + '-profile').set_enabled(True)
|
2017-04-19 17:42:08 +02:00
|
|
|
if nbxmpp.NS_REGISTER in obj.features:
|
|
|
|
self.register_supported = True
|
2013-03-30 23:13:48 +01:00
|
|
|
if nbxmpp.NS_BLOCKING in obj.features:
|
|
|
|
self.blocking_supported = True
|
2013-07-27 14:14:50 +02:00
|
|
|
if nbxmpp.NS_ADDRESS in obj.features:
|
|
|
|
self.addressing_supported = True
|
2017-11-06 21:46:25 +01:00
|
|
|
if nbxmpp.NS_CARBONS in obj.features:
|
|
|
|
self.carbons_available = True
|
|
|
|
if app.config.get_per('accounts', self.name,
|
|
|
|
'enable_message_carbons'):
|
|
|
|
# Server supports carbons, activate it
|
|
|
|
iq = nbxmpp.Iq('set')
|
|
|
|
iq.setTag('enable', namespace=nbxmpp.NS_CARBONS)
|
|
|
|
self.connection.send(iq)
|
2015-03-07 15:04:41 +01:00
|
|
|
if nbxmpp.NS_PRIVACY in obj.features:
|
|
|
|
self.privacy_rules_supported = True
|
2017-01-26 21:34:54 +01:00
|
|
|
get_action(self.name + '-privacylists').set_enabled(True)
|
2015-03-07 15:04:41 +01:00
|
|
|
|
2017-07-20 01:39:14 +02:00
|
|
|
self._continue_connection_request_privacy()
|
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
if nbxmpp.NS_BYTESTREAM in obj.features and \
|
2017-08-13 13:18:56 +02:00
|
|
|
app.config.get_per('accounts', self.name, 'use_ft_proxies'):
|
2010-11-29 12:53:50 +01:00
|
|
|
our_fjid = helpers.parse_jid(our_jid + '/' + \
|
|
|
|
self.server_resource)
|
2017-08-13 13:18:56 +02:00
|
|
|
testit = app.config.get_per('accounts', self.name,
|
2011-10-23 20:26:28 +02:00
|
|
|
'test_ft_proxies_on_startup')
|
2017-08-13 13:18:56 +02:00
|
|
|
app.proxy65_manager.resolve(obj.fjid, self.connection,
|
2011-10-23 20:26:28 +02:00
|
|
|
our_fjid, default=self.name, testit=testit)
|
2012-12-09 21:37:51 +01:00
|
|
|
if nbxmpp.NS_MUC in obj.features and is_muc:
|
2010-11-29 12:53:50 +01:00
|
|
|
type_ = transport_type or 'jabber'
|
|
|
|
self.muc_jid[type_] = obj.fjid
|
|
|
|
if transport_type:
|
|
|
|
if transport_type in self.available_transports:
|
|
|
|
self.available_transports[transport_type].append(obj.fjid)
|
|
|
|
else:
|
|
|
|
self.available_transports[transport_type] = [obj.fjid]
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def send_custom_status(self, show, msg, jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not show in app.SHOW_LIST:
|
2010-02-08 15:08:40 +01:00
|
|
|
return -1
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
sshow = helpers.get_xmpp_show(show)
|
|
|
|
if not msg:
|
|
|
|
msg = ''
|
|
|
|
if show == 'offline':
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ='unavailable', to=jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, False)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
else:
|
|
|
|
signed = self.get_signed_presence(msg)
|
2017-08-13 13:18:56 +02:00
|
|
|
priority = app.get_priority(self.name, sshow)
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ=None, priority=priority, show=sshow, to=jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
if signed:
|
2012-12-09 21:37:51 +01:00
|
|
|
p.setTag(nbxmpp.NS_SIGNED + ' x').setData(signed)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
def _change_to_invisible(self, msg):
|
|
|
|
signed = self.get_signed_presence(msg)
|
|
|
|
self.send_invisible_presence(msg, signed)
|
|
|
|
|
|
|
|
def _change_from_invisible(self):
|
|
|
|
if self.privacy_rules_supported:
|
2017-01-28 18:46:17 +01:00
|
|
|
self.set_active_list('')
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-07-26 22:24:19 +02:00
|
|
|
def _update_status(self, show, msg, idle_time=None):
|
2010-02-08 15:08:40 +01:00
|
|
|
xmpp_show = helpers.get_xmpp_show(show)
|
2017-08-13 13:18:56 +02:00
|
|
|
priority = app.get_priority(self.name, xmpp_show)
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(typ=None, priority=priority, show=xmpp_show)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
signed = self.get_signed_presence(msg)
|
|
|
|
if signed:
|
2012-12-09 21:37:51 +01:00
|
|
|
p.setTag(nbxmpp.NS_SIGNED + ' x').setData(signed)
|
2017-07-26 22:24:19 +02:00
|
|
|
if idle_time:
|
|
|
|
idle = p.setTag('idle', namespace=nbxmpp.NS_IDLE)
|
|
|
|
idle.setAttr('since', idle_time)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.connection:
|
|
|
|
self.connection.send(p)
|
|
|
|
self.priority = priority
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
2010-11-06 10:04:41 +01:00
|
|
|
show=show))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
def send_motd(self, jid, subject='', msg='', xhtml=None):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
msg_iq = nbxmpp.Message(to=jid, body=msg, subject=subject,
|
|
|
|
xhtml=xhtml)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
self.connection.send(msg_iq)
|
|
|
|
|
2011-05-18 19:44:43 +02:00
|
|
|
def _nec_message_outgoing(self, obj):
|
|
|
|
if obj.account != self.name:
|
|
|
|
return
|
|
|
|
|
2017-04-06 23:21:19 +02:00
|
|
|
self._prepare_message(obj)
|
2016-02-08 22:31:36 +01:00
|
|
|
|
|
|
|
def _nec_stanza_message_outgoing(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2017-05-17 16:58:11 +02:00
|
|
|
|
|
|
|
config_key = '%s-%s' % (self.name, obj.jid)
|
2017-08-13 13:18:56 +02:00
|
|
|
encryption = app.config.get_per('encryption', config_key, 'encryption')
|
2017-05-17 16:58:11 +02:00
|
|
|
if encryption:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.plugin_manager.extension_point(
|
2017-04-13 22:58:51 +02:00
|
|
|
'encrypt' + encryption, self, obj, self.send_message)
|
2017-12-10 14:35:41 +01:00
|
|
|
if not obj.encrypted:
|
|
|
|
# Dont propagate event
|
|
|
|
return True
|
2017-04-13 22:58:51 +02:00
|
|
|
else:
|
|
|
|
self.send_message(obj)
|
|
|
|
|
|
|
|
def send_message(self, obj):
|
2017-08-02 00:08:11 +02:00
|
|
|
obj.timestamp = time.time()
|
2017-07-28 01:37:06 +02:00
|
|
|
obj.stanza_id = self.connection.send(obj.msg_iq, now=obj.now)
|
2016-12-17 14:06:36 +01:00
|
|
|
|
2018-02-26 20:49:01 +01:00
|
|
|
app.nec.push_incoming_event(MessageSentEvent(None, **vars(obj)))
|
2011-05-18 19:44:43 +02:00
|
|
|
|
2017-04-06 23:21:19 +02:00
|
|
|
if isinstance(obj.jid, list):
|
|
|
|
for j in obj.jid:
|
|
|
|
if obj.session is None:
|
|
|
|
obj.session = self.get_or_create_session(j, '')
|
2017-06-14 15:29:19 +02:00
|
|
|
self.log_message(obj, j)
|
2017-04-06 23:21:19 +02:00
|
|
|
else:
|
2017-06-14 15:29:19 +02:00
|
|
|
self.log_message(obj, obj.jid)
|
2015-09-23 22:39:11 +02:00
|
|
|
|
2013-02-10 18:57:25 +01:00
|
|
|
def send_contacts(self, contacts, fjid, type_='message'):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Send contacts with RosterX (Xep-0144)
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2013-02-10 18:57:25 +01:00
|
|
|
if type_ == 'message':
|
|
|
|
if len(contacts) == 1:
|
2017-09-19 12:45:02 +02:00
|
|
|
msg = _('Sent contact: "%(jid)s" (%(name)s)') % {
|
|
|
|
'jid': contacts[0].get_full_jid(),
|
|
|
|
'name': contacts[0].get_shown_name()}
|
2013-02-10 18:57:25 +01:00
|
|
|
else:
|
|
|
|
msg = _('Sent contacts:')
|
|
|
|
for contact in contacts:
|
|
|
|
msg += '\n "%s" (%s)' % (contact.get_full_jid(),
|
2010-02-08 15:08:40 +01:00
|
|
|
contact.get_shown_name())
|
2017-08-13 13:18:56 +02:00
|
|
|
stanza = nbxmpp.Message(to=app.get_jid_without_resource(fjid),
|
2013-02-10 18:57:25 +01:00
|
|
|
body=msg)
|
|
|
|
elif type_ == 'iq':
|
|
|
|
stanza = nbxmpp.Iq(to=fjid, typ='set')
|
|
|
|
x = stanza.addChild(name='x', namespace=nbxmpp.NS_ROSTERX)
|
2010-02-08 15:08:40 +01:00
|
|
|
for contact in contacts:
|
|
|
|
x.addChild(name='item', attrs={'action': 'add', 'jid': contact.jid,
|
2013-02-10 18:57:25 +01:00
|
|
|
'name': contact.get_shown_name()})
|
|
|
|
self.connection.send(stanza)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def send_stanza(self, stanza):
|
|
|
|
"""
|
|
|
|
Send a stanza untouched
|
|
|
|
"""
|
|
|
|
if not self.connection:
|
|
|
|
return
|
|
|
|
self.connection.send(stanza)
|
|
|
|
|
|
|
|
def ack_subscribed(self, jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
log.debug('ack\'ing subscription complete for %s' % jid)
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(jid, 'subscribe')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
def ack_unsubscribed(self, jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
log.debug('ack\'ing unsubscription complete for %s' % jid)
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(jid, 'unsubscribe')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(p)
|
|
|
|
|
2017-02-08 03:12:41 +01:00
|
|
|
def request_subscription(self, jid, msg='', name='', groups=None,
|
2010-02-08 15:08:40 +01:00
|
|
|
auto_auth=False, user_nick=''):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-02-08 03:12:41 +01:00
|
|
|
if groups is None:
|
|
|
|
groups = []
|
2010-02-08 15:08:40 +01:00
|
|
|
log.debug('subscription request for %s' % jid)
|
|
|
|
if auto_auth:
|
|
|
|
self.jids_for_auto_auth.append(jid)
|
|
|
|
# RFC 3921 section 8.2
|
|
|
|
infos = {'jid': jid}
|
|
|
|
if name:
|
|
|
|
infos['name'] = name
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_ROSTER)
|
2011-10-31 10:47:28 +01:00
|
|
|
q = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
item = q.addChild('item', attrs=infos)
|
|
|
|
for g in groups:
|
|
|
|
item.addChild('group').setData(g)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(jid, 'subscribe')
|
2010-02-08 15:08:40 +01:00
|
|
|
if user_nick:
|
2012-12-09 21:37:51 +01:00
|
|
|
p.setTag('nick', namespace = nbxmpp.NS_NICK).setData(user_nick)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
if msg:
|
|
|
|
p.setStatus(msg)
|
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
def send_authorization(self, jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(jid, 'subscribed')
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
def refuse_authorization(self, jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(jid, 'unsubscribed')
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.connection.send(p)
|
|
|
|
|
|
|
|
def unsubscribe(self, jid, remove_auth = True):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
if remove_auth:
|
|
|
|
self.connection.getRoster().delItem(jid)
|
2017-08-13 13:18:56 +02:00
|
|
|
jid_list = app.config.get_per('contacts')
|
2010-02-08 15:08:40 +01:00
|
|
|
for j in jid_list:
|
|
|
|
if j.startswith(jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.config.del_per('contacts', j)
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
self.connection.getRoster().Unsubscribe(jid)
|
|
|
|
self.update_contact(jid, '', [])
|
|
|
|
|
|
|
|
def unsubscribe_agent(self, agent):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_REGISTER, to=agent)
|
2011-10-31 10:47:28 +01:00
|
|
|
iq.setQuery().setTag('remove')
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
self.awaiting_answers[id_] = (AGENT_REMOVED, agent)
|
|
|
|
self.connection.send(iq)
|
|
|
|
self.connection.getRoster().delItem(agent)
|
|
|
|
|
|
|
|
def send_new_account_infos(self, form, is_form):
|
|
|
|
if is_form:
|
|
|
|
# Get username and password and put them in new_account_info
|
|
|
|
for field in form.iter_fields():
|
|
|
|
if field.var == 'username':
|
|
|
|
self.new_account_info['name'] = field.value
|
|
|
|
if field.var == 'password':
|
|
|
|
self.new_account_info['password'] = field.value
|
|
|
|
else:
|
|
|
|
# Get username and password and put them in new_account_info
|
|
|
|
if 'username' in form:
|
|
|
|
self.new_account_info['name'] = form['username']
|
|
|
|
if 'password' in form:
|
|
|
|
self.new_account_info['password'] = form['password']
|
|
|
|
self.new_account_form = form
|
|
|
|
self.new_account(self.name, self.new_account_info)
|
|
|
|
|
|
|
|
def new_account(self, name, config, sync=False):
|
|
|
|
# If a connection already exist we cannot create a new account
|
|
|
|
if self.connection:
|
|
|
|
return
|
|
|
|
self._hostname = config['hostname']
|
|
|
|
self.new_account_info = config
|
|
|
|
self.name = name
|
|
|
|
self.on_connect_success = self._on_new_account
|
|
|
|
self.on_connect_failure = self._on_new_account
|
|
|
|
self.connect(config)
|
2017-11-19 22:35:45 +01:00
|
|
|
app.resolver.resolve('_xmppconnect.' + helpers.idn_to_ascii(
|
|
|
|
self._hostname), self._on_resolve_txt, type_='txt')
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _on_new_account(self, con=None, con_type=None):
|
|
|
|
if not con_type:
|
2017-12-16 12:22:38 +01:00
|
|
|
if self._hosts:
|
2010-02-08 15:08:40 +01:00
|
|
|
# There are still other way to try to connect
|
|
|
|
return
|
2010-11-07 18:50:24 +01:00
|
|
|
reason = _('Could not connect to "%s"') % self._hostname
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(NewAccountNotConnectedEvent(None,
|
2010-11-07 18:50:24 +01:00
|
|
|
conn=self, reason=reason))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
self.on_connect_failure = None
|
|
|
|
self.connection = con
|
2012-12-09 21:37:51 +01:00
|
|
|
nbxmpp.features_nb.getRegInfo(con, self._hostname)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def request_os_info(self, jid, resource, groupchat_jid=None):
|
|
|
|
"""
|
|
|
|
groupchat_jid is used when we want to send a request to a real jid and
|
|
|
|
act as if the answer comes from the groupchat_jid
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
# If we are invisible, do not request
|
2017-08-13 13:18:56 +02:00
|
|
|
if self.connected == app.SHOW_LIST.index('invisible'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.dispatch('OS_INFO', (jid, resource, _('Not fetched because of invisible status'), _('Not fetched because of invisible status')))
|
|
|
|
return
|
|
|
|
to_whom_jid = jid
|
|
|
|
if resource:
|
|
|
|
to_whom_jid += '/' + resource
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(to=to_whom_jid, typ='get', queryNS=nbxmpp.NS_VERSION)
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
if groupchat_jid:
|
|
|
|
self.groupchat_jids[id_] = groupchat_jid
|
|
|
|
self.version_ids.append(id_)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def request_entity_time(self, jid, resource, groupchat_jid=None):
|
|
|
|
"""
|
|
|
|
groupchat_jid is used when we want to send a request to a real jid and
|
|
|
|
act as if the answer comes from the groupchat_jid
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
# If we are invisible, do not request
|
2017-08-13 13:18:56 +02:00
|
|
|
if self.connected == app.SHOW_LIST.index('invisible'):
|
2010-02-08 15:08:40 +01:00
|
|
|
self.dispatch('ENTITY_TIME', (jid, resource, _('Not fetched because of invisible status')))
|
|
|
|
return
|
|
|
|
to_whom_jid = jid
|
|
|
|
if resource:
|
|
|
|
to_whom_jid += '/' + resource
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(to=to_whom_jid, typ='get')
|
|
|
|
iq.addChild('time', namespace=nbxmpp.NS_TIME_REVISED)
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
if groupchat_jid:
|
|
|
|
self.groupchat_jids[id_] = groupchat_jid
|
|
|
|
self.entity_time_ids.append(id_)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-12-15 22:08:42 +01:00
|
|
|
def request_gateway_prompt(self, jid, prompt=None):
|
2010-12-15 21:15:00 +01:00
|
|
|
def _on_prompt_result(resp):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(GatewayPromptReceivedEvent(None,
|
2010-12-15 21:15:00 +01:00
|
|
|
conn=self, stanza=resp))
|
2010-12-15 22:08:42 +01:00
|
|
|
if prompt:
|
|
|
|
typ_ = 'set'
|
|
|
|
else:
|
|
|
|
typ_ = 'get'
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ=typ_, to=jid)
|
|
|
|
query = iq.addChild(name='query', namespace=nbxmpp.NS_GATEWAY)
|
2010-12-15 22:08:42 +01:00
|
|
|
if prompt:
|
|
|
|
query.setTagData('prompt', prompt)
|
2010-12-15 21:15:00 +01:00
|
|
|
self.connection.SendAndCallForResponse(iq, _on_prompt_result)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def get_settings(self):
|
|
|
|
"""
|
|
|
|
Get Gajim settings as described in XEP 0049
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq2.addChild(name='gajim', namespace='gajim:prefs')
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-06-07 19:11:44 +02:00
|
|
|
def seclabel_catalogue(self, to, callback):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-06-07 19:11:44 +02:00
|
|
|
return
|
|
|
|
self.seclabel_catalogue_request(to, callback)
|
2017-08-13 13:18:56 +02:00
|
|
|
server = app.get_jid_from_account(self.name).split("@")[1] # Really, no better way?
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', to=server)
|
|
|
|
iq2 = iq.addChild(name='catalog', namespace=nbxmpp.NS_SECLABEL_CATALOG)
|
2010-06-07 19:11:44 +02:00
|
|
|
iq2.setAttr('to', to)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-11-24 22:48:39 +01:00
|
|
|
def _nec_privacy_list_received(self, obj):
|
2017-08-13 13:18:56 +02:00
|
|
|
roster = app.interface.roster
|
2010-11-24 22:48:39 +01:00
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2017-01-27 22:24:53 +01:00
|
|
|
if obj.list_name != self.privacy_default_list:
|
2010-11-24 22:48:39 +01:00
|
|
|
return
|
|
|
|
self.blocked_contacts = []
|
|
|
|
self.blocked_groups = []
|
|
|
|
self.blocked_list = []
|
|
|
|
self.blocked_all = False
|
|
|
|
for rule in obj.rules:
|
|
|
|
if rule['action'] == 'allow':
|
|
|
|
if not 'type' in rule:
|
|
|
|
self.blocked_all = False
|
|
|
|
elif rule['type'] == 'jid' and rule['value'] in \
|
|
|
|
self.blocked_contacts:
|
|
|
|
self.blocked_contacts.remove(rule['value'])
|
|
|
|
elif rule['type'] == 'group' and rule['value'] in \
|
|
|
|
self.blocked_groups:
|
|
|
|
self.blocked_groups.remove(rule['value'])
|
|
|
|
elif rule['action'] == 'deny':
|
|
|
|
if not 'type' in rule:
|
|
|
|
self.blocked_all = True
|
|
|
|
elif rule['type'] == 'jid' and rule['value'] not in \
|
|
|
|
self.blocked_contacts:
|
|
|
|
self.blocked_contacts.append(rule['value'])
|
|
|
|
elif rule['type'] == 'group' and rule['value'] not in \
|
|
|
|
self.blocked_groups:
|
|
|
|
self.blocked_groups.append(rule['value'])
|
|
|
|
self.blocked_list.append(rule)
|
|
|
|
|
2017-02-02 19:56:24 +01:00
|
|
|
if 'type' in rule:
|
|
|
|
if rule['type'] == 'jid':
|
|
|
|
roster.draw_contact(rule['value'], self.name)
|
|
|
|
if rule['type'] == 'group':
|
|
|
|
roster.draw_group(rule['value'], self.name)
|
2017-01-27 19:36:13 +01:00
|
|
|
|
2017-10-03 13:08:06 +02:00
|
|
|
def bookmarks_available(self):
|
|
|
|
if self.private_storage_supported:
|
|
|
|
return True
|
|
|
|
if self.pubsub_publish_options_supported:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def _request_bookmarks_xml(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq2.addChild(name='storage', namespace='storage:bookmarks')
|
|
|
|
self.connection.send(iq)
|
2017-10-13 21:59:33 +02:00
|
|
|
app.log('bookmarks').info('Request Bookmarks (PrivateStorage)')
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _check_bookmarks_received(self):
|
|
|
|
if not self.bookmarks:
|
|
|
|
self._request_bookmarks_xml()
|
|
|
|
|
|
|
|
def get_bookmarks(self, storage_type=None):
|
|
|
|
"""
|
|
|
|
Get Bookmarks from storage or PubSub if supported as described in XEP
|
|
|
|
0048
|
|
|
|
|
|
|
|
storage_type can be set to xml to force request to xml storage
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-10-13 22:53:28 +02:00
|
|
|
|
|
|
|
if storage_type != 'xml':
|
2017-10-15 01:56:52 +02:00
|
|
|
if self.pep_supported and self.pubsub_publish_options_supported:
|
2017-10-13 22:53:28 +02:00
|
|
|
self.send_pb_retrieve('', 'storage:bookmarks')
|
|
|
|
app.log('bookmarks').info('Request Bookmarks (PubSub)')
|
|
|
|
# some server (ejabberd) are so slow to answer that we
|
|
|
|
# request via XML if we don't get answer in the next 30 seconds
|
|
|
|
app.idlequeue.set_alarm(self._check_bookmarks_received, 30)
|
|
|
|
return
|
|
|
|
|
|
|
|
self._request_bookmarks_xml()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-10-13 21:59:33 +02:00
|
|
|
def get_bookmarks_storage_node(self):
|
|
|
|
NS_GAJIM_BM = 'xmpp:gajim.org/bookmarks'
|
|
|
|
storage_node = nbxmpp.Node(
|
|
|
|
tag='storage', attrs={'xmlns': 'storage:bookmarks'})
|
|
|
|
for bm in self.bookmarks:
|
|
|
|
conf_node = storage_node.addChild(name="conference")
|
|
|
|
conf_node.setAttr('jid', bm['jid'])
|
|
|
|
conf_node.setAttr('autojoin', bm['autojoin'])
|
|
|
|
conf_node.setAttr('name', bm['name'])
|
|
|
|
conf_node.setTag(
|
|
|
|
'minimize', namespace=NS_GAJIM_BM).setData(bm['minimize'])
|
|
|
|
# Only add optional elements if not empty
|
|
|
|
# Note: need to handle both None and '' as empty
|
|
|
|
# thus shouldn't use "is not None"
|
|
|
|
if bm.get('nick', None):
|
|
|
|
conf_node.setTagData('nick', bm['nick'])
|
|
|
|
if bm.get('password', None):
|
|
|
|
conf_node.setTagData('password', bm['password'])
|
|
|
|
if bm.get('print_status', None):
|
|
|
|
conf_node.setTag(
|
|
|
|
'print_status',
|
|
|
|
namespace=NS_GAJIM_BM).setData(bm['print_status'])
|
|
|
|
return storage_node
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_bookmark_publish_options():
|
|
|
|
options = nbxmpp.Node(nbxmpp.NS_DATA + ' x',
|
|
|
|
attrs={'type': 'submit'})
|
|
|
|
f = options.addChild('field',
|
|
|
|
attrs={'var': 'FORM_TYPE', 'type': 'hidden'})
|
|
|
|
f.setTagData('value', nbxmpp.NS_PUBSUB_PUBLISH_OPTIONS)
|
|
|
|
f = options.addChild('field', attrs={'var': 'pubsub#access_model'})
|
|
|
|
f.setTagData('value', 'whitelist')
|
|
|
|
return options
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def store_bookmarks(self, storage_type=None):
|
|
|
|
"""
|
|
|
|
Send bookmarks to the storage namespace or PubSub if supported
|
|
|
|
|
|
|
|
storage_type can be set to 'pubsub' or 'xml' so store in only one method
|
|
|
|
else it will be stored on both
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-10-13 21:59:33 +02:00
|
|
|
|
|
|
|
storage_node = self.get_bookmarks_storage_node()
|
|
|
|
|
|
|
|
if storage_type != 'xml':
|
2017-10-15 01:56:52 +02:00
|
|
|
if self.pep_supported and self.pubsub_publish_options_supported:
|
2017-10-13 21:59:33 +02:00
|
|
|
self.send_pb_publish(
|
|
|
|
'', 'storage:bookmarks', storage_node, 'current',
|
|
|
|
options=self.get_bookmark_publish_options())
|
|
|
|
app.log('bookmarks').info('Bookmarks published (PubSub)')
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if storage_type != 'pubsub':
|
2017-10-13 21:59:33 +02:00
|
|
|
iq = nbxmpp.Iq('set', nbxmpp.NS_PRIVATE, payload=storage_node)
|
|
|
|
self.connection.send(iq)
|
|
|
|
app.log('bookmarks').info('Bookmarks published (PrivateStorage)')
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_annotations(self):
|
|
|
|
"""
|
|
|
|
Get Annonations from storage as described in XEP 0048, and XEP 0145
|
|
|
|
"""
|
|
|
|
self.annotations = {}
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq2.addChild(name='storage', namespace='storage:rosternotes')
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def store_annotations(self):
|
|
|
|
"""
|
|
|
|
Set Annonations in private storage as described in XEP 0048, and XEP 0145
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq3 = iq2.addChild(name='storage', namespace='storage:rosternotes')
|
|
|
|
for jid in self.annotations.keys():
|
|
|
|
if self.annotations[jid]:
|
|
|
|
iq4 = iq3.addChild(name = "note")
|
|
|
|
iq4.setAttr('jid', jid)
|
|
|
|
iq4.setData(self.annotations[jid])
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-12-11 12:57:09 +01:00
|
|
|
def get_roster_delimiter(self):
|
|
|
|
"""
|
|
|
|
Get roster group delimiter from storage as described in XEP 0083
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-12-11 12:57:09 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-12-11 12:57:09 +01:00
|
|
|
iq2.addChild(name='roster', namespace='roster:delimiter')
|
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
self.awaiting_answers[id_] = (DELIMITER_ARRIVED, )
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def set_roster_delimiter(self, delimiter='::'):
|
|
|
|
"""
|
|
|
|
Set roster group delimiter to the storage namespace
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-12-11 12:57:09 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-12-11 12:57:09 +01:00
|
|
|
iq3 = iq2.addChild(name='roster', namespace='roster:delimiter')
|
|
|
|
iq3.setData(delimiter)
|
|
|
|
|
|
|
|
self.connection.send(iq)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def get_metacontacts(self):
|
|
|
|
"""
|
|
|
|
Get metacontacts list from storage as described in XEP 0049
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq2.addChild(name='storage', namespace='storage:metacontacts')
|
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
|
|
|
self.awaiting_answers[id_] = (METACONTACTS_ARRIVED, )
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def store_metacontacts(self, tags_list):
|
|
|
|
"""
|
|
|
|
Send meta contacts to the storage namespace
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set')
|
|
|
|
iq2 = iq.addChild(name='query', namespace=nbxmpp.NS_PRIVATE)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq3 = iq2.addChild(name='storage', namespace='storage:metacontacts')
|
|
|
|
for tag in tags_list:
|
|
|
|
for data in tags_list[tag]:
|
|
|
|
jid = data['jid']
|
|
|
|
dict_ = {'jid': jid, 'tag': tag}
|
|
|
|
if 'order' in data:
|
|
|
|
dict_['order'] = data['order']
|
2012-12-09 21:37:51 +01:00
|
|
|
iq3.addChild(name='meta', attrs=dict_)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-12-11 12:57:09 +01:00
|
|
|
def request_roster(self):
|
|
|
|
version = None
|
2017-07-19 01:45:04 +02:00
|
|
|
features = self.connection.Dispatcher.Stream.features
|
2010-12-11 12:57:09 +01:00
|
|
|
if features and features.getTag('ver',
|
2012-12-09 21:37:51 +01:00
|
|
|
namespace=nbxmpp.NS_ROSTER_VER):
|
2017-08-13 13:18:56 +02:00
|
|
|
version = app.config.get_per('accounts', self.name,
|
2010-12-11 12:57:09 +01:00
|
|
|
'roster_version')
|
|
|
|
|
|
|
|
iq_id = self.connection.initRoster(version=version)
|
|
|
|
self.awaiting_answers[iq_id] = (ROSTER_ARRIVED, )
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def send_agent_status(self, agent, ptype):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
show = helpers.get_xmpp_show(app.SHOW_LIST[self.connected])
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(to=agent, typ=ptype, show=show)
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, ptype != 'unavailable')
|
|
|
|
self.connection.send(p)
|
|
|
|
|
2010-06-27 23:09:07 +02:00
|
|
|
def send_captcha(self, jid, form_node):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-06-27 23:09:07 +02:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=jid)
|
|
|
|
captcha = iq.addChild(name='captcha', namespace=nbxmpp.NS_CAPTCHA)
|
2010-06-27 23:09:07 +02:00
|
|
|
captcha.addChild(node=form_node)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def check_unique_room_id_support(self, server, instance):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', to=server)
|
2010-02-08 15:08:40 +01:00
|
|
|
iq.setAttr('id', 'unique1')
|
2012-12-09 21:37:51 +01:00
|
|
|
iq.addChild('unique', namespace=nbxmpp.NS_MUC_UNIQUE)
|
2010-02-08 15:08:40 +01:00
|
|
|
def _on_response(resp):
|
2012-12-09 21:37:51 +01:00
|
|
|
if not nbxmpp.isResultNode(resp):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(UniqueRoomIdNotSupportedEvent(
|
2010-11-24 17:28:18 +01:00
|
|
|
None, conn=self, instance=instance, server=server))
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(UniqueRoomIdSupportedEvent(None,
|
2010-11-24 17:28:18 +01:00
|
|
|
conn=self, instance=instance, server=server,
|
|
|
|
room_id=resp.getTag('unique').getData()))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.SendAndCallForResponse(iq, _on_response)
|
|
|
|
|
2012-02-18 19:48:03 +01:00
|
|
|
def join_gc(self, nick, room_jid, password, change_nick=False,
|
|
|
|
rejoin=False):
|
2010-02-08 15:08:40 +01:00
|
|
|
# FIXME: This room JID needs to be normalized; see #1364
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
show = helpers.get_xmpp_show(app.SHOW_LIST[self.connected])
|
2010-02-08 15:08:40 +01:00
|
|
|
if show == 'invisible':
|
|
|
|
# Never join a room when invisible
|
|
|
|
return
|
|
|
|
|
2017-11-11 21:46:34 +01:00
|
|
|
self.discoverMUC(
|
|
|
|
room_jid, partial(self._join_gc, nick, show, room_jid,
|
|
|
|
password, change_nick, rejoin))
|
|
|
|
|
|
|
|
def _join_gc(self, nick, show, room_jid, password, change_nick, rejoin):
|
2017-10-22 00:39:56 +02:00
|
|
|
# Check time first in the FAST table
|
|
|
|
last_date = app.logger.get_room_last_message_time(
|
|
|
|
self.name, room_jid)
|
|
|
|
if not last_date:
|
|
|
|
last_date = 0
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(to='%s/%s' % (room_jid, nick),
|
2010-02-08 15:08:40 +01:00
|
|
|
show=show, status=self.status)
|
2015-07-31 22:08:00 +02:00
|
|
|
h = hmac.new(self.secret_hmac, room_jid.encode('utf-8'), hashlib.md5).\
|
|
|
|
hexdigest()[:6]
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
id_ = 'gajim_muc_' + id_ + '_' + h
|
|
|
|
p.setID(id_)
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get('send_sha_in_gc_presence'):
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p)
|
|
|
|
self.add_lang(p)
|
2017-11-11 21:46:34 +01:00
|
|
|
if change_nick:
|
|
|
|
self.connection.send(p)
|
|
|
|
return
|
|
|
|
|
|
|
|
t = p.setTag(nbxmpp.NS_MUC + ' x')
|
|
|
|
if muc_caps_cache.has_mam(room_jid):
|
|
|
|
# The room is MAM capable dont get MUC History
|
|
|
|
t.setTag('history', {'maxchars': '0'})
|
|
|
|
else:
|
|
|
|
# Request MUC History (not MAM)
|
2011-05-09 20:32:48 +02:00
|
|
|
tags = {}
|
2017-08-13 13:18:56 +02:00
|
|
|
timeout = app.config.get_per('rooms', room_jid,
|
2017-11-11 21:46:34 +01:00
|
|
|
'muc_restore_timeout')
|
2012-12-13 10:07:51 +01:00
|
|
|
if timeout is None or timeout == -2:
|
2017-08-13 13:18:56 +02:00
|
|
|
timeout = app.config.get('muc_restore_timeout')
|
2017-07-10 20:13:10 +02:00
|
|
|
if last_date == 0 and timeout >= 0:
|
|
|
|
last_date = time.time() - timeout * 60
|
|
|
|
elif not rejoin and timeout >= 0:
|
|
|
|
last_date = max(last_date, time.time() - timeout * 60)
|
|
|
|
last_date = time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime(
|
|
|
|
last_date))
|
|
|
|
tags['since'] = last_date
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
nb = app.config.get_per('rooms', room_jid, 'muc_restore_lines')
|
2012-12-13 10:07:51 +01:00
|
|
|
if nb is None or nb == -2:
|
2017-08-13 13:18:56 +02:00
|
|
|
nb = app.config.get('muc_restore_lines')
|
2011-05-09 20:32:48 +02:00
|
|
|
if nb >= 0:
|
|
|
|
tags['maxstanzas'] = nb
|
|
|
|
if tags:
|
|
|
|
t.setTag('history', tags)
|
2017-11-11 21:46:34 +01:00
|
|
|
|
|
|
|
if password:
|
|
|
|
t.setTagData('password', password)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(p)
|
|
|
|
|
2013-07-19 11:52:37 +02:00
|
|
|
def _nec_gc_message_outgoing(self, obj):
|
|
|
|
if obj.account != self.name:
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2013-07-19 11:52:37 +02:00
|
|
|
return
|
|
|
|
|
2017-08-13 13:18:56 +02:00
|
|
|
if not obj.xhtml and app.config.get('rst_formatting_outgoing_messages'):
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common.rst_xhtml_generator import create_xhtml
|
2013-07-19 11:52:37 +02:00
|
|
|
obj.xhtml = create_xhtml(obj.message)
|
2017-12-27 13:17:13 +01:00
|
|
|
|
2013-07-19 11:52:37 +02:00
|
|
|
msg_iq = nbxmpp.Message(obj.jid, obj.message, typ='groupchat',
|
2016-06-24 20:12:37 +02:00
|
|
|
xhtml=obj.xhtml)
|
2017-06-02 01:29:41 +02:00
|
|
|
|
2017-07-28 01:37:06 +02:00
|
|
|
obj.stanza_id = self.connection.getAnID()
|
|
|
|
msg_iq.setID(obj.stanza_id)
|
|
|
|
if obj.message:
|
|
|
|
msg_iq.setOriginID(obj.stanza_id)
|
|
|
|
|
2017-06-02 01:29:41 +02:00
|
|
|
if obj.correct_id:
|
|
|
|
msg_iq.setTag('replace', attrs={'id': obj.correct_id},
|
|
|
|
namespace=nbxmpp.NS_CORRECT)
|
|
|
|
|
2016-12-24 04:36:21 +01:00
|
|
|
if obj.chatstate:
|
|
|
|
msg_iq.setTag(obj.chatstate, namespace=nbxmpp.NS_CHATSTATES)
|
2013-07-19 11:52:37 +02:00
|
|
|
if obj.label is not None:
|
2016-04-03 21:32:53 +02:00
|
|
|
msg_iq.addChild(node=obj.label)
|
2017-06-02 01:29:41 +02:00
|
|
|
|
|
|
|
obj.msg_iq = msg_iq
|
|
|
|
obj.conn = self
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(GcStanzaMessageOutgoingEvent(None, **vars(obj)))
|
2013-07-19 11:52:37 +02:00
|
|
|
|
2016-06-24 20:12:37 +02:00
|
|
|
def _nec_gc_stanza_message_outgoing(self, obj):
|
|
|
|
if obj.conn.name != self.name:
|
|
|
|
return
|
2017-05-17 16:58:11 +02:00
|
|
|
|
|
|
|
config_key = '%s-%s' % (self.name, obj.jid)
|
2017-08-13 13:18:56 +02:00
|
|
|
encryption = app.config.get_per('encryption', config_key, 'encryption')
|
2017-05-17 16:58:11 +02:00
|
|
|
if encryption:
|
2017-08-13 13:18:56 +02:00
|
|
|
app.plugin_manager.extension_point(
|
2017-05-07 14:02:11 +02:00
|
|
|
'gc_encrypt' + encryption, self, obj, self.send_gc_message)
|
|
|
|
else:
|
|
|
|
self.send_gc_message(obj)
|
|
|
|
|
|
|
|
def send_gc_message(self, obj):
|
2017-07-28 01:37:06 +02:00
|
|
|
obj.stanza_id = self.connection.send(obj.msg_iq)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(MessageSentEvent(
|
2016-06-24 20:12:37 +02:00
|
|
|
None, conn=self, jid=obj.jid, message=obj.message, keyID=None,
|
|
|
|
chatstate=None, automatic_message=obj.automatic_message,
|
2017-07-28 01:37:06 +02:00
|
|
|
stanza_id=obj.stanza_id, additional_data=obj.additional_data))
|
2016-06-24 20:12:37 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def send_gc_subject(self, jid, subject):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
msg_iq = nbxmpp.Message(jid, typ='groupchat', subject=subject)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(msg_iq)
|
|
|
|
|
|
|
|
def request_gc_config(self, room_jid):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', queryNS=nbxmpp.NS_MUC_OWNER,
|
|
|
|
to=room_jid)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.add_lang(iq)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def destroy_gc_room(self, room_jid, reason = '', jid = ''):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', queryNS=nbxmpp.NS_MUC_OWNER,
|
|
|
|
to=room_jid)
|
2011-10-31 10:47:28 +01:00
|
|
|
destroy = iq.setQuery().setTag('destroy')
|
2010-02-08 15:08:40 +01:00
|
|
|
if reason:
|
|
|
|
destroy.setTagData('reason', reason)
|
|
|
|
if jid:
|
|
|
|
destroy.setAttr('jid', jid)
|
|
|
|
self.connection.send(iq)
|
2018-03-29 11:01:25 +02:00
|
|
|
i = 0
|
|
|
|
for bm in self.bookmarks:
|
|
|
|
if bm['jid'] == room_jid:
|
|
|
|
del self.bookmarks[i]
|
|
|
|
break
|
|
|
|
i += 1
|
|
|
|
self.store_bookmarks()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-07-26 22:24:19 +02:00
|
|
|
def send_gc_status(self, nick, jid, show, status, auto=False):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
if show == 'invisible':
|
|
|
|
show = 'offline'
|
|
|
|
ptype = None
|
|
|
|
if show == 'offline':
|
|
|
|
ptype = 'unavailable'
|
|
|
|
xmpp_show = helpers.get_xmpp_show(show)
|
2012-12-09 21:37:51 +01:00
|
|
|
p = nbxmpp.Presence(to='%s/%s' % (jid, nick), typ=ptype,
|
|
|
|
show=xmpp_show, status=status)
|
2015-07-31 22:08:00 +02:00
|
|
|
h = hmac.new(self.secret_hmac, jid.encode('utf-8'), hashlib.md5).\
|
|
|
|
hexdigest()[:6]
|
2010-02-08 15:08:40 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
id_ = 'gajim_muc_' + id_ + '_' + h
|
|
|
|
p.setID(id_)
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get('send_sha_in_gc_presence') and show != 'offline':
|
2010-02-08 15:08:40 +01:00
|
|
|
p = self.add_sha(p, ptype != 'unavailable')
|
|
|
|
self.add_lang(p)
|
2017-07-26 22:24:19 +02:00
|
|
|
if auto:
|
2018-04-24 19:36:33 +02:00
|
|
|
if app.is_installed('IDLE') and app.config.get('autoaway'):
|
2017-08-22 21:53:32 +02:00
|
|
|
idle_sec = int(app.interface.sleeper.getIdleSec())
|
2017-07-26 22:24:19 +02:00
|
|
|
idle_time = time.strftime('%Y-%m-%dT%H:%M:%SZ',
|
|
|
|
time.gmtime(time.time() - idle_sec))
|
|
|
|
idle = p.setTag('idle', namespace=nbxmpp.NS_IDLE)
|
|
|
|
idle.setAttr('since', idle_time)
|
2010-02-08 15:08:40 +01:00
|
|
|
# send instantly so when we go offline, status is sent to gc before we
|
|
|
|
# disconnect from jabber server
|
|
|
|
self.connection.send(p)
|
|
|
|
|
2012-12-09 21:37:51 +01:00
|
|
|
def gc_set_role(self, room_jid, nick, role, reason=''):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Role is for all the life of the room so it's based on nick
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=room_jid, queryNS=nbxmpp.NS_MUC_ADMIN)
|
2011-10-31 10:47:28 +01:00
|
|
|
item = iq.setQuery().setTag('item')
|
2010-02-08 15:08:40 +01:00
|
|
|
item.setAttr('nick', nick)
|
|
|
|
item.setAttr('role', role)
|
|
|
|
if reason:
|
2012-12-09 21:37:51 +01:00
|
|
|
item.addChild(name='reason', payload=reason)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def gc_set_affiliation(self, room_jid, jid, affiliation, reason = ''):
|
|
|
|
"""
|
|
|
|
Affiliation is for all the life of the room so it's based on jid
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=room_jid, queryNS=nbxmpp.NS_MUC_ADMIN)
|
2011-10-31 10:47:28 +01:00
|
|
|
item = iq.setQuery().setTag('item')
|
2010-02-08 15:08:40 +01:00
|
|
|
item.setAttr('jid', jid)
|
|
|
|
item.setAttr('affiliation', affiliation)
|
|
|
|
if reason:
|
|
|
|
item.addChild(name = 'reason', payload = reason)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def send_gc_affiliation_list(self, room_jid, users_dict):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=room_jid, queryNS=nbxmpp.NS_MUC_ADMIN)
|
2011-10-31 10:47:28 +01:00
|
|
|
item = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
for jid in users_dict:
|
|
|
|
item_tag = item.addChild('item', {'jid': jid,
|
|
|
|
'affiliation': users_dict[jid]['affiliation']})
|
|
|
|
if 'reason' in users_dict[jid] and users_dict[jid]['reason']:
|
|
|
|
item_tag.setTagData('reason', users_dict[jid]['reason'])
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def get_affiliation_list(self, room_jid, affiliation):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', to=room_jid, queryNS=nbxmpp.NS_MUC_ADMIN)
|
2011-10-31 10:47:28 +01:00
|
|
|
item = iq.setQuery().setTag('item')
|
2010-02-08 15:08:40 +01:00
|
|
|
item.setAttr('affiliation', affiliation)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def send_gc_config(self, room_jid, form):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=room_jid, queryNS=nbxmpp.NS_MUC_OWNER)
|
2011-10-31 10:47:28 +01:00
|
|
|
query = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
form.setAttr('type', 'submit')
|
|
|
|
query.addChild(node = form)
|
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def change_password(self, password):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
|
|
|
username = app.config.get_per('accounts', self.name, 'name')
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=hostname)
|
|
|
|
q = iq.setTag(nbxmpp.NS_REGISTER + ' query')
|
2010-02-10 19:24:11 +01:00
|
|
|
q.setTagData('username', username)
|
|
|
|
q.setTagData('password', password)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq)
|
|
|
|
|
2010-02-17 13:35:18 +01:00
|
|
|
def get_password(self, callback, type_):
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.config.get_per('accounts', self.name, 'anonymous_auth') and \
|
2015-08-31 13:47:18 +02:00
|
|
|
type_ != 'ANONYMOUS':
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(NonAnonymousServerErrorEvent(None,
|
2015-08-31 13:47:18 +02:00
|
|
|
conn=self))
|
|
|
|
self._on_disconnected()
|
|
|
|
return
|
2010-02-17 13:35:18 +01:00
|
|
|
self.pasword_callback = (callback, type_)
|
2011-12-18 23:20:30 +01:00
|
|
|
if type_ == 'X-MESSENGER-OAUTH2':
|
2017-08-13 13:18:56 +02:00
|
|
|
client_id = app.config.get_per('accounts', self.name,
|
2011-12-18 23:20:30 +01:00
|
|
|
'oauth2_client_id')
|
2017-08-13 13:18:56 +02:00
|
|
|
refresh_token = app.config.get_per('accounts', self.name,
|
2011-12-18 23:20:30 +01:00
|
|
|
'oauth2_refresh_token')
|
|
|
|
if refresh_token:
|
|
|
|
renew_URL = 'https://oauth.live.com/token?client_id=' \
|
|
|
|
'%(client_id)s&redirect_uri=https%%3A%%2F%%2Foauth.live.' \
|
|
|
|
'com%%2Fdesktop&grant_type=refresh_token&refresh_token=' \
|
|
|
|
'%(refresh_token)s' % locals()
|
|
|
|
result = helpers.download_image(self.name, {'src': renew_URL})[0]
|
|
|
|
if result:
|
|
|
|
dict_ = json.loads(result)
|
|
|
|
if 'access_token' in dict_:
|
|
|
|
self.set_password(dict_['access_token'])
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
script_url = app.config.get_per('accounts', self.name,
|
2011-12-18 23:20:30 +01:00
|
|
|
'oauth2_redirect_url')
|
|
|
|
token_URL = 'https://oauth.live.com/authorize?client_id=' \
|
|
|
|
'%(client_id)s&scope=wl.messenger%%20wl.offline_access&' \
|
|
|
|
'response_type=code&redirect_uri=%(script_url)s' % locals()
|
|
|
|
helpers.launch_browser_mailer('url', token_URL)
|
|
|
|
self.disconnect(on_purpose=True)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(Oauth2CredentialsRequiredEvent(None,
|
2011-12-18 23:20:30 +01:00
|
|
|
conn=self))
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.password:
|
2010-02-17 13:35:18 +01:00
|
|
|
self.set_password(self.password)
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(PasswordRequiredEvent(None, conn=self))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def set_password(self, password):
|
|
|
|
self.password = password
|
|
|
|
if self.pasword_callback:
|
2010-02-17 13:35:18 +01:00
|
|
|
callback, type_ = self.pasword_callback
|
|
|
|
if self._current_type == 'plain' and type_ == 'PLAIN' and \
|
2017-08-13 13:18:56 +02:00
|
|
|
app.config.get_per('accounts', self.name,
|
2010-02-17 13:35:18 +01:00
|
|
|
'warn_when_insecure_password'):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(InsecurePasswordEvent(None,
|
2010-11-24 16:18:56 +01:00
|
|
|
conn=self))
|
2010-02-17 13:35:18 +01:00
|
|
|
return
|
|
|
|
callback(password)
|
|
|
|
self.pasword_callback = None
|
|
|
|
|
|
|
|
def accept_insecure_password(self):
|
|
|
|
if self.pasword_callback:
|
|
|
|
callback, type_ = self.pasword_callback
|
|
|
|
callback(self.password)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.pasword_callback = None
|
|
|
|
|
|
|
|
def unregister_account(self, on_remove_success):
|
|
|
|
# no need to write this as a class method and keep the value of
|
|
|
|
# on_remove_success as a class property as pass it as an argument
|
|
|
|
def _on_unregister_account_connect(con):
|
|
|
|
self.on_connect_auth = None
|
2018-03-28 11:36:14 +02:00
|
|
|
self.removing_account = True
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.account_is_connected(self.name):
|
|
|
|
hostname = app.config.get_per('accounts', self.name, 'hostname')
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=hostname)
|
2011-01-05 20:59:10 +01:00
|
|
|
id_ = self.connection.getAnID()
|
|
|
|
iq.setID(id_)
|
2012-12-09 21:37:51 +01:00
|
|
|
iq.setTag(nbxmpp.NS_REGISTER + ' query').setTag('remove')
|
2011-01-05 20:59:10 +01:00
|
|
|
def _on_answer(con, result):
|
|
|
|
if result.getID() == id_:
|
2010-02-08 15:08:40 +01:00
|
|
|
on_remove_success(True)
|
|
|
|
return
|
2017-12-09 00:15:26 +01:00
|
|
|
app.nec.push_incoming_event(InformationEvent(
|
|
|
|
None, dialog_name='unregister-error',
|
|
|
|
kwargs={'server': hostname, 'error': result.getErrorMsg()}))
|
2010-02-08 15:08:40 +01:00
|
|
|
on_remove_success(False)
|
2011-01-05 20:59:10 +01:00
|
|
|
con.RegisterHandler('iq', _on_answer, 'result', system=True)
|
|
|
|
con.SendAndWaitForResponse(iq)
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
|
|
|
on_remove_success(False)
|
2018-03-28 11:36:14 +02:00
|
|
|
self.removing_account = False
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.connected == 0:
|
|
|
|
self.on_connect_auth = _on_unregister_account_connect
|
|
|
|
self.connect_and_auth()
|
|
|
|
else:
|
|
|
|
_on_unregister_account_connect(self.connection)
|
|
|
|
|
|
|
|
def send_invite(self, room, to, reason='', continue_tag=False):
|
|
|
|
"""
|
|
|
|
Send invitation
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2014-07-10 20:30:20 +02:00
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
contact = app.contacts.get_contact_from_full_jid(self.name, to)
|
2013-11-28 21:24:17 +01:00
|
|
|
if contact and contact.supports(nbxmpp.NS_CONFERENCE):
|
|
|
|
# send direct invite
|
|
|
|
message=nbxmpp.Message(to=to)
|
|
|
|
attrs = {'jid': room}
|
|
|
|
if reason:
|
|
|
|
attrs['reason'] = reason
|
|
|
|
if continue_tag:
|
|
|
|
attrs['continue'] = 'true'
|
2017-08-13 13:18:56 +02:00
|
|
|
password = app.gc_passwords.get(room, '')
|
2015-12-02 23:05:10 +01:00
|
|
|
if password:
|
|
|
|
attrs['password'] = password
|
2013-11-28 21:24:17 +01:00
|
|
|
c = message.addChild(name='x', attrs=attrs,
|
|
|
|
namespace=nbxmpp.NS_CONFERENCE)
|
|
|
|
self.connection.send(message)
|
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
message=nbxmpp.Message(to=room)
|
|
|
|
c = message.addChild(name='x', namespace=nbxmpp.NS_MUC_USER)
|
2012-08-23 21:34:03 +02:00
|
|
|
c = c.addChild(name='invite', attrs={'to': to})
|
2010-02-08 15:08:40 +01:00
|
|
|
if continue_tag:
|
2012-08-23 21:34:03 +02:00
|
|
|
c.addChild(name='continue')
|
|
|
|
if reason != '':
|
|
|
|
c.setTagData('reason', reason)
|
|
|
|
self.connection.send(message)
|
|
|
|
|
|
|
|
def decline_invitation(self, room, to, reason=''):
|
|
|
|
"""
|
|
|
|
decline a groupchat invitation
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2014-07-10 20:30:20 +02:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
message=nbxmpp.Message(to=room)
|
|
|
|
c = message.addChild(name='x', namespace=nbxmpp.NS_MUC_USER)
|
2012-08-23 21:34:03 +02:00
|
|
|
c = c.addChild(name='decline', attrs={'to': to})
|
2010-02-08 15:08:40 +01:00
|
|
|
if reason != '':
|
|
|
|
c.setTagData('reason', reason)
|
|
|
|
self.connection.send(message)
|
|
|
|
|
2011-07-29 17:34:53 +02:00
|
|
|
def request_voice(self, room):
|
2011-05-09 20:32:48 +02:00
|
|
|
"""
|
2011-04-26 15:54:46 +02:00
|
|
|
Request voice in a moderated room
|
|
|
|
"""
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.account_is_connected(self.name):
|
2014-07-10 20:30:20 +02:00
|
|
|
return
|
2012-12-09 21:37:51 +01:00
|
|
|
message = nbxmpp.Message(to=room)
|
2011-04-26 15:54:46 +02:00
|
|
|
|
2012-12-16 23:53:32 +01:00
|
|
|
x = nbxmpp.DataForm(typ='submit')
|
|
|
|
x.addChild(node=nbxmpp.DataField(name='FORM_TYPE',
|
2012-12-09 21:37:51 +01:00
|
|
|
value=nbxmpp.NS_MUC + '#request'))
|
2012-12-16 23:53:32 +01:00
|
|
|
x.addChild(node=nbxmpp.DataField(name='muc#role', value='participant',
|
2011-04-26 15:54:46 +02:00
|
|
|
typ='text-single'))
|
|
|
|
|
|
|
|
message.addChild(node=x)
|
|
|
|
|
|
|
|
self.connection.send(message)
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def check_pingalive(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.config.get_per('accounts', self.name, 'active'):
|
2012-12-12 22:03:13 +01:00
|
|
|
# Account may have been disabled
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.awaiting_xmpp_ping_id:
|
|
|
|
# We haven't got the pong in time, disco and reconnect
|
2013-01-05 11:26:22 +01:00
|
|
|
log.warning("No reply received for keepalive ping. Reconnecting.")
|
2017-04-25 14:43:54 +02:00
|
|
|
self.disconnectedReconnCB()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def _reconnect_alarm(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
if not app.config.get_per('accounts', self.name, 'active'):
|
2010-08-23 14:55:03 +02:00
|
|
|
# Account may have been disabled
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.time_to_reconnect:
|
|
|
|
if self.connected < 2:
|
2017-04-25 14:43:54 +02:00
|
|
|
self.reconnect()
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
self.time_to_reconnect = None
|
|
|
|
|
|
|
|
def request_search_fields(self, jid):
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='get', to=jid, queryNS=nbxmpp.NS_SEARCH)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.connection.send(iq)
|
|
|
|
|
|
|
|
def send_search_form(self, jid, form, is_form):
|
2012-12-09 21:37:51 +01:00
|
|
|
iq = nbxmpp.Iq(typ='set', to=jid, queryNS=nbxmpp.NS_SEARCH)
|
2011-10-31 10:47:28 +01:00
|
|
|
item = iq.setQuery()
|
2010-02-08 15:08:40 +01:00
|
|
|
if is_form:
|
2010-08-30 21:42:36 +02:00
|
|
|
item.addChild(node=form)
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
for i in form.keys():
|
2010-02-10 19:24:11 +01:00
|
|
|
item.setTagData(i, form[i])
|
2010-02-08 15:08:40 +01:00
|
|
|
def _on_response(resp):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(SearchResultReceivedEvent(None,
|
2010-10-19 17:21:11 +02:00
|
|
|
conn=self, stanza=resp))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
self.connection.SendAndCallForResponse(iq, _on_response)
|
|
|
|
|
|
|
|
def load_roster_from_db(self):
|
2017-08-13 13:18:56 +02:00
|
|
|
app.nec.push_incoming_event(RosterReceivedEvent(None, conn=self))
|
2009-07-09 14:33:18 +02:00
|
|
|
|
2005-05-31 15:53:22 +02:00
|
|
|
# END Connection
|