|
@@ -103,6 +103,136 @@ class Login extends Controller
|
|
|
$this->success('登录成功', sysuri('admin/index/index'));
|
|
|
}
|
|
|
}
|
|
|
+ public function ship(){
|
|
|
+ if ($this->app->request->isGet()) {
|
|
|
+ if (AdminService::isLogin()) {
|
|
|
+ $this->redirect(sysuri('admin/index/index'));
|
|
|
+ } else {
|
|
|
+ // 当前运行模式
|
|
|
+ $this->developMode = SystemService::checkRunMode();
|
|
|
+ // 后台背景处理
|
|
|
+ $images = str2arr(sysconf('login_image') ?: '', '|') ?: [
|
|
|
+ SystemService::uri('/static/theme/img/login/bg1.jpg'), SystemService::uri('/static/theme/img/login/bg2.jpg'),
|
|
|
+ ];
|
|
|
+ $this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
|
|
|
+ // 登录验证令牌
|
|
|
+ $this->captchaType = 'LoginCaptcha';
|
|
|
+ $this->captchaToken = CodeExtend::uniqidDate(18);
|
|
|
+ if (!$this->app->session->get('LoginInputSessionError')) {
|
|
|
+ $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->fetch();
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ $data = $this->_vali([
|
|
|
+ 'username.require' => '登录账号不能为空!',
|
|
|
+ 'username.min:4' => '登录账号不能少于4位字符!',
|
|
|
+ 'password.require' => '登录密码不能为空!',
|
|
|
+ 'password.min:4' => '登录密码不能少于4位字符!',
|
|
|
+ 'verify.require' => '图形验证码不能为空!',
|
|
|
+ 'uniqid.require' => '图形验证标识不能为空!',
|
|
|
+ 'usertype.require' => ''
|
|
|
+ ]);
|
|
|
+
|
|
|
+ if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
|
|
|
+ $this->error('图形验证码验证失败,请重新输入!');
|
|
|
+ }
|
|
|
+ /*! 用户信息验证 */
|
|
|
+ $map = ['username' => $data['username'],'usertype'=>$data['usertype'], 'is_deleted' => 0];
|
|
|
+ $user = SystemUser::mk()->where($map)->findOrEmpty();
|
|
|
+ if ($user->isEmpty()) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('登录账号或密码错误,请重新输入!');
|
|
|
+ }
|
|
|
+ if (empty($user['status'])) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('账号已经被禁用,请联系管理员!');
|
|
|
+ }
|
|
|
+ if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('登录账号或密码错误,请重新输入!');
|
|
|
+ }
|
|
|
+ $this->app->session->set('user', $user->toArray());
|
|
|
+ $this->app->session->delete('LoginInputSessionError');
|
|
|
+ $user->inc('login_num')->update([
|
|
|
+ 'login_at' => date('Y-m-d H:i:s'),
|
|
|
+ 'login_ip' => $this->app->request->ip(),
|
|
|
+ ]);
|
|
|
+ sysoplog('系统用户登录', '登录系统后台成功');
|
|
|
+ $this->success('登录成功', sysuri('admin/index/index'));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ public function shipyard(){
|
|
|
+ if ($this->app->request->isGet()) {
|
|
|
+ if (AdminService::isLogin()) {
|
|
|
+ $this->redirect(sysuri('admin/index/index'));
|
|
|
+ } else {
|
|
|
+ // 当前运行模式
|
|
|
+ $this->developMode = SystemService::checkRunMode();
|
|
|
+ // 后台背景处理
|
|
|
+ $images = str2arr(sysconf('login_image') ?: '', '|') ?: [
|
|
|
+ SystemService::uri('/static/theme/img/login/bg1.jpg'), SystemService::uri('/static/theme/img/login/bg2.jpg'),
|
|
|
+ ];
|
|
|
+ $this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
|
|
|
+ // 登录验证令牌
|
|
|
+ $this->captchaType = 'LoginCaptcha';
|
|
|
+ $this->captchaToken = CodeExtend::uniqidDate(18);
|
|
|
+ if (!$this->app->session->get('LoginInputSessionError')) {
|
|
|
+ $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->fetch();
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ $data = $this->_vali([
|
|
|
+ 'username.require' => '登录账号不能为空!',
|
|
|
+ 'username.min:4' => '登录账号不能少于4位字符!',
|
|
|
+ 'password.require' => '登录密码不能为空!',
|
|
|
+ 'password.min:4' => '登录密码不能少于4位字符!',
|
|
|
+ 'verify.require' => '图形验证码不能为空!',
|
|
|
+ 'uniqid.require' => '图形验证标识不能为空!',
|
|
|
+ 'usertype.require' => ''
|
|
|
+ ]);
|
|
|
+
|
|
|
+ if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
|
|
|
+ $this->error('图形验证码验证失败,请重新输入!');
|
|
|
+ }
|
|
|
+ /*! 用户信息验证 */
|
|
|
+ $map = ['username' => $data['username'],'usertype'=>$data['usertype'], 'is_deleted' => 0];
|
|
|
+ $user = SystemUser::mk()->where($map)->findOrEmpty();
|
|
|
+ if ($user->isEmpty()) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('登录账号或密码错误,请重新输入!');
|
|
|
+ }
|
|
|
+ if (empty($user['status'])) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('账号已经被禁用,请联系管理员!');
|
|
|
+ }
|
|
|
+ if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
|
|
|
+ $this->app->session->set('LoginInputSessionError', true);
|
|
|
+ $this->error('登录账号或密码错误,请重新输入!');
|
|
|
+ }
|
|
|
+ $this->app->session->set('user', $user->toArray());
|
|
|
+ $this->app->session->delete('LoginInputSessionError');
|
|
|
+ $user->inc('login_num')->update([
|
|
|
+ 'login_at' => date('Y-m-d H:i:s'),
|
|
|
+ 'login_ip' => $this->app->request->ip(),
|
|
|
+ ]);
|
|
|
+ sysoplog('系统用户登录', '登录系统后台成功');
|
|
|
+ $this->success('登录成功', sysuri('admin/index/index'));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 生成验证码
|
|
@@ -127,8 +257,16 @@ class Login extends Controller
|
|
|
*/
|
|
|
public function out()
|
|
|
{
|
|
|
+ $uid = AdminService::getUserId();
|
|
|
+ $usertype = SystemUser::mk()->where('id',$uid)->value('usertype');
|
|
|
$this->app->session->clear();
|
|
|
$this->app->session->destroy();
|
|
|
- $this->success('退出登录成功!', sysuri('admin/login/index'));
|
|
|
+ if($usertype == 'admin'){
|
|
|
+ $this->success('退出登录成功!', sysuri('admin/login/index'));
|
|
|
+ }elseif($usertype == 'shop'){
|
|
|
+ $this->success('退出登录成功!', sysuri('admin/login/ship'));
|
|
|
+ }else{
|
|
|
+ $this->success('退出登录成功!', sysuri('admin/login/shipyard'));
|
|
|
+ }
|
|
|
}
|
|
|
}
|