7bd444ade9
This reverts commit c177f0a1b3
.
29 lines
808 B
TypeScript
29 lines
808 B
TypeScript
import { MAX_USERNAME_LENGTH } from "../Enum/EnvironmentVariable";
|
|
|
|
export interface CharacterTexture {
|
|
id: number;
|
|
level: number;
|
|
url: string;
|
|
rights: string;
|
|
}
|
|
|
|
export const maxUserNameLength: number = MAX_USERNAME_LENGTH;
|
|
|
|
export function isUserNameValid(value: unknown): boolean {
|
|
return typeof value === "string" && value.length > 0 && value.length <= maxUserNameLength && /\S/.test(value);
|
|
}
|
|
|
|
export function areCharacterLayersValid(value: string[] | null): boolean {
|
|
if (!value || !value.length) return false;
|
|
for (let i = 0; i < value.length; i++) {
|
|
if (/^\w+$/.exec(value[i]) === null) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export class LocalUser {
|
|
constructor(public readonly uuid: string, public textures: CharacterTexture[]) {}
|
|
}
|