Change username generator

This commit is contained in:
7cc5c4f330d47060 2024-10-23 23:37:22 -04:00
parent 140ce538e8
commit 8bbd9a3687
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA

View file

@ -1,4 +1,47 @@
import { randomBytes } from "crypto"; import { randomBytes } from "crypto";
export default function generateUser (legal) { const rsg = function (count) {
return `${parseInt(randomBytes(4).toString("hex"),16).toString(36)}${parseInt(randomBytes(4).toString("hex"),16).toString(36)}` let output = ''
for (let i = 0; i < count; i++) {
const type = Math.floor(Math.random() * 5)
switch (type) {
case 0:
output += '§§'
break
case 1:
output += '§ '
break
case 2:
case 3:
case 4:{ // Make this case more likely
let rng = Math.floor(Math.random() * 16) + 1
if (rng === 7) rng = 17 // No bells
if (rng === 10) rng = 18 // No line feeds
if (rng === 11) rng = 19 // No vertical tabulations
if (rng === 12) rng = 20 // No form feed
if (rng === 13) rng = 21 // No carriage returns
if (rng === 14) rng = 22 // No shift out
if (rng === 15) rng = 23 // No shift in
output += `§${String.fromCharCode(rng)}`
}
}
}
return output
}
const rsgLegal = function (count) {
let output = ''
if (Math.random() > 0.5) {
output += 'uwu_'
} else {
output += 'owo_'
}
output += randomBytes(count).toString('hex')
return output
}
export default function generateUser (legal) {
if (legal) {
return rsgLegal(6)
} else {
return rsg(6 + Math.floor(Math.random() * 3))
}
} }