summaryrefslogtreecommitdiff
path: root/poezio/core
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-10-08 15:09:49 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-10-08 15:09:49 +0100
commitae7d2b4f9d6ff20006651417b75c877a7252dceb (patch)
tree1f98b938520536f95b779ee30ccbf3fef3654686 /poezio/core
parent3775e476b619b141ea9981a49d7ad8191ef36152 (diff)
downloadpoezio-ae7d2b4f9d6ff20006651417b75c877a7252dceb.tar.gz
poezio-ae7d2b4f9d6ff20006651417b75c877a7252dceb.tar.bz2
poezio-ae7d2b4f9d6ff20006651417b75c877a7252dceb.tar.xz
poezio-ae7d2b4f9d6ff20006651417b75c877a7252dceb.zip
Add a cache for vCard avatars.
Diffstat (limited to 'poezio/core')
-rw-r--r--poezio/core/handlers.py26
1 files changed, 24 insertions, 2 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index c376b67f..e5d1f244 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -14,7 +14,7 @@ import sys
import time
from datetime import datetime
from hashlib import sha1, sha512
-from os import path
+from os import path, makedirs
from slixmpp import InvalidJID
from slixmpp.xmlstream.stanzabase import StanzaBase, ElementBase
@@ -384,7 +384,21 @@ class HandlerCore:
contact = roster[jid]
if not contact:
return
- log.debug('Received vCard avatar update from %s', jid)
+ avatar_hash = pres['vcard_temp_update']['photo']
+ log.debug('Received vCard avatar update from %s: %s', jid, avatar_hash)
+
+ # First check whether we have it in cache.
+ cache_dir = path.join(CACHE_DIR, 'avatars', jid)
+ cached_path = path.join(cache_dir, avatar_hash)
+ try:
+ with open(cached_path, 'rb') as avatar_file:
+ contact.avatar = avatar_file.read()
+ log.debug('Using cached avatar')
+ return
+ except OSError:
+ pass
+
+ # If we didn’t have any, query the vCard instead.
try:
result = yield from self.core.xmpp['xep_0054'].get_vcard(jid,
cached=True,
@@ -396,6 +410,14 @@ class HandlerCore:
return
log.debug('Received %s avatar: %s', jid, avatar['TYPE'])
+ # Now we save the data on the file system to not have to request it again.
+ try:
+ makedirs(cache_dir)
+ with open(cached_path, 'wb') as avatar_file:
+ avatar_file.write(contact.avatar)
+ except OSError:
+ pass
+
def on_nick_received(self, message):
"""
Called when a pep notification for an user nickname