citadel-core/karen
Philipp Walter c144589811
Merge branch 'stable' into c-lightning (#34)
Co-authored-by: Aaron Dewes <aaron.dewes@protonmail.com>
2022-05-25 17:15:47 +02:00

28 lines
681 B
Python
Executable File

#!/usr/bin/env python3
import socket
import os
rootDir = os.path.dirname(os.path.abspath(__file__))
os.chdir(rootDir)
if os.path.exists("events/karen"):
os.remove("events/karen")
server = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
server.bind("events/karen")
while True:
server.listen(1)
conn, addr = server.accept()
datagram = conn.recv(1024)
if datagram:
instructions = datagram.decode("utf-8").strip().split()
cmd = instructions[0]
if(cmd == "trigger"):
trigger = instructions[1]
instructions.pop(0)
instructions.pop(0)
os.system("events/triggers/{} {}".format(trigger, " ".join(instructions)))
conn.close()