X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=update-xmpp-status.py;h=04bd22cac0de9ee56ed82334c9cbebd36b9fa9b0;hb=d73860aa0723724aa86640c099a8e5a925865c93;hp=61615e6ebdf6767252bf1741629b5aa9d7c42985;hpb=7ae9abdec405d0a95dae9bcbddc1a64c6b7f4d29;p=svn42.git diff --git a/update-xmpp-status.py b/update-xmpp-status.py index 61615e6..04bd22c 100755 --- a/update-xmpp-status.py +++ b/update-xmpp-status.py @@ -33,6 +33,7 @@ class UWSConfig: self.config_parser.set('xmpp','recipients_normal','xro@jabber.tittelbach.at otti@wirdorange.org') self.config_parser.set('xmpp','recipients_nooffline','the-equinox@jabber.org') self.config_parser.add_section('msg') + self.config_parser.set('msg','bored',"Somebody is bored and in need of company. Go Visit !") self.config_parser.set('msg','format',"${status_msg}${request_msg}${comment_msg}") self.config_parser.set('msg','status_opened_msg',"RealRaum door now open") self.config_parser.set('msg','status_closed_msg',"RealRaum door now closed") @@ -41,6 +42,8 @@ class UWSConfig: self.config_parser.set('msg','comment_msg',"\s(${comment})") self.config_parser.set('msg','status_still_opened_msg',"Door remains closed") self.config_parser.set('msg','status_still_closed_msg',"Door remains open") + self.config_parser.add_section('tracker') + self.config_parser.set('tracker','socket',"/var/run/tuer/presence.socket") self.config_parser.add_section('debug') self.config_parser.set('debug','enabled',"False") self.config_mtime=0 @@ -187,7 +190,13 @@ def distributeXmppMsg(msg,high_priority=False,debug=False): sendXmppMsg(uwscfg.xmpp_recipients_nooffline, msg, noofflinemsg=(not high_priority)) else: sendXmppMsg(uwscfg.xmpp_recipients_debug, "D: " + msg) - + +def formatAndDistributePresence(presence): + if presence == "yes": + distributeXmppMsg("Somebody is present right now") + else: + distributeXmppMsg("Nobody is here, everybody left") + current_status = (None, None, None) def filterAndFormatMessage(new_status): global current_status @@ -250,32 +259,29 @@ signal.signal(signal.SIGINT, exitHandler) signal.signal(signal.SIGQUIT, exitHandler) logging.info("Update-Xmpp-Status started") - + if len(sys.argv) > 1: - socketfile = sys.argv[1] -else: - socketfile = "/var/run/tuer/door_cmd.socket" - -if len(sys.argv) > 2: - uwscfg = UWSConfig(sys.argv[2]) + uwscfg = UWSConfig(sys.argv[1]) else: uwscfg = UWSConfig() distributeXmppMsg("update-xmpp-status.py started", debug=True) RE_STATUS = re.compile(r'Status: (\w+), idle') RE_REQUEST = re.compile(r'Request: (\w+) (?:Card )?(.+)') +RE_PRESENCE = re.compile(r'Presence: (yes|no)') +RE_BUTTON = re.compile(r'button\d?') RE_ERROR = re.compile(r'Error: (.+)') while True: try: - if not os.path.exists(socketfile): - logging.debug("Socketfile '%s' not found, waiting 5 secs" % socketfile) + if not os.path.exists(uwscfg.tracker_socket): + logging.debug("Socketfile '%s' not found, waiting 5 secs" % uwscfg.tracker_socket) time.sleep(5) continue sockhandle = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) - sockhandle.connect(socketfile) + sockhandle.connect(uwscfg.tracker_socket) conn = os.fdopen(sockhandle.fileno()) - sockhandle.send("listen\n") - sockhandle.send("status\n") + #sockhandle.send("listen\n") + #sockhandle.send("status\n") last_request = (None, None) while True: line = conn.readline() @@ -286,23 +292,34 @@ while True: if line == "": raise Exception("EOF on Socket, daemon seems to have quit") + m = RE_BUTTON.match(line) + if not m is None: + distributeXmppMsg(uwscfg.msg_bored) + continue + m = RE_PRESENCE.match(line) + if not m is None: + formatAndDistributePresence(m.group(1)) + continue m = RE_STATUS.match(line) if not m is None: status = m.group(1) filterAndFormatMessage((status,) + last_request) + last_request = (None, None) + continue m = RE_REQUEST.match(line) if not m is None: last_request = m.group(1,2) - else: - last_request = (None, None) + continue m = RE_ERROR.match(line) if not m is None: errorstr = m.group(1) if "too long!" in errorstr: filterAndFormatMessage(("error",) + last_request) + last_request = (None, None) else: logging.error("Recieved Error: "+errorstr) distributeXmppMsg("Error: "+errorstr, debug=True) + last_request = (None, None) except Exception, ex: logging.error("main: "+str(ex)) try: