mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
优化登录
This commit is contained in:
parent
ddd01c6f46
commit
a5c2181f6d
@ -43,25 +43,24 @@ class Login extends Controller
|
|||||||
if (AdminService::instance()->isLogin()) {
|
if (AdminService::instance()->isLogin()) {
|
||||||
$this->redirect(sysuri('admin/index/index'));
|
$this->redirect(sysuri('admin/index/index'));
|
||||||
} else {
|
} else {
|
||||||
// 登录验证码
|
|
||||||
$this->captchaType = 'LoginCaptcha';
|
|
||||||
$this->captchaToken = CodeExtend::uniqidDate(18);
|
|
||||||
// 当前运行模式
|
// 当前运行模式
|
||||||
$system = SystemService::instance();
|
$system = SystemService::instance();
|
||||||
$this->developMode = $system->checkRunMode();
|
$this->developMode = $system->checkRunMode();
|
||||||
// 后台背景处理
|
// 后台背景处理
|
||||||
$images = str2arr(sysconf('login_image') ?: '', '|') ?: [
|
$images = str2arr(sysconf('login_image') ?: '', '|') ?: [
|
||||||
$system->uri('/static/theme/img/login/bg1.jpg'),
|
$system->uri('/static/theme/img/login/bg1.jpg'), $system->uri('/static/theme/img/login/bg2.jpg'),
|
||||||
$system->uri('/static/theme/img/login/bg2.jpg'),
|
|
||||||
];
|
];
|
||||||
$this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
|
$this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
|
||||||
// 更新后台域名
|
// 登录验证令牌
|
||||||
$host = "{$this->request->scheme()}://{$this->request->host()}";
|
$this->captchaType = 'LoginCaptcha';
|
||||||
if ($host !== sysconf('base.site_host')) sysconf('base.site_host', $host);
|
$this->captchaToken = CodeExtend::uniqidDate(18);
|
||||||
// 标记验证令牌
|
|
||||||
if (!$this->app->session->get('LoginInputSessionError')) {
|
if (!$this->app->session->get('LoginInputSessionError')) {
|
||||||
$this->app->session->set($this->captchaType, $this->captchaToken);
|
$this->app->session->set($this->captchaType, $this->captchaToken);
|
||||||
}
|
}
|
||||||
|
// 更新后台域名
|
||||||
|
if ($this->request->domain(true) !== sysconf('base.site_host')) {
|
||||||
|
sysconf('base.site_host', $this->request->domain(true));
|
||||||
|
}
|
||||||
// 加载登录模板
|
// 加载登录模板
|
||||||
$this->title = '系统登录';
|
$this->title = '系统登录';
|
||||||
$this->fetch();
|
$this->fetch();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user