Perf: cache Telegram MTProto Key across build
Some checks failed
Build / Build (push) Has been cancelled
Build / Diff output (push) Has been cancelled
Build / Deploy (push) Has been cancelled

This commit is contained in:
SukkaW
2026-09-02 21:41:10 +08:00
parent cd069a9bd5
commit d189f8d5d6
6 changed files with 310 additions and 18 deletions

View File

@@ -0,0 +1,52 @@
import { describe, it } from 'mocha';
import { expect } from 'earl';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import { randomBytes } from 'node:crypto';
import { createMTProtoAuthKeyStore } from './mtproto-auth-key-store';
function tmpStorePath() {
return path.join(fs.mkdtempSync(path.join(os.tmpdir(), 'mtproto-auth-key-')), 'keys');
}
describe('mtproto auth key store', () => {
it('round-trips a key per DC and survives reopening the directory', async () => {
const dir = tmpStorePath();
const dc1 = randomBytes(256);
const dc2 = randomBytes(256);
const store = createMTProtoAuthKeyStore(dir);
expect(await store.load(1)).toEqual(null);
await store.save(1, dc1);
await store.save(2, dc2);
expect((await store.load(1))?.equals(dc1)).toEqual(true);
expect((await store.load(2))?.equals(dc2)).toEqual(true);
// a fresh handle on the same directory is what the next build sees
const reopened = createMTProtoAuthKeyStore(dir);
expect((await reopened.load(1))?.equals(dc1)).toEqual(true);
});
it('replaces on save and forgets on drop', async () => {
const store = createMTProtoAuthKeyStore(tmpStorePath());
const first = randomBytes(256);
const second = randomBytes(256);
await store.save(4, first);
await store.save(4, second);
expect((await store.load(4))?.equals(second)).toEqual(true);
await store.drop(4);
expect(await store.load(4)).toEqual(null);
// dropping an absent key is a no-op
await store.drop(4);
});
it('treats a key of the wrong size as absent', async () => {
const store = createMTProtoAuthKeyStore(tmpStorePath());
await store.save(5, randomBytes(16));
expect(await store.load(5)).toEqual(null);
});
});

View File

@@ -0,0 +1,48 @@
import path from 'node:path';
import cacache from 'cacache';
import type { Buffer } from 'node:buffer';
import { CACHE_DIR } from '../constants/dir';
export interface MTProtoAuthKeyStore {
load(dcId: number): Promise<Buffer | null>,
save(dcId: number, key: Buffer): Promise<void>,
drop(dcId: number): Promise<void>
}
/** a permanent auth key is exactly 2048 bits */
const AUTH_KEY_BYTES = 256;
const VERIFY_INTERVAL = 30 * 24 * 60 * 60 * 1000;
async function verifyIfStale(cachePath: string) {
const lastRun = await cacache.verify.lastRun(cachePath).catch(() => null);
if (lastRun === null || Date.now() - lastRun.getTime() > VERIFY_INTERVAL) {
await cacache.verify(cachePath);
}
}
const entryKey = (dcId: number) => `dc${dcId}`;
export function createMTProtoAuthKeyStore(cachePath: string): MTProtoAuthKeyStore {
return {
async load(dcId) {
let data: Buffer;
try {
({ data } = await cacache.get(cachePath, entryKey(dcId)));
} catch {
// ENOENT (never negotiated) or EINTEGRITY (corrupt), both mean "no key"
return null;
}
return data.length === AUTH_KEY_BYTES ? data : null;
},
async save(dcId, key) {
await cacache.put(cachePath, entryKey(dcId), key);
await verifyIfStale(cachePath);
},
async drop(dcId) {
await cacache.rm.entry(cachePath, entryKey(dcId));
await verifyIfStale(cachePath);
}
};
}
export const mtprotoAuthKeyStore = createMTProtoAuthKeyStore(path.join(CACHE_DIR, 'telegram-mtproto-auth-keys'));