本文整理匯總了Python中models.user.UserModel.update_password方法的典型用法代碼示例。如果您正苦於以下問題:Python UserModel.update_password方法的具體用法?Python UserModel.update_password怎麽用?Python UserModel.update_password使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.user.UserModel
的用法示例。
在下文中一共展示了UserModel.update_password方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: put
# 需要導入模塊: from models.user import UserModel [as 別名]
# 或者: from models.user.UserModel import update_password [as 別名]
def put(self):
args = self.get_json_arguments()
old_password, password, re_password = get_and_valid_arguments(args, 'old_password', 'password', 're_password')
old_password = md5_password(old_password)
if self.current_user.password != old_password:
print u'密碼不對'
print self.current_user.password, old_password
self.finish_json(1, u'舊密碼不正確')
return
if (not password) or (not re_password):
print u'請輸入正確密碼'
self.finish_json(1, u'請輸入正確密碼')
return
if password != re_password:
print u'兩次密碼不一致'
self.finish_json(1, u'兩次密碼不一致')
return
if md5_password(password) == self.current_user.password:
print u'新密碼和舊密碼相同'
self.finish_json(1, u'新密碼和舊密碼相同')
return
UserModel.update_password(self.db, self.current_user.merchant_id, self.current_user.username, password)
self.clear_cookie('username')
self.clear_cookie('merchant_id')
self.finish_json(0, '修改成功')
示例2: modify_merchant
# 需要導入模塊: from models.user import UserModel [as 別名]
# 或者: from models.user.UserModel import update_password [as 別名]
def modify_merchant(self, id, name, type, admin_pwd, root_pwd):
merchant = MerchantModel.get_by_id(self.db, id)
if not merchant:
raise JsonException(errcode=404, errmsg="merchant not fount")
else:
merchant.update(self.db, name, type)
if admin_pwd:
UserModel.update_password(self.db, merchant.id, 'admin', admin_pwd)
if root_pwd:
UserModel.update_password(self.db, merchant.id, 'root', root_pwd)
return merchant