2018-07-22 16:53:02 +02:00
|
|
|
# Copyright (C) 2003-2014 Yann Leboulanger <asterix AT lagaule.org>
|
|
|
|
# Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
|
|
|
|
# Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
|
|
|
|
#
|
|
|
|
# This file is part of Gajim.
|
|
|
|
#
|
|
|
|
# Gajim is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published
|
|
|
|
# by the Free Software Foundation; version 3 only.
|
|
|
|
#
|
|
|
|
# Gajim is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
2006-09-08 19:48:37 +02:00
|
|
|
|
|
|
|
import base64
|
2010-09-01 20:18:24 +02:00
|
|
|
import time
|
2017-09-26 07:14:01 +02:00
|
|
|
import logging
|
2018-04-08 21:55:29 +02:00
|
|
|
import hashlib
|
2006-09-08 19:48:37 +02:00
|
|
|
|
2018-07-01 13:30:13 +02:00
|
|
|
from gi.repository import Gtk
|
|
|
|
from gi.repository import Gdk
|
|
|
|
from gi.repository import GLib
|
|
|
|
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim import gtkgui_helpers
|
2018-07-16 23:22:33 +02:00
|
|
|
from gajim.gtk import ErrorDialog
|
|
|
|
from gajim.gtk import InformationDialog
|
2018-07-22 16:53:02 +02:00
|
|
|
from gajim.gtk.util import get_builder
|
2018-08-19 17:44:17 +02:00
|
|
|
from gajim.gtk.filechoosers import AvatarChooserDialog
|
2017-09-16 11:49:31 +02:00
|
|
|
from gajim.common.const import AvatarSize
|
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 ged
|
2008-10-20 23:38:06 +02:00
|
|
|
|
2017-09-26 07:14:01 +02:00
|
|
|
log = logging.getLogger('gajim.profile')
|
2006-09-08 19:48:37 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2018-07-01 13:30:13 +02:00
|
|
|
class ProfileWindow(Gtk.ApplicationWindow):
|
|
|
|
def __init__(self, account):
|
|
|
|
Gtk.ApplicationWindow.__init__(self)
|
|
|
|
self.set_application(app.app)
|
|
|
|
self.set_position(Gtk.WindowPosition.CENTER)
|
|
|
|
self.set_show_menubar(False)
|
|
|
|
self.set_title(_('Profile'))
|
|
|
|
|
|
|
|
self.connect('destroy', self.on_profile_window_destroy)
|
|
|
|
self.connect('key-press-event', self.on_profile_window_key_press_event)
|
|
|
|
|
2018-07-22 16:53:02 +02:00
|
|
|
self.xml = get_builder('profile_window.ui')
|
2018-07-01 13:30:13 +02:00
|
|
|
self.add(self.xml.get_object('profile_box'))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.progressbar = self.xml.get_object('progressbar')
|
|
|
|
self.statusbar = self.xml.get_object('statusbar')
|
|
|
|
self.context_id = self.statusbar.get_context_id('profile')
|
|
|
|
|
|
|
|
self.account = account
|
2017-08-13 13:18:56 +02:00
|
|
|
self.jid = app.get_jid_from_account(account)
|
2018-07-01 13:30:13 +02:00
|
|
|
account_label = app.config.get_per(
|
|
|
|
'accounts', account, 'account_label')
|
2018-07-01 12:59:00 +02:00
|
|
|
self.set_value('account_label', account_label)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
self.dialog = None
|
|
|
|
self.avatar_mime_type = None
|
|
|
|
self.avatar_encoded = None
|
2017-09-16 11:49:31 +02:00
|
|
|
self.avatar_sha = None
|
2010-02-08 15:08:40 +01:00
|
|
|
self.message_id = self.statusbar.push(self.context_id,
|
2018-07-01 13:30:13 +02:00
|
|
|
_('Retrieving profile…'))
|
|
|
|
self.update_progressbar_timeout_id = GLib.timeout_add(
|
|
|
|
100, self.update_progressbar)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.remove_statusbar_timeout_id = None
|
|
|
|
|
|
|
|
self.xml.connect_signals(self)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('vcard-published', ged.GUI1,
|
2018-07-01 13:30:13 +02:00
|
|
|
self._nec_vcard_published)
|
2017-08-13 13:18:56 +02:00
|
|
|
app.ged.register_event_handler('vcard-not-published', ged.GUI1,
|
2018-07-01 13:30:13 +02:00
|
|
|
self._nec_vcard_not_published)
|
|
|
|
|
|
|
|
self.show_all()
|
2012-06-28 10:49:54 +02:00
|
|
|
self.xml.get_object('ok_button').grab_focus()
|
2018-06-30 19:23:10 +02:00
|
|
|
app.connections[account].get_module('VCardTemp').request_vcard(
|
2017-09-16 11:49:31 +02:00
|
|
|
self._nec_vcard_received, self.jid)
|
2012-06-28 10:49:54 +02:00
|
|
|
|
|
|
|
def on_information_notebook_switch_page(self, widget, page, page_num):
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.idle_add(self.xml.get_object('ok_button').grab_focus)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def update_progressbar(self):
|
|
|
|
self.progressbar.pulse()
|
2018-07-22 16:53:02 +02:00
|
|
|
return True
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def remove_statusbar(self, message_id):
|
2012-12-31 18:14:21 +01:00
|
|
|
self.statusbar.remove(self.context_id, message_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.remove_statusbar_timeout_id = None
|
|
|
|
|
|
|
|
def on_profile_window_destroy(self, widget):
|
|
|
|
if self.update_progressbar_timeout_id is not None:
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.source_remove(self.update_progressbar_timeout_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.remove_statusbar_timeout_id is not None:
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.source_remove(self.remove_statusbar_timeout_id)
|
2018-07-22 16:53:02 +02:00
|
|
|
app.ged.remove_event_handler(
|
|
|
|
'vcard-published', ged.GUI1, self._nec_vcard_published)
|
|
|
|
app.ged.remove_event_handler(
|
|
|
|
'vcard-not-published', ged.GUI1, self._nec_vcard_not_published)
|
2018-07-01 13:30:13 +02:00
|
|
|
|
2018-07-22 16:53:02 +02:00
|
|
|
if self.dialog: # Image chooser dialog
|
2010-02-08 15:08:40 +01:00
|
|
|
self.dialog.destroy()
|
|
|
|
|
|
|
|
def on_profile_window_key_press_event(self, widget, event):
|
2012-12-23 16:23:43 +01:00
|
|
|
if event.keyval == Gdk.KEY_Escape:
|
2018-07-01 13:30:13 +02:00
|
|
|
self.destroy()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2018-05-04 00:36:10 +02:00
|
|
|
def _clear_photo(self, widget):
|
2010-02-08 15:08:40 +01:00
|
|
|
# empty the image
|
|
|
|
button = self.xml.get_object('PHOTO_button')
|
2018-07-01 12:59:00 +02:00
|
|
|
image = self.xml.get_object('PHOTO_image')
|
2010-02-08 15:08:40 +01:00
|
|
|
image.set_from_pixbuf(None)
|
|
|
|
button.hide()
|
|
|
|
text_button = self.xml.get_object('NOPHOTO_button')
|
|
|
|
text_button.show()
|
|
|
|
self.avatar_encoded = None
|
2017-09-16 11:49:31 +02:00
|
|
|
self.avatar_sha = None
|
2010-02-08 15:08:40 +01:00
|
|
|
self.avatar_mime_type = None
|
|
|
|
|
|
|
|
def on_set_avatar_button_clicked(self, widget):
|
2018-05-04 00:36:10 +02:00
|
|
|
def on_ok(path_to_file):
|
2018-05-20 01:03:22 +02:00
|
|
|
sha = app.interface.save_avatar(path_to_file, publish=True)
|
2017-09-16 11:49:31 +02:00
|
|
|
if sha is None:
|
2018-07-16 23:22:33 +02:00
|
|
|
ErrorDialog(
|
2018-07-01 13:30:13 +02:00
|
|
|
_('Could not load image'), transient_for=self)
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-09-16 11:49:31 +02:00
|
|
|
|
2018-07-01 13:30:13 +02:00
|
|
|
scale = self.get_scale_factor()
|
2017-10-19 21:12:27 +02:00
|
|
|
surface = app.interface.get_avatar(sha, AvatarSize.VCARD, scale)
|
2017-09-16 11:49:31 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
button = self.xml.get_object('PHOTO_button')
|
2018-07-01 12:59:00 +02:00
|
|
|
image = self.xml.get_object('PHOTO_image')
|
2017-10-19 21:12:27 +02:00
|
|
|
image.set_from_surface(surface)
|
2010-02-08 15:08:40 +01:00
|
|
|
button.show()
|
|
|
|
text_button = self.xml.get_object('NOPHOTO_button')
|
|
|
|
text_button.hide()
|
2017-09-16 11:49:31 +02:00
|
|
|
|
|
|
|
self.avatar_sha = sha
|
|
|
|
publish = app.interface.get_avatar(sha, publish=True)
|
|
|
|
self.avatar_encoded = base64.b64encode(publish).decode('utf-8')
|
2018-05-04 00:36:10 +02:00
|
|
|
self.avatar_mime_type = 'image/png'
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2018-07-01 13:30:13 +02:00
|
|
|
AvatarChooserDialog(on_ok, transient_for=self)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def on_PHOTO_button_press_event(self, widget, event):
|
|
|
|
"""
|
|
|
|
If right-clicked, show popup
|
|
|
|
"""
|
2018-05-20 01:26:45 +02:00
|
|
|
|
|
|
|
if event.button == 3:
|
|
|
|
# right click
|
2012-12-23 16:23:43 +01:00
|
|
|
menu = Gtk.Menu()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2017-09-16 11:49:31 +02:00
|
|
|
nick = app.config.get_per('accounts', self.account, 'name')
|
2018-07-25 23:17:12 +02:00
|
|
|
if self.avatar_sha is None:
|
|
|
|
return
|
2017-09-16 11:49:31 +02:00
|
|
|
menuitem = Gtk.MenuItem.new_with_mnemonic(_('Save _As'))
|
2018-07-22 16:53:02 +02:00
|
|
|
menuitem.connect(
|
|
|
|
'activate',
|
2017-09-16 11:49:31 +02:00
|
|
|
gtkgui_helpers.on_avatar_save_as_menuitem_activate,
|
2018-07-25 23:17:12 +02:00
|
|
|
self.avatar_sha, nick)
|
2017-09-16 11:49:31 +02:00
|
|
|
menu.append(menuitem)
|
2018-07-22 16:53:02 +02:00
|
|
|
menu.connect('selection-done', lambda w: w.destroy())
|
2010-02-08 15:08:40 +01:00
|
|
|
# show the menu
|
|
|
|
menu.show_all()
|
2013-01-07 23:28:44 +01:00
|
|
|
menu.attach_to_widget(widget, None)
|
2012-12-27 21:58:52 +01:00
|
|
|
menu.popup(None, None, None, None, event.button, event.time)
|
2018-07-22 16:53:02 +02:00
|
|
|
elif event.button == 1: # left click
|
2010-02-08 15:08:40 +01:00
|
|
|
self.on_set_avatar_button_clicked(widget)
|
|
|
|
|
2010-05-11 16:58:53 +02:00
|
|
|
def on_BDAY_entry_focus_out_event(self, widget, event):
|
|
|
|
txt = widget.get_text()
|
|
|
|
if not txt:
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
time.strptime(txt, '%Y-%m-%d')
|
|
|
|
except ValueError:
|
|
|
|
if not widget.is_focus():
|
|
|
|
pritext = _('Wrong date format')
|
2018-07-22 16:53:02 +02:00
|
|
|
ErrorDialog(
|
|
|
|
pritext,
|
|
|
|
_('Format of the date must be YYYY-MM-DD'),
|
|
|
|
transient_for=self)
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.idle_add(lambda: widget.grab_focus())
|
2010-05-11 16:58:53 +02:00
|
|
|
return True
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def set_value(self, entry_name, value):
|
|
|
|
try:
|
2012-04-18 11:34:57 +02:00
|
|
|
widget = self.xml.get_object(entry_name)
|
|
|
|
val = widget.get_text()
|
|
|
|
if val:
|
|
|
|
value = val + ' / ' + value
|
|
|
|
widget.set_text(value)
|
2010-02-08 15:08:40 +01:00
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def set_values(self, vcard_):
|
|
|
|
button = self.xml.get_object('PHOTO_button')
|
2018-07-01 12:59:00 +02:00
|
|
|
image = self.xml.get_object('PHOTO_image')
|
2010-02-08 15:08:40 +01:00
|
|
|
text_button = self.xml.get_object('NOPHOTO_button')
|
2018-07-22 16:53:02 +02:00
|
|
|
if 'PHOTO' not in vcard_:
|
2010-02-08 15:08:40 +01:00
|
|
|
# set default image
|
|
|
|
image.set_from_pixbuf(None)
|
|
|
|
button.hide()
|
|
|
|
text_button.show()
|
|
|
|
for i in vcard_.keys():
|
|
|
|
if i == 'PHOTO':
|
2017-09-16 11:49:31 +02:00
|
|
|
photo_encoded = vcard_[i]['BINVAL']
|
|
|
|
if photo_encoded == '':
|
2010-02-08 15:08:40 +01:00
|
|
|
continue
|
2018-04-08 20:58:24 +02:00
|
|
|
self.avatar_encoded = photo_encoded
|
2017-09-16 11:49:31 +02:00
|
|
|
photo_decoded = base64.b64decode(photo_encoded.encode('utf-8'))
|
2018-04-08 21:55:29 +02:00
|
|
|
self.avatar_sha = hashlib.sha1(photo_decoded).hexdigest()
|
|
|
|
if 'TYPE' in vcard_[i]:
|
|
|
|
self.avatar_mime_type = vcard_[i]['TYPE']
|
2018-05-20 01:03:22 +02:00
|
|
|
|
2018-07-01 13:30:13 +02:00
|
|
|
scale = self.get_scale_factor()
|
2018-05-20 01:03:22 +02:00
|
|
|
surface = app.interface.get_avatar(
|
|
|
|
self.avatar_sha, AvatarSize.VCARD, scale)
|
|
|
|
if surface is None:
|
|
|
|
pixbuf = gtkgui_helpers.scale_pixbuf_from_data(
|
|
|
|
photo_decoded, AvatarSize.VCARD)
|
|
|
|
surface = Gdk.cairo_surface_create_from_pixbuf(pixbuf,
|
|
|
|
scale)
|
|
|
|
image.set_from_surface(surface)
|
2010-02-08 15:08:40 +01:00
|
|
|
button.show()
|
|
|
|
text_button.hide()
|
|
|
|
continue
|
|
|
|
if i == 'ADR' or i == 'TEL' or i == 'EMAIL':
|
|
|
|
for entry in vcard_[i]:
|
|
|
|
add_on = '_HOME'
|
|
|
|
if 'WORK' in entry:
|
|
|
|
add_on = '_WORK'
|
|
|
|
for j in entry.keys():
|
|
|
|
self.set_value(i + add_on + '_' + j + '_entry', entry[j])
|
|
|
|
if isinstance(vcard_[i], dict):
|
|
|
|
for j in vcard_[i].keys():
|
|
|
|
self.set_value(i + '_' + j + '_entry', vcard_[i][j])
|
|
|
|
else:
|
|
|
|
if i == 'DESC':
|
|
|
|
self.xml.get_object('DESC_textview').get_buffer().set_text(
|
2017-10-20 20:51:40 +02:00
|
|
|
vcard_[i], len(vcard_[i].encode('utf-8')))
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
|
|
|
self.set_value(i + '_entry', vcard_[i])
|
|
|
|
if self.update_progressbar_timeout_id is not None:
|
|
|
|
if self.message_id:
|
2012-12-31 18:14:21 +01:00
|
|
|
self.statusbar.remove(self.context_id, self.message_id)
|
2018-07-22 16:53:02 +02:00
|
|
|
self.message_id = self.statusbar.push(
|
|
|
|
self.context_id, _('Information received'))
|
|
|
|
self.remove_statusbar_timeout_id = GLib.timeout_add_seconds(
|
|
|
|
3, self.remove_statusbar, self.message_id)
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.source_remove(self.update_progressbar_timeout_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.progressbar.hide()
|
|
|
|
self.progressbar.set_fraction(0)
|
|
|
|
self.update_progressbar_timeout_id = None
|
|
|
|
|
2018-06-30 19:23:10 +02:00
|
|
|
def _nec_vcard_received(self, jid, resource, room, vcard_, *args):
|
2017-09-16 11:49:31 +02:00
|
|
|
self.set_values(vcard_)
|
2010-11-26 21:14:59 +01:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def add_to_vcard(self, vcard_, entry, txt):
|
|
|
|
"""
|
|
|
|
Add an information to the vCard dictionary
|
|
|
|
"""
|
|
|
|
entries = entry.split('_')
|
|
|
|
loc = vcard_
|
2018-07-22 16:53:02 +02:00
|
|
|
if len(entries) == 3: # We need to use lists
|
2010-02-08 15:08:40 +01:00
|
|
|
if entries[0] not in loc:
|
|
|
|
loc[entries[0]] = []
|
2018-07-22 16:53:02 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
for e in loc[entries[0]]:
|
|
|
|
if entries[1] in e:
|
|
|
|
e[entries[2]] = txt
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
loc[entries[0]].append({entries[1]: '', entries[2]: txt})
|
|
|
|
return vcard_
|
|
|
|
while len(entries) > 1:
|
|
|
|
if entries[0] not in loc:
|
|
|
|
loc[entries[0]] = {}
|
|
|
|
loc = loc[entries[0]]
|
|
|
|
del entries[0]
|
|
|
|
loc[entries[0]] = txt
|
|
|
|
return vcard_
|
|
|
|
|
|
|
|
def make_vcard(self):
|
|
|
|
"""
|
|
|
|
Make the vCard dictionary
|
|
|
|
"""
|
2018-07-22 16:53:02 +02:00
|
|
|
entries = [
|
|
|
|
'FN', 'NICKNAME', 'BDAY', 'EMAIL_HOME_USERID', 'JABBERID', 'URL',
|
|
|
|
'TEL_HOME_NUMBER', 'N_FAMILY', 'N_GIVEN', 'N_MIDDLE', 'N_PREFIX',
|
|
|
|
'N_SUFFIX', 'ADR_HOME_STREET', 'ADR_HOME_EXTADR', 'ADR_HOME_LOCALITY',
|
|
|
|
'ADR_HOME_REGION', 'ADR_HOME_PCODE', 'ADR_HOME_CTRY', 'ORG_ORGNAME',
|
|
|
|
'ORG_ORGUNIT', 'TITLE', 'ROLE', 'TEL_WORK_NUMBER', 'EMAIL_WORK_USERID',
|
|
|
|
'ADR_WORK_STREET', 'ADR_WORK_EXTADR', 'ADR_WORK_LOCALITY',
|
|
|
|
'ADR_WORK_REGION', 'ADR_WORK_PCODE', 'ADR_WORK_CTRY']
|
2010-02-08 15:08:40 +01:00
|
|
|
vcard_ = {}
|
|
|
|
for e in entries:
|
2013-01-01 19:44:25 +01:00
|
|
|
txt = self.xml.get_object(e + '_entry').get_text()
|
2010-02-08 15:08:40 +01:00
|
|
|
if txt != '':
|
|
|
|
vcard_ = self.add_to_vcard(vcard_, e, txt)
|
|
|
|
|
|
|
|
# DESC textview
|
|
|
|
buff = self.xml.get_object('DESC_textview').get_buffer()
|
|
|
|
start_iter = buff.get_start_iter()
|
|
|
|
end_iter = buff.get_end_iter()
|
2012-12-23 16:23:43 +01:00
|
|
|
txt = buff.get_text(start_iter, end_iter, False)
|
2010-02-08 15:08:40 +01:00
|
|
|
if txt != '':
|
2013-01-01 19:44:25 +01:00
|
|
|
vcard_['DESC'] = txt
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# Avatar
|
|
|
|
if self.avatar_encoded:
|
|
|
|
vcard_['PHOTO'] = {'BINVAL': self.avatar_encoded}
|
|
|
|
if self.avatar_mime_type:
|
|
|
|
vcard_['PHOTO']['TYPE'] = self.avatar_mime_type
|
2017-09-16 11:49:31 +02:00
|
|
|
return vcard_, self.avatar_sha
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def on_ok_button_clicked(self, widget):
|
|
|
|
if self.update_progressbar_timeout_id:
|
|
|
|
# Operation in progress
|
|
|
|
return
|
2017-08-13 13:18:56 +02:00
|
|
|
if app.connections[self.account].connected < 2:
|
2018-07-22 16:53:02 +02:00
|
|
|
ErrorDialog(
|
|
|
|
_('You are not connected to the server'),
|
|
|
|
_('Without a connection, you can not publish your contact '
|
|
|
|
'information.'),
|
|
|
|
transient_for=self)
|
2010-02-08 15:08:40 +01:00
|
|
|
return
|
2017-09-16 11:49:31 +02:00
|
|
|
vcard_, sha = self.make_vcard()
|
2018-09-16 12:58:37 +02:00
|
|
|
nick = vcard_.get('NICKNAME')
|
|
|
|
if nick:
|
2018-07-05 20:20:22 +02:00
|
|
|
app.connections[self.account].get_module('UserNickname').send(nick)
|
2018-09-16 12:58:37 +02:00
|
|
|
else:
|
2018-07-05 20:20:22 +02:00
|
|
|
app.connections[self.account].get_module('UserNickname').retract()
|
2017-08-13 13:18:56 +02:00
|
|
|
nick = app.config.get_per('accounts', self.account, 'name')
|
|
|
|
app.nicks[self.account] = nick
|
2018-06-30 19:23:10 +02:00
|
|
|
app.connections[self.account].get_module('VCardTemp').send_vcard(
|
|
|
|
vcard_, sha)
|
2018-07-22 16:53:02 +02:00
|
|
|
self.message_id = self.statusbar.push(
|
|
|
|
self.context_id, _('Sending profile…'))
|
2010-02-08 15:08:40 +01:00
|
|
|
self.progressbar.show()
|
2018-07-22 16:53:02 +02:00
|
|
|
self.update_progressbar_timeout_id = GLib.timeout_add(
|
|
|
|
100, self.update_progressbar)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-11-08 22:34:04 +01:00
|
|
|
def _nec_vcard_published(self, obj):
|
|
|
|
if obj.conn.name != self.account:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.update_progressbar_timeout_id is not None:
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.source_remove(self.update_progressbar_timeout_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.update_progressbar_timeout_id = None
|
2018-07-01 13:30:13 +02:00
|
|
|
self.destroy()
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-11-08 22:34:04 +01:00
|
|
|
def _nec_vcard_not_published(self, obj):
|
|
|
|
if obj.conn.name != self.account:
|
|
|
|
return
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.message_id:
|
2012-12-31 18:14:21 +01:00
|
|
|
self.statusbar.remove(self.context_id, self.message_id)
|
2018-07-22 16:53:02 +02:00
|
|
|
self.message_id = self.statusbar.push(
|
|
|
|
self.context_id, _('Information NOT published'))
|
|
|
|
self.remove_statusbar_timeout_id = GLib.timeout_add_seconds(
|
|
|
|
3, self.remove_statusbar, self.message_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.update_progressbar_timeout_id is not None:
|
2013-07-28 20:50:30 +02:00
|
|
|
GLib.source_remove(self.update_progressbar_timeout_id)
|
2010-02-08 15:08:40 +01:00
|
|
|
self.progressbar.set_fraction(0)
|
|
|
|
self.update_progressbar_timeout_id = None
|
2018-07-22 16:53:02 +02:00
|
|
|
InformationDialog(
|
|
|
|
_('vCard publication failed'),
|
2010-11-08 22:34:04 +01:00
|
|
|
_('There was an error while publishing your personal information, '
|
2018-07-22 16:53:02 +02:00
|
|
|
'try again later.'), transient_for=self)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
def on_cancel_button_clicked(self, widget):
|
2018-07-01 13:30:13 +02:00
|
|
|
self.destroy()
|