76 lines
No EOL
2.6 KiB
TypeScript
76 lines
No EOL
2.6 KiB
TypeScript
import type LoginViewModel from "../models/account/LoginViewModel";
|
|
import type RegisterViewModel from "../models/account/RegisterViewModel";
|
|
import Config from "../objects/Config";
|
|
import Session from "../objects/Session";
|
|
import UserService from "../services/UserService";
|
|
import Controller from "./Controller";
|
|
|
|
export default class AccountController extends Controller {
|
|
public async Login_Get_AllowAnonymous() {
|
|
return this.view();
|
|
}
|
|
|
|
public async Login_Post_AllowAnonymous(loginViewModel: LoginViewModel) {
|
|
if (typeof(loginViewModel.username) !== "string" || typeof(loginViewModel.password) !== "string") {
|
|
return this.badRequest();
|
|
}
|
|
|
|
const user = await UserService.AuthenticateUser(loginViewModel.username, loginViewModel.password);
|
|
if (!user) {
|
|
loginViewModel.password = "";
|
|
loginViewModel.message = "Username or Password is incorrect";
|
|
|
|
return this.view(loginViewModel);
|
|
}
|
|
|
|
Session.AssignUserSession(this.res, user);
|
|
|
|
return this.redirectToAction("index", "home");
|
|
}
|
|
|
|
public async Register_Get_AllowAnonymous() {
|
|
return this.view();
|
|
}
|
|
|
|
public async Register_Post_AllowAnonymous(registerViewModel: RegisterViewModel) {
|
|
if (typeof(registerViewModel.username) !== "string" || typeof(registerViewModel.password) !== "string" || typeof(registerViewModel.registerKey) !== "string" || typeof(registerViewModel.password2) !== "string" || typeof(registerViewModel.email) !== "string") {
|
|
return this.badRequest();
|
|
}
|
|
|
|
if (registerViewModel.registerKey !== Config.accounts.signup.key) {
|
|
registerViewModel.password = "";
|
|
registerViewModel.password2 = "";
|
|
registerViewModel.message = "Incorrect Registration Key.";
|
|
|
|
return this.view(registerViewModel);
|
|
}
|
|
|
|
const username = registerViewModel.username.replaceAll("<", "<").replaceAll(">", ">");
|
|
if (!await UserService.CreateUser(1, username, registerViewModel.email.trim(), registerViewModel.password)) {
|
|
registerViewModel.password = "";
|
|
registerViewModel.password2 = "";
|
|
registerViewModel.message = "Sorry! That username is already taken.";
|
|
|
|
return this.view(registerViewModel);
|
|
}
|
|
|
|
const user = await UserService.GetUserByUsername(username);
|
|
if (!user) {
|
|
registerViewModel.password = "";
|
|
registerViewModel.password2 = "";
|
|
registerViewModel.message = "Failed to create your account, please try again later.";
|
|
|
|
return this.view(registerViewModel);
|
|
}
|
|
|
|
Session.AssignUserSession(this.res, user);
|
|
|
|
return this.redirectToAction("index", "home");
|
|
}
|
|
|
|
public async Logout_Get_AllowAnonymous() {
|
|
Session.Clear(this.req.cookies, this.res);
|
|
|
|
return this.redirectToAction("index", "home");
|
|
}
|
|
} |