implement forced password change for generated passwords
This commit is contained in:
23
owrx/controllers/profile.py
Normal file
23
owrx/controllers/profile.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from owrx.controllers.admin import AdminController
|
||||
from owrx.users import UserList, DefaultPasswordClass
|
||||
from urllib.parse import parse_qs
|
||||
|
||||
|
||||
class ProfileController(AdminController):
|
||||
def isAuthorized(self):
|
||||
return self.user is not None and self.user.is_enabled() and self.user.must_change_password
|
||||
|
||||
def indexAction(self):
|
||||
self.serve_template("pwchange.html", **self.template_variables())
|
||||
|
||||
def processPwChange(self):
|
||||
data = parse_qs(self.get_body().decode("utf-8"))
|
||||
data = {k: v[0] for k, v in data.items()}
|
||||
userlist = UserList.getSharedInstance()
|
||||
if "password" in data and "confirm" in data and data["password"] == data["confirm"]:
|
||||
self.user.setPassword(DefaultPasswordClass(data["password"]), must_change_password=False)
|
||||
userlist.store()
|
||||
target = self.request.query["ref"][0] if "ref" in self.request.query else "/settings"
|
||||
else:
|
||||
target = "/pwchange"
|
||||
self.send_redirect(target)
|
||||
Reference in New Issue
Block a user