aboutsummaryrefslogtreecommitdiff
path: root/server.py
blob: 766cc5f73d23f0e552315743921e41bfd3633e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import os
import subprocess
import tornado.web
import tornado.ioloop
import tornado.options
import tornado.process
import tornado.template
import tornado.httpserver
from tornado.options import define, options

define("port", default=8888, help="run on the given port", type=int)


STATUSES = {
    'relay1': True,  # Fan
    'relay2': False, # Light
    'relay3': False,
}


# for relay in STATUSES.keys():
#     caller = subprocess.Popen(["ssh","admin@10.0.1.15",
#         "cat /proc/power/{}".format(relay)], stdout=subprocess.PIPE)
#     output = caller.communicate()[0]
#     STATUSES[relay] = output.startswith("1")


class PowerStatusHandler(tornado.web.RequestHandler):

    def get(self):
        self.finish(STATUSES)

    @tornado.web.asynchronous
    def _trigger_relay(self, relay, value):
        STATUSES[relay] = value
        value = 1 if value is True else 0
        tornado.process.Subprocess(["ssh","admin@10.0.1.15",
            "echo {} > /proc/power/{}".format(value, relay)],
                stdout=tornado.process.Subprocess.STREAM)

    def post(self):
        for key, value in self.request.arguments.items():
            self._trigger_relay(key, value[0] == "on")

        self.finish(STATUSES)


class IndexHandler(tornado.web.RequestHandler):

    def get(self):
        self.render("index.html")


class Application(tornado.web.Application):

    def __init__(self):
        handlers = [
            (r"/power-status/?", PowerStatusHandler),
            (r"/?", IndexHandler),
        ]
        settings = dict(
            template_path=os.path.join(os.path.dirname(__file__), "templates"),
            static_path=os.path.join(os.path.dirname(__file__), "static"),
            debug=True,
            autoescape=None,
        )
        tornado.web.Application.__init__(self, handlers, **settings)


if __name__ == "__main__":
    tornado.options.parse_command_line()
    http_server = tornado.httpserver.HTTPServer(Application())
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()