templating; return $twig->render('auth.login'); } if (!isset($_POST['username'], $_POST['password'])) { return ['error' => "You didn't fill all the forms!"]; } $username = $_POST['username'] ?? ''; $password = $_POST['password'] ?? ''; try { $user = User::where('username', $username)->orWhere('email', $username)->firstOrFail(); } catch (ModelNotFoundException $e) { return ['error' => 'Invalid username or password!']; } if (!$user->validatePassword($password)) { return ['error' => 'Invalid username or password!']; } $session = new Session; $session->user_id = $user->user_id; $session->session_ip = IP::remote(); $session->user_agent = 'Misuzu Testing 1'; $session->expires_on = Carbon::now()->addMonth(); $session->session_key = bin2hex(random_bytes(32)); $session->save(); Application::getInstance()->setSession($session); $this->setCookie('uid', $session->user_id, 604800); $this->setCookie('sid', $session->session_key, 604800); // Temporary key generation for chat login. // Should eventually be replaced with a callback login system. // Also uses different cookies since $httponly is required to be false for these. $user->last_ip = IP::remote(); $user->user_chat_key = bin2hex(random_bytes(16)); $user->save(); setcookie('msz_tmp_id', $user->user_id, time() + 604800, '/', '.flashii.net'); setcookie('msz_tmp_key', $user->user_chat_key, time() + 604800, '/', '.flashii.net'); return ['error' => 'You are now logged in!', 'next' => '/']; } private function setCookie(string $name, string $value, int $expires): void { setcookie( "msz_{$name}", $value, time() + $expires, '/', '', !empty($_SERVER['HTTPS']), true ); } private function hasRegistrations(?string $ipAddr = null): bool { $ipAddr = IP::unpack($ipAddr ?? IP::remote()); if ($ipAddr === IP::unpack('127.0.0.1') || $ipAddr === IP::unpack('::1')) { return false; } if (User::withTrashed()->where('register_ip', $ipAddr)->orWhere('last_ip', $ipAddr)->count()) { return true; } return false; } public function register() { $app = Application::getInstance(); $allowed_to_reg = $app->config->get('Testing', 'public_registration', 'bool', false) || in_array( IP::remote(), explode(' ', $app->config->get('Testing', 'allow_ip_registration', 'string', '127.0.0.1 ::1')) ); if ($_SERVER['REQUEST_METHOD'] === 'GET') { $twig = $app->templating; $twig->vars([ 'has_registrations' => $this->hasRegistrations(), 'allowed_to_register' => $allowed_to_reg, ]); return $twig->render('auth.register'); } if (!$allowed_to_reg) { return [ 'error' => "Nice try, but you'll have to wait a little longer. I appreciate your excitement though!" ]; } if ($this->hasRegistrations()) { return [ 'error' => "Someone already used an account from this IP address!\r\n" . "But don't worry, this is a temporary measure and you'll be able to register sometime soon." ]; } if (!isset($_POST['username'], $_POST['password'], $_POST['email'])) { return ['error' => "You didn't fill all the forms!"]; } $username = $_POST['username'] ?? ''; $username_validate = $this->validateUsername($username); $password = $_POST['password'] ?? ''; $email = $_POST['email'] ?? ''; if ($username_validate !== '') { return ['error' => $username_validate]; } try { $existing = User::where('username', $username)->firstOrFail(); if ($existing->user_id > 0) { return ['error' => 'This username is already taken!']; } } catch (ModelNotFoundException $e) { } if (!filter_var($email, FILTER_VALIDATE_EMAIL) || !check_mx_record($email)) { return ['error' => 'The e-mail address you entered is invalid!']; } try { $existing = User::where('email', $email)->firstOrFail(); if ($existing->user_id > 0) { return ['error' => 'This e-mail address has already been used!']; } } catch (ModelNotFoundException $e) { } if (password_entropy($password) < 32) { return ['error' => 'Your password is considered too weak!']; } User::createUser($username, $password, $email); return ['error' => 'Welcome to Flashii! You may now log in.', 'next' => '/auth/login']; } public function logout() { $app = Application::getInstance(); if ($app->session === null) { echo "You aren't logged in."; } else { echo "You've been logged out."; $this->setCookie('uid', '', -3600); $this->setCookie('sid', '', -3600); $app->session->delete(); $app->session = null; } return ''; } private function validateUsername(string $username): string { $username_length = strlen($username); if (($username ?? '') !== trim($username)) { return 'Your username may not start or end with spaces!'; } if ($username_length < 3) { return "Your username is too short, it has to be at least 3 characters!"; } if ($username_length > 16) { return "Your username is too long, it can't be longer than 16 characters!"; } if (strpos($username, ' ') !== false || !preg_match('#^[A-Za-z0-9-\[\]_ ]+$#u', $username)) { return 'Your username contains invalid characters.'; } if (strpos($username, '_') !== false && strpos($username, ' ') !== false) { return 'Please use either underscores or spaces, not both!'; } return ''; } }