mirror of
https://github.com/aljazceru/ditto.git
synced 2026-02-19 04:04:20 +01:00
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
import { HTTPException } from '@hono/hono/http-exception';
|
|
import { NSecSigner } from '@nostrify/nostrify';
|
|
import { nip19 } from 'nostr-tools';
|
|
|
|
import { AppMiddleware } from '@/app.ts';
|
|
import { Conf } from '@/config.ts';
|
|
import { ConnectSigner } from '@/signers/ConnectSigner.ts';
|
|
import { ReadOnlySigner } from '@/signers/ReadOnlySigner.ts';
|
|
import { Storages } from '@/storages.ts';
|
|
import { aesDecrypt } from '@/utils/aes.ts';
|
|
import { getTokenHash } from '@/utils/auth.ts';
|
|
|
|
/** We only accept "Bearer" type. */
|
|
const BEARER_REGEX = new RegExp(`^Bearer (${nip19.BECH32_REGEX.source})$`);
|
|
|
|
/** Make a `signer` object available to all controllers, or unset if the user isn't logged in. */
|
|
export const signerMiddleware: AppMiddleware = async (c, next) => {
|
|
const header = c.req.header('authorization');
|
|
const match = header?.match(BEARER_REGEX);
|
|
|
|
if (match) {
|
|
const [_, bech32] = match;
|
|
|
|
if (bech32.startsWith('token1')) {
|
|
try {
|
|
const kysely = await Storages.kysely();
|
|
const tokenHash = await getTokenHash(bech32 as `token1${string}`);
|
|
|
|
const { pubkey: userPubkey, bunker_pubkey: bunkerPubkey, nip46_sk_enc, nip46_relays } = await kysely
|
|
.selectFrom('auth_tokens')
|
|
.select(['pubkey', 'bunker_pubkey', 'nip46_sk_enc', 'nip46_relays'])
|
|
.where('token_hash', '=', tokenHash)
|
|
.executeTakeFirstOrThrow();
|
|
|
|
const nep46Seckey = await aesDecrypt(Conf.seckey, nip46_sk_enc);
|
|
|
|
c.set(
|
|
'signer',
|
|
new ConnectSigner({
|
|
bunkerPubkey,
|
|
userPubkey,
|
|
signer: new NSecSigner(nep46Seckey),
|
|
relays: nip46_relays,
|
|
}),
|
|
);
|
|
} catch {
|
|
throw new HTTPException(401);
|
|
}
|
|
} else {
|
|
try {
|
|
const decoded = nip19.decode(bech32!);
|
|
|
|
switch (decoded.type) {
|
|
case 'npub':
|
|
c.set('signer', new ReadOnlySigner(decoded.data));
|
|
break;
|
|
case 'nprofile':
|
|
c.set('signer', new ReadOnlySigner(decoded.data.pubkey));
|
|
break;
|
|
case 'nsec':
|
|
c.set('signer', new NSecSigner(decoded.data));
|
|
break;
|
|
}
|
|
} catch {
|
|
throw new HTTPException(401);
|
|
}
|
|
}
|
|
}
|
|
|
|
await next();
|
|
};
|