iceshrimp-legacy/packages/backend/src/misc/id/meid.ts

27 lines
458 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
const CHARS = "0123456789abcdef";
2019-04-13 18:40:29 +02:00
function getTime(time: number) {
if (time < 0) time = 0;
if (time === 0) {
return CHARS[0];
}
2019-04-13 18:47:46 +02:00
time += 0x800000000000;
return time.toString(16).padStart(12, CHARS[0]);
2019-04-13 18:40:29 +02:00
}
function getRandom() {
2023-01-13 05:40:33 +01:00
let str = "";
2019-04-13 18:40:29 +02:00
2019-04-13 18:47:46 +02:00
for (let i = 0; i < 12; i++) {
2019-04-13 18:40:29 +02:00
str += CHARS[Math.floor(Math.random() * CHARS.length)];
}
return str;
}
export function genMeid(date: Date): string {
2019-04-20 19:30:18 +02:00
return getTime(date.getTime()) + getRandom();
2019-04-13 18:40:29 +02:00
}