27 lines
642 B
TypeScript
27 lines
642 B
TypeScript
|
// AID
|
||
|
// 長さ8の[2000年1月1日からの経過ミリ秒をbase36でエンコードしたもの] + 長さnの[ランダムな文字列]
|
||
|
|
||
|
const CHARS = '0123456789abcdefghijklmnopqrstuvwxyz';
|
||
|
const TIME2000 = 946684800000;
|
||
|
|
||
|
function getTime(time: number) {
|
||
|
time = time - TIME2000;
|
||
|
if (time < 0) time = 0;
|
||
|
|
||
|
return time.toString(36);
|
||
|
}
|
||
|
|
||
|
function getRandom(length: number) {
|
||
|
let str = '';
|
||
|
|
||
|
for (let i = 0; i < length; i++) {
|
||
|
str += CHARS[Math.floor(Math.random() * CHARS.length)];
|
||
|
}
|
||
|
|
||
|
return str;
|
||
|
}
|
||
|
|
||
|
export function genAid(date: Date, rand: number): string {
|
||
|
return getTime(date.getTime()).padStart(8, CHARS[0]) + getRandom(rand);
|
||
|
}
|