diff src/plugins/plugin_xep_0277.py @ 770:64dd7c0f4feb

plugin groupblog, XEP-0277: store both published and updated timestamps
author souliane <souliane@mailoo.org>
date Thu, 19 Dec 2013 13:54:40 +0100
parents 812dc38c0094
children bfabeedbf32e
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0277.py	Wed Dec 18 15:37:30 2013 +0100
+++ b/src/plugins/plugin_xep_0277.py	Thu Dec 19 13:54:40 2013 +0100
@@ -108,7 +108,11 @@
                 microblog_data['content'] = _entry.title.text
             if len(_entry.authors):
                 microblog_data['author'] = _entry.authors[0].name.text
-            microblog_data['timestamp'] = str(int(_entry.updated.tf))
+            microblog_data['updated'] = str(int(_entry.updated.tf))
+            try:
+                microblog_data['published'] = str(int(_entry.published.tf))
+            except (KeyError, TypeError):
+                microblog_data['published'] = microblog_data['updated']
             microblog_data['id'] = item['id']
             for link in _entry.links:
                 try:
@@ -172,7 +176,8 @@
 
         _entry.author = atom.Author()
         _entry.author.name = data.get('author', self.host.getJidNStream(profile)[0].userhost()).encode('utf-8')
-        _entry.updated = float(data.get('timestamp', time()))
+        _entry.updated = float(data.get('updated', time()))
+        _entry.published = float(data.get('published', time()))
         entry_id = data.get('id', str(_uuid))
         _entry.id = entry_id
         if 'comments' in data: