bumblebee-status/bumblebee/modules/rss.py

207 lines
7.1 KiB
Python
Raw Normal View History

2019-08-15 08:37:05 +02:00
# pylint: disable=C0111,R0903
"""RSS news ticker
Fetches rss news items and shows these as a news ticker.
Left-clicking will open the full story in a browser.
2019-08-16 10:11:22 +02:00
New stories are highlighted.
2019-08-15 08:37:05 +02:00
Parameters:
* rss.feeds : Space-separated list of RSS URLs
* rss.length : Maximum length of the module, default is 60
"""
try:
import feedparser
DEPENDENCIES_OK = True
except ImportError:
DEPENDENCIES_OK = False
import webbrowser
import time
2019-08-15 18:00:32 +02:00
import os
import tempfile
import logging
2019-08-15 08:37:05 +02:00
import bumblebee.input
import bumblebee.output
import bumblebee.engine
# pylint: disable=too-many-instance-attributes
class Module(bumblebee.engine.Module):
REFRESH_DELAY = 600
SCROLL_SPEED = 3
def __init__(self, engine, config):
super(Module, self).__init__(engine, config,
2019-08-16 10:11:22 +02:00
bumblebee.output.Widget(full_text=self.ticker_update if DEPENDENCIES_OK else self._show_error)
2019-08-15 08:37:05 +02:00
)
# Use BBC newsfeed as demo:
self._feeds = self.parameter('feeds', 'http://feeds.bbci.co.uk/news/rss.xml').split(" ")
self._refresh_countdown = 0
self._feeds_to_update = []
self._max_title_length = int(self.parameter("length", 60))
self._items = []
self._current_item = None
self._ticker_offset = 0
self._pre_delay = 0
self._post_delay = 0
self._state = []
2019-08-15 18:00:32 +02:00
self._newspaper_filename = tempfile.mktemp('.html')
2019-08-15 08:37:05 +02:00
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE, cmd=self._open)
2019-08-15 18:00:32 +02:00
engine.input.register_callback(self, button=bumblebee.input.RIGHT_MOUSE, cmd=self._create_newspaper)
2019-08-15 08:37:05 +02:00
def _open(self, _):
if self._current_item:
webbrowser.open(self._current_item['link'])
2019-08-16 10:11:22 +02:00
def _create_item(self, entry, url):
return {'title': entry['title'].replace('\n', ' '),
'link': entry['link'],
'new': all([i['title'] != entry['title'] for i in self._items]),
'source': url,
2019-08-15 18:00:32 +02:00
'summary': i['summary'],
'feed': parser['feed']['title'],
'image': next(iter([l['href'] for l in i['links'] if l['rel']=='enclosure']), ''),
2019-08-16 10:11:22 +02:00
'published': time.mktime(entry.published_parsed) if hasattr(entry, 'published_parsed') else 0}
2019-08-15 11:58:10 +02:00
def _update_items_from_feed(self, url):
parser = feedparser.parse(url)
2019-08-16 10:11:22 +02:00
new_items = [self._create_item(entry, url) for entry in parser['entries']]
2019-08-15 11:58:10 +02:00
# Remove the previous items
self._items = [i for i in self._items if i['source'] != url]
# Add the new items
self._items.extend(new_items)
# Sort the items on publish date
self._items.sort(key=lambda i: i['published'], reverse=True)
2019-08-15 08:37:05 +02:00
def _check_for_refresh(self):
2019-08-16 10:11:22 +02:00
if self._feeds_to_update:
2019-08-15 08:37:05 +02:00
# Update one feed at a time to not overload this update cycle
url = self._feeds_to_update.pop()
2019-08-15 11:58:10 +02:00
self._update_items_from_feed(url)
2019-08-15 08:37:05 +02:00
if not self._current_item:
self._next_item()
elif self._refresh_countdown == 0:
# Populate the list with feeds to update
self._feeds_to_update = self._feeds[:]
# Restart the update countdown timer
self._refresh_countdown = self.REFRESH_DELAY
else:
self._refresh_countdown -= 1
def _next_item(self):
self._ticker_offset = 0
self._pre_delay = 2
self._post_delay = 4
if not self._items:
return
2019-08-15 11:58:10 +02:00
# Index of the current element
idx = self._items.index(self._current_item) if self._current_item in self._items else - 1
2019-08-15 08:37:05 +02:00
2019-08-15 11:58:10 +02:00
# First show new items, else show next
2019-08-15 08:37:05 +02:00
new_items = [i for i in self._items if i['new']]
2019-08-15 11:58:10 +02:00
self._current_item = next(iter(new_items), self._items[(idx+1) % len(self._items)])
2019-08-15 08:37:05 +02:00
def _check_scroll_done(self):
2019-08-15 11:58:10 +02:00
# Check if the complete title has been shown
if self._ticker_offset + self._max_title_length > len(self._current_item['title']):
2019-08-15 08:37:05 +02:00
# Do not immediately show next item after scroll
2019-08-15 11:58:10 +02:00
self._post_delay -= 1
if self._post_delay == 0:
self._current_item['new'] = False
# Mark the previous item as 'old'
2019-08-15 08:37:05 +02:00
self._next_item()
else:
# Increase scroll position
self._ticker_offset += self.SCROLL_SPEED
2019-08-16 10:11:22 +02:00
def _show_error(self, _):
return "Please install feedparser first"
2019-08-15 08:37:05 +02:00
def ticker_update(self, _):
self._check_for_refresh()
# If no items were retrieved, return an empty string
if not self._current_item:
return " "*self._max_title_length
# Prepare a substring of the item title
response = self._current_item['title'][self._ticker_offset:self._ticker_offset+self._max_title_length]
# Add spaces if too short
response = response.ljust(self._max_title_length)
# Do not immediately scroll
if self._pre_delay > 0:
# Change state during pre_delay for new items
if self._current_item['new']:
self._state = ['warning']
self._pre_delay -= 1
return response
self._state = []
self._check_scroll_done()
return response
def update(self, widgets):
pass
def state(self, _):
return self._state
2019-08-15 18:00:32 +02:00
def _create_news_element(self, item):
try:
logging.error("aaaaaaaa")
timestr = "" if item['published'] == 0 else str(time.ctime(1565783383))
except Exception as e:
logging.error(str(e))
raise e
element = "<div class='item' onclick=window.open('"+item['link']+"')>"
element += "<div class='titlecontainer'>"
element += " <img src='"+item['image']+"'>"
element += " <div class='title'>"+item['title']+"</div>"
element += "</div>"
element += "<div class='info'><span class='author'>"+item['feed']+"</span><span class='published'>"+timestr+"</span></div>"
element += "<div class='summary'>"+item['summary']+"</div>"
element += "</div>"
return element
def _create_newspaper(self, _):
content = ""
for item in self._items:
content += self._create_news_element(item)
open(self._newspaper_filename, "w").write(HTML_TEMPLATE.replace("[[CONTENT]]", content))
webbrowser.open("file://"+self._newspaper_filename)
HTML_TEMPLATE = """<!DOCTYPE html>
<html>
<style>
body {background: #eee; font-family: Helvetica neue;}
img {width: 100%;}
.item {width: 600px; background: #fff; margin: 30px; box-shadow: 5px 5px 10px #aaa;}
.titlecontainer {position: relative; min-height: 250px; background: #88a;}
.title {position: absolute; bottom: 10px; color: #fff; font-weight: bold; text-align: right; max-width: 75%; right: 10px; font-size: 23px; text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;}
.summary {color: #444; padding: 10px;}
.info {padding: 0px 10px 0px 10px; color: #aaa;}
.published {float: right;}
</style>
<body>
<div id='title'>Bumblebee Daily</div>
<div id='content'>
[[CONTENT]]
</div>
</body>
</html>"""
2019-08-15 08:37:05 +02:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4