コード例 #1
0
ファイル: ajax.php プロジェクト: Torredo/jew
 public function register()
 {
     if ($_SERVER["REQUEST_METHOD"] !== "POST") {
         // Method Not Allowed
         http_response_code(405);
         header("Allow: POST");
         $this->setFieldError("main", "Method Not Allowed");
         return;
     }
     setcookie("sid", "");
     $username = $this->getRequestParam("username");
     $password1 = $this->getRequestParam("password1");
     $password2 = $this->getRequestParam("password2");
     if (empty($username)) {
         $this->setFieldError("username", "Enter the username");
         return;
     }
     if (empty($password1)) {
         $this->setFieldError("password1", "Enter the password");
         return;
     }
     if (empty($password2)) {
         $this->setFieldError("password2", "Confirm the password");
         return;
     }
     if ($password1 !== $password2) {
         $this->setFieldError("password2", "Confirm password is not match");
         return;
     }
     $user = new Auth\User();
     try {
         $new_user_id = $user->create($username, $password1);
     } catch (\Exception $e) {
         $this->setFieldError("username", $e->getMessage());
         return;
     }
     $user->authorize($username, $password1);
     $this->message = sprintf("Hello, %s! Thank you for registration.", $username);
     $this->setResponse("redirect", "callback.php");
     $this->status = "ok";
 }