From 99080e7ac3bb1d02993a71232ebadebf4f673118 Mon Sep 17 00:00:00 2001 From: Yves Hoppe Date: Fri, 26 May 2017 11:06:20 +0200 Subject: [PATCH] [modules/github] Add rudimentary GitHub unread messages module --- bumblebee/modules/github.py | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 bumblebee/modules/github.py diff --git a/bumblebee/modules/github.py b/bumblebee/modules/github.py new file mode 100644 index 0000000..a558f34 --- /dev/null +++ b/bumblebee/modules/github.py @@ -0,0 +1,47 @@ +# pylint: disable=C0111,R0903 + +"""Displays the unread github requests of a user + +Requires the following executable: + * curl + +Parameters: + * github.token: GitHub user access token + * github.interval: Interval in minutes +""" + +import bumblebee.input +import bumblebee.output +import bumblebee.engine +import re +import time + +class Module(bumblebee.engine.Module): + def __init__(self, engine, config): + super(Module, self).__init__(engine, config, + bumblebee.output.Widget(full_text=self.github) + ) + self._count = 0 + self._interval = int(self.parameter("interval", "5")) + self._nextcheck = 0 + + def github(self, widget): + return self._count + + def update(self, widgets): + if self._nextcheck < int(time.time()): + self._nextcheck = int(time.time()) + self._interval * 60 + token = self.parameter("token", "") + + if not token: + self._count = 0 + return + + result = bumblebee.util.execute("curl -s https://api.github.com/notifications\?access_token\=" + token) + + pattern = 'unread' + lines = '\n'.join(re.findall(r'^.*%s.*?$'%pattern,result,flags=re.M)) + + self._count = len(lines.split('\n')) + +# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4