t00-multiuser/server/services/UserService.ts

232 lines
5.8 KiB
TypeScript
Raw Normal View History

2024-04-22 02:01:14 +01:00
import { Console } from "hsconsole";
2024-09-19 00:41:40 +01:00
import User from "../entities/User";
2024-04-22 02:01:14 +01:00
import UserRepo from "../repos/UserRepo";
import PasswordUtility from "../utilities/PasswordUtility";
2024-09-19 00:41:40 +01:00
import UserParty from "../entities/UserParty";
2024-04-23 17:01:25 +01:00
import UserPartyRepo from "../repos/UserPartyRepo";
2024-09-28 14:31:02 +01:00
import { UserLevel } from "../enums/UserLevel";
2024-04-22 02:01:14 +01:00
export default class UserService {
2024-09-19 00:41:40 +01:00
public static async AuthenticateUser(username:string, password:string) {
try {
const user = await UserRepo.selectByUsername(username);
if (!user) {
return null;
}
if (await PasswordUtility.ValidatePassword(user.PasswordHash, user.PasswordSalt, password)) {
return user;
}
return null;
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-04-22 02:01:14 +01:00
public static async GetUser(id:number) {
try {
return await UserRepo.selectById(id);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
2024-04-23 17:01:25 +01:00
throw e;
2024-04-22 02:01:14 +01:00
}
}
2024-09-26 00:47:08 +01:00
public static async GetAll() {
try {
return await UserRepo.selectAll();
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
public static async GetUserByUsername(username:string) {
try {
return await UserRepo.selectByUsername(username);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
2024-04-23 17:01:25 +01:00
throw e;
}
}
2024-04-25 02:37:37 +01:00
public static async GetUserByAPIKey(apiKey:string) {
try {
return await UserRepo.selectByAPIKey(apiKey);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
public static async GetUserPartyForUser(userId:number, partyId:number) {
try {
return await UserPartyRepo.selectByUserIdPartyId(userId, partyId);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-04-22 02:01:14 +01:00
public static async CreateUser(currentUserId:number, username:string, password:string) {
try {
2024-09-26 00:47:08 +01:00
const existingCheck = await UserRepo.selectByUsername(username);
if (existingCheck) {
return null;
}
2024-04-22 02:01:14 +01:00
const user = new User();
user.Username = username;
user.PasswordSalt = PasswordUtility.GenerateSalt();
user.PasswordHash = await PasswordUtility.HashPassword(user.PasswordSalt, password);
user.CreatedByUserId = currentUserId;
user.CreatedDatetime = new Date();
await UserRepo.insertUpdate(user);
2024-09-26 00:47:08 +01:00
return user;
2024-04-22 02:01:14 +01:00
} catch (e) {
2024-04-23 17:01:25 +01:00
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
2024-04-22 02:01:14 +01:00
}
}
public static async AddUserToParty(userId:number, partyId:number) {
try {
const userParty = new UserParty();
userParty.UserId = userId;
userParty.PartyId = partyId;
userParty.CreatedByUserId = userId;
userParty.CreatedDatetime = new Date();
await UserPartyRepo.insertUpdate(userParty);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
public static async SetActiveParty(currentUserId:number, partyId:number) {
try {
await UserPartyRepo.deactivateAll(currentUserId);
const userParty = await UserPartyRepo.selectByUserIdPartyId(currentUserId, partyId);
if (!userParty) {
return;
}
userParty.IsActive = true;
userParty.LastModifiedByUserId = currentUserId;
userParty.LastModifiedDatetime = new Date();
await UserPartyRepo.insertUpdate(userParty);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
console.log(e);
throw e;
}
}
public static async DeactivateCurrentParty(currentUserId:number) {
try {
await UserPartyRepo.deactivateAll(currentUserId);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
console.log(e);
throw e;
}
}
public static async GetActiveParty(currentUserId:number) {
try {
return await UserPartyRepo.selectActive(currentUserId);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-09-19 00:41:40 +01:00
public static async LeaveParty(currentUserId:number, partyId:number) {
try {
const userParty = await UserPartyRepo.selectByUserIdPartyId(currentUserId, partyId);
if (!userParty) {
return null;
}
userParty.DeletedByUserId = currentUserId;
userParty.DeletedDatetime = new Date();
userParty.IsDeleted = true;
await UserPartyRepo.insertUpdate(userParty);
return userParty;
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-09-26 00:47:08 +01:00
public static async SaveUsername(currentUserId:number, username:string) {
try {
const existingCheck = await UserRepo.selectByUsername(username)
if (existingCheck) {
return null;
}
const user = await UserRepo.selectById(currentUserId);
if (!user) {
return null;
}
user.LastModifiedByUserId = currentUserId;
user.LastModifiedDatetime = new Date();
user.Username = username;
await UserRepo.insertUpdate(user);
return user;
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
public static async GetUserCount() {
try {
return await UserRepo.selectUserCount();
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-09-28 14:31:02 +01:00
public static async SaveUser(currentUserId:number, id:number | undefined, username:string, userLevel:UserLevel) {
try {
const existingCheck = id ? null : await UserRepo.selectByUsername(username);
if (existingCheck) {
return null;
}
let user = id ? await UserRepo.selectById(id) : null;
if (!user) {
user = new User();
user.CreatedByUserId = currentUserId;
user.CreatedDatetime = new Date();
} else {
user.LastModifiedByUserId = currentUserId;
user.LastModifiedDatetime = new Date();
}
user.Username = username;
user.UserLevel = userLevel;
return await UserRepo.insertUpdate(user);
} catch (e) {
Console.printError(`MultiProbe server service error:\n${e}`);
throw e;
}
}
2024-04-22 02:01:14 +01:00
}