Login.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use think\admin\Controller;
  17. use think\admin\extend\CodeExtend;
  18. use app\data\model\SystemUser;
  19. use think\admin\service\AdminService;
  20. use think\admin\service\CaptchaService;
  21. use think\admin\service\SystemService;
  22. /**
  23. * 用户登录管理
  24. * Class Login
  25. * @package app\admin\controller
  26. */
  27. class Login extends Controller
  28. {
  29. /**
  30. * 后台登录入口
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function index()
  36. {
  37. if ($this->app->request->isGet()) {
  38. if (AdminService::isLogin()) {
  39. $this->redirect(sysuri('admin/index/index'));
  40. } else {
  41. // 当前运行模式
  42. $this->developMode = SystemService::checkRunMode();
  43. // 后台背景处理
  44. $images = str2arr(sysconf('login_image') ?: '', '|') ?: [
  45. SystemService::uri('/static/theme/img/login/bg1.jpg'), SystemService::uri('/static/theme/img/login/bg2.jpg'),
  46. ];
  47. $this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
  48. // 登录验证令牌
  49. $this->captchaType = 'LoginCaptcha';
  50. $this->captchaToken = CodeExtend::uniqidDate(18);
  51. if (!$this->app->session->get('LoginInputSessionError')) {
  52. $this->app->session->set($this->captchaType, $this->captchaToken);
  53. }
  54. // 更新后台域名
  55. if ($this->request->domain(true) !== sysconf('base.site_host')) {
  56. sysconf('base.site_host', $this->request->domain(true));
  57. }
  58. // 加载登录模板
  59. $this->title = '系统登录';
  60. $this->fetch();
  61. }
  62. } else {
  63. $data = $this->_vali([
  64. 'username.require' => '登录账号不能为空!',
  65. 'username.min:4' => '登录账号不能少于4位字符!',
  66. 'password.require' => '登录密码不能为空!',
  67. 'password.min:4' => '登录密码不能少于4位字符!',
  68. 'verify.require' => '图形验证码不能为空!',
  69. 'uniqid.require' => '图形验证标识不能为空!',
  70. 'usertype.require' => ''
  71. ]);
  72. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  73. $this->error('图形验证码验证失败,请重新输入!');
  74. }
  75. /*! 用户信息验证 */
  76. $map = ['username' => $data['username'],'usertype'=>$data['usertype'], 'is_deleted' => 0];
  77. $user = SystemUser::mk()->where($map)->findOrEmpty();
  78. if ($user->isEmpty()) {
  79. $this->app->session->set('LoginInputSessionError', true);
  80. $this->error('登录账号或密码错误,请重新输入!');
  81. }
  82. if (empty($user['status'])) {
  83. $this->app->session->set('LoginInputSessionError', true);
  84. $this->error('账号已经被禁用,请联系管理员!');
  85. }
  86. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  87. $this->app->session->set('LoginInputSessionError', true);
  88. $this->error('登录账号或密码错误,请重新输入!');
  89. }
  90. $this->app->session->set('user', $user->toArray());
  91. $this->app->session->delete('LoginInputSessionError');
  92. $user->inc('login_num')->update([
  93. 'login_at' => date('Y-m-d H:i:s'),
  94. 'login_ip' => $this->app->request->ip(),
  95. ]);
  96. sysoplog('系统用户登录', '登录系统后台成功');
  97. $this->success('登录成功', sysuri('admin/index/index'));
  98. }
  99. }
  100. public function ship(){
  101. if ($this->app->request->isGet()) {
  102. if (AdminService::isLogin()) {
  103. $this->redirect(sysuri('admin/index/index'));
  104. } else {
  105. // 当前运行模式
  106. $this->developMode = SystemService::checkRunMode();
  107. // 后台背景处理
  108. $images = str2arr(sysconf('login_image') ?: '', '|') ?: [
  109. SystemService::uri('/static/theme/img/login/bg1.jpg'), SystemService::uri('/static/theme/img/login/bg2.jpg'),
  110. ];
  111. $this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
  112. // 登录验证令牌
  113. $this->captchaType = 'LoginCaptcha';
  114. $this->captchaToken = CodeExtend::uniqidDate(18);
  115. if (!$this->app->session->get('LoginInputSessionError')) {
  116. $this->app->session->set($this->captchaType, $this->captchaToken);
  117. }
  118. // 更新后台域名
  119. if ($this->request->domain(true) !== sysconf('base.site_host')) {
  120. sysconf('base.site_host', $this->request->domain(true));
  121. }
  122. // 加载登录模板
  123. $this->title = '系统登录';
  124. $this->fetch();
  125. }
  126. } else {
  127. $data = $this->_vali([
  128. 'username.require' => '登录账号不能为空!',
  129. 'username.min:4' => '登录账号不能少于4位字符!',
  130. 'password.require' => '登录密码不能为空!',
  131. 'password.min:4' => '登录密码不能少于4位字符!',
  132. 'verify.require' => '图形验证码不能为空!',
  133. 'uniqid.require' => '图形验证标识不能为空!',
  134. 'usertype.require' => ''
  135. ]);
  136. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  137. $this->error('图形验证码验证失败,请重新输入!');
  138. }
  139. /*! 用户信息验证 */
  140. $map = ['username' => $data['username'],'usertype'=>$data['usertype'], 'is_deleted' => 0];
  141. $user = SystemUser::mk()->where($map)->findOrEmpty();
  142. if ($user->isEmpty()) {
  143. $this->app->session->set('LoginInputSessionError', true);
  144. $this->error('登录账号或密码错误,请重新输入!');
  145. }
  146. if (empty($user['status'])) {
  147. $this->app->session->set('LoginInputSessionError', true);
  148. $this->error('账号已经被禁用,请联系管理员!');
  149. }
  150. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  151. $this->app->session->set('LoginInputSessionError', true);
  152. $this->error('登录账号或密码错误,请重新输入!');
  153. }
  154. $this->app->session->set('user', $user->toArray());
  155. $this->app->session->delete('LoginInputSessionError');
  156. $user->inc('login_num')->update([
  157. 'login_at' => date('Y-m-d H:i:s'),
  158. 'login_ip' => $this->app->request->ip(),
  159. ]);
  160. sysoplog('系统用户登录', '登录系统后台成功');
  161. $this->success('登录成功', sysuri('admin/index/index'));
  162. }
  163. }
  164. public function shipyard(){
  165. if ($this->app->request->isGet()) {
  166. if (AdminService::isLogin()) {
  167. $this->redirect(sysuri('admin/index/index'));
  168. } else {
  169. // 当前运行模式
  170. $this->developMode = SystemService::checkRunMode();
  171. // 后台背景处理
  172. $images = str2arr(sysconf('login_image') ?: '', '|') ?: [
  173. SystemService::uri('/static/theme/img/login/bg1.jpg'), SystemService::uri('/static/theme/img/login/bg2.jpg'),
  174. ];
  175. $this->loginStyle = sprintf('style="background-image:url(%s)" data-bg-transition="%s"', $images[0], join(',', $images));
  176. // 登录验证令牌
  177. $this->captchaType = 'LoginCaptcha';
  178. $this->captchaToken = CodeExtend::uniqidDate(18);
  179. if (!$this->app->session->get('LoginInputSessionError')) {
  180. $this->app->session->set($this->captchaType, $this->captchaToken);
  181. }
  182. // 更新后台域名
  183. if ($this->request->domain(true) !== sysconf('base.site_host')) {
  184. sysconf('base.site_host', $this->request->domain(true));
  185. }
  186. // 加载登录模板
  187. $this->title = '系统登录';
  188. $this->fetch();
  189. }
  190. } else {
  191. $data = $this->_vali([
  192. 'username.require' => '登录账号不能为空!',
  193. 'username.min:4' => '登录账号不能少于4位字符!',
  194. 'password.require' => '登录密码不能为空!',
  195. 'password.min:4' => '登录密码不能少于4位字符!',
  196. 'verify.require' => '图形验证码不能为空!',
  197. 'uniqid.require' => '图形验证标识不能为空!',
  198. 'usertype.require' => ''
  199. ]);
  200. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  201. $this->error('图形验证码验证失败,请重新输入!');
  202. }
  203. /*! 用户信息验证 */
  204. $map = ['username' => $data['username'],'usertype'=>$data['usertype'], 'is_deleted' => 0];
  205. $user = SystemUser::mk()->where($map)->findOrEmpty();
  206. if ($user->isEmpty()) {
  207. $this->app->session->set('LoginInputSessionError', true);
  208. $this->error('登录账号或密码错误,请重新输入!');
  209. }
  210. if (empty($user['status'])) {
  211. $this->app->session->set('LoginInputSessionError', true);
  212. $this->error('账号已经被禁用,请联系管理员!');
  213. }
  214. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  215. $this->app->session->set('LoginInputSessionError', true);
  216. $this->error('登录账号或密码错误,请重新输入!');
  217. }
  218. $this->app->session->set('user', $user->toArray());
  219. $this->app->session->delete('LoginInputSessionError');
  220. $user->inc('login_num')->update([
  221. 'login_at' => date('Y-m-d H:i:s'),
  222. 'login_ip' => $this->app->request->ip(),
  223. ]);
  224. sysoplog('系统用户登录', '登录系统后台成功');
  225. $this->success('登录成功', sysuri('admin/index/index'));
  226. }
  227. }
  228. /**
  229. * 生成验证码
  230. */
  231. public function captcha()
  232. {
  233. $input = $this->_vali([
  234. 'type.require' => '验证码类型不能为空!',
  235. 'token.require' => '验证码标识不能为空!',
  236. ]);
  237. $image = CaptchaService::instance()->initialize();
  238. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  239. if ($this->app->session->get($input['type']) === $input['token']) {
  240. $captcha['code'] = $image->getCode();
  241. $this->app->session->delete($input['type']);
  242. }
  243. $this->success('生成验证码成功', $captcha);
  244. }
  245. /**
  246. * 退出登录
  247. */
  248. public function out()
  249. {
  250. $uid = AdminService::getUserId();
  251. $usertype = SystemUser::mk()->where('id',$uid)->value('usertype');
  252. $this->app->session->clear();
  253. $this->app->session->destroy();
  254. if($usertype == 'admin'){
  255. $this->success('退出登录成功!', sysuri('admin/login/index'));
  256. }elseif($usertype == 'shop'){
  257. $this->success('退出登录成功!', sysuri('admin/login/ship'));
  258. }else{
  259. $this->success('退出登录成功!', sysuri('admin/login/shipyard'));
  260. }
  261. }
  262. }