From f44761306a44945dbd282489ad17ca1e101a8475 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 18 Nov 2012 19:07:47 +0100 Subject: It works, accept no update loop has be implemented MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- sysrss.py | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 78 insertions(+), 3 deletions(-) diff --git a/sysrss.py b/sysrss.py index fb886a7..3b4c694 100755 --- a/sysrss.py +++ b/sysrss.py @@ -77,6 +77,18 @@ class SysRSS: def __init__(self): self.root = os.getenv('HOME') + '/.sysrss/' self.sysinit() + if not self.initSites(): + exit(255) + if len(self.sites) == 0: + print('There are no sites, update %s.' % (self.root + 'sites')) + exit(254) + + for site in self.sites: + if site.interval < 1: + print('Site %s does not have a positive interval and will therefore only be checked right now.' % site.name) + message = site() + if (message is not None) and (len(message) > 0): + self.publish(site.name, message) @@ -111,7 +123,7 @@ class SysRSS: file.write('\n'.encode('utf-8')) file.write('\n'.encode('utf-8')) file.flush() - printf('Created rss file %s, your should set you news feed aggregator to syndicate this file.\n', self.root + 'maintenance.rss') + printf('Created rss file, %s, your should set you news feed aggregator to syndicate this file.\n', self.root + 'maintenance.rss') flush() self.pubdate = date self.publish('Welcome to SysRSS', 'This is going to be so awesome! 😄 \n\nEx animo\nSysRSS\n\n') @@ -125,6 +137,41 @@ class SysRSS: self.pubdate = data + ''' + Initialise site list + + @return :boolean Whether the program can continue + ''' + def initSites(self): + self.sites = [] + sites = self.sites + sitefile = self.root + 'sites' + if os.path.exists(sitefile): + with open(sitefile, 'rb') as file: + code = file.read().decode('utf8', 'replace') + '\n' + code = compile(code, sitefile, 'exec') + exec(code) + else: + with open(sitefile, 'wb') as file: + file.write('# -*- mode: python, coding: utf-8 -*-\n'.encode('utf-8')) + file.write('\n'.encode('utf-8')) + file.write('# self.sites (alternatively sites) is a list that you\n'.encode('utf-8')) + file.write('# should fill with Site:s, a site descripts a subsystem\n'.encode('utf-8')) + file.write('# that generates updates. Site\'s constructor takes 3\n'.encode('utf-8')) + file.write('# arguments: name, interval, implementation. The first\n'.encode('utf-8')) + file.write('# `name` is the name of the subsystme, it is displayed\n'.encode('utf-8')) + file.write('# as the title on all updates. `interval` is the number\n'.encode('utf-8')) + file.write('# is minutes between update checks. `implementation` is\n'.encode('utf-8')) + file.write('# function or functor that returns an update message,\n'.encode('utf-8')) + file.write('# or an empty string if there are no updates.\n'.encode('utf-8')) + file.write('\n'.encode('utf-8')) + file.flush() + printf('Created site file, %s, you should fill it in and then restart this program.\n', sitefile) + flush() + return False + return True + + ''' Publish a news item to the RSS @@ -148,7 +195,7 @@ class SysRSS: file.write(' System maintenance notification RSS\n'.encode('utf-8')) file.write(' http://localhost/\n'.encode('utf-8')) file.write((' %s\n' % date).encode('utf-8')) - file.write((' %s\n' % self.pubdate).encode('utf-8')) + file.write((' %s\n\n' % self.pubdate).encode('utf-8')) with open(self.root + 'log', 'rb') as logfile: file.write(logfile.read()) file.write(' \n'.encode('utf-8')) @@ -168,7 +215,7 @@ class SysRSS: ''' def makeNews(self, system, message): def makeUglyButReadable(data): - data = data.replace(']]>', ']]>]]') + data = data.replace(']]>', ']]]]>') data = data.replace('\n', '
') # [sic!] return '' return('\n %s\n %s\n %s\n %s\n\n\n' % @@ -220,6 +267,34 @@ class SysRSS: +''' +Subsystem definition class +''' +class Site: + ''' + Constructor + + @param name System name + @param interval:int Generation interval in minutes + @param implementation:()→str Publish message generator, empty string is ignored + ''' + def __init__(self, name, interval, implementation): + self.name = name + self.interval = interval + self.implementation = implementation + + + + ''' + Invocation method + + @return :str Message to publish + ''' + def __call__(self): + return self.implementation() + + + ''' Execute mane method if started using this file ''' -- cgit v1.2.3-70-g09d2