Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add custom prefix for session key #665

Merged
merged 7 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions src/convenience/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ export interface SessionOptions<S, C extends Context = Context> {
* session data.
*/
initial?: () => S;
/**
* A optional prefix to prepend to the session key after it was generated.
KnorpelSenf marked this conversation as resolved.
Show resolved Hide resolved
*
* This makes it easier to store session data under a namespace. You can
* technically achieve the same functionality by returning an already
* prefixed key from `getSessionKey`. This option is merely more convenient,
* as it does not require you to think about session key generation.
*/
prefix?: string;
/**
* This option lets you generate your own session keys per context object.
* The session key determines how to map the different session objects to
Expand Down Expand Up @@ -424,15 +433,28 @@ class PropertySession<O extends {}, P extends keyof O> {
}

function fillDefaults<S, C extends Context>(opts: SessionOptions<S, C> = {}) {
let { getSessionKey = defaultGetSessionKey, initial, storage } = opts;
let {
prefix = "",
getSessionKey = defaultGetSessionKey,
initial,
storage,
} = opts;
if (storage == null) {
debug(
"Storing session data in memory, all data will be lost when the bot restarts.",
);
storage = new MemorySessionStorage<S>();
}
const custom = getSessionKey !== defaultGetSessionKey;
return { initial, storage, getSessionKey, custom };
return {
initial,
storage,
getSessionKey: async (ctx: C) => {
const key = await getSessionKey(ctx);
return key === undefined ? undefined : prefix + key;
},
custom,
};
}

/** Stores session data per chat by default */
Expand Down
44 changes: 44 additions & 0 deletions test/convenience/session.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,50 @@ describe("session", () => {
assertEquals(storage.delete.calls[0].args, ["42"]);
});

it("should work with custom session keys", async () => {
let val: number | undefined = 0;
const storage = {
read: spy((_key: string) => val),
write: spy((_key: string, value: number) => {
val = value;
}),
delete: spy((_key: string) => {
val = undefined;
}),
};
type C = Context & SessionFlavor<number>;
const composer = new Composer<C>();
let ctx = { chatId: 42 } as C;
composer.use(
session({
prefix: "xyz-",
getSessionKey: (ctx) =>
ctx.chatId ? (ctx.chatId ** 2).toString() : undefined,
storage,
}),
)
.use((ctx) => {
if (ctx.session === 0) ctx.session = 1;
else ctx.session = null;
});

await composer.middleware()(ctx, next);
ctx = { chatId: 42 } as C;
await composer.middleware()(ctx, next);

assertEquals(storage.read.calls.length, 2);
assertEquals(storage.read.calls[0].args, ["xyz-1764"]);
assertEquals(storage.read.calls[1].args, ["xyz-1764"]);
assertEquals(storage.read.calls[0].returned, 0);
assertEquals(storage.read.calls[1].returned, 1);

assertEquals(storage.write.calls.length, 1);
assertEquals(storage.write.calls[0].args, ["xyz-1764", 1]);

assertEquals(storage.delete.calls.length, 1);
assertEquals(storage.delete.calls[0].args, ["xyz-1764"]);
});

it("should do IO with objects", async () => {
let val: Record<string, number> | undefined;
const storage = {
Expand Down
Loading