|
|
@ -5,7 +5,8 @@
|
|
|
|
- Alert : Sends an email or Webhook
|
|
|
|
- Alert : Sends an email or Webhook
|
|
|
|
- Apps : Kill, Start
|
|
|
|
- Apps : Kill, Start
|
|
|
|
- Folder: Archive, Delete (all, age, size)
|
|
|
|
- Folder: Archive, Delete (all, age, size)
|
|
|
|
|
|
|
|
By design we are to understand that a message is structured as follows:
|
|
|
|
|
|
|
|
{to,from,content} with content either being an arbitrary stream (or JSON)
|
|
|
|
@TODO:
|
|
|
|
@TODO:
|
|
|
|
- upgrade to python 3.x
|
|
|
|
- upgrade to python 3.x
|
|
|
|
"""
|
|
|
|
"""
|
|
|
@ -14,7 +15,7 @@ from threading import Thread
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import subprocess
|
|
|
|
from monitor import ProcessCounter
|
|
|
|
from monitor import ProcessCounter
|
|
|
|
from utils.transport import QueueListener
|
|
|
|
from utils.transport import QueueListener, QueueWriter
|
|
|
|
class Actor(Thread):
|
|
|
|
class Actor(Thread):
|
|
|
|
def __init__(self,config):
|
|
|
|
def __init__(self,config):
|
|
|
|
Thread.__init__(self)
|
|
|
|
Thread.__init__(self)
|
|
|
@ -38,6 +39,10 @@ class Actor(Thread):
|
|
|
|
return stream
|
|
|
|
return stream
|
|
|
|
def callback(self,channel,method,header,stream):
|
|
|
|
def callback(self,channel,method,header,stream):
|
|
|
|
print [self.getIdentifier(),stream]
|
|
|
|
print [self.getIdentifier(),stream]
|
|
|
|
|
|
|
|
message = json.loads(stream)
|
|
|
|
|
|
|
|
content = message['content']
|
|
|
|
|
|
|
|
sender = message['from']
|
|
|
|
|
|
|
|
self.post(to=sender,content=content)
|
|
|
|
#message = None
|
|
|
|
#message = None
|
|
|
|
#try:
|
|
|
|
#try:
|
|
|
|
#message = json.loads(stream)
|
|
|
|
#message = json.loads(stream)
|
|
|
@ -47,8 +52,22 @@ class Actor(Thread):
|
|
|
|
#if 'id' in message :
|
|
|
|
#if 'id' in message :
|
|
|
|
#if 'payload' in message:
|
|
|
|
#if 'payload' in message:
|
|
|
|
#self.execute(message['payload']
|
|
|
|
#self.execute(message['payload']
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
Sending a message to a queue with parameters to,from,content
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def post(self,**args):
|
|
|
|
|
|
|
|
to = args['to']
|
|
|
|
|
|
|
|
content = args['content']
|
|
|
|
|
|
|
|
message = {"from":self.getIdentifier(),"to":to,"content":content}
|
|
|
|
|
|
|
|
host = self.config['api']
|
|
|
|
|
|
|
|
uid = self.config['key']
|
|
|
|
|
|
|
|
qid = to#self.config['id']
|
|
|
|
|
|
|
|
print [host,uid,qid]
|
|
|
|
|
|
|
|
qwriter = QueueWriter(host=host,uid=uid,qid=qid)
|
|
|
|
|
|
|
|
qwriter.init(qid)
|
|
|
|
|
|
|
|
qwriter.write(label=qid,row="got it")
|
|
|
|
|
|
|
|
#qwriter.close()
|
|
|
|
|
|
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
def run(self):
|
|
|
|
info = {}
|
|
|
|
info = {}
|
|
|
|
host = self.config['api']
|
|
|
|
host = self.config['api']
|
|
|
|