fix email register

This commit is contained in:
Билай Станислав 2024-12-05 16:50:58 +03:00
parent e41f3faa42
commit 8778c4d725
2 changed files with 31 additions and 2 deletions

View File

@ -81,7 +81,8 @@ class SecureController extends AdminController
$user = $this->userService->getByField('email', $email); $user = $this->userService->getByField('email', $email);
if (!$user){ if (!$user){
$password = md5(microtime() . bin2hex(random_bytes(10)) . time()); $password = bin2hex(random_bytes(8));
UserService::createUserByEmailAndPassword($email, $password); UserService::createUserByEmailAndPassword($email, $password);
$user = $this->userService->getByField('email', $email); $user = $this->userService->getByField('email', $email);
@ -124,7 +125,7 @@ class SecureController extends AdminController
$this->redirect("/admin", code: 302); $this->redirect("/admin", code: 302);
} else { } else {
Flash::setMessage("error", "Wrong code."); Flash::setMessage("error", "Wrong code.");
$this->redirect("/admin/login", code: 302); $this->cgView->render("enter_code.php", ['email' => $_COOKIE["user_email"]]);
} }
} }

View File

@ -51,4 +51,32 @@ class SecureRestController extends RestController
$this->renderApi($res); $this->renderApi($res);
} }
// #[NoReturn] public function actionEmailAuth(): void
// {
// $request = new Request();
// $data = $request->post();
// $model = $this->model->where('email', $data['email'])->first();
// $res = [];
// if ($model) {
// if (password_verify($data["password"], $model->password_hash)) {
// $model->access_token_expires_at = date("Y-m-d H:i:s", strtotime(App::$secure['token_expired_time']));
// $model->access_token = match (App::$secure['token_type']) {
// "JWT" => TokenService::JWT($_ENV['SECRET_KEY'], 'HS256'),
// "md5" => TokenService::md5(),
// "crypt" => TokenService::crypt(),
// "hash" => TokenService::hash('sha256'),
// default => TokenService::random_bytes(20),
// };
//
// $res = [
// "access_token" => $model->access_token,
// "access_token_expires_at" => $model->access_token_expires_at,
// ];
// }
// $model->save();
// }
//
// $this->renderApi($res);
// }
} }