This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2PTUT/superTornado.py

98 lines
3.3 KiB
Python
Raw Normal View History

2014-02-27 14:43:58 +00:00
import tornado.ioloop
import tornado.web
2014-02-27 15:55:33 +00:00
import tornado.httpserver
import tornado.websocket
from tornado.ioloop import PeriodicCallback
from session import *
2014-02-27 18:57:53 +00:00
from loadConf import *
2014-02-27 19:06:37 +00:00
from login import *
2014-02-27 14:43:58 +00:00
2014-02-27 18:55:43 +00:00
confAveug = False
2014-02-27 19:06:37 +00:00
ficLog = Login()
2014-02-27 21:45:07 +00:00
2014-02-27 21:39:19 +00:00
settings = {}
settings["session_secret"] = 'some secret password!!'
settings["session_dir"] = 'sessions' # the directory to store sessions in
2014-02-27 21:41:25 +00:00
session= Session()
2014-02-27 21:45:07 +00:00
application.session_manager = TornadoSessionManager(settings["session_secret"], settings["session_dir"])
2014-02-27 18:55:43 +00:00
2014-02-27 15:06:38 +00:00
class MainHandler(tornado.web.RequestHandler):
def __init__ (self) :
self.session = session.TornadoSession(self.application.session_manager, self)
2014-02-27 15:06:38 +00:00
def get(self):
self.render("index.html")
def post(self):
2014-02-27 17:43:55 +00:00
iden = self.get_argument("id","")
mdp = self.get_argument("mdp","")
2014-02-27 19:06:37 +00:00
login = Login()
autorise = login.connexion(iden, mdp)
2014-02-27 19:09:53 +00:00
#maison = httplib.HTTPConnection("192.168.16.150", 80)
2014-02-27 19:06:37 +00:00
if autorise == True:
2014-02-27 19:15:11 +00:00
ficLog.enregDansLog(iden,"Authorized user connection","IP TO DO")
2014-02-27 19:06:37 +00:00
if confAveug == True:
print '->Send audio alarm authorized user'
print 'maison.request("GET", "micom/say.php?source=toto&text=Connection%20a%20la%20camera%20autorisee")'
else:
print '->Send visual alarm authorized user'
print 'maison.request("GET", "micom/lamp.php?room=salon1&order=1")'
print "->Send to client authorized user access"
self.session['blah'] = 1234
self.save()
blah = self.session['blah']
self.write(blah)
2014-02-27 19:06:37 +00:00
2014-02-27 19:10:46 +00:00
else:
2014-02-27 19:15:11 +00:00
ficLog.enregDansLog(iden,"Unauthorized user connection","IP TO DO")
2014-02-27 19:06:37 +00:00
if confAveug == True:
print '->Send audio alarm unauthorized user'
print 'maison.request("GET", "micom/say.php?source=toto&text=Connection%20a%20la%20camera%20non%20autorisee")'
else:
print '->Send visual alarm unauthorized user'
print 'maison.request("GET", "micom/lamp.php?room=salon1&order=1")'
print "->Send to client unauthorized user access"
2014-02-27 19:53:48 +00:00
self.write("Unauthorized user access")
2014-02-27 16:56:39 +00:00
2014-02-27 19:53:48 +00:00
class VideoHandler(tornado.web.RequestHandler):
def get(self):
self.render("test.html")
2014-02-27 20:39:39 +00:00
class WSHandler(tornado.websocket.WebSocketHandler):
def open(self, *args):
self.id = self.get_argument("Id")
self.stream.set_nodelay(True)
clients[self.id] = {"id": self.id, "object": self}
def on_message(self, message):
"""
when we receive some message we want some message handler..
for this example i will just print message to console
"""
print "Client %s received a message : %s" % (self.id, message)
def on_close(self):
if self.id in clients:
del clients[self.id]
2014-02-27 16:56:39 +00:00
2014-02-27 14:43:58 +00:00
2014-02-27 15:06:38 +00:00
application = tornado.web.Application([
(r"/", MainHandler),
2014-02-27 19:54:51 +00:00
(r"/video", VideoHandler),
(r"/test", WSHandler),
2014-02-27 15:06:38 +00:00
])
2014-02-27 14:43:58 +00:00
2014-02-27 14:51:19 +00:00
if __name__ == "__main__":
2014-02-27 18:57:53 +00:00
hand = LoadConf()
2014-02-27 18:55:43 +00:00
confAveug = hand.estAveugle()
2014-02-27 18:56:31 +00:00
if confAveug == True:
print "->Blind unhabitant system configuration"
else :
print "->Not blind unhabitant system configuration"
2014-02-27 18:57:53 +00:00
2014-02-27 15:56:43 +00:00
http_server = tornado.httpserver.HTTPServer(application)
2014-02-27 15:53:58 +00:00
http_server.listen(80)
2014-02-27 15:06:38 +00:00
tornado.ioloop.IOLoop.instance().start()