本文整理汇总了Python中coprs.logic.users_logic.UsersLogic.get_by_api_login方法的典型用法代码示例。如果您正苦于以下问题:Python UsersLogic.get_by_api_login方法的具体用法?Python UsersLogic.get_by_api_login怎么用?Python UsersLogic.get_by_api_login使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类coprs.logic.users_logic.UsersLogic
的用法示例。
在下文中一共展示了UsersLogic.get_by_api_login方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: decorated_function
# 需要导入模块: from coprs.logic.users_logic import UsersLogic [as 别名]
# 或者: from coprs.logic.users_logic.UsersLogic import get_by_api_login [as 别名]
def decorated_function(*args, **kwargs):
token = None
apt_login = None
if "Authorization" in flask.request.headers:
base64string = flask.request.headers["Authorization"]
base64string = base64string.split()[1].strip()
userstring = base64.b64decode(base64string)
(apt_login, token) = userstring.decode("utf-8").split(":")
token_auth = False
if token and apt_login:
user = UsersLogic.get_by_api_login(apt_login).first()
if (user and user.api_token == token and
user.api_token_expiration >= datetime.date.today()):
token_auth = True
flask.g.user = user
if not token_auth:
output = {
"output": "notok",
"error": "Login invalid/expired. "
"Please visit https://copr.fedoraproject.org/api "
"get or renew your API token.",
}
jsonout = flask.jsonify(output)
jsonout.status_code = 500
return jsonout
return f(*args, **kwargs)