Tornado - Authentication - tornado.web.authenticated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tornado.ioloop | |
import tornado.web | |
class Main(tornado.web.RequestHandler): | |
def get_current_user(self): | |
return self.get_secure_cookie("user") | |
@tornado.web.authenticated | |
def get(self): | |
## This work is achieved by decorator @tornado.web.authenticated | |
#if not self.current_user: | |
# self.redirect("/login") | |
# return | |
username = self.current_user | |
self.write('Hi there, '+ username) | |
class Login(Main): | |
def get(self): | |
self.render('auth.html') | |
def post(self): | |
self.set_secure_cookie("user", self.get_argument("username")) | |
self.redirect("/") | |
settings = { | |
"cookie_secret":"61oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo=", | |
"login_url":"/login", | |
"debug":"True", | |
} | |
application = tornado.web.Application([ | |
(r"/", Main), | |
(r"/login", Login), | |
(r"/(style\.css)",tornado.web.StaticFileHandler, {"path": "./css/"}), | |
], **settings) | |
if __name__ == "__main__": | |
application.listen(8888) | |
tornado.ioloop.IOLoop.instance().start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing this, it helped me a lot on understanding how tornado handles and manages cookies and cookie_secret passphrase.
The code of the project is here, if you want to checkout. :)
https://bitbucket.org/leopepe/sithlog_kaze/src