mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 23:53:08 +02:00
21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
|
import { secureRndstr } from './secure-rndstr.js';
|
||
|
|
||
|
const CHARS = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ'; // [0-9A-Z] w/o [01IO] (32 patterns)
|
||
|
|
||
|
export function generateInviteCode(): string {
|
||
|
const code = secureRndstr(8, {
|
||
|
chars: CHARS,
|
||
|
});
|
||
|
|
||
|
const uniqueId = [];
|
||
|
let n = Math.floor(Date.now() / 1000 / 60);
|
||
|
while (true) {
|
||
|
uniqueId.push(CHARS[n % CHARS.length]);
|
||
|
const t = Math.floor(n / CHARS.length);
|
||
|
if (!t) break;
|
||
|
n = t;
|
||
|
}
|
||
|
|
||
|
return code + uniqueId.reverse().join('');
|
||
|
}
|