X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=sid%2Ffeeds.py;h=a40f7662e8f14383d1d55089dd12f59fa91b82b5;hb=f2f44c64470d0967913feb1bfb9868fa0c7d9e1b;hp=ae07005b9c268dcefa49e56db6d6f597811637b9;hpb=40a4cb2e7caa70e009736ead303ce016ddac3a71;p=sid.git diff --git a/sid/feeds.py b/sid/feeds.py index ae07005..a40f766 100644 --- a/sid/feeds.py +++ b/sid/feeds.py @@ -58,23 +58,23 @@ class FeedMonitor(threading.Thread): # Cannot resolve address if 'status' not in parsed_feed: - self.plugin.log.error('Error from "%s": %s.' % - (feed, parsed_feed.bozo_exception.__repr__())) + self.plugin.log.error('Error from "%s": %s.', + feed, parsed_feed.bozo_exception.__repr__()) return # unusual return http code if parsed_feed.status != 200: - self.plugin.log.error( - 'Got code %(status)d from "%(href)s" (please update).' % - parsed_feed) + self.plugin.log.warning( + 'Got code %(status)d from "%(href)s" (please update).', + parsed_feed) return feed_updated = parsed_feed.feed.get('updated_parsed', None) # Avoid looping over all posts if possible if feed_updated and strtm_to_dtm(feed_updated) < self.last_check: - self.plugin.log.debug('updated : %s' % strtm_to_dtm(feed_updated)) - self.plugin.log.debug('last check: %s' % self.last_check) + self.plugin.log.debug('updated : %s', strtm_to_dtm(feed_updated)) + self.plugin.log.debug('last check: %s', self.last_check) return title = '"%s":' % parsed_feed.feed.get('title', 'n/a') @@ -99,14 +99,16 @@ class FeedMonitor(threading.Thread): body = '%(title)s %(link)s' % post text.append(body) - xpost = dict(**post) - xpost['title'] = html_escape(xpost.get('title', 'n/a')) - xbody = '%(title)s' % xpost + xpost = {'title': html_escape(post.get('title', 'n/a'))} + xpost['link'] = html_escape(post.get('link',)) + xbody = '{title}'.format(**xpost) xhtml.append(xbody) # Updating self.seen self.seen[feed_id] = entries if len(text) > 1: - self.plugin.send({'mbody':'
'.join(xhtml), 'mhtml':'\n'.join(text)}) + self.plugin.send(self.plugin.bot.room, + {'mhtml':'
'.join(xhtml), 'mbody':'\n'.join(text)}, + mtype='groupchat') def run(self): while not self.thread_killed: @@ -115,7 +117,7 @@ class FeedMonitor(threading.Thread): try: self.new_posts(feed) except Exception as err: - self.plugin.log.error('feeds thread crashed: %s' % err) + self.plugin.log.error('feeds thread crashed: %s', err) self.plugin.log.error(''.join(traceback.format_exc())) self.thread_killed = True self.last_check = datetime.datetime.utcnow() @@ -154,16 +156,18 @@ class Feeds(Plugin): self.th_mon.thread_killed = True @botcmd - def feeds(self, message, args): + def feeds(self, rcv, args): """feeds monitors debian project related feeds. !feeds : registred feeds list !feeds last : last check time""" if 'last' in args: - self.send('Last feeds check: %s' % self.th_mon.last_check) + self.reply(rcv, 'Last feeds check: %s' % self.th_mon.last_check) return - html = ['{1}'.format(u, u[7:]) for u in Feeds.FEEDS] + html = ['{1}'.format(html_escape(u), + html_escape(u[7:]) + ) for u in Feeds.FEEDS] msg = { 'mbody': 'Feeds:\n' + '\n'.join(Feeds.FEEDS), - 'mhtml': 'Feeds:
' + '
'.join(html) + 'mhtml': 'Feeds:
' + '
'.join(html), } - self.send(msg) + self.reply(rcv, msg)