本文整理汇总了Python中models.Account.get_account_with_email方法的典型用法代码示例。如果您正苦于以下问题:Python Account.get_account_with_email方法的具体用法?Python Account.get_account_with_email怎么用?Python Account.get_account_with_email使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Account
的用法示例。
在下文中一共展示了Account.get_account_with_email方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: wrapper
# 需要导入模块: from models import Account [as 别名]
# 或者: from models.Account import get_account_with_email [as 别名]
def wrapper(*args, **kwargs):
if 'Authorization' in request.headers:
basic = request.headers.get('Authorization')[6:]
else:
return INVALID_AUTHORIZATION()
basic = base64.b64decode(basic)
sp = basic.split(":", 1)
if len(sp) != 2:
return INVALID_AUTHORIZATION()
email = sp[0]
password = sp[1]
account = Account.get_account_with_email(g._db, email)
if not account:
return INVALID_USER()
account_password = account.get('password')
if not check_password_hash(account_password, password):
return INVALID_PASSWORD()
g.developer_id = account.get('id')
return f(*args, **kwargs)
示例2: _get_account_by_email
# 需要导入模块: from models import Account [as 别名]
# 或者: from models.Account import get_account_with_email [as 别名]
def _get_account_by_email(db, email):
account = Account.get_account_with_email(db, email)
return account