import { Raw } from '@dbTools/typeorm' import { User as DbUser } from '@entity/User' import { LogError } from '@/server/LogError' const reservedAlias = [ 'admin', 'email', 'gast', 'gdd', 'gradido', 'guest', 'home', 'root', 'support', 'temp', 'tmp', 'tmp', 'user', 'usr', 'var', ] export const validateAlias = async (alias: string): Promise => { if (alias.length < 3) throw new LogError('Given alias is too short', alias) if (alias.length > 20) throw new LogError('Given alias is too long', alias) /* eslint-disable-next-line security/detect-unsafe-regex */ if (!alias.match(/^[0-9A-Za-z]([_-]?[A-Za-z0-9])+$/)) throw new LogError('Invalid characters in alias', alias) if (reservedAlias.includes(alias.toLowerCase())) throw new LogError('Alias is not allowed', alias) const aliasInUse = await DbUser.find({ where: { alias: Raw((a) => `LOWER(${a}) = "${alias.toLowerCase()}"`) }, }) if (aliasInUse.length !== 0) { throw new LogError('Alias already in use', alias) } }