2015-07-17 23:44:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
2015-07-18 03:17:27 +00:00
|
|
|
# Can't use trollius because then onConnect never gets called
|
2015-07-18 03:33:57 +00:00
|
|
|
# https://github.com/tavendo/AutobahnPython/issues/426
|
2015-07-17 23:44:26 +00:00
|
|
|
import asyncio
|
|
|
|
import aiohttp.web
|
|
|
|
from autobahn.asyncio.websocket import WebSocketServerFactory, WebSocketServerProtocol
|
|
|
|
|
|
|
|
class MyServerProtocol(WebSocketServerProtocol):
|
2015-07-18 02:11:18 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
|
2015-07-17 23:44:26 +00:00
|
|
|
def onConnect(self, request):
|
2015-07-18 02:11:18 +00:00
|
|
|
self.peer = request.peer
|
|
|
|
print("{} connected to WebSocket server".format(self.peer))
|
|
|
|
self.factory.clients.add(self)
|
|
|
|
|
|
|
|
def onClose(self, wasClean, code, reason):
|
|
|
|
print("{} disconnected from WebSocket server".format(self.peer))
|
|
|
|
self.factory.clients.remove(self)
|
|
|
|
|
|
|
|
def onMessage(self, payload, isBinary):
|
|
|
|
print(payload)
|
|
|
|
obj = json.loads(payload.decode('utf-8'))
|
|
|
|
type = obj["type"]
|
|
|
|
if type == "hello" and obj.get("mode"):
|
|
|
|
mode = obj['mode']
|
|
|
|
if mode in ('dashboard', 'grabber'):
|
|
|
|
print("{} set mode {}".format(self.peer, mode))
|
|
|
|
self.mode = mode
|
|
|
|
elif type == "download" or type == "stdout":
|
|
|
|
for client in self.factory.clients:
|
|
|
|
if client.mode == "dashboard":
|
|
|
|
client.sendMessage(json.dumps({
|
|
|
|
"job_data": {
|
|
|
|
"ident": obj["ident"]
|
|
|
|
},
|
|
|
|
"url": obj["url"],
|
|
|
|
"response_code": obj["response_code"],
|
|
|
|
"wget_code": obj["response_message"],
|
|
|
|
"type": type
|
|
|
|
}))
|
2015-07-17 23:44:26 +00:00
|
|
|
|
|
|
|
def onMessage(self, payload, isBinary):
|
|
|
|
print(payload)
|
|
|
|
#self.sendMessage(payload, isBinary)
|
|
|
|
|
|
|
|
|
2015-07-18 02:11:18 +00:00
|
|
|
class MyServerFactory(WebSocketServerFactory):
|
|
|
|
protocol = MyServerProtocol
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.clients = set()
|
|
|
|
|
|
|
|
|
2015-07-17 23:44:26 +00:00
|
|
|
dashboardHtml = open(os.path.join(os.path.dirname(__file__), "dashboard.html"), "rb").read()
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def dashboard(request):
|
|
|
|
return aiohttp.web.Response(body=dashboardHtml)
|
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def httpServer(loop, interface, port):
|
|
|
|
app = aiohttp.web.Application(loop=loop)
|
|
|
|
app.router.add_route('GET', '/', dashboard)
|
|
|
|
|
|
|
|
srv = yield from loop.create_server(app.make_handler(), interface, port)
|
|
|
|
return srv
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
|
|
|
|
httpPort = int(os.environ.get('GRAB_SITE_HTTP_PORT', 29000))
|
|
|
|
httpInterface = os.environ.get('GRAB_SITE_HTTP_INTERFACE', '0.0.0.0')
|
|
|
|
wsPort = int(os.environ.get('GRAB_SITE_WS_PORT', 29001))
|
|
|
|
wsInterface = os.environ.get('GRAB_SITE_WS_INTERFACE', '0.0.0.0')
|
|
|
|
|
|
|
|
httpCoro = httpServer(loop, httpInterface, httpPort)
|
|
|
|
loop.run_until_complete(httpCoro)
|
|
|
|
|
2015-07-18 02:11:18 +00:00
|
|
|
wsFactory = MyServerFactory()
|
2015-07-17 23:44:26 +00:00
|
|
|
wsCoro = loop.create_server(wsFactory, wsInterface, wsPort)
|
|
|
|
loop.run_until_complete(wsCoro)
|
|
|
|
|
2015-07-18 02:11:18 +00:00
|
|
|
print(" HTTP server started on {}:{}".format(httpInterface, httpPort))
|
2015-07-17 23:44:26 +00:00
|
|
|
print("WebSocket server started on {}:{}".format(wsInterface, wsPort))
|
|
|
|
|
|
|
|
loop.run_forever()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|