firefish/packages/backend/src/misc/gen-id.ts

27 lines
863 B
TypeScript
Raw Normal View History

2023-07-20 04:17:05 +09:00
import config from "@/config/index.js";
import {
nativeCreateId,
nativeInitIdGenerator,
2023-08-10 04:45:41 +09:00
nativeGetTimestamp,
2023-07-20 04:17:05 +09:00
} from "native-utils/built/index.js";
const length = Math.min(Math.max(config.cuid?.length ?? 16, 16), 24);
const fingerprint = config.cuid?.fingerprint ?? "";
nativeInitIdGenerator(length, fingerprint);
/**
* The generated ID results in the form of `[8 chars timestamp] + [cuid2]`.
* The minimum and maximum lengths are 16 and 24, respectively.
* With the length of 16, namely 8 for cuid2, roughly 1427399 IDs are needed
* in the same millisecond to reach 50% chance of collision.
*
* Ref: https://github.com/paralleldrive/cuid2#parameterized-length
*/
export function genId(date?: Date): string {
return nativeCreateId((date ?? new Date()).getTime());
}
2023-08-10 04:45:41 +09:00
export function getTimestamp(id: string): number {
return nativeGetTimestamp(id);
}