mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
7808ccf009
-Tests were not brought up to date with some updates that were done to key generator modules. -Apparently original creator had no idea that 'y' is a vowel; fixed this issue and reflected changes in actual files.
25 lines
686 B
JavaScript
25 lines
686 B
JavaScript
//inspiration from pwgen and https://tools.arantius.com/password
|
|
|
|
//helper function to get a random array element
|
|
function randArray(collection){
|
|
return collection[ Math.floor(Math.random() * collection.length) ];
|
|
}
|
|
|
|
const vovels = 'aeiouy';
|
|
const consonants = 'bcdfghjklmnpqrstvwxz';
|
|
|
|
module.exports = class PhoneticKeyGenerator {
|
|
//generate a phonetic key consisting of random consonant & vowel
|
|
createKey(keyLength){
|
|
let text = '';
|
|
const start = Math.floor(Math.random() * 2);
|
|
//start == 0 - starts with consonant
|
|
//start == 1 - starts with vovel
|
|
|
|
for (let i = 0; i < keyLength; i++){
|
|
text += randArray(i % 2 == start ? consonants : vovels);
|
|
}
|
|
return text;
|
|
}
|
|
|
|
};
|