changeset 1681:c6c835046681

plugin XEP-0277: minor fixes for publisher attribute
author Goffi <goffi@goffi.org>
date Wed, 25 Nov 2015 18:24:34 +0100
parents 1e06a0f8be66
children 61391d863709
files src/plugins/plugin_xep_0277.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0277.py	Wed Nov 25 18:24:30 2015 +0100
+++ b/src/plugins/plugin_xep_0277.py	Wed Nov 25 18:24:34 2015 +0100
@@ -271,12 +271,12 @@
                 log.warning(u"Unmanaged link element: rel={rel} title={title} href={href}".format(rel=rel, title=title, href=href))
 
         # author
-        publisher = item_elt.getAttribute("publisher")
         try:
             author_elt = entry_elt.elements(NS_ATOM, 'author').next()
         except StopIteration:
             log.debug(u"Can't find author element in item {}".format(id_))
         else:
+            publisher = item_elt.getAttribute("publisher")
             # name
             try:
                 name_elt = author_elt.elements(NS_ATOM, 'name').next()
@@ -302,7 +302,7 @@
                 if not publisher:
                     log.debug(u"No publisher attribute, we can't verify author jid")
                     microblog_data['author_jid_verified'] = C.BOOL_FALSE
-                elif publisher.split("/")[0] == uri.split("/")[0]:
+                elif jid.JID(publisher).userhostJID() == jid.JID(uri).userhostJID():
                     microblog_data['author_jid_verified'] = C.BOOL_TRUE
                 else:
                     log.warning(u"item atom:uri differ from publisher attribute, spoofing attempt ? atom:uri = {} publisher = {}".format(uri, item_elt.getAttribute("publisher")))