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

63 lines
2.2 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
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 18:55:43 +00:00
2014-02-27 15:06:38 +00:00
class MainHandler(tornado.web.RequestHandler):
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"
2014-02-27 19:53:48 +00:00
self.write("Authorized user access")
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.write("Authorized user access")
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:53:48 +00:00
(r"/", VideoHandler),
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()