我可能忽视了一些简单的事情,但我无法让Cherrypy SessionAuth工作。
启用debug并且在cherrypy.session中没有用户名,SessionAuth将其放在日志文件中:
[20/Feb/2013:00:58:39] TOOLS.SESSAUTH No username, routing to login_screen with from_page 'http://localhost:8080/'
问题是它没有路由到登录屏幕。它返回true给调用者,调用者继续执行。它还将cherrypy.serving.response.body设置为一个呈现给登录页面的html片段。但我的调用函数对response.body一无所知。
我做错了什么?
以下是root.py中的相关代码:
class MySessionAuth(cptools.SessionAuth):
def check_username_and_password(self, username, password):
users = dict(foo="bar")
if username in users and password == users[username]:
return False
def on_check(self, username):
cherrypy.session['username'] = username
def session_auth(**kwargs):
sa = MySessionAuth()
for k, v in kwargs.items():
setattr(sa, k, v)
return sa.run()
cherrypy.tools.protect = cherrypy._cptools.Tool('before_handler', session_auth)
class Root:
@cherrypy.expose()
@cherrypy.tools.protect(debug=True)
def index(self):
tmpl = loader.load('index.html')
return tmpl.generate(flash = '',).render('html', doctype='html')
答案 0 :(得分:2)
如果您想通过密码而不仅仅是某些资源来保护整个应用程序,您可以为check_username_and_password创建自定义函数,并在应用程序配置中指向check_username_and_password。 要添加的配置行就像这样
'tools.session_auth.check_username_and_password':check_username_and_password
然后只需使用上面提到的自定义check_username_and_password即可。
这是一个完整的示例,它将保护应用程序中的所有资源
import cherrypy
from datetime import datetime
user_dict={'peter':'password','joe':'pass1234','tom':'!Sm,23&$fiuD'}
def check_user(username,password):
if user_dict.has_key(username):
if user_dict[username] == password:
return
else:
return 'incorrect password for user'
return 'user does not exist'
class Root:
@cherrypy.expose
def index(self):
cherrypy.session.regenerate()
cherrypy.session['access_datetime'] = datetime.now()
return """Hello protected resource! <br \>
datetime of access was %s
<br /><a href="./logout">Logout</a>"""%cherrypy.session['access_datetime']
@cherrypy.expose
def logout(self):
username = cherrypy.session['username']
cherrypy.session.clear()
return """%s you have been logged out
of the system at datetime %s"""%(username,datetime.now())
_cp_config={'/':{'tools.sessions.on':True,
'tools.sessions.storage_type':'file',
'tools.sessions.storage_path':'./',
'tools.sessions.timeout':60,
'tools.session_auth.on':True,
'tools.session_auth.check_username_and_password':check_user,
}
}
cherrypy.config.update({'server.socket_host':'0.0.0.0',
'server.socket_port':8090})
cherrypy.quickstart(Root(),'/',config=_cp_config)