Merge branch 'better-avatar-error-log' into 'master'
Also log the offending JID on avatar decoding issue See merge request gajim/gajim!158
This commit is contained in:
commit
efc14f9d97
|
@ -474,7 +474,7 @@ class ConnectionVcard:
|
|||
app.nec.push_incoming_event(
|
||||
VcardNotPublishedEvent(None, conn=self))
|
||||
|
||||
def get_vcard_photo(self, vcard):
|
||||
def _get_vcard_photo(self, vcard, jid):
|
||||
try:
|
||||
photo = vcard['PHOTO']['BINVAL']
|
||||
except (KeyError, AttributeError):
|
||||
|
@ -488,7 +488,7 @@ class ConnectionVcard:
|
|||
try:
|
||||
photo_decoded = base64.b64decode(photo.encode('utf-8'))
|
||||
except binascii.Error as error:
|
||||
app.log('avatar').warning('Invalid Avatar: %s', error)
|
||||
app.log('avatar').warning('Invalid avatar for %s: %s', jid, error)
|
||||
return None, None
|
||||
avatar_sha = hashlib.sha1(photo_decoded).hexdigest()
|
||||
|
||||
|
@ -532,7 +532,7 @@ class ConnectionVcard:
|
|||
|
||||
def _on_own_avatar_received(self, jid, resource, room, vcard):
|
||||
|
||||
avatar_sha, photo_decoded = self.get_vcard_photo(vcard)
|
||||
avatar_sha, photo_decoded = self._get_vcard_photo(vcard, jid)
|
||||
|
||||
app.log('avatar').info(
|
||||
'Received own (vCard): %s', avatar_sha)
|
||||
|
@ -570,7 +570,7 @@ class ConnectionVcard:
|
|||
"""
|
||||
Called when we receive a vCard Parse the vCard and trigger Events
|
||||
"""
|
||||
avatar_sha, photo_decoded = self.get_vcard_photo(vcard)
|
||||
avatar_sha, photo_decoded = self._get_vcard_photo(vcard, jid)
|
||||
app.interface.save_avatar(photo_decoded)
|
||||
|
||||
# Received vCard from a contact
|
||||
|
|
|
@ -202,7 +202,7 @@ class VcardWindow:
|
|||
except AttributeError:
|
||||
pass
|
||||
|
||||
def set_values(self, vcard):
|
||||
def _set_values(self, vcard, jid):
|
||||
for i in vcard.keys():
|
||||
if i == 'PHOTO' and self.xml.get_object('information_notebook').\
|
||||
get_n_pages() > 4:
|
||||
|
@ -215,7 +215,7 @@ class VcardWindow:
|
|||
photo_decoded = base64.b64decode(
|
||||
photo_encoded.encode('utf-8'))
|
||||
except binascii.Error as error:
|
||||
app.log('avatar').warning('Invalid Avatar: %s', error)
|
||||
app.log('avatar').warning('Invalid avatar for %s: %s', jid, error)
|
||||
continue
|
||||
pixbuf = gtkgui_helpers.get_pixbuf_from_data(photo_decoded)
|
||||
if pixbuf is None:
|
||||
|
@ -266,7 +266,7 @@ class VcardWindow:
|
|||
|
||||
def _nec_vcard_received(self, jid, resource, room, vcard):
|
||||
self.clear_values()
|
||||
self.set_values(vcard)
|
||||
self._set_values(vcard, jid)
|
||||
|
||||
def set_os_info(self, obj):
|
||||
if obj.conn.name != self.account:
|
||||
|
|
Loading…
Reference in New Issue