mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
Greatly improve id conversion performance
This commit is contained in:
parent
76aa8eeefb
commit
7cb576a535
@ -9,24 +9,16 @@ const chars = '0123456789abcdefghijklmnopqrstuvwxyz';
|
||||
//FIXME: Make this idempotent
|
||||
export function convertId(id: string, target: IdType): string {
|
||||
if (target == IdType.IceshrimpId) {
|
||||
let input = BigInt(id);
|
||||
let result = '';
|
||||
|
||||
while (input !== 0n) {
|
||||
result = chars.at(Number(input % 36n)) + result;
|
||||
input /= 36n;
|
||||
}
|
||||
|
||||
return result;
|
||||
return BigInt(id).toString(36);
|
||||
}
|
||||
else if (target == IdType.MastodonId) {
|
||||
let result = 0n;
|
||||
const iter = id.toLowerCase().split('').reverse();
|
||||
const iter = id.toLowerCase();
|
||||
|
||||
for (let i = 0; i < iter.length; i++){
|
||||
const char = iter[i];
|
||||
if (!chars.includes(char)) throw new Error('Invalid ID');
|
||||
result += BigInt(chars.indexOf(char)) * BigInt(36 ** i);
|
||||
result = result * 36n + BigInt(chars.indexOf(char));
|
||||
}
|
||||
|
||||
return result.toString();
|
||||
|
Loading…
Reference in New Issue
Block a user