2021-08-17 17:00:34 +08:00
|
|
|
|
|
|
|
from werkzeug.security import check_password_hash
|
|
|
|
from flask_appbuilder.security.views import AuthDBView
|
|
|
|
from flask_appbuilder.security.views import expose
|
2022-10-11 14:25:25 +08:00
|
|
|
from flask_appbuilder.const import LOGMSG_WAR_SEC_LOGIN_FAILED
|
2021-08-17 17:00:34 +08:00
|
|
|
|
|
|
|
# 推送给管理员消息的函数
|
|
|
|
def push_admin(message):
|
|
|
|
pass
|
|
|
|
|
|
|
|
# 推送消息给用户的函数
|
|
|
|
def push_message(receivers,message,link=None):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import logging as log
|
2022-10-11 14:25:25 +08:00
|
|
|
from flask import flash, g, redirect, request, session
|
2021-08-17 17:00:34 +08:00
|
|
|
from flask_login import login_user, logout_user
|
2022-10-11 14:25:25 +08:00
|
|
|
from flask_appbuilder.security.forms import LoginForm_db
|
2022-11-12 17:40:23 +08:00
|
|
|
import pysnooper
|
2021-08-17 17:00:34 +08:00
|
|
|
|
|
|
|
class MyCustomRemoteUserView():
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Myauthdbview(AuthDBView):
|
|
|
|
login_template = "appbuilder/general/security/login_db.html"
|
|
|
|
|
|
|
|
@expose("/login/", methods=["GET", "POST"])
|
2022-08-08 15:39:44 +08:00
|
|
|
# @pysnooper.snoop(watch_explode=('form',))
|
2021-08-17 17:00:34 +08:00
|
|
|
def login(self):
|
2022-11-09 20:46:52 +08:00
|
|
|
request_data = request.args.to_dict()
|
|
|
|
comed_url = request_data.get('login_url', '')
|
2021-08-17 17:00:34 +08:00
|
|
|
|
|
|
|
if 'rtx' in request.args:
|
|
|
|
if request.args.get('rtx'):
|
|
|
|
username = request.args.get('rtx')
|
|
|
|
user = self.appbuilder.sm.find_user(username)
|
|
|
|
if user:
|
|
|
|
login_user(user, remember=True)
|
|
|
|
return redirect(self.appbuilder.get_url_for_index)
|
|
|
|
|
|
|
|
if g.user is not None and g.user.is_authenticated:
|
|
|
|
return redirect(self.appbuilder.get_url_for_index)
|
|
|
|
|
|
|
|
form = LoginForm_db()
|
|
|
|
# 如果提交请求。就是认证
|
|
|
|
if form.validate_on_submit():
|
|
|
|
username = form.username.data
|
|
|
|
password = form.password.data
|
|
|
|
|
|
|
|
user = self.appbuilder.sm.find_user(username=username)
|
|
|
|
if user is None:
|
|
|
|
user = self.appbuilder.sm.find_user(email=username)
|
|
|
|
if user is None or (not user.is_active):
|
|
|
|
log.info(LOGMSG_WAR_SEC_LOGIN_FAILED.format(username))
|
|
|
|
user = None
|
|
|
|
elif check_password_hash(user.password, password):
|
|
|
|
self.appbuilder.sm.update_user_auth_stat(user, True)
|
2023-09-03 21:17:55 +08:00
|
|
|
elif user.password == password:
|
2021-08-17 17:00:34 +08:00
|
|
|
self.appbuilder.sm.update_user_auth_stat(user, True)
|
|
|
|
else:
|
|
|
|
self.appbuilder.sm.update_user_auth_stat(user, False)
|
|
|
|
log.info(LOGMSG_WAR_SEC_LOGIN_FAILED.format(username))
|
|
|
|
user = None
|
|
|
|
|
|
|
|
if not user:
|
|
|
|
user = self.appbuilder.sm.find_user(form.username.data)
|
|
|
|
if user:
|
|
|
|
# 有用户,但是密码不对
|
2023-09-03 21:17:55 +08:00
|
|
|
flash('发现用户%s已存在,但输入密码不对' % form.username.data, "warning")
|
2021-08-17 17:00:34 +08:00
|
|
|
return redirect(self.appbuilder.get_url_for_login)
|
|
|
|
else:
|
|
|
|
# 没有用户的时候自动注册用户
|
|
|
|
user = self.appbuilder.sm.auth_user_remote_org_user(username=form.username.data, org_name='',
|
|
|
|
password=form.password.data)
|
|
|
|
flash('发现用户%s不存在,已自动注册' % form.username.data, "warning")
|
|
|
|
login_user(user, remember=True)
|
2022-11-09 20:46:52 +08:00
|
|
|
return redirect(comed_url if comed_url else self.appbuilder.get_url_for_index)
|
2021-08-17 17:00:34 +08:00
|
|
|
return self.render_template(
|
|
|
|
self.login_template, title=self.title, form=form, appbuilder=self.appbuilder
|
|
|
|
)
|
|
|
|
|
2022-08-04 14:58:08 +08:00
|
|
|
@expose('/logout')
|
|
|
|
def logout(self):
|
2023-09-03 21:17:55 +08:00
|
|
|
login_url = request.host_url.strip('/') + '/login/'
|
2022-08-04 14:58:08 +08:00
|
|
|
session.pop('user', None)
|
|
|
|
g.user = None
|
|
|
|
logout_user()
|
|
|
|
return redirect(login_url)
|