2005-06-11 00:45:50 +02:00
|
|
|
## vcard.py (has VcardWindow class)
|
2005-04-19 23:53:19 +02:00
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
|
|
|
## - Nikos Kouremenos <kourem@gmail.com>
|
|
|
|
##
|
|
|
|
## Copyright (C) 2003-2005 Gajim Team
|
|
|
|
##
|
|
|
|
## This program 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 2 only.
|
|
|
|
##
|
|
|
|
## This program 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2005-09-05 15:35:45 +02:00
|
|
|
import gobject
|
2005-06-06 22:16:51 +02:00
|
|
|
import urllib
|
|
|
|
import base64
|
2005-06-07 00:58:06 +02:00
|
|
|
import mimetypes
|
|
|
|
import os
|
2005-08-30 23:03:23 +02:00
|
|
|
import sys
|
2005-06-10 23:14:16 +02:00
|
|
|
import dialogs
|
2005-10-03 20:27:39 +02:00
|
|
|
import gtkgui_helpers
|
2005-08-03 12:59:44 +02:00
|
|
|
|
|
|
|
from common import helpers
|
2005-04-19 23:53:19 +02:00
|
|
|
from common import gajim
|
|
|
|
from common import i18n
|
|
|
|
_ = i18n._
|
2005-08-13 00:32:35 +02:00
|
|
|
Q_ = i18n.Q_
|
2005-04-19 23:53:19 +02:00
|
|
|
APP = i18n.APP
|
|
|
|
gtk.glade.bindtextdomain (APP, i18n.DIR)
|
|
|
|
gtk.glade.textdomain (APP)
|
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
GTKGUI_GLADE = 'gtkgui.glade'
|
2005-04-19 23:53:19 +02:00
|
|
|
|
2005-06-11 00:45:50 +02:00
|
|
|
class VcardWindow:
|
2005-05-16 16:15:13 +02:00
|
|
|
'''Class for contact's information window'''
|
2005-07-03 01:03:57 +02:00
|
|
|
|
2005-10-20 13:17:17 +02:00
|
|
|
def __init__(self, contact, account, vcard = False):
|
2005-07-24 21:36:26 +02:00
|
|
|
#the contact variable is the jid if vcard is true
|
2005-07-03 01:03:57 +02:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'vcard_information_window', APP)
|
|
|
|
self.window = self.xml.get_widget('vcard_information_window')
|
|
|
|
self.xml.get_widget('photo_vbuttonbox').set_no_show_all(True)
|
2005-07-06 15:05:07 +02:00
|
|
|
|
|
|
|
self.publish_button = self.xml.get_widget('publish_button')
|
|
|
|
self.retrieve_button = self.xml.get_widget('retrieve_button')
|
|
|
|
self.publish_button.set_no_show_all(True)
|
|
|
|
self.retrieve_button.set_no_show_all(True)
|
|
|
|
|
2005-07-24 21:36:26 +02:00
|
|
|
self.contact = contact #don't use it if vcard is true
|
2005-07-03 01:03:57 +02:00
|
|
|
self.account = account
|
|
|
|
self.vcard = vcard
|
|
|
|
self.avatar_mime_type = None
|
|
|
|
self.avatar_encoded = None
|
|
|
|
|
|
|
|
if vcard:
|
2005-07-24 21:36:26 +02:00
|
|
|
self.jid = contact
|
2005-07-06 15:05:07 +02:00
|
|
|
# remove Jabber tab & show publish/retrieve/set_avatar buttons
|
|
|
|
self.change_to_vcard()
|
2005-07-03 01:03:57 +02:00
|
|
|
else:
|
2005-07-24 21:36:26 +02:00
|
|
|
self.jid = contact.jid
|
2005-07-06 15:05:07 +02:00
|
|
|
self.publish_button.hide()
|
|
|
|
self.retrieve_button.hide()
|
2005-07-03 01:03:57 +02:00
|
|
|
self.fill_jabber_page()
|
|
|
|
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
self.window.show_all()
|
|
|
|
|
2005-07-24 21:36:26 +02:00
|
|
|
def on_vcard_information_window_destroy(self, widget = None):
|
2005-10-20 13:17:17 +02:00
|
|
|
del gajim.interface.windows[self.account]['infos'][self.jid]
|
2005-04-19 23:53:19 +02:00
|
|
|
|
|
|
|
def on_vcard_information_window_key_press_event(self, widget, event):
|
2005-07-03 01:03:57 +02:00
|
|
|
if event.keyval == gtk.keysyms.Escape:
|
2005-04-19 23:53:19 +02:00
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
def on_close_button_clicked(self, widget):
|
2005-07-24 21:36:26 +02:00
|
|
|
'''Save contact information and update the roster on the Jabber server'''
|
2005-04-19 23:53:19 +02:00
|
|
|
if self.vcard:
|
|
|
|
self.window.destroy()
|
|
|
|
return
|
2005-07-24 21:36:26 +02:00
|
|
|
#update contact.name if it's not ''
|
2005-04-19 23:53:19 +02:00
|
|
|
name_entry = self.xml.get_widget('nickname_entry')
|
2005-08-26 02:52:44 +02:00
|
|
|
new_name = name_entry.get_text().decode('utf-8')
|
2005-07-24 21:31:37 +02:00
|
|
|
if new_name != self.contact.name and new_name != '':
|
|
|
|
self.contact.name = new_name
|
2005-10-20 13:17:17 +02:00
|
|
|
for i in gajim.interface.roster.get_contact_iter(self.contact.jid,
|
|
|
|
self.account):
|
|
|
|
gajim.interface.roster.tree.get_model().set_value(i, 1, new_name)
|
2005-07-24 21:31:37 +02:00
|
|
|
gajim.connections[self.account].update_contact(self.contact.jid,
|
|
|
|
self.contact.name, self.contact.groups)
|
2005-04-19 23:53:19 +02:00
|
|
|
#log history ?
|
2005-06-10 21:03:32 +02:00
|
|
|
oldlog = True
|
2005-05-16 16:15:13 +02:00
|
|
|
no_log_for = gajim.config.get_per('accounts', self.account,
|
|
|
|
'no_log_for').split()
|
2005-07-24 21:31:37 +02:00
|
|
|
if self.contact.jid in no_log_for:
|
2005-06-10 21:03:32 +02:00
|
|
|
oldlog = False
|
2005-04-19 23:53:19 +02:00
|
|
|
log = self.xml.get_widget('log_checkbutton').get_active()
|
2005-07-24 21:31:37 +02:00
|
|
|
if not log and not self.contact.jid in no_log_for:
|
|
|
|
no_log_for.append(self.contact.jid)
|
|
|
|
if log and self.contact.jid in no_log_for:
|
|
|
|
no_log_for.remove(self.contact.jid)
|
2005-04-19 23:53:19 +02:00
|
|
|
if oldlog != log:
|
2005-05-16 16:15:13 +02:00
|
|
|
gajim.config.set_per('accounts', self.account, 'no_log_for',
|
2005-04-19 23:53:19 +02:00
|
|
|
' '.join(no_log_for))
|
|
|
|
self.window.destroy()
|
|
|
|
|
2005-06-07 00:58:06 +02:00
|
|
|
def on_clear_button_clicked(self, widget):
|
|
|
|
# empty the image
|
|
|
|
self.xml.get_widget('PHOTO_image').set_from_pixbuf(None)
|
2005-06-10 22:40:07 +02:00
|
|
|
self.avatar_encoded = None
|
2005-06-07 00:58:06 +02:00
|
|
|
|
|
|
|
def image_is_ok(self, image):
|
|
|
|
if not os.path.exists(image):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2005-06-10 21:03:32 +02:00
|
|
|
def update_preview(self, widget):
|
|
|
|
path_to_file = widget.get_preview_filename()
|
2005-09-05 15:59:41 +02:00
|
|
|
if path_to_file is None or os.path.isdir(path_to_file):
|
|
|
|
# nothing to preview or directory
|
|
|
|
# make sure you clean image do show nothing
|
|
|
|
widget.get_preview_widget().set_from_file(None)
|
2005-09-05 15:35:45 +02:00
|
|
|
return
|
|
|
|
try:
|
|
|
|
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(path_to_file, 100, 100)
|
|
|
|
except gobject.GError:
|
|
|
|
return
|
2005-09-05 14:26:05 +02:00
|
|
|
widget.get_preview_widget().set_from_pixbuf(pixbuf)
|
2005-06-10 21:03:32 +02:00
|
|
|
|
2005-06-07 00:58:06 +02:00
|
|
|
def on_set_avatar_button_clicked(self, widget):
|
2005-07-19 22:12:02 +02:00
|
|
|
f = None
|
2005-08-07 01:22:57 +02:00
|
|
|
dialog = gtk.FileChooserDialog(_('Choose Avatar'), None,
|
2005-06-07 00:58:06 +02:00
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
|
|
|
|
dialog.set_default_response(gtk.RESPONSE_OK)
|
2005-07-19 22:12:02 +02:00
|
|
|
filtr = gtk.FileFilter()
|
|
|
|
filtr.set_name(_('All files'))
|
|
|
|
filtr.add_pattern('*')
|
|
|
|
dialog.add_filter(filtr)
|
2005-06-07 00:58:06 +02:00
|
|
|
|
2005-07-19 22:12:02 +02:00
|
|
|
filtr = gtk.FileFilter()
|
|
|
|
filtr.set_name(_('Images'))
|
|
|
|
filtr.add_mime_type('image/png')
|
|
|
|
filtr.add_mime_type('image/jpeg')
|
|
|
|
filtr.add_mime_type('image/gif')
|
|
|
|
filtr.add_pattern('*.png')
|
|
|
|
filtr.add_pattern('*.jpg')
|
|
|
|
filtr.add_pattern('*.gif')
|
|
|
|
filtr.add_pattern('*.tif')
|
|
|
|
filtr.add_pattern('*.xpm')
|
|
|
|
dialog.add_filter(filtr)
|
|
|
|
dialog.set_filter(filtr)
|
2005-06-10 21:03:32 +02:00
|
|
|
dialog.set_use_preview_label(False)
|
|
|
|
dialog.set_preview_widget(gtk.Image())
|
|
|
|
dialog.connect('selection-changed', self.update_preview)
|
2005-06-07 00:58:06 +02:00
|
|
|
|
|
|
|
ok = False
|
|
|
|
while not ok:
|
|
|
|
response = dialog.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
2005-07-19 22:12:02 +02:00
|
|
|
f = dialog.get_filename()
|
2005-08-30 23:03:23 +02:00
|
|
|
f = f.decode(sys.getfilesystemencoding())
|
2005-07-19 22:12:02 +02:00
|
|
|
if self.image_is_ok(f):
|
2005-06-07 00:58:06 +02:00
|
|
|
ok = True
|
|
|
|
else:
|
|
|
|
ok = True
|
|
|
|
dialog.destroy()
|
|
|
|
|
2005-07-19 22:12:02 +02:00
|
|
|
if f:
|
|
|
|
filesize = os.path.getsize(f) # in bytes
|
2005-07-06 15:05:07 +02:00
|
|
|
if filesize > 8192: # 8 kb
|
|
|
|
dialogs.ErrorDialog(_('The filesize of image "%s" is too large')\
|
2005-09-22 13:35:59 +02:00
|
|
|
% os.path.basename(f),
|
2005-07-06 15:05:07 +02:00
|
|
|
_('The file must not be more than 8 kilobytes.')).get_response()
|
2005-06-10 23:14:16 +02:00
|
|
|
return
|
2005-08-27 00:12:19 +02:00
|
|
|
fd = open(f, 'rb')
|
2005-06-07 00:58:06 +02:00
|
|
|
data = fd.read()
|
2005-10-03 20:19:31 +02:00
|
|
|
pixbuf = gtkgui_helpers.get_pixbuf_from_data(data)
|
2005-06-07 00:58:06 +02:00
|
|
|
image = self.xml.get_widget('PHOTO_image')
|
|
|
|
image.set_from_pixbuf(pixbuf)
|
|
|
|
self.avatar_encoded = base64.encodestring(data)
|
2005-09-15 18:57:42 +02:00
|
|
|
# returns None if unknown type
|
2005-07-19 22:12:02 +02:00
|
|
|
self.avatar_mime_type = mimetypes.guess_type(f)[0]
|
2005-06-07 00:58:06 +02:00
|
|
|
|
2005-04-19 23:53:19 +02:00
|
|
|
def set_value(self, entry_name, value):
|
|
|
|
try:
|
|
|
|
self.xml.get_widget(entry_name).set_text(value)
|
2005-07-19 22:12:02 +02:00
|
|
|
except AttributeError:
|
2005-04-19 23:53:19 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
def set_values(self, vcard):
|
|
|
|
for i in vcard.keys():
|
2005-06-07 10:50:47 +02:00
|
|
|
if i == 'PHOTO':
|
2005-08-26 14:52:40 +02:00
|
|
|
if not isinstance(vcard[i], dict):
|
2005-06-10 15:46:41 +02:00
|
|
|
continue
|
2005-06-07 10:50:47 +02:00
|
|
|
img_decoded = None
|
2005-06-07 16:31:10 +02:00
|
|
|
if vcard[i].has_key('BINVAL') and vcard[i].has_key('TYPE'):
|
2005-06-07 10:50:47 +02:00
|
|
|
img_encoded = vcard[i]['BINVAL']
|
|
|
|
self.avatar_encoded = img_encoded
|
|
|
|
self.avatar_mime_type = vcard[i]['TYPE']
|
|
|
|
try:
|
|
|
|
img_decoded = base64.decodestring(img_encoded)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
elif vcard[i].has_key('EXTVAL'):
|
|
|
|
url = vcard[i]['EXTVAL']
|
|
|
|
try:
|
|
|
|
fd = urllib.urlopen(url)
|
|
|
|
img_decoded = fd.read()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
if img_decoded:
|
2005-10-03 20:19:31 +02:00
|
|
|
pixbuf = gtkgui_helpers.get_pixbuf_from_data(img_decoded)
|
2005-06-07 10:50:47 +02:00
|
|
|
image = self.xml.get_widget('PHOTO_image')
|
|
|
|
image.set_from_pixbuf(pixbuf)
|
|
|
|
continue
|
|
|
|
if i == 'ADR' or i == 'TEL' or i == 'EMAIL':
|
|
|
|
for entry in vcard[i]:
|
2005-06-06 17:29:27 +02:00
|
|
|
add_on = '_HOME'
|
2005-06-07 10:50:47 +02:00
|
|
|
if 'WORK' in entry:
|
2005-06-06 17:29:27 +02:00
|
|
|
add_on = '_WORK'
|
2005-06-07 10:50:47 +02:00
|
|
|
for j in entry.keys():
|
|
|
|
self.set_value(i + add_on + '_' + j + '_entry', entry[j])
|
2005-08-26 14:52:40 +02:00
|
|
|
if isinstance(vcard[i], dict):
|
2005-04-19 23:53:19 +02:00
|
|
|
for j in vcard[i].keys():
|
2005-06-07 10:50:47 +02:00
|
|
|
self.set_value(i + '_' + j + '_entry', vcard[i][j])
|
2005-04-19 23:53:19 +02:00
|
|
|
else:
|
|
|
|
if i == 'DESC':
|
2005-05-16 16:15:13 +02:00
|
|
|
self.xml.get_widget('DESC_textview').get_buffer().set_text(
|
|
|
|
vcard[i], 0)
|
2005-04-19 23:53:19 +02:00
|
|
|
else:
|
2005-04-22 01:20:18 +02:00
|
|
|
self.set_value(i + '_entry', vcard[i])
|
2005-04-19 23:53:19 +02:00
|
|
|
|
2005-04-25 00:58:41 +02:00
|
|
|
def set_os_info(self, resource, client_info, os_info):
|
|
|
|
i = 0
|
|
|
|
client = ''
|
2005-05-05 16:02:39 +02:00
|
|
|
os = ''
|
2005-04-25 00:58:41 +02:00
|
|
|
while self.os_info.has_key(i):
|
2005-07-20 14:48:11 +02:00
|
|
|
if not self.os_info[i]['resource'] or \
|
|
|
|
self.os_info[i]['resource'] == resource:
|
2005-04-25 00:58:41 +02:00
|
|
|
self.os_info[i]['client'] = client_info
|
2005-05-05 16:02:39 +02:00
|
|
|
self.os_info[i]['os'] = os_info
|
2005-04-25 00:58:41 +02:00
|
|
|
if i > 0:
|
|
|
|
client += '\n'
|
2005-05-05 16:02:39 +02:00
|
|
|
os += '\n'
|
2005-04-25 00:58:41 +02:00
|
|
|
client += self.os_info[i]['client']
|
2005-05-05 16:02:39 +02:00
|
|
|
os += self.os_info[i]['os']
|
2005-04-25 00:58:41 +02:00
|
|
|
i += 1
|
2005-05-11 13:09:53 +02:00
|
|
|
|
|
|
|
if client == '':
|
2005-08-13 00:32:35 +02:00
|
|
|
client = Q_('?Client:Unknown')
|
2005-05-11 13:09:53 +02:00
|
|
|
if os == '':
|
2005-08-13 00:32:35 +02:00
|
|
|
os = Q_('?OS:Unknown')
|
2005-04-25 00:58:41 +02:00
|
|
|
self.xml.get_widget('client_name_version_label').set_text(client)
|
2005-05-05 16:02:39 +02:00
|
|
|
self.xml.get_widget('os_label').set_text(os)
|
2005-04-19 23:53:19 +02:00
|
|
|
|
|
|
|
def fill_jabber_page(self):
|
2005-07-24 21:31:37 +02:00
|
|
|
self.xml.get_widget('nickname_label').set_text(self.contact.name)
|
|
|
|
self.xml.get_widget('jid_label').set_text(self.contact.jid)
|
2005-08-05 00:08:33 +02:00
|
|
|
uf_sub = helpers.get_uf_sub(self.contact.sub)
|
|
|
|
self.xml.get_widget('subscription_label').set_text(uf_sub)
|
2005-04-22 03:35:36 +02:00
|
|
|
label = self.xml.get_widget('ask_label')
|
2005-08-05 00:08:33 +02:00
|
|
|
|
|
|
|
uf_ask = helpers.get_uf_ask(self.contact.ask)
|
|
|
|
label.set_text(uf_ask)
|
2005-07-24 21:31:37 +02:00
|
|
|
self.xml.get_widget('nickname_entry').set_text(self.contact.name)
|
2005-04-19 23:53:19 +02:00
|
|
|
log = 1
|
2005-07-24 21:31:37 +02:00
|
|
|
if self.contact.jid in gajim.config.get_per('accounts', self.account,
|
2005-04-19 23:53:19 +02:00
|
|
|
'no_log_for').split(' '):
|
|
|
|
log = 0
|
|
|
|
self.xml.get_widget('log_checkbutton').set_active(log)
|
2005-08-26 02:52:44 +02:00
|
|
|
resources = '%s (%s)' % (self.contact.resource, unicode(
|
2005-08-04 21:48:57 +02:00
|
|
|
self.contact.priority))
|
2005-07-24 21:31:37 +02:00
|
|
|
uf_resources = self.contact.resource + _(' resource with priority ')\
|
2005-08-26 02:52:44 +02:00
|
|
|
+ unicode(self.contact.priority)
|
2005-07-24 21:31:37 +02:00
|
|
|
if not self.contact.status:
|
|
|
|
self.contact.status = ''
|
2005-08-03 12:59:44 +02:00
|
|
|
|
|
|
|
# stats holds show and status message
|
|
|
|
stats = helpers.get_uf_show(self.contact.show)
|
2005-07-24 21:31:37 +02:00
|
|
|
if self.contact.status:
|
|
|
|
stats += ': ' + self.contact.status
|
|
|
|
gajim.connections[self.account].request_os_info(self.contact.jid,
|
|
|
|
self.contact.resource)
|
|
|
|
self.os_info = {0: {'resource': self.contact.resource, 'client': '',
|
2005-05-05 16:02:39 +02:00
|
|
|
'os': ''}}
|
2005-04-25 00:58:41 +02:00
|
|
|
i = 1
|
2005-07-24 21:31:37 +02:00
|
|
|
if gajim.contacts[self.account].has_key(self.contact.jid):
|
|
|
|
for c in gajim.contacts[self.account][self.contact.jid]:
|
|
|
|
if c.resource != self.contact.resource:
|
2005-08-26 02:52:44 +02:00
|
|
|
resources += '\n%s (%s)' % (c.resource,
|
|
|
|
unicode(c.priority))
|
2005-07-24 21:31:37 +02:00
|
|
|
uf_resources += '\n' + c.resource + _(' resource with priority ')\
|
2005-08-26 02:52:44 +02:00
|
|
|
+ unicode(c.priority)
|
2005-07-24 21:31:37 +02:00
|
|
|
if not c.status:
|
|
|
|
c.status = ''
|
|
|
|
stats += '\n' + c.show + ': ' + c.status
|
|
|
|
gajim.connections[self.account].request_os_info(self.contact.jid,
|
|
|
|
c.resource)
|
|
|
|
self.os_info[i] = {'resource': c.resource, 'client': '',
|
2005-06-26 21:40:57 +02:00
|
|
|
'os': ''}
|
|
|
|
i += 1
|
2005-07-24 21:31:37 +02:00
|
|
|
self.xml.get_widget('resource_prio_label').set_text(resources)
|
|
|
|
tip = gtk.Tooltips()
|
|
|
|
resource_prio_label_eventbox = self.xml.get_widget(
|
|
|
|
'resource_prio_label_eventbox')
|
|
|
|
tip.set_tip(resource_prio_label_eventbox, uf_resources)
|
2005-06-14 17:51:34 +02:00
|
|
|
|
2005-09-03 14:43:12 +02:00
|
|
|
tip = gtk.Tooltips()
|
|
|
|
status_label_eventbox = self.xml.get_widget('status_label_eventbox')
|
|
|
|
tip.set_tip(status_label_eventbox, stats)
|
2005-06-14 17:51:34 +02:00
|
|
|
status_label = self.xml.get_widget('status_label')
|
2005-09-03 14:43:12 +02:00
|
|
|
status_label.set_max_width_chars(15)
|
2005-06-14 17:51:34 +02:00
|
|
|
status_label.set_text(stats)
|
|
|
|
|
2005-07-24 21:31:37 +02:00
|
|
|
gajim.connections[self.account].request_vcard(self.contact.jid)
|
2005-04-19 23:53:19 +02:00
|
|
|
|
|
|
|
def add_to_vcard(self, vcard, entry, txt):
|
|
|
|
'''Add an information to the vCard dictionary'''
|
|
|
|
entries = entry.split('_')
|
|
|
|
loc = vcard
|
2005-06-07 10:50:47 +02:00
|
|
|
if len(entries) == 3: # We need to use lists
|
|
|
|
if not loc.has_key(entries[0]):
|
|
|
|
loc[entries[0]] = []
|
|
|
|
found = False
|
|
|
|
for e in loc[entries[0]]:
|
|
|
|
if entries[1] in e:
|
|
|
|
found = True
|
|
|
|
break
|
|
|
|
if found:
|
|
|
|
e[entries[2]] = txt
|
|
|
|
else:
|
|
|
|
loc[entries[0]].append({entries[1]: '', entries[2]: txt})
|
|
|
|
return vcard
|
2005-04-19 23:53:19 +02:00
|
|
|
while len(entries) > 1:
|
|
|
|
if not loc.has_key(entries[0]):
|
|
|
|
loc[entries[0]] = {}
|
|
|
|
loc = loc[entries[0]]
|
|
|
|
del entries[0]
|
|
|
|
loc[entries[0]] = txt
|
|
|
|
return vcard
|
|
|
|
|
|
|
|
def make_vcard(self):
|
|
|
|
'''make the vCard dictionary'''
|
2005-06-06 17:29:27 +02:00
|
|
|
entries = ['FN', 'NICKNAME', 'BDAY', 'EMAIL_HOME_USERID', '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',
|
2005-06-26 23:35:52 +02:00
|
|
|
'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']
|
2005-04-19 23:53:19 +02:00
|
|
|
vcard = {}
|
|
|
|
for e in entries:
|
2005-08-26 02:52:44 +02:00
|
|
|
txt = self.xml.get_widget(e + '_entry').get_text().decode('utf-8')
|
2005-04-19 23:53:19 +02:00
|
|
|
if txt != '':
|
|
|
|
vcard = self.add_to_vcard(vcard, e, txt)
|
2005-06-07 00:58:06 +02:00
|
|
|
|
|
|
|
# DESC textview
|
2005-07-19 22:12:02 +02:00
|
|
|
buff = self.xml.get_widget('DESC_textview').get_buffer()
|
|
|
|
start_iter = buff.get_start_iter()
|
|
|
|
end_iter = buff.get_end_iter()
|
|
|
|
txt = buff.get_text(start_iter, end_iter, 0)
|
2005-04-19 23:53:19 +02:00
|
|
|
if txt != '':
|
2005-08-26 02:52:44 +02:00
|
|
|
vcard['DESC'] = txt.decode('utf-8')
|
2005-06-07 00:58:06 +02:00
|
|
|
|
|
|
|
# Avatar
|
|
|
|
if self.avatar_encoded:
|
2005-09-15 18:57:42 +02:00
|
|
|
vcard['PHOTO'] = {'BINVAL': self.avatar_encoded}
|
|
|
|
if self.avatar_mime_type:
|
|
|
|
vcard['PHOTO']['TYPE'] = self.avatar_mime_type
|
2005-04-19 23:53:19 +02:00
|
|
|
return vcard
|
|
|
|
|
|
|
|
def on_publish_button_clicked(self, widget):
|
|
|
|
if gajim.connections[self.account].connected < 2:
|
2005-06-10 23:14:16 +02:00
|
|
|
ErrorDialog(_('You are not connected to the server'),
|
2005-06-07 03:10:24 +02:00
|
|
|
_('Without a connection you can not publish your contact information.')).get_response()
|
2005-04-19 23:53:19 +02:00
|
|
|
return
|
|
|
|
vcard = self.make_vcard()
|
|
|
|
nick = ''
|
|
|
|
if vcard.has_key('NICKNAME'):
|
|
|
|
nick = vcard['NICKNAME']
|
|
|
|
if nick == '':
|
|
|
|
nick = gajim.config.get_per('accounts', self.account, 'name')
|
2005-07-18 23:08:31 +02:00
|
|
|
gajim.nicks[self.account] = nick
|
2005-04-19 23:53:19 +02:00
|
|
|
gajim.connections[self.account].send_vcard(vcard)
|
|
|
|
|
|
|
|
def on_retrieve_button_clicked(self, widget):
|
2005-06-06 17:29:27 +02:00
|
|
|
entries = ['FN', 'NICKNAME', 'BDAY', 'EMAIL_HOME_USERID', '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', 'ADR_WORK_STREET', 'ADR_WORK_EXTADR',
|
|
|
|
'ADR_WORK_LOCALITY', 'ADR_WORK_REGION', 'ADR_WORK_PCODE',
|
|
|
|
'ADR_WORK_CTRY']
|
2005-04-19 23:53:19 +02:00
|
|
|
if gajim.connections[self.account].connected > 1:
|
|
|
|
# clear all entries
|
|
|
|
for e in entries:
|
|
|
|
self.xml.get_widget(e + '_entry').set_text('')
|
|
|
|
self.xml.get_widget('DESC_textview').get_buffer().set_text('')
|
2005-06-07 10:50:47 +02:00
|
|
|
self.xml.get_widget('PHOTO_image').set_from_pixbuf(None)
|
2005-04-19 23:53:19 +02:00
|
|
|
gajim.connections[self.account].request_vcard(self.jid)
|
|
|
|
else:
|
2005-06-10 23:14:16 +02:00
|
|
|
ErrorDialog(_('You are not connected to the server'),
|
2005-06-07 03:10:24 +02:00
|
|
|
_('Without a connection, you can not get your contact information.')).get_response()
|
2005-04-19 23:53:19 +02:00
|
|
|
|
|
|
|
def change_to_vcard(self):
|
|
|
|
self.xml.get_widget('information_notebook').remove_page(0)
|
|
|
|
self.xml.get_widget('nickname_label').set_text('Personal details')
|
2005-07-06 15:05:07 +02:00
|
|
|
|
|
|
|
self.publish_button.show()
|
|
|
|
self.retrieve_button.show()
|
|
|
|
|
2005-06-07 00:58:06 +02:00
|
|
|
#photo_vbuttonbox visible
|
|
|
|
self.xml.get_widget('photo_vbuttonbox').show()
|
2005-04-19 23:53:19 +02:00
|
|
|
|
|
|
|
#make all entries editable
|
2005-06-06 17:29:27 +02:00
|
|
|
entries = ['FN', 'NICKNAME', 'BDAY', 'EMAIL_HOME_USERID', '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',
|
2005-09-01 18:16:46 +02:00
|
|
|
'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']
|
2005-04-19 23:53:19 +02:00
|
|
|
for e in entries:
|
|
|
|
self.xml.get_widget(e + '_entry').set_property('editable', True)
|
|
|
|
|
|
|
|
description_textview = self.xml.get_widget('DESC_textview')
|
|
|
|
description_textview.set_editable(True)
|
|
|
|
description_textview.set_cursor_visible(True)
|