AuthController.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Models\DistAdminDistributor;
  4. use Dcat\Admin\Admin;
  5. use Dcat\Admin\Form;
  6. use Dcat\Admin\Http\Controllers\AuthController as BaseAuthController;
  7. use Dcat\Admin\Http\Repositories\Administrator;
  8. use Dcat\Admin\Layout\Content;
  9. use Illuminate\Http\Request;
  10. use Illuminate\Support\Facades\Session;
  11. use Illuminate\Support\Facades\Validator;
  12. class AuthController extends BaseAuthController
  13. {
  14. protected $view = 'admin.pages.login';
  15. /**
  16. * Login interface.重写登录接口
  17. * @param Request $request
  18. * @return
  19. */
  20. public function postLogin(Request $request)
  21. {
  22. $credentials = $request->only([$this->username(), 'password', 'captcha']);
  23. $remember = (bool)$request->input('remember', false);
  24. /** @var \Illuminate\Validation\Validator $validator */
  25. $validator = Validator::make($credentials, [
  26. $this->username() => 'required',
  27. 'password' => 'required',
  28. 'captcha' => 'required',
  29. ]);
  30. if ($request->input('captcha') != Session::get('captcha'))
  31. {
  32. $session_captcha = Session::get('captcha');
  33. //Session::forget('captcha');
  34. return response()->json([
  35. 'success' => false,
  36. 'message' => 'The captcha['.$session_captcha.'] is incorrect. Please refresh the page and try again.',
  37. 'refresh_captcha' => true, // 通知前端刷新验证码
  38. ], 422);; // 422 表示 Unprocessable Entity
  39. }
  40. else
  41. {
  42. //Session::forget('captcha');
  43. }
  44. unset($credentials['captcha']);
  45. if ($validator->fails()) {
  46. return $this->validationErrorsResponse($validator);
  47. }
  48. if ($this->guard()->attempt($credentials, $remember)) {
  49. // 登录成功后返回登录响应
  50. return $this->sendLoginResponse($request);
  51. }
  52. return $this->validationErrorsResponse([
  53. $this->username() => $this->getFailedLoginMessage(),
  54. ]);
  55. }
  56. /**
  57. * 重写登录控制器
  58. * @param Content $content
  59. * @return Content
  60. */
  61. function getLogin(Content $content)
  62. {
  63. $lang = request()->query('lang');
  64. if(!empty($lang))
  65. {
  66. switchLanguage($lang);
  67. return response()->json(['success' => true, 'lang' => $lang]);
  68. }
  69. if ($this->guard()->check()) {
  70. return redirect($this->getRedirectPath());
  71. }
  72. return $content->full()->body(view($this->view));
  73. }
  74. /**
  75. * Model-form for user setting.
  76. *
  77. * @return Form
  78. */
  79. protected function settingForm()
  80. {
  81. return new Form(new Administrator(), function (Form $form) {
  82. $form->action(admin_url('auth/setting'));
  83. $form->disableCreatingCheck();
  84. $form->disableEditingCheck();
  85. $form->disableViewCheck();
  86. $form->tools(function (Form\Tools $tools) {
  87. $tools->disableView();
  88. $tools->disableDelete();
  89. });
  90. $form->display('username', trans('admin.username'));
  91. $form->text('name', trans('admin.name'))->required();
  92. $form->password('old_password', trans('admin.old_password'));
  93. $form->password('password', trans('admin.password'))
  94. ->minLength(5)
  95. ->maxLength(20)
  96. ->customFormat(function ($v) {
  97. if ($v == $this->password) {
  98. return;
  99. }
  100. return $v;
  101. });
  102. $form->password('password_confirmation', trans('admin.password_confirmation'))->same('password');
  103. $form->ignore(['password_confirmation', 'old_password']);
  104. // 添加语言选择的下拉框
  105. // $form->select('language', trans('admin.language'))
  106. // ->options(config('dictionary.languages'))
  107. // ->default('en')
  108. // ->required();; // 设置默认语言
  109. $form->saving(function (Form $form) {
  110. if ($form->password && $form->model()->password != $form->password) {
  111. $form->password = bcrypt($form->password);
  112. }
  113. if (! $form->password) {
  114. $form->deleteInput('password');
  115. }
  116. });
  117. $form->saved(function (Form $form) {
  118. return $form
  119. ->response()
  120. ->success(trans('admin.update_succeeded'))
  121. //->redirect('/');
  122. ->script('setTimeout(() => {location.reload();}, 1000);');//保存成功后刷新页面
  123. });
  124. });
  125. }
  126. }