X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=play-sound-status.py;h=77abfd6ef11e73ccf95ff466c0951ac98b658fef;hb=07a9ad5b9492d70bc3be43821a251f2d892a6ece;hp=f66d37cf04a93c293b189d4b9e45282bd6730c1f;hpb=3cfb06fc9baf71a7bfd1f5e17474e918cf125e85;p=svn42.git diff --git a/play-sound-status.py b/play-sound-status.py index f66d37c..77abfd6 100755 --- a/play-sound-status.py +++ b/play-sound-status.py @@ -138,13 +138,14 @@ class UWSConfig: -def runRemoteCommand(config,args=[]): +def runRemoteCommand(remote_host,remote_shell,args=[]): global sshp,uwscfg sshp = None try: - cmd = "ssh -i /flash/tuer/id_rsa -o PasswordAuthentication=no -o StrictHostKeyChecking=no %RHOST% %RSHELL%".replace("%RHOST%",uwscfg.getValue(config+"_remote_host")).replace("%RSHELL%",uwscfg.getValue(config+"_remote_shell")).replace("%ARG%"," ".join(args)).split(" ") - logging.debug("runRemoteCommand: Executing: "+" ".join(cmd)) - sshp = subprocess.Popen(cmd, bufsize=1024, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False) + cmd = "ssh -i /flash/tuer/id_rsa -o PasswordAuthentication=no -o StrictHostKeyChecking=no %RHOST% %RSHELL%" + cmd = cmd.replace("%RHOST%",remote_host).replace("%RSHELL%",remote_shell).replace("%ARG%", " ".join(args)) + logging.debug("runRemoteCommand: Executing: "+cmd) + sshp = subprocess.Popen(cmd.split(" "), bufsize=1024, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False) logging.debug("runRemoteCommand: pid %d: running=%d" % (sshp.pid,sshp.poll() is None)) if not sshp.poll() is None: logging.error("runRemoteCommand: subprocess %d not started ?, returncode: %d" % (sshp.pid,sshp.returncode)) @@ -167,11 +168,9 @@ def runRemoteCommand(config,args=[]): subprocess.call(["kill","-9",str(sshp.pid)]) time.sleep(5) -def runShellCommand(config,args=[]): +def runShellCommand(cmd,ptimeout,stdinput,args=[]): global uwscfg - cmd = uwscfg.getValue(config+"_cmd").replace("%ARG%"," ".join(args)) - ptimeout = uwscfg.getValue(config+"_timeout") - stdinput = uwscfg.getValue(config+"_stdinput") + cmd = cmd.replace("%ARG%"," ".join(args)) if ptimeout is None or float(ptimeout) > 45: ptimeout = 45 popenTimeout2(cmd,stdinput,float(ptimeout)) @@ -195,9 +194,11 @@ def executeAction(action_name, args=[]): #"registered" actions if action_type == "remotecmd": - return runRemoteCommand(action_type,args) + return runRemoteCommand(uwscfg.getValue(action_name+"_remote_host"), uwscfg.getValue(action_name+"_remote_shell"), args) elif action_type == "shellcmd": - return runShellCommand(action_type,args) + return runShellCommand(cmd=uwscfg.getValue(action_name+"_cmd"), ptimeout=uwscfg.getValue(action_name+"_timeout"), stdinput=uwscfg.getValue(action_name+"_stdinput"), args=args) + elif action_type == "nothing": + return True else: return executeAction(action_type,args) @@ -208,7 +209,7 @@ def playThemeOf(user): if config is None: config=uwscfg.getValue("mapping_default") logging.debug("playThemeOf: action for user %s: %s" % (user,config)) - executeAction(config) + executeAction(config,[]) def popenTimeout1(cmd, pinput, returncode_ok=[0], ptimeout = 20.0, pcheckint = 0.25): logging.debug("popenTimeout1: starting: " + cmd)