2006-04-05 14:12:37 +02:00
|
|
|
## vcard.py (has VcardWindow class and a func get_avatar_pixbuf_encoded_mime)
|
2005-04-19 23:53:19 +02:00
|
|
|
##
|
2006-03-15 03:09:57 +01:00
|
|
|
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
|
2005-04-19 23:53:19 +02:00
|
|
|
##
|
|
|
|
## 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
|
2005-09-05 15:35:45 +02:00
|
|
|
import gobject
|
2005-06-06 22:16:51 +02:00
|
|
|
import base64
|
2005-06-07 00:58:06 +02:00
|
|
|
import mimetypes
|
|
|
|
import os
|
2006-02-22 15:31:01 +01:00
|
|
|
import time
|
2006-03-24 19:48:26 +01:00
|
|
|
import locale
|
|
|
|
|
2005-10-03 20:27:39 +02:00
|
|
|
import gtkgui_helpers
|
2005-11-13 21:25:04 +01:00
|
|
|
import dialogs
|
2005-08-03 12:59:44 +02:00
|
|
|
|
|
|
|
from common import helpers
|
2005-04-19 23:53:19 +02:00
|
|
|
from common import gajim
|
2006-09-14 18:48:03 +02:00
|
|
|
from common.i18n import Q_
|
2005-04-19 23:53:19 +02:00
|
|
|
|
2005-10-31 12:06:11 +01:00
|
|
|
def get_avatar_pixbuf_encoded_mime(photo):
|
2005-10-31 11:23:33 +01:00
|
|
|
'''return the pixbuf of the image
|
|
|
|
photo is a dictionary containing PHOTO information'''
|
|
|
|
if not isinstance(photo, dict):
|
|
|
|
return None, None, None
|
|
|
|
img_decoded = None
|
2005-11-16 12:05:45 +01:00
|
|
|
avatar_encoded = None
|
|
|
|
avatar_mime_type = None
|
2006-09-14 18:48:03 +02:00
|
|
|
if photo.has_key('BINVAL'):
|
2005-10-31 11:23:33 +01:00
|
|
|
img_encoded = photo['BINVAL']
|
|
|
|
avatar_encoded = img_encoded
|
|
|
|
try:
|
|
|
|
img_decoded = base64.decodestring(img_encoded)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
if img_decoded:
|
2006-09-14 18:48:03 +02:00
|
|
|
if photo.has_key('TYPE'):
|
|
|
|
avatar_mime_type = photo['TYPE']
|
|
|
|
pixbuf = gtkgui_helpers.get_pixbuf_from_data(img_decoded)
|
|
|
|
else:
|
|
|
|
pixbuf, avatar_mime_type = gtkgui_helpers.get_pixbuf_from_data(
|
|
|
|
img_decoded, want_type=True)
|
2005-11-16 12:05:45 +01:00
|
|
|
else:
|
|
|
|
pixbuf = None
|
|
|
|
return pixbuf, avatar_encoded, avatar_mime_type
|
2005-10-31 11:23:33 +01: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
|
|
|
|
2006-09-14 18:48:03 +02:00
|
|
|
def __init__(self, contact, account, is_fake = False):
|
Merged in trunk updates, including meta_contacts
Merged revisions 4951,4962-4969 via svnmerge from
svn://svn.gajim.org/gajim/trunk
........
r4951 | nk | 2005-12-30 16:50:36 -0700 (Fri, 30 Dec 2005) | 1 line
fixes in greek transl
........
r4962 | asterix | 2006-01-01 11:41:04 -0700 (Sun, 01 Jan 2006) | 2 lines
merge meta_contacts branch with trunk. Meta contacts are not in gajim yet, but framework is here. We now use gajim.contacts.many_functions() to handle contacts and groupchat_contacts.
........
r4963 | asterix | 2006-01-01 11:43:24 -0700 (Sun, 01 Jan 2006) | 2 lines
correct contacts file
........
r4964 | asterix | 2006-01-01 11:47:26 -0700 (Sun, 01 Jan 2006) | 2 lines
dict.remove() doesn't exists, it's del dict[]
........
r4965 | asterix | 2006-01-01 11:50:15 -0700 (Sun, 01 Jan 2006) | 2 lines
some missing commits from branch
........
r4966 | asterix | 2006-01-01 11:53:30 -0700 (Sun, 01 Jan 2006) | 2 lines
end of gc_contact.nick -> gc_contact.name
........
r4967 | asterix | 2006-01-01 12:05:59 -0700 (Sun, 01 Jan 2006) | 2 lines
new ACE option: send_sha_in_gc_presence that allow to send sha info in groupchat presences
........
r4968 | asterix | 2006-01-01 12:12:36 -0700 (Sun, 01 Jan 2006) | 2 lines
0.9.1-2 in debian that solve the group bug (commit [4924])
........
r4969 | asterix | 2006-01-01 12:31:13 -0700 (Sun, 01 Jan 2006) | 2 lines
typo
........
2006-01-01 21:06:26 +01:00
|
|
|
# the contact variable is the jid if vcard is true
|
2006-05-02 17:53:25 +02:00
|
|
|
self.xml = gtkgui_helpers.get_glade('vcard_information_window.glade')
|
2005-07-03 01:03:57 +02:00
|
|
|
self.window = self.xml.get_widget('vcard_information_window')
|
2006-09-26 17:57:47 +02:00
|
|
|
self.progressbar = self.xml.get_widget('progressbar')
|
2006-03-29 17:46:34 +02:00
|
|
|
|
2006-09-14 18:48:03 +02:00
|
|
|
self.contact = contact
|
2005-07-03 01:03:57 +02:00
|
|
|
self.account = account
|
2006-04-28 22:55:45 +02:00
|
|
|
self.is_fake = is_fake
|
2006-09-14 18:48:03 +02:00
|
|
|
|
2005-07-03 01:03:57 +02:00
|
|
|
self.avatar_mime_type = None
|
|
|
|
self.avatar_encoded = None
|
2006-09-26 17:57:47 +02:00
|
|
|
self.vcard_arrived = False
|
|
|
|
self.os_info_arrived = False
|
|
|
|
self.update_progressbar_timeout_id = gobject.timeout_add(100,
|
|
|
|
self.update_progressbar)
|
2005-07-03 01:03:57 +02:00
|
|
|
|
2006-09-14 18:48:03 +02:00
|
|
|
self.fill_jabber_page()
|
2005-07-03 01:03:57 +02:00
|
|
|
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
self.window.show_all()
|
|
|
|
|
2006-09-26 17:57:47 +02:00
|
|
|
def update_progressbar(self):
|
|
|
|
self.progressbar.pulse()
|
|
|
|
return True # loop forever
|
|
|
|
|
2005-12-07 22:06:43 +01:00
|
|
|
def on_vcard_information_window_destroy(self, widget):
|
2006-09-26 17:57:47 +02:00
|
|
|
if self.update_progressbar_timeout_id is not None:
|
|
|
|
gobject.source_remove(self.update_progressbar_timeout_id)
|
2006-09-14 18:48:03 +02:00
|
|
|
del gajim.interface.instances[self.account]['infos'][self.contact.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()
|
|
|
|
|
2005-12-07 15:32:42 +01:00
|
|
|
def on_log_history_checkbutton_toggled(self, widget):
|
|
|
|
#log conversation history?
|
|
|
|
oldlog = True
|
|
|
|
no_log_for = gajim.config.get_per('accounts', self.account,
|
|
|
|
'no_log_for').split()
|
|
|
|
if self.contact.jid in no_log_for:
|
|
|
|
oldlog = False
|
|
|
|
log = widget.get_active()
|
|
|
|
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)
|
|
|
|
if oldlog != log:
|
|
|
|
gajim.config.set_per('accounts', self.account, 'no_log_for',
|
|
|
|
' '.join(no_log_for))
|
2005-06-07 00:58:06 +02:00
|
|
|
|
2006-09-14 18:48:03 +02:00
|
|
|
def on_PHOTO_eventbox_button_press_event(self, widget, event):
|
|
|
|
'''If right-clicked, show popup'''
|
|
|
|
if event.button == 3: # right click
|
|
|
|
menu = gtk.Menu()
|
|
|
|
menuitem = gtk.ImageMenuItem(gtk.STOCK_SAVE_AS)
|
|
|
|
menuitem.connect('activate',
|
|
|
|
gtkgui_helpers.on_avatar_save_as_menuitem_activate,
|
|
|
|
self.contact.jid, self.account, self.contact.name + '.jpeg')
|
|
|
|
menu.append(menuitem)
|
|
|
|
menu.connect('selection-done', lambda w:w.destroy())
|
|
|
|
# show the menu
|
|
|
|
menu.show_all()
|
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
2006-04-10 21:49:24 +02:00
|
|
|
|
2005-04-19 23:53:19 +02:00
|
|
|
def set_value(self, entry_name, value):
|
|
|
|
try:
|
2006-09-26 17:57:47 +02:00
|
|
|
if value and entry_name == 'URL_label':
|
|
|
|
if gtk.pygtk_version >= (2, 10, 0) and gtk.gtk_version >= (2, 10, 0):
|
|
|
|
widget = gtk.LinkButton(value, value)
|
|
|
|
else:
|
|
|
|
widget = gtk.Label(value)
|
|
|
|
table = self.xml.get_widget('personal_info_table')
|
|
|
|
table.attach(widget, 1, 4, 3, 4, yoptions = 0)
|
|
|
|
else:
|
|
|
|
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-10-31 11:23:33 +01:00
|
|
|
pixbuf, self.avatar_encoded, self.avatar_mime_type = \
|
2005-10-31 12:06:11 +01:00
|
|
|
get_avatar_pixbuf_encoded_mime(vcard[i])
|
2006-09-14 18:48:03 +02:00
|
|
|
image = self.xml.get_widget('PHOTO_image')
|
2006-03-10 22:58:23 +01:00
|
|
|
if not pixbuf:
|
2006-09-14 18:48:03 +02:00
|
|
|
image.set_from_icon_name('stock_person',
|
|
|
|
gtk.ICON_SIZE_DIALOG)
|
2006-03-10 22:58:23 +01:00
|
|
|
continue
|
2006-03-08 17:01:01 +01:00
|
|
|
pixbuf = gtkgui_helpers.get_scaled_pixbuf(pixbuf, 'vcard')
|
2005-10-31 11:23:33 +01:00
|
|
|
image.set_from_pixbuf(pixbuf)
|
2005-06-07 10:50:47 +02:00
|
|
|
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():
|
2006-09-14 18:48:03 +02:00
|
|
|
self.set_value(i + add_on + '_' + j + '_label', 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():
|
2006-09-14 18:48:03 +02:00
|
|
|
self.set_value(i + '_' + j + '_label', 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)
|
2006-09-26 17:57:47 +02:00
|
|
|
elif i != 'jid': # Do not override jid_label
|
2006-09-14 18:48:03 +02:00
|
|
|
self.set_value(i + '_label', vcard[i])
|
2006-09-26 17:57:47 +02:00
|
|
|
self.vcard_arrived = True
|
|
|
|
self.test_remove_progressbar()
|
|
|
|
|
|
|
|
def test_remove_progressbar(self):
|
|
|
|
if self.update_progressbar_timeout_id is not None and \
|
|
|
|
self.vcard_arrived and self.os_info_arrived:
|
|
|
|
gobject.source_remove(self.update_progressbar_timeout_id)
|
|
|
|
self.progressbar.hide()
|
|
|
|
self.update_progressbar_timeout_id = None
|
2006-02-22 15:31:01 +01:00
|
|
|
|
|
|
|
def set_last_status_time(self):
|
|
|
|
self.fill_status_label()
|
|
|
|
|
2005-04-25 00:58:41 +02:00
|
|
|
def set_os_info(self, resource, client_info, os_info):
|
2006-09-14 18:48:03 +02:00
|
|
|
if self.xml.get_widget('information_notebook').get_n_pages() < 4:
|
|
|
|
return
|
2005-04-25 00:58:41 +02:00
|
|
|
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)
|
2006-09-26 17:57:47 +02:00
|
|
|
self.os_info_arrived = True
|
|
|
|
self.test_remove_progressbar()
|
2005-04-19 23:53:19 +02:00
|
|
|
|
2006-02-22 15:31:01 +01:00
|
|
|
def fill_status_label(self):
|
2006-09-14 18:48:03 +02:00
|
|
|
if self.xml.get_widget('information_notebook').get_n_pages() < 4:
|
|
|
|
return
|
2006-02-22 15:31:01 +01:00
|
|
|
contact_list = gajim.contacts.get_contact(self.account, self.contact.jid)
|
|
|
|
# stats holds show and status message
|
|
|
|
stats = ''
|
|
|
|
one = True # Are we adding the first line ?
|
|
|
|
if contact_list:
|
|
|
|
for c in contact_list:
|
|
|
|
if not one:
|
|
|
|
stats += '\n'
|
|
|
|
stats += helpers.get_uf_show(c.show)
|
|
|
|
if c.status:
|
|
|
|
stats += ': ' + c.status
|
|
|
|
if c.last_status_time:
|
2006-02-23 22:44:05 +01:00
|
|
|
stats += '\n' + _('since %s') % time.strftime('%c',
|
2006-03-05 23:09:39 +01:00
|
|
|
c.last_status_time).decode(locale.getpreferredencoding())
|
2006-02-22 15:31:01 +01:00
|
|
|
one = False
|
2006-09-14 18:48:03 +02:00
|
|
|
else: # Maybe gc_vcard ?
|
2006-03-28 22:17:13 +02:00
|
|
|
stats = helpers.get_uf_show(self.contact.show)
|
|
|
|
if self.contact.status:
|
|
|
|
stats += ': ' + self.contact.status
|
2006-02-22 15:31:01 +01:00
|
|
|
status_label = self.xml.get_widget('status_label')
|
|
|
|
status_label.set_max_width_chars(15)
|
|
|
|
status_label.set_text(stats)
|
|
|
|
|
|
|
|
tip = gtk.Tooltips()
|
|
|
|
status_label_eventbox = self.xml.get_widget('status_label_eventbox')
|
|
|
|
tip.set_tip(status_label_eventbox, stats)
|
|
|
|
|
2005-04-19 23:53:19 +02:00
|
|
|
def fill_jabber_page(self):
|
2005-12-01 15:42:25 +01:00
|
|
|
tooltips = gtk.Tooltips()
|
2006-09-14 18:48:03 +02:00
|
|
|
self.xml.get_widget('nickname_label').set_markup(
|
|
|
|
'<b><span size="x-large">' +
|
|
|
|
self.contact.get_shown_name() +
|
|
|
|
'</span></b>')
|
2005-07-24 21:31:37 +02:00
|
|
|
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-12-01 15:42:25 +01:00
|
|
|
eb = self.xml.get_widget('subscription_label_eventbox')
|
|
|
|
if self.contact.sub == 'from':
|
2005-12-01 16:21:20 +01:00
|
|
|
tt_text = _("This contact is interested in your presence information, but you are not interested in his/her presence")
|
2005-12-01 15:42:25 +01:00
|
|
|
elif self.contact.sub == 'to':
|
|
|
|
tt_text = _("You are interested in the contact's presence information, but he/she is not interested in yours")
|
|
|
|
elif self.contact.sub == 'both':
|
|
|
|
tt_text = _("You and the contact are interested in each other's presence information")
|
|
|
|
else: # None
|
|
|
|
tt_text = _("You are not interested in the contact's presence, and neither he/she is interested in yours")
|
|
|
|
tooltips.set_tip(eb, tt_text)
|
|
|
|
|
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-12-01 15:42:25 +01:00
|
|
|
eb = self.xml.get_widget('ask_label_eventbox')
|
|
|
|
if self.contact.ask == 'subscribe':
|
|
|
|
tooltips.set_tip(eb,
|
|
|
|
_("You are waiting contact's answer about your subscription request"))
|
2005-12-07 15:32:42 +01:00
|
|
|
log = True
|
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(' '):
|
2005-12-07 15:32:42 +01:00
|
|
|
log = False
|
2005-12-07 22:06:43 +01:00
|
|
|
checkbutton = self.xml.get_widget('log_history_checkbutton')
|
|
|
|
checkbutton.set_active(log)
|
|
|
|
checkbutton.connect('toggled', self.on_log_history_checkbutton_toggled)
|
|
|
|
|
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 = ''
|
2006-02-22 15:31:01 +01:00
|
|
|
|
|
|
|
# Request list time status
|
|
|
|
gajim.connections[self.account].request_last_status_time(self.contact.jid,
|
2005-07-24 21:31:37 +02:00
|
|
|
self.contact.resource)
|
2006-02-22 15:31:01 +01:00
|
|
|
|
2006-09-26 17:57:47 +02:00
|
|
|
# do not wait for os_info if contact is not connected
|
|
|
|
if self.contact.show in ('offline', 'error'):
|
|
|
|
self.os_info_arrived = True
|
|
|
|
else: # Request os info if contact is connected
|
2006-09-14 18:48:03 +02:00
|
|
|
gobject.idle_add(gajim.connections[self.account].request_os_info,
|
|
|
|
self.contact.jid, self.contact.resource)
|
2005-07-24 21:31:37 +02:00
|
|
|
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
|
Merged in trunk updates, including meta_contacts
Merged revisions 4951,4962-4969 via svnmerge from
svn://svn.gajim.org/gajim/trunk
........
r4951 | nk | 2005-12-30 16:50:36 -0700 (Fri, 30 Dec 2005) | 1 line
fixes in greek transl
........
r4962 | asterix | 2006-01-01 11:41:04 -0700 (Sun, 01 Jan 2006) | 2 lines
merge meta_contacts branch with trunk. Meta contacts are not in gajim yet, but framework is here. We now use gajim.contacts.many_functions() to handle contacts and groupchat_contacts.
........
r4963 | asterix | 2006-01-01 11:43:24 -0700 (Sun, 01 Jan 2006) | 2 lines
correct contacts file
........
r4964 | asterix | 2006-01-01 11:47:26 -0700 (Sun, 01 Jan 2006) | 2 lines
dict.remove() doesn't exists, it's del dict[]
........
r4965 | asterix | 2006-01-01 11:50:15 -0700 (Sun, 01 Jan 2006) | 2 lines
some missing commits from branch
........
r4966 | asterix | 2006-01-01 11:53:30 -0700 (Sun, 01 Jan 2006) | 2 lines
end of gc_contact.nick -> gc_contact.name
........
r4967 | asterix | 2006-01-01 12:05:59 -0700 (Sun, 01 Jan 2006) | 2 lines
new ACE option: send_sha_in_gc_presence that allow to send sha info in groupchat presences
........
r4968 | asterix | 2006-01-01 12:12:36 -0700 (Sun, 01 Jan 2006) | 2 lines
0.9.1-2 in debian that solve the group bug (commit [4924])
........
r4969 | asterix | 2006-01-01 12:31:13 -0700 (Sun, 01 Jan 2006) | 2 lines
typo
........
2006-01-01 21:06:26 +01:00
|
|
|
contact_list = gajim.contacts.get_contact(self.account, self.contact.jid)
|
|
|
|
if contact_list:
|
|
|
|
for c in contact_list:
|
2005-07-24 21:31:37 +02:00
|
|
|
if c.resource != self.contact.resource:
|
2005-08-26 02:52:44 +02:00
|
|
|
resources += '\n%s (%s)' % (c.resource,
|
|
|
|
unicode(c.priority))
|
2006-02-22 15:31:01 +01:00
|
|
|
uf_resources += '\n' + c.resource + \
|
|
|
|
_(' resource with priority ') + unicode(c.priority)
|
|
|
|
if c.show not in ('offline', 'error'):
|
2006-09-14 18:48:03 +02:00
|
|
|
gobject.idle_add(
|
|
|
|
gajim.connections[self.account].request_os_info, c.jid,
|
2006-02-22 15:31:01 +01:00
|
|
|
c.resource)
|
|
|
|
gajim.connections[self.account].request_last_status_time(c.jid,
|
2005-07-24 21:31:37 +02:00
|
|
|
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)
|
|
|
|
resource_prio_label_eventbox = self.xml.get_widget(
|
|
|
|
'resource_prio_label_eventbox')
|
2006-02-22 15:31:01 +01:00
|
|
|
tooltips.set_tip(resource_prio_label_eventbox, uf_resources)
|
|
|
|
|
|
|
|
self.fill_status_label()
|
|
|
|
|
2006-04-28 22:55:45 +02:00
|
|
|
gajim.connections[self.account].request_vcard(self.contact.jid, self.is_fake)
|
2006-09-29 16:39:29 +02:00
|
|
|
|
|
|
|
def on_close_button_clicked(self, widget):
|
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
|
|
|
|
class ZeroconfVcardWindow:
|
|
|
|
def __init__(self, contact, account, is_fake = False):
|
|
|
|
# the contact variable is the jid if vcard is true
|
|
|
|
self.xml = gtkgui_helpers.get_glade('zeroconf_information_window.glade')
|
|
|
|
self.window = self.xml.get_widget('zeroconf_information_window')
|
|
|
|
|
|
|
|
self.contact = contact
|
|
|
|
self.account = account
|
|
|
|
self.is_fake = is_fake
|
|
|
|
|
|
|
|
# self.avatar_mime_type = None
|
|
|
|
# self.avatar_encoded = None
|
|
|
|
|
|
|
|
self.fill_contact_page()
|
|
|
|
self.fill_personal_page()
|
|
|
|
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
self.window.show_all()
|
|
|
|
|
|
|
|
def on_zeroconf_information_window_destroy(self, widget):
|
|
|
|
del gajim.interface.instances[self.account]['infos'][self.contact.jid]
|
|
|
|
|
|
|
|
def on_zeroconf_information_window_key_press_event(self, widget, event):
|
|
|
|
if event.keyval == gtk.keysyms.Escape:
|
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
def on_log_history_checkbutton_toggled(self, widget):
|
|
|
|
#log conversation history?
|
|
|
|
oldlog = True
|
|
|
|
no_log_for = gajim.config.get_per('accounts', self.account,
|
|
|
|
'no_log_for').split()
|
|
|
|
if self.contact.jid in no_log_for:
|
|
|
|
oldlog = False
|
|
|
|
log = widget.get_active()
|
|
|
|
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)
|
|
|
|
if oldlog != log:
|
|
|
|
gajim.config.set_per('accounts', self.account, 'no_log_for',
|
|
|
|
' '.join(no_log_for))
|
|
|
|
|
|
|
|
def on_PHOTO_eventbox_button_press_event(self, widget, event):
|
|
|
|
'''If right-clicked, show popup'''
|
|
|
|
if event.button == 3: # right click
|
|
|
|
menu = gtk.Menu()
|
|
|
|
menuitem = gtk.ImageMenuItem(gtk.STOCK_SAVE_AS)
|
|
|
|
menuitem.connect('activate',
|
|
|
|
gtkgui_helpers.on_avatar_save_as_menuitem_activate,
|
|
|
|
self.contact.jid, self.account, self.contact.name + '.jpeg')
|
|
|
|
menu.append(menuitem)
|
|
|
|
menu.connect('selection-done', lambda w:w.destroy())
|
|
|
|
# show the menu
|
|
|
|
menu.show_all()
|
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
|
|
|
|
def set_value(self, entry_name, value):
|
|
|
|
try:
|
|
|
|
if value and entry_name == 'URL_label':
|
|
|
|
if gtk.pygtk_version >= (2, 10, 0) and gtk.gtk_version >= (2, 10, 0):
|
|
|
|
widget = gtk.LinkButton(value, value)
|
|
|
|
else:
|
|
|
|
widget = gtk.Label(value)
|
|
|
|
table = self.xml.get_widget('personal_info_table')
|
|
|
|
table.attach(widget, 1, 4, 3, 4, yoptions = 0)
|
|
|
|
else:
|
|
|
|
self.xml.get_widget(entry_name).set_text(value)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def fill_status_label(self):
|
|
|
|
if self.xml.get_widget('information_notebook').get_n_pages() < 2:
|
|
|
|
return
|
|
|
|
contact_list = gajim.contacts.get_contact(self.account, self.contact.jid)
|
|
|
|
# stats holds show and status message
|
|
|
|
stats = ''
|
|
|
|
one = True # Are we adding the first line ?
|
|
|
|
if contact_list:
|
|
|
|
for c in contact_list:
|
|
|
|
if not one:
|
|
|
|
stats += '\n'
|
|
|
|
stats += helpers.get_uf_show(c.show)
|
|
|
|
if c.status:
|
|
|
|
stats += ': ' + c.status
|
|
|
|
if c.last_status_time:
|
|
|
|
stats += '\n' + _('since %s') % time.strftime('%c',
|
|
|
|
c.last_status_time).decode(locale.getpreferredencoding())
|
|
|
|
one = False
|
|
|
|
else: # Maybe gc_vcard ?
|
|
|
|
stats = helpers.get_uf_show(self.contact.show)
|
|
|
|
if self.contact.status:
|
|
|
|
stats += ': ' + self.contact.status
|
|
|
|
status_label = self.xml.get_widget('status_label')
|
|
|
|
status_label.set_max_width_chars(15)
|
|
|
|
status_label.set_text(stats)
|
|
|
|
|
|
|
|
tip = gtk.Tooltips()
|
|
|
|
status_label_eventbox = self.xml.get_widget('status_label_eventbox')
|
|
|
|
tip.set_tip(status_label_eventbox, stats)
|
|
|
|
|
|
|
|
def fill_contact_page(self):
|
|
|
|
tooltips = gtk.Tooltips()
|
|
|
|
self.xml.get_widget('nickname_label').set_markup(
|
|
|
|
'<b><span size="x-large">' +
|
|
|
|
self.contact.get_shown_name() +
|
|
|
|
'</span></b>')
|
|
|
|
self.xml.get_widget('local_jid_label').set_text(self.contact.jid)
|
|
|
|
|
|
|
|
log = True
|
|
|
|
if self.contact.jid in gajim.config.get_per('accounts', self.account,
|
|
|
|
'no_log_for').split(' '):
|
|
|
|
log = False
|
|
|
|
checkbutton = self.xml.get_widget('log_history_checkbutton')
|
|
|
|
checkbutton.set_active(log)
|
|
|
|
checkbutton.connect('toggled', self.on_log_history_checkbutton_toggled)
|
|
|
|
|
|
|
|
resources = '%s (%s)' % (self.contact.resource, unicode(
|
|
|
|
self.contact.priority))
|
|
|
|
uf_resources = self.contact.resource + _(' resource with priority ')\
|
|
|
|
+ unicode(self.contact.priority)
|
|
|
|
if not self.contact.status:
|
|
|
|
self.contact.status = ''
|
|
|
|
|
|
|
|
# Request list time status
|
|
|
|
# gajim.connections[self.account].request_last_status_time(self.contact.jid,
|
|
|
|
# self.contact.resource)
|
|
|
|
|
|
|
|
self.xml.get_widget('resource_prio_label').set_text(resources)
|
|
|
|
resource_prio_label_eventbox = self.xml.get_widget(
|
|
|
|
'resource_prio_label_eventbox')
|
|
|
|
tooltips.set_tip(resource_prio_label_eventbox, uf_resources)
|
|
|
|
|
|
|
|
self.fill_status_label()
|
|
|
|
|
|
|
|
# gajim.connections[self.account].request_vcard(self.contact.jid, self.is_fake)
|
|
|
|
|
|
|
|
def fill_personal_page(self):
|
|
|
|
contact = gajim.connections[gajim.ZEROCONF_ACC_NAME].roster.getItem(self.contact.jid)
|
|
|
|
self.xml.get_widget('first_name_label').set_text(contact['txt_dict']['1st'])
|
|
|
|
self.xml.get_widget('last_name_label').set_text(contact['txt_dict']['last'])
|
|
|
|
self.xml.get_widget('jabber_id_label').set_text(contact['txt_dict']['jid'])
|
|
|
|
self.xml.get_widget('email_label').set_text(contact['txt_dict']['email'])
|
2006-09-26 17:57:47 +02:00
|
|
|
|
|
|
|
def on_close_button_clicked(self, widget):
|
|
|
|
self.window.destroy()
|