@fedify/botkit 0.3.0-dev.108 → 0.3.0-dev.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,15 +4,11 @@
4
4
  ==================
5
5
 
6
6
  [![JSR][JSR badge]][JSR]
7
+ [![npm][npm badge]][npm]
7
8
  [![GitHub Actions][GitHub Actions badge]][GitHub Actions]
8
9
  [![Codecov][Codecov badge]][Codecov]
9
10
  [![Fediverse][Fediverse badge]][Fediverse]
10
11
 
11
- > [!NOTE]
12
- > BotKit is still in early development. The API may change in the future.
13
- > Although it currently supports only Deno, it will support Node.js and Bun
14
- > later.
15
-
16
12
  [BotKit] is a framework for creating [ActivityPub] bots. It is powered by
17
13
  [Fedify], a lower-level library for creating ActivityPub server applications.
18
14
  Unlike Mastodon bots, BotKit is designed to create a standalone ActivityPub bot,
@@ -63,6 +59,8 @@ For more information, see the [BotKit docs][BotKit].
63
59
  [BotKit]: https://botkit.fedify.dev/
64
60
  [JSR]: https://jsr.io/@fedify/botkit
65
61
  [JSR badge]: https://jsr.io/badges/@fedify/botkit
62
+ [npm]: https://www.npmjs.com/package/@fedify/botkit
63
+ [npm badge]: https://img.shields.io/npm/v/@fedify/botkit?logo=npm
66
64
  [GitHub Actions]: https://github.com/fedify-dev/botkit/actions/workflows/main.yaml
67
65
  [GitHub Actions badge]: https://github.com/fedify-dev/botkit/actions/workflows/main.yaml/badge.svg
68
66
  [Codecov]: https://codecov.io/gh/fedify-dev/botkit
@@ -2,10 +2,10 @@ import { Temporal, toTemporalInstant } from "@js-temporal/polyfill";
2
2
  Date.prototype.toTemporalInstant = toTemporalInstant;
3
3
  import { Text } from "./text.js";
4
4
  import { MessageClass } from "./message.js";
5
- import { Repository } from "./repository.js";
6
5
  import { Session } from "./session.js";
7
6
  import { CustomEmoji, DeferredCustomEmoji } from "./emoji.js";
8
7
  import { AcceptEventHandler, FollowEventHandler, LikeEventHandler, MentionEventHandler, MessageEventHandler, QuoteEventHandler, ReactionEventHandler, RejectEventHandler, ReplyEventHandler, SharedMessageEventHandler, UndoneReactionEventHandler, UnfollowEventHandler, UnlikeEventHandler } from "./events.js";
8
+ import { Repository } from "./repository.js";
9
9
  import { Bot, CreateBotOptions, PagesOptions } from "./bot.js";
10
10
  import { SessionImpl } from "./session-impl.js";
11
11
  import { Accept, Activity, Actor, Announce, Application, Create, CryptographicKey, Emoji, EmojiReact, Follow, Image, Like, Link, PropertyValue, Reject, Service, Undo } from "@fedify/fedify/vocab";
package/dist/bot.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import { Temporal, toTemporalInstant } from "@js-temporal/polyfill";
2
2
  Date.prototype.toTemporalInstant = toTemporalInstant;
3
3
  import { Text } from "./text.js";
4
- import { Repository } from "./repository.js";
5
4
  import { Session } from "./session.js";
6
5
  import { CustomEmoji, DeferredCustomEmoji } from "./emoji.js";
7
6
  import { AcceptEventHandler, FollowEventHandler, LikeEventHandler, MentionEventHandler, MessageEventHandler, QuoteEventHandler, ReactionEventHandler, RejectEventHandler, ReplyEventHandler, SharedMessageEventHandler, UndoneReactionEventHandler, UnfollowEventHandler, UnlikeEventHandler } from "./events.js";
7
+ import { Repository } from "./repository.js";
8
8
  import { Context, Federation, KvStore, MessageQueue } from "@fedify/fedify/federation";
9
9
  import { Application, Application as Application$1, Image, Image as Image$1, Service, Service as Service$1 } from "@fedify/fedify/vocab";
10
10
  import { SemVer, Software, Software as Software$1, parseSemVer } from "@fedify/fedify/nodeinfo";
package/dist/deno.js CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  //#region deno.json
6
6
  var name = "@fedify/botkit";
7
- var version = "0.3.0-dev.108+5ff4003a";
7
+ var version = "0.3.0-dev.111+1b9cba8a";
8
8
  var license = "AGPL-3.0-only";
9
9
  var unstable = ["kv", "temporal"];
10
10
  var exports = {
@@ -15,6 +15,7 @@ var exports = {
15
15
  "./follow": "./src/follow.ts",
16
16
  "./message": "./src/message.ts",
17
17
  "./reaction": "./src/reaction.ts",
18
+ "./repository": "./src/repository.ts",
18
19
  "./session": "./src/session.ts",
19
20
  "./text": "./src/text.ts"
20
21
  };
package/dist/deno.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"deno.js","names":[],"sources":["../deno.json"],"sourcesContent":["{\n \"name\": \"@fedify/botkit\",\n \"version\": \"0.3.0-dev.108+5ff4003a\",\n \"license\": \"AGPL-3.0-only\",\n \"unstable\": [\n \"kv\",\n \"temporal\"\n ],\n \"exports\": {\n \".\": \"./src/mod.ts\",\n \"./bot\": \"./src/bot.ts\",\n \"./emoji\": \"./src/emoji.ts\",\n \"./events\": \"./src/events.ts\",\n \"./follow\": \"./src/follow.ts\",\n \"./message\": \"./src/message.ts\",\n \"./reaction\": \"./src/reaction.ts\",\n \"./session\": \"./src/session.ts\",\n \"./text\": \"./src/text.ts\"\n },\n \"imports\": {\n \"@fedify/fedify\": \"jsr:@fedify/fedify@^1.6.1\",\n \"@fedify/markdown-it-hashtag\": \"jsr:@fedify/markdown-it-hashtag@^0.3.0\",\n \"@fedify/markdown-it-mention\": \"jsr:@fedify/markdown-it-mention@^0.3.0\",\n \"@logtape/logtape\": \"jsr:@logtape/logtape@^1.0.0\",\n \"@phensley/language-tag\": \"npm:@phensley/language-tag@^1.12.2\",\n \"hono\": \"jsr:@hono/hono@^4.8.2\",\n \"html-entities\": \"npm:html-entities@^2.6.0\",\n \"markdown-it\": \"npm:markdown-it@^14.1.0\",\n \"mime-db\": \"npm:mime-db@^1.54.0\",\n \"tsdown\": \"npm:tsdown@^0.12.8\",\n \"uuid\": \"npm:uuid@^11.1.0\",\n \"x-forwarded-fetch\": \"jsr:@hongminhee/x-forwarded-fetch@^0.2.0\",\n \"xss\": \"npm:xss@^1.0.15\"\n },\n \"nodeModulesDir\": \"none\",\n \"exclude\": [\n \".github\",\n \".vscode\",\n \"dist\",\n \"docs\",\n \"src/css\"\n ],\n \"fmt\": {\n \"exclude\": [\n \"*.md\",\n \"*.yaml\",\n \"*.yml\",\n \"src/static/*.ts\"\n ]\n },\n \"tasks\": {\n \"check\": \"deno check src/ && deno lint && deno fmt --check && deno publish --dry-run --allow-dirty && deno run scripts/check_versions.ts\",\n \"test\": \"deno test --allow-env=NODE_V8_COVERAGE,JEST_WORKER_ID --allow-net=hollo.social --parallel\",\n \"test-all\": \"deno task check && deno task test\",\n \"coverage\": \"deno task test --coverage --clean && deno coverage --html\",\n \"hooks:install\": \"deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks\",\n \"hooks:pre-commit\": \"deno task check\"\n }\n}\n"],"mappings":";;;;;WACU;cACG;cACA;eACC,CACV,MACA,UACD;cACU;CACT,KAAK;CACL,SAAS;CACT,WAAW;CACX,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd,aAAa;CACb,UAAU;AACX;cACU;CACT,kBAAkB;CAClB,+BAA+B;CAC/B,+BAA+B;CAC/B,oBAAoB;CACpB,0BAA0B;CAC1B,QAAQ;CACR,iBAAiB;CACjB,eAAe;CACf,WAAW;CACX,UAAU;CACV,QAAQ;CACR,qBAAqB;CACrB,OAAO;AACR;qBACiB;cACP;CACT;CACA;CACA;CACA;CACA;AACD;UACM,EACL,WAAW;CACT;CACA;CACA;CACA;AACD,EACF;YACQ;CACP,SAAS;CACT,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;AACrB;mBAzDH;;;;;;;;;;;AA0DC"}
1
+ {"version":3,"file":"deno.js","names":[],"sources":["../deno.json"],"sourcesContent":["{\n \"name\": \"@fedify/botkit\",\n \"version\": \"0.3.0-dev.111+1b9cba8a\",\n \"license\": \"AGPL-3.0-only\",\n \"unstable\": [\n \"kv\",\n \"temporal\"\n ],\n \"exports\": {\n \".\": \"./src/mod.ts\",\n \"./bot\": \"./src/bot.ts\",\n \"./emoji\": \"./src/emoji.ts\",\n \"./events\": \"./src/events.ts\",\n \"./follow\": \"./src/follow.ts\",\n \"./message\": \"./src/message.ts\",\n \"./reaction\": \"./src/reaction.ts\",\n \"./repository\": \"./src/repository.ts\",\n \"./session\": \"./src/session.ts\",\n \"./text\": \"./src/text.ts\"\n },\n \"imports\": {\n \"@fedify/fedify\": \"jsr:@fedify/fedify@^1.6.1\",\n \"@fedify/markdown-it-hashtag\": \"jsr:@fedify/markdown-it-hashtag@^0.3.0\",\n \"@fedify/markdown-it-mention\": \"jsr:@fedify/markdown-it-mention@^0.3.0\",\n \"@logtape/logtape\": \"jsr:@logtape/logtape@^1.0.0\",\n \"@phensley/language-tag\": \"npm:@phensley/language-tag@^1.12.2\",\n \"hono\": \"jsr:@hono/hono@^4.8.2\",\n \"html-entities\": \"npm:html-entities@^2.6.0\",\n \"markdown-it\": \"npm:markdown-it@^14.1.0\",\n \"mime-db\": \"npm:mime-db@^1.54.0\",\n \"tsdown\": \"npm:tsdown@^0.12.8\",\n \"uuid\": \"npm:uuid@^11.1.0\",\n \"x-forwarded-fetch\": \"jsr:@hongminhee/x-forwarded-fetch@^0.2.0\",\n \"xss\": \"npm:xss@^1.0.15\"\n },\n \"nodeModulesDir\": \"none\",\n \"exclude\": [\n \".github\",\n \".vscode\",\n \"dist\",\n \"docs\",\n \"src/css\"\n ],\n \"fmt\": {\n \"exclude\": [\n \"*.md\",\n \"*.yaml\",\n \"*.yml\",\n \"src/static/*.ts\"\n ]\n },\n \"tasks\": {\n \"check\": \"deno check src/ && deno lint && deno fmt --check && deno publish --dry-run --allow-dirty && deno run scripts/check_versions.ts\",\n \"test\": \"deno test --allow-env=NODE_V8_COVERAGE,JEST_WORKER_ID --allow-net=hollo.social --parallel\",\n \"test-all\": \"deno task check && deno task test\",\n \"coverage\": \"deno task test --coverage --clean && deno coverage --html\",\n \"hooks:install\": \"deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks\",\n \"hooks:pre-commit\": \"deno task check\"\n }\n}\n"],"mappings":";;;;;WACU;cACG;cACA;eACC,CACV,MACA,UACD;cACU;CACT,KAAK;CACL,SAAS;CACT,WAAW;CACX,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd,gBAAgB;CAChB,aAAa;CACb,UAAU;AACX;cACU;CACT,kBAAkB;CAClB,+BAA+B;CAC/B,+BAA+B;CAC/B,oBAAoB;CACpB,0BAA0B;CAC1B,QAAQ;CACR,iBAAiB;CACjB,eAAe;CACf,WAAW;CACX,UAAU;CACV,QAAQ;CACR,qBAAqB;CACrB,OAAO;AACR;qBACiB;cACP;CACT;CACA;CACA;CACA;CACA;AACD;UACM,EACL,WAAW;CACT;CACA;CACA;CACA;AACD,EACF;YACQ;CACP,SAAS;CACT,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;AACrB;mBA1DH;;;;;;;;;;;AA2DC"}
package/dist/mod.d.ts CHANGED
@@ -3,11 +3,11 @@ Date.prototype.toTemporalInstant = toTemporalInstant;
3
3
  import { AuthorizedLike, AuthorizedReaction, EmojiReact, Like, RawLike, Reaction } from "./reaction.js";
4
4
  import { Text, customEmoji, em, hashtag, link, mention, plainText, strong, text } from "./text.js";
5
5
  import { Actor, Article, Audio, AuthorizedMessage, AuthorizedSharedMessage, ChatMessage, Document, Hashtag, LanguageTag, Message, MessageClass, MessageShareOptions, MessageVisibility, Note, Question, SharedMessage, Video, isActor, parseLanguageTag } from "./message.js";
6
- import { Announce, Create, KvRepository, MemoryCachedRepository, MemoryRepository, Repository } from "./repository.js";
7
6
  import { Session, SessionGetOutboxOptions, SessionPublishOptions, SessionPublishOptionsWithClass } from "./session.js";
8
7
  import { CustomEmoji, DeferredCustomEmoji, Emoji, emoji, isEmoji } from "./emoji.js";
9
8
  import { FollowRequest } from "./follow.js";
10
9
  import { AcceptEventHandler, FollowEventHandler, LikeEventHandler, MentionEventHandler, MessageEventHandler, QuoteEventHandler, ReactionEventHandler, RejectEventHandler, ReplyEventHandler, SharedMessageEventHandler, UndoneReactionEventHandler, UnfollowEventHandler, UnlikeEventHandler } from "./events.js";
10
+ import { Announce, Create, KvRepository, MemoryCachedRepository, MemoryRepository, Repository } from "./repository.js";
11
11
  import { Application, Bot, BotWithVoidContextData, CreateBotOptions, Image, PagesOptions, SemVer, Service, Software, createBot, parseSemVer } from "./bot.js";
12
12
  import { InProcessMessageQueue, InProcessMessageQueueOptions, MemoryKvStore, ParallelMessageQueue } from "@fedify/fedify/federation";
13
13
  export { AcceptEventHandler, Actor, Announce, Application, Article, Audio, AuthorizedLike, AuthorizedMessage, AuthorizedReaction, AuthorizedSharedMessage, Bot, BotWithVoidContextData, ChatMessage, Create, CreateBotOptions, CustomEmoji, DeferredCustomEmoji, Document, Emoji, EmojiReact, FollowEventHandler, FollowRequest, Hashtag, Image, InProcessMessageQueue, InProcessMessageQueueOptions, KvRepository, LanguageTag, Like, LikeEventHandler, MemoryCachedRepository, MemoryKvStore, MemoryRepository, MentionEventHandler, Message, MessageClass, MessageEventHandler, MessageShareOptions, MessageVisibility, Note, PagesOptions, ParallelMessageQueue, Question, QuoteEventHandler, RawLike, Reaction, ReactionEventHandler, RejectEventHandler, ReplyEventHandler, Repository, SemVer, Service, Session, SessionGetOutboxOptions, SessionPublishOptions, SessionPublishOptionsWithClass, SharedMessage, SharedMessageEventHandler, Software, Text, UndoneReactionEventHandler, UnfollowEventHandler, UnlikeEventHandler, Video, createBot, customEmoji, em, emoji, hashtag, isActor, isEmoji, link, mention, parseLanguageTag, parseSemVer, plainText, strong, text };
@@ -6,10 +6,12 @@ import { Actor, Announce, Announce as Announce$1, Create, Create as Create$1, Fo
6
6
  //#region src/repository.d.ts
7
7
  /**
8
8
  * A UUID (universally unique identifier).
9
+ * @since 0.3.0
9
10
  */
10
11
  type Uuid = ReturnType<typeof crypto.randomUUID>;
11
12
  /**
12
13
  * A repository for storing bot data.
14
+ * @since 0.3.0
13
15
  */
14
16
  interface Repository {
15
17
  /**
@@ -142,6 +144,7 @@ interface Repository {
142
144
  }
143
145
  /**
144
146
  * Options for getting messages from the repository.
147
+ * @since 0.3.0
145
148
  */
146
149
  interface RepositoryGetMessagesOptions {
147
150
  /**
@@ -167,6 +170,7 @@ interface RepositoryGetMessagesOptions {
167
170
  }
168
171
  /**
169
172
  * Options for getting followers from the repository.
173
+ * @since 0.3.0
170
174
  */
171
175
  interface RepositoryGetFollowersOptions {
172
176
  /**
@@ -181,6 +185,7 @@ interface RepositoryGetFollowersOptions {
181
185
  }
182
186
  /**
183
187
  * The prefixes for key-value store keys used by the bot.
188
+ * @since 0.3.0
184
189
  */
185
190
  interface KvStoreRepositoryPrefixes {
186
191
  /**
@@ -286,6 +291,7 @@ declare class MemoryRepository implements Repository {
286
291
  * Note: List operations like `getMessages` and `getFollowers`, and count
287
292
  * operations like `countMessages` and `countFollowers` are not cached and
288
293
  * always delegate to the underlying repository.
294
+ * @since 0.3.0
289
295
  */
290
296
  declare class MemoryCachedRepository implements Repository {
291
297
  private underlying;
@@ -1 +1 @@
1
- {"version":3,"file":"repository.d.ts","names":[],"sources":["../src/repository.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"repository.d.ts","names":[],"sources":["../src/repository.ts"],"sourcesContent":[],"mappings":"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"}
@@ -364,6 +364,7 @@ var MemoryRepository = class {
364
364
  * Note: List operations like `getMessages` and `getFollowers`, and count
365
365
  * operations like `countMessages` and `countFollowers` are not cached and
366
366
  * always delegate to the underlying repository.
367
+ * @since 0.3.0
367
368
  */
368
369
  var MemoryCachedRepository = class {
369
370
  underlying;
@@ -1 +1 @@
1
- {"version":3,"file":"repository.js","names":["kv: KvStore","prefixes?: KvStoreRepositoryPrefixes","keyPairs: CryptoKeyPair[]","pairs: KeyPair[]","pair: KeyPair","id: Uuid","activity: Create | Announce","messageKey: KvKey","lockKey: KvKey","listKey: KvKey","updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>","kvKey: KvKey","Create","Announce","options: RepositoryGetMessagesOptions","activity: Activity","followRequestId: URL","follower: Actor","followerKey: KvKey","followRequestKey: KvKey","actorId: URL","follower: Object","followerId: URL","options: RepositoryGetFollowersOptions","actor: Object","follow: Follow","followeeId: URL","uuid: string","followId: URL","underlying: Repository","cache?: MemoryRepository","options?: RepositoryGetMessagesOptions","options?: RepositoryGetFollowersOptions"],"sources":["../src/repository.ts"],"sourcesContent":["// BotKit by Fedify: A framework for creating ActivityPub bots\n// Copyright (C) 2025 Hong Minhee <https://hongminhee.org/>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as\n// published by the Free Software Foundation, either version 3 of the\n// License, or (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program. If not, see <https://www.gnu.org/licenses/>.\nimport type { KvKey, KvStore } from \"@fedify/fedify/federation\";\nimport { exportJwk, importJwk } from \"@fedify/fedify/sig\";\nimport {\n Activity,\n type Actor,\n Announce,\n Create,\n Follow,\n isActor,\n Object,\n} from \"@fedify/fedify/vocab\";\nexport type { KvKey, KvStore } from \"@fedify/fedify/federation\";\nexport { Announce, Create } from \"@fedify/fedify/vocab\";\n\n/**\n * A UUID (universally unique identifier).\n */\nexport type Uuid = ReturnType<typeof crypto.randomUUID>;\n\n/**\n * A repository for storing bot data.\n */\nexport interface Repository {\n /**\n * Sets the key pairs of the bot actor.\n * @param keyPairs The key pairs to set.\n */\n setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void>;\n\n /**\n * Gets the key pairs of the bot actor.\n * @returns The key pairs of the bot actor. If the key pairs do not exist,\n * `undefined` will be returned.\n */\n getKeyPairs(): Promise<CryptoKeyPair[] | undefined>;\n\n /**\n * Adds a message to the repository.\n * @param id The UUID of the message.\n * @param activity The activity to add.\n */\n addMessage(id: Uuid, activity: Create | Announce): Promise<void>;\n\n /**\n * Updates a message in the repository.\n * @param id The UUID of the message.\n * @param updater The function to update the message. The function will be\n * called with the existing message, and the return value will\n * be the new message. If the function returns a promise, the\n * promise will be awaited. If the function returns either\n * `undefined` or a promise that resolves to `undefined`,\n * the message will not be updated. If the message does not\n * exist, the updater will not be called.\n * @returns `true` if the message was updated, `false` if the message does not\n * exist.\n */\n updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean>;\n\n /**\n * Removes a message from the repository.\n * @param id The UUID of the message to remove.\n * @returns The removed activity. If the message does not exist, `undefined`\n * will be returned.\n */\n removeMessage(id: Uuid): Promise<Create | Announce | undefined>;\n\n /**\n * Gets messages from the repository.\n * @param options The options for getting messages.\n * @returns An async iterable of message activities.\n */\n getMessages(\n options?: RepositoryGetMessagesOptions,\n ): AsyncIterable<Create | Announce>;\n\n /**\n * Gets a message from the repository.\n * @param id The UUID of the message to get.\n * @returns The message activity, or `undefined` if the message does not\n * exist.\n */\n getMessage(id: Uuid): Promise<Create | Announce | undefined>;\n\n /**\n * Counts the number of messages in the repository.\n * @returns The number of messages in the repository.\n */\n countMessages(): Promise<number>;\n\n /**\n * Adds a follower to the repository.\n * @param followId The URL of the follow request.\n * @param follower The actor who follows the bot.\n */\n addFollower(followId: URL, follower: Actor): Promise<void>;\n\n /**\n * Removes a follower from the repository.\n * @param followId The URL of the follow request.\n * @param followerId The ID of the actor to remove.\n * @returns The removed actor. If the follower does not exist or the follow\n * request is not about the follower, `undefined` will be returned.\n */\n removeFollower(followId: URL, followerId: URL): Promise<Actor | undefined>;\n\n /**\n * Checks if the repository has a follower.\n * @param followerId The ID of the follower to check.\n * @returns `true` if the repository has the follower, `false` otherwise.\n */\n hasFollower(followerId: URL): Promise<boolean>;\n\n /**\n * Gets followers from the repository.\n * @param options The options for getting followers.\n * @returns An async iterable of actors who follow the bot.\n */\n getFollowers(options?: RepositoryGetFollowersOptions): AsyncIterable<Actor>;\n\n /**\n * Counts the number of followers in the repository.\n * @returns The number of followers in the repository.\n */\n countFollowers(): Promise<number>;\n\n /**\n * Adds a sent follow request to the repository.\n * @param id The UUID of the follow request.\n * @param follow The follow activity to add.\n */\n addSentFollow(id: Uuid, follow: Follow): Promise<void>;\n\n /**\n * Removes a sent follow request from the repository.\n * @param id The UUID of the follow request to remove.\n * @returns The removed follow activity. If the follow request does not\n * exist, `undefined` will be returned.\n */\n removeSentFollow(id: Uuid): Promise<Follow | undefined>;\n\n /**\n * Gets a sent follow request from the repository.\n * @param id The UUID of the follow request to get.\n * @returns The `Follow` activity, or `undefined` if the follow request does\n * not exist.\n */\n getSentFollow(id: Uuid): Promise<Follow | undefined>;\n\n /**\n * Adds a followee to the repository.\n * @param followeeId The ID of the followee to add.\n * @param follow The follow activity to add.\n */\n addFollowee(followeeId: URL, follow: Follow): Promise<void>;\n\n /**\n * Removes a followee from the repository.\n * @param followeeId The ID of the followee to remove.\n * @returns The `Follow` activity that was removed. If the followee does not\n * exist, `undefined` will be returned.\n */\n removeFollowee(followeeId: URL): Promise<Follow | undefined>;\n\n /**\n * Gets a followee from the repository.\n * @param followeeId The ID of the followee to get.\n * @returns The `Follow` activity, or `undefined` if the followee does not\n * exist.\n */\n getFollowee(followeeId: URL): Promise<Follow | undefined>;\n}\n\n/**\n * Options for getting messages from the repository.\n */\nexport interface RepositoryGetMessagesOptions {\n /**\n * The order of the messages. If omitted, `\"newest\"` will be used.\n * @default `\"newest\"`\n */\n readonly order?: \"oldest\" | \"newest\";\n\n /**\n * The timestamp to get messages created at or before this time.\n * If omitted, no limit will be applied.\n */\n readonly until?: Temporal.Instant;\n\n /**\n * The timestamp to get messages created at or after this time.\n * If omitted, no limit will be applied.\n */\n readonly since?: Temporal.Instant;\n\n /**\n * The maximum number of messages to get. If omitted, no limit will be\n * applied.\n */\n readonly limit?: number;\n}\n\n/**\n * Options for getting followers from the repository.\n */\nexport interface RepositoryGetFollowersOptions {\n /**\n * The offset of the followers to get. If omitted, 0 will be used.\n * @default `0`\n */\n readonly offset?: number;\n\n /**\n * The limit of the followers to get. If omitted, no limit will be applied.\n */\n readonly limit?: number;\n}\n\n/**\n * The prefixes for key-value store keys used by the bot.\n */\nexport interface KvStoreRepositoryPrefixes {\n /**\n * The key prefix used for storing the key pairs of the bot actor.\n * @default `[\"_botkit\", \"keyPairs\"]`\n */\n readonly keyPairs: KvKey;\n\n /**\n * The key prefix used for storing published messages.\n * @default `[\"_botkit\", \"messages\"]`\n */\n readonly messages: KvKey;\n\n /**\n * The key prefix used for storing followers.\n * @default `[\"_botkit\", \"followers\"]`\n */\n readonly followers: KvKey;\n\n /**\n * The key prefix used for storing incoming follow requests.\n * @default `[\"_botkit\", \"followRequests\"]`\n */\n readonly followRequests: KvKey;\n\n /**\n * The key prefix used for storing followees.\n * @default `[\"_botkit\", \"followees\"]`\n */\n readonly followees: KvKey;\n\n /**\n * The key prefix used for storing outgoing follow requests.\n * @default `[\"_botkit\", \"follows\"]`\n */\n readonly follows: KvKey;\n}\n\n/**\n * A repository for storing bot data using a key-value store.\n */\nexport class KvRepository implements Repository {\n readonly kv: KvStore;\n readonly prefixes: KvStoreRepositoryPrefixes;\n\n /**\n * Creates a new key-value store repository.\n * @param kv The key-value store to use.\n * @param prefixes The prefixes for key-value store keys.\n */\n constructor(kv: KvStore, prefixes?: KvStoreRepositoryPrefixes) {\n this.kv = kv;\n this.prefixes = {\n keyPairs: [\"_botkit\", \"keyPairs\"],\n messages: [\"_botkit\", \"messages\"],\n followers: [\"_botkit\", \"followers\"],\n followRequests: [\"_botkit\", \"followRequests\"],\n followees: [\"_botkit\", \"followees\"],\n follows: [\"_botkit\", \"follows\"],\n ...prefixes ?? {},\n };\n }\n\n async setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n const pairs: KeyPair[] = [];\n for (const keyPair of keyPairs) {\n const pair: KeyPair = {\n private: await exportJwk(keyPair.privateKey),\n public: await exportJwk(keyPair.publicKey),\n };\n pairs.push(pair);\n }\n await this.kv.set(this.prefixes.keyPairs, pairs);\n }\n\n async getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n const keyPairs = await this.kv.get<KeyPair[]>(this.prefixes.keyPairs);\n if (keyPairs == null) return undefined;\n const promises = keyPairs.map(async (pair) => ({\n privateKey: await importJwk(pair.private, \"private\"),\n publicKey: await importJwk(pair.public, \"public\"),\n }));\n return await Promise.all(promises);\n }\n\n async addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n const messageKey: KvKey = [...this.prefixes.messages, id];\n await this.kv.set(\n messageKey,\n await activity.toJsonLd({ format: \"compact\" }),\n );\n const lockKey: KvKey = [...this.prefixes.messages, \"lock\"];\n const listKey: KvKey = this.prefixes.messages;\n do {\n await this.kv.set(lockKey, id);\n const set = new Set(await this.kv.get<string[]>(listKey) ?? []);\n set.add(id);\n const list = [...set];\n list.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== id);\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n const kvKey: KvKey = [...this.prefixes.messages, id];\n const createJson = await this.kv.get(kvKey);\n if (createJson == null) return false;\n const activity = await Activity.fromJsonLd(createJson);\n if (!(activity instanceof Create || activity instanceof Announce)) {\n return false;\n }\n const newActivity = await updater(activity);\n if (newActivity == null) return false;\n await this.kv.set(\n kvKey,\n await newActivity.toJsonLd({ format: \"compact\" }),\n );\n return true;\n }\n\n async removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const listKey: KvKey = this.prefixes.messages;\n const lockKey: KvKey = [...listKey, \"lock\"];\n const lockId = `${id}:delete`;\n do {\n await this.kv.set(lockKey, lockId);\n const set = new Set(await this.kv.get<string[]>(listKey) ?? []);\n set.delete(id);\n const list = [...set];\n list.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== lockId);\n const messageKey: KvKey = [...listKey, id];\n const activityJson = await this.kv.get(messageKey);\n if (activityJson == null) return;\n await this.kv.delete(messageKey);\n const activity = await Activity.fromJsonLd(activityJson);\n if (activity instanceof Create || activity instanceof Announce) {\n return activity;\n }\n return undefined;\n }\n\n async *getMessages(\n options: RepositoryGetMessagesOptions = {},\n ): AsyncIterable<Create | Announce> {\n const { order, until, since, limit } = options;\n const untilTs = until == null ? null : until.epochMilliseconds;\n const sinceTs = since == null ? null : since.epochMilliseconds;\n let messageIds = await this.kv.get<string[]>(this.prefixes.messages) ?? [];\n if (sinceTs != null) {\n const offset = messageIds.findIndex((id) =>\n extractTimestamp(id) >= sinceTs\n );\n messageIds = messageIds.slice(offset);\n }\n if (untilTs != null) {\n const offset = messageIds.findLastIndex((id) =>\n extractTimestamp(id) <= untilTs\n );\n messageIds = messageIds.slice(0, offset + 1);\n }\n if (order == null || order === \"newest\") {\n messageIds = messageIds.toReversed();\n }\n if (limit != null) {\n messageIds = messageIds.slice(0, limit);\n }\n for (const id of messageIds) {\n const messageJson = await this.kv.get([...this.prefixes.messages, id]);\n if (messageJson == null) continue;\n try {\n const activity = await Activity.fromJsonLd(messageJson);\n if (activity instanceof Create || activity instanceof Announce) {\n yield activity;\n }\n } catch {\n continue;\n }\n }\n }\n\n async getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const json = await this.kv.get([...this.prefixes.messages, id]);\n if (json == null) return undefined;\n let activity: Activity;\n try {\n activity = await Activity.fromJsonLd(json);\n } catch (e) {\n if (e instanceof TypeError) return undefined;\n throw e;\n }\n if (activity instanceof Create || activity instanceof Announce) {\n return activity;\n }\n return undefined;\n }\n\n async countMessages(): Promise<number> {\n const messageIds = await this.kv.get<string[]>(this.prefixes.messages) ??\n [];\n return messageIds.length;\n }\n\n async addFollower(followRequestId: URL, follower: Actor): Promise<void> {\n if (follower.id == null) {\n throw new TypeError(\"The follower ID is missing.\");\n }\n const followerKey: KvKey = [...this.prefixes.followers, follower.id.href];\n await this.kv.set(\n followerKey,\n await follower.toJsonLd({ format: \"compact\" }),\n );\n const lockKey: KvKey = [...this.prefixes.followers, \"lock\"];\n const listKey: KvKey = this.prefixes.followers;\n do {\n await this.kv.set(lockKey, follower.id.href);\n const list = await this.kv.get<string[]>(listKey) ?? [];\n if (!list.includes(follower.id.href)) list.push(follower.id.href);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== follower.id.href);\n const followRequestKey: KvKey = [\n ...this.prefixes.followRequests,\n followRequestId.href,\n ];\n await this.kv.set(followRequestKey, follower.id.href);\n }\n\n async removeFollower(\n followRequestId: URL,\n actorId: URL,\n ): Promise<Actor | undefined> {\n const followRequestKey: KvKey = [\n ...this.prefixes.followRequests,\n followRequestId.href,\n ];\n const followerId = await this.kv.get<string>(followRequestKey);\n if (followerId == null) return undefined;\n const followerKey: KvKey = [...this.prefixes.followers, followerId];\n if (followerId !== actorId.href) return undefined;\n const followerJson = await this.kv.get(followerKey);\n if (followerJson == null) return undefined;\n let follower: Object;\n try {\n follower = await Object.fromJsonLd(followerJson);\n } catch {\n return undefined;\n }\n if (!isActor(follower)) return undefined;\n const lockKey: KvKey = [...this.prefixes.followers, \"lock\"];\n const listKey: KvKey = this.prefixes.followers;\n do {\n await this.kv.set(lockKey, followerId);\n let list = await this.kv.get<string[]>(listKey) ?? [];\n list = list.filter((id) => id !== followerId);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== followerId);\n await this.kv.delete(followerKey);\n await this.kv.delete(followRequestKey);\n return follower;\n }\n\n async hasFollower(followerId: URL): Promise<boolean> {\n return await this.kv.get<unknown>([\n ...this.prefixes.followers,\n followerId.href,\n ]) != null;\n }\n\n async *getFollowers(\n options: RepositoryGetFollowersOptions = {},\n ): AsyncIterable<Actor> {\n const { offset = 0, limit } = options;\n let followerIds = await this.kv.get<string[]>(this.prefixes.followers) ??\n [];\n followerIds = followerIds.slice(offset);\n if (limit != null) {\n followerIds = followerIds.slice(0, limit);\n }\n for (const id of followerIds) {\n const json = await this.kv.get([...this.prefixes.followers, id]);\n let actor: Object;\n try {\n actor = await Object.fromJsonLd(json);\n } catch (e) {\n if (e instanceof TypeError) continue;\n throw e;\n }\n if (isActor(actor)) yield actor;\n }\n }\n\n async countFollowers(): Promise<number> {\n const followerIds = await this.kv.get<string[]>(this.prefixes.followers) ??\n [];\n return followerIds.length;\n }\n\n async addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n await this.kv.set(\n [...this.prefixes.follows, id],\n await follow.toJsonLd({ format: \"compact\" }),\n );\n }\n\n async removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const follow = await this.getSentFollow(id);\n if (follow == null) return undefined;\n await this.kv.delete([...this.prefixes.follows, id]);\n return follow;\n }\n\n async getSentFollow(id: Uuid): Promise<Follow | undefined> {\n const followJson = await this.kv.get([...this.prefixes.follows, id]);\n if (followJson == null) return undefined;\n try {\n return await Follow.fromJsonLd(followJson);\n } catch {\n return undefined;\n }\n }\n\n async addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n await this.kv.set(\n [...this.prefixes.followees, followeeId.href],\n await follow.toJsonLd({ format: \"compact\" }),\n );\n }\n\n async removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const follow = await this.getFollowee(followeeId);\n if (follow == null) return undefined;\n await this.kv.delete([...this.prefixes.followees, followeeId.href]);\n return follow;\n }\n\n async getFollowee(followeeId: URL): Promise<Follow | undefined> {\n const json = await this.kv.get([\n ...this.prefixes.followees,\n followeeId.href,\n ]);\n if (json == null) return undefined;\n try {\n return await Follow.fromJsonLd(json);\n } catch {\n return undefined;\n }\n }\n}\n\ninterface KeyPair {\n private: JsonWebKey;\n public: JsonWebKey;\n}\n\n/**\n * Extracts the timestamp from a UUIDv7.\n * @param uuid The UUIDv7 string to extract the timestamp from.\n * @return The timestamp in milliseconds since the Unix epoch.\n * @internal\n */\nfunction extractTimestamp(uuid: string): number {\n // UUIDv7 format: xxxxxxxx-xxxx-7xxx-yxxx-xxxxxxxxxxxx\n // The timestamp is in the first 6 bytes (48 bits) of the UUID.\n if (uuid.length !== 36 || uuid[14] !== \"7\") {\n throw new TypeError(\"Invalid UUIDv7 format.\");\n }\n const timestampHex = uuid.slice(0, 8) + uuid.slice(9, 13);\n return parseInt(timestampHex, 16);\n}\n\n/**\n * A repository for storing bot data in memory. This repository is not\n * persistent and is only suitable for testing or development.\n */\nexport class MemoryRepository implements Repository {\n keyPairs?: CryptoKeyPair[];\n messages: Map<Uuid, Create | Announce> = new Map();\n followers: Map<string, Actor> = new Map();\n followRequests: Record<string, string> = {};\n sentFollows: Record<string, Follow> = {};\n followees: Record<string, Follow> = {};\n\n setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n this.keyPairs = keyPairs;\n return Promise.resolve();\n }\n\n getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n return Promise.resolve(this.keyPairs);\n }\n\n addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n this.messages.set(id, activity);\n return Promise.resolve();\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n const existing = this.messages.get(id);\n if (existing == null) return false;\n const newActivity = await updater(existing);\n if (newActivity == null) return false;\n this.messages.set(id, newActivity);\n return true;\n }\n\n removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const activity = this.messages.get(id);\n this.messages.delete(id);\n return Promise.resolve(activity);\n }\n\n async *getMessages(\n options: RepositoryGetMessagesOptions = {},\n ): AsyncIterable<Create | Announce> {\n const { order, until, since, limit } = options;\n let messages = [...this.messages.values()];\n if (since != null) {\n messages = messages.filter((message) =>\n message.published != null &&\n Temporal.Instant.compare(message.published, since) >= 0\n );\n }\n if (until != null) {\n messages = messages.filter((message) =>\n message.published != null &&\n Temporal.Instant.compare(message.published, until) <= 0\n );\n }\n if (order === \"oldest\") {\n messages.sort((a, b) =>\n (a.published?.epochMilliseconds ?? 0) -\n (b.published?.epochMilliseconds ?? 0)\n );\n } else {\n messages.sort((a, b) =>\n (b.published?.epochMilliseconds ?? 0) -\n (a.published?.epochMilliseconds ?? 0)\n );\n }\n if (limit != null) {\n messages.slice(0, limit);\n }\n for (const message of messages) yield message;\n }\n\n getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n return Promise.resolve(this.messages.get(id));\n }\n\n countMessages(): Promise<number> {\n return Promise.resolve(this.messages.size);\n }\n\n addFollower(followId: URL, follower: Actor): Promise<void> {\n if (follower.id == null) {\n throw new TypeError(\"The follower ID is missing.\");\n }\n this.followers.set(follower.id.href, follower);\n this.followRequests[followId.href] = follower.id.href;\n return Promise.resolve();\n }\n\n removeFollower(followId: URL, followerId: URL): Promise<Actor | undefined> {\n const existing = this.followRequests[followId.href];\n if (existing == null || existing !== followerId.href) {\n return Promise.resolve(undefined);\n }\n delete this.followRequests[followId.href];\n const follower = this.followers.get(followerId.href);\n this.followers.delete(followerId.href);\n return Promise.resolve(follower);\n }\n\n hasFollower(followerId: URL): Promise<boolean> {\n return Promise.resolve(this.followers.has(followerId.href));\n }\n\n async *getFollowers(\n options: RepositoryGetFollowersOptions = {},\n ): AsyncIterable<Actor> {\n const { offset = 0, limit } = options;\n let followers = [...this.followers.values()];\n followers.sort((a, b) => b.id!.href.localeCompare(a.id!.href) ?? 0);\n if (offset > 0) {\n followers = followers.slice(offset);\n }\n if (limit != null) {\n followers = followers.slice(0, limit);\n }\n for (const follower of followers) {\n yield follower;\n }\n }\n\n countFollowers(): Promise<number> {\n return Promise.resolve(this.followers.size);\n }\n\n addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n this.sentFollows[id] = follow;\n return Promise.resolve();\n }\n\n removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const follow = this.sentFollows[id];\n delete this.sentFollows[id];\n return Promise.resolve(follow);\n }\n\n getSentFollow(id: Uuid): Promise<Follow | undefined> {\n return Promise.resolve(this.sentFollows[id]);\n }\n\n addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n this.followees[followeeId.href] = follow;\n return Promise.resolve();\n }\n\n removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const follow = this.followees[followeeId.href];\n delete this.followees[followeeId.href];\n return Promise.resolve(follow);\n }\n\n getFollowee(followeeId: URL): Promise<Follow | undefined> {\n return Promise.resolve(this.followees[followeeId.href]);\n }\n}\n\n/**\n * A repository decorator that adds an in-memory cache layer on top of another\n * repository. This is useful for improving performance by reducing the number\n * of accesses to the underlying persistent storage, but it increases memory\n * usage. The cache is not persistent and will be lost when the process exits.\n *\n * Note: List operations like `getMessages` and `getFollowers`, and count\n * operations like `countMessages` and `countFollowers` are not cached and\n * always delegate to the underlying repository.\n */\nexport class MemoryCachedRepository implements Repository {\n private underlying: Repository;\n private cache: MemoryRepository;\n\n /**\n * Creates a new memory-cached repository.\n * @param underlying The underlying repository to cache.\n * @param cache An optional `MemoryRepository` instance to use as the cache.\n * If not provided, a new one will be created internally.\n */\n constructor(underlying: Repository, cache?: MemoryRepository) {\n this.underlying = underlying;\n this.cache = cache ?? new MemoryRepository();\n }\n\n async setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n await this.underlying.setKeyPairs(keyPairs);\n await this.cache.setKeyPairs(keyPairs);\n }\n\n async getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n let keyPairs = await this.cache.getKeyPairs();\n if (keyPairs === undefined) {\n keyPairs = await this.underlying.getKeyPairs();\n if (keyPairs !== undefined) await this.cache.setKeyPairs(keyPairs);\n }\n return keyPairs;\n }\n\n async addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n await this.underlying.addMessage(id, activity);\n await this.cache.addMessage(id, activity);\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n // Apply update to underlying first\n const updated = await this.underlying.updateMessage(id, updater);\n if (updated) {\n // If successful, fetch the updated message and update the cache\n const updatedMessage = await this.underlying.getMessage(id);\n if (updatedMessage) {\n await this.cache.addMessage(id, updatedMessage); // Use addMessage which acts like set\n } else {\n // Should not happen if updateMessage returned true, but handle defensively\n await this.cache.removeMessage(id);\n }\n }\n return updated;\n }\n\n async removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const removedActivity = await this.underlying.removeMessage(id);\n if (removedActivity !== undefined) {\n await this.cache.removeMessage(id);\n }\n return removedActivity;\n }\n\n // getMessages is not cached due to complexity with options\n getMessages(\n options?: RepositoryGetMessagesOptions,\n ): AsyncIterable<Create | Announce> {\n return this.underlying.getMessages(options);\n }\n\n async getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n let message = await this.cache.getMessage(id);\n if (message === undefined) {\n message = await this.underlying.getMessage(id);\n if (message !== undefined) {\n await this.cache.addMessage(id, message); // Use addMessage which acts like set\n }\n }\n return message;\n }\n\n // countMessages is not cached\n countMessages(): Promise<number> {\n return this.underlying.countMessages();\n }\n\n async addFollower(followId: URL, follower: Actor): Promise<void> {\n await this.underlying.addFollower(followId, follower);\n await this.cache.addFollower(followId, follower);\n }\n\n async removeFollower(\n followId: URL,\n followerId: URL,\n ): Promise<Actor | undefined> {\n const removedFollower = await this.underlying.removeFollower(\n followId,\n followerId,\n );\n if (removedFollower !== undefined) {\n await this.cache.removeFollower(followId, followerId);\n }\n return removedFollower;\n }\n\n async hasFollower(followerId: URL): Promise<boolean> {\n // Check cache first for potentially faster response\n if (await this.cache.hasFollower(followerId)) {\n return true;\n }\n // If not in cache, check underlying and update cache if found\n const exists = await this.underlying.hasFollower(followerId);\n // Note: We don't automatically add to cache here, as we don't have the Actor object\n // It will be cached if addFollower is called or if getFollowers iterates over it (though getFollowers isn't cached)\n return exists;\n }\n\n // getFollowers is not cached due to complexity with options\n getFollowers(options?: RepositoryGetFollowersOptions): AsyncIterable<Actor> {\n // We could potentially cache followers as they are iterated,\n // but for simplicity, delegate directly for now.\n return this.underlying.getFollowers(options);\n }\n\n // countFollowers is not cached\n countFollowers(): Promise<number> {\n return this.underlying.countFollowers();\n }\n\n async addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n await this.underlying.addSentFollow(id, follow);\n await this.cache.addSentFollow(id, follow);\n }\n\n async removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const removedFollow = await this.underlying.removeSentFollow(id);\n if (removedFollow !== undefined) {\n await this.cache.removeSentFollow(id);\n }\n return removedFollow;\n }\n\n async getSentFollow(id: Uuid): Promise<Follow | undefined> {\n let follow = await this.cache.getSentFollow(id);\n if (follow === undefined) {\n follow = await this.underlying.getSentFollow(id);\n if (follow !== undefined) {\n await this.cache.addSentFollow(id, follow);\n }\n }\n return follow;\n }\n\n async addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n await this.underlying.addFollowee(followeeId, follow);\n await this.cache.addFollowee(followeeId, follow);\n }\n\n async removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const removedFollow = await this.underlying.removeFollowee(followeeId);\n if (removedFollow !== undefined) {\n await this.cache.removeFollowee(followeeId);\n }\n return removedFollow;\n }\n\n async getFollowee(followeeId: URL): Promise<Follow | undefined> {\n let follow = await this.cache.getFollowee(followeeId);\n if (follow === undefined) {\n follow = await this.underlying.getFollowee(followeeId);\n if (follow !== undefined) {\n await this.cache.addFollowee(followeeId, follow);\n }\n }\n return follow;\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"repository.js","names":["kv: KvStore","prefixes?: KvStoreRepositoryPrefixes","keyPairs: CryptoKeyPair[]","pairs: KeyPair[]","pair: KeyPair","id: Uuid","activity: Create | Announce","messageKey: KvKey","lockKey: KvKey","listKey: KvKey","updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>","kvKey: KvKey","Create","Announce","options: RepositoryGetMessagesOptions","activity: Activity","followRequestId: URL","follower: Actor","followerKey: KvKey","followRequestKey: KvKey","actorId: URL","follower: Object","followerId: URL","options: RepositoryGetFollowersOptions","actor: Object","follow: Follow","followeeId: URL","uuid: string","followId: URL","underlying: Repository","cache?: MemoryRepository","options?: RepositoryGetMessagesOptions","options?: RepositoryGetFollowersOptions"],"sources":["../src/repository.ts"],"sourcesContent":["// BotKit by Fedify: A framework for creating ActivityPub bots\n// Copyright (C) 2025 Hong Minhee <https://hongminhee.org/>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as\n// published by the Free Software Foundation, either version 3 of the\n// License, or (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program. If not, see <https://www.gnu.org/licenses/>.\nimport type { KvKey, KvStore } from \"@fedify/fedify/federation\";\nimport { exportJwk, importJwk } from \"@fedify/fedify/sig\";\nimport {\n Activity,\n type Actor,\n Announce,\n Create,\n Follow,\n isActor,\n Object,\n} from \"@fedify/fedify/vocab\";\nexport type { KvKey, KvStore } from \"@fedify/fedify/federation\";\nexport { Announce, Create } from \"@fedify/fedify/vocab\";\n\n/**\n * A UUID (universally unique identifier).\n * @since 0.3.0\n */\nexport type Uuid = ReturnType<typeof crypto.randomUUID>;\n\n/**\n * A repository for storing bot data.\n * @since 0.3.0\n */\nexport interface Repository {\n /**\n * Sets the key pairs of the bot actor.\n * @param keyPairs The key pairs to set.\n */\n setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void>;\n\n /**\n * Gets the key pairs of the bot actor.\n * @returns The key pairs of the bot actor. If the key pairs do not exist,\n * `undefined` will be returned.\n */\n getKeyPairs(): Promise<CryptoKeyPair[] | undefined>;\n\n /**\n * Adds a message to the repository.\n * @param id The UUID of the message.\n * @param activity The activity to add.\n */\n addMessage(id: Uuid, activity: Create | Announce): Promise<void>;\n\n /**\n * Updates a message in the repository.\n * @param id The UUID of the message.\n * @param updater The function to update the message. The function will be\n * called with the existing message, and the return value will\n * be the new message. If the function returns a promise, the\n * promise will be awaited. If the function returns either\n * `undefined` or a promise that resolves to `undefined`,\n * the message will not be updated. If the message does not\n * exist, the updater will not be called.\n * @returns `true` if the message was updated, `false` if the message does not\n * exist.\n */\n updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean>;\n\n /**\n * Removes a message from the repository.\n * @param id The UUID of the message to remove.\n * @returns The removed activity. If the message does not exist, `undefined`\n * will be returned.\n */\n removeMessage(id: Uuid): Promise<Create | Announce | undefined>;\n\n /**\n * Gets messages from the repository.\n * @param options The options for getting messages.\n * @returns An async iterable of message activities.\n */\n getMessages(\n options?: RepositoryGetMessagesOptions,\n ): AsyncIterable<Create | Announce>;\n\n /**\n * Gets a message from the repository.\n * @param id The UUID of the message to get.\n * @returns The message activity, or `undefined` if the message does not\n * exist.\n */\n getMessage(id: Uuid): Promise<Create | Announce | undefined>;\n\n /**\n * Counts the number of messages in the repository.\n * @returns The number of messages in the repository.\n */\n countMessages(): Promise<number>;\n\n /**\n * Adds a follower to the repository.\n * @param followId The URL of the follow request.\n * @param follower The actor who follows the bot.\n */\n addFollower(followId: URL, follower: Actor): Promise<void>;\n\n /**\n * Removes a follower from the repository.\n * @param followId The URL of the follow request.\n * @param followerId The ID of the actor to remove.\n * @returns The removed actor. If the follower does not exist or the follow\n * request is not about the follower, `undefined` will be returned.\n */\n removeFollower(followId: URL, followerId: URL): Promise<Actor | undefined>;\n\n /**\n * Checks if the repository has a follower.\n * @param followerId The ID of the follower to check.\n * @returns `true` if the repository has the follower, `false` otherwise.\n */\n hasFollower(followerId: URL): Promise<boolean>;\n\n /**\n * Gets followers from the repository.\n * @param options The options for getting followers.\n * @returns An async iterable of actors who follow the bot.\n */\n getFollowers(options?: RepositoryGetFollowersOptions): AsyncIterable<Actor>;\n\n /**\n * Counts the number of followers in the repository.\n * @returns The number of followers in the repository.\n */\n countFollowers(): Promise<number>;\n\n /**\n * Adds a sent follow request to the repository.\n * @param id The UUID of the follow request.\n * @param follow The follow activity to add.\n */\n addSentFollow(id: Uuid, follow: Follow): Promise<void>;\n\n /**\n * Removes a sent follow request from the repository.\n * @param id The UUID of the follow request to remove.\n * @returns The removed follow activity. If the follow request does not\n * exist, `undefined` will be returned.\n */\n removeSentFollow(id: Uuid): Promise<Follow | undefined>;\n\n /**\n * Gets a sent follow request from the repository.\n * @param id The UUID of the follow request to get.\n * @returns The `Follow` activity, or `undefined` if the follow request does\n * not exist.\n */\n getSentFollow(id: Uuid): Promise<Follow | undefined>;\n\n /**\n * Adds a followee to the repository.\n * @param followeeId The ID of the followee to add.\n * @param follow The follow activity to add.\n */\n addFollowee(followeeId: URL, follow: Follow): Promise<void>;\n\n /**\n * Removes a followee from the repository.\n * @param followeeId The ID of the followee to remove.\n * @returns The `Follow` activity that was removed. If the followee does not\n * exist, `undefined` will be returned.\n */\n removeFollowee(followeeId: URL): Promise<Follow | undefined>;\n\n /**\n * Gets a followee from the repository.\n * @param followeeId The ID of the followee to get.\n * @returns The `Follow` activity, or `undefined` if the followee does not\n * exist.\n */\n getFollowee(followeeId: URL): Promise<Follow | undefined>;\n}\n\n/**\n * Options for getting messages from the repository.\n * @since 0.3.0\n */\nexport interface RepositoryGetMessagesOptions {\n /**\n * The order of the messages. If omitted, `\"newest\"` will be used.\n * @default `\"newest\"`\n */\n readonly order?: \"oldest\" | \"newest\";\n\n /**\n * The timestamp to get messages created at or before this time.\n * If omitted, no limit will be applied.\n */\n readonly until?: Temporal.Instant;\n\n /**\n * The timestamp to get messages created at or after this time.\n * If omitted, no limit will be applied.\n */\n readonly since?: Temporal.Instant;\n\n /**\n * The maximum number of messages to get. If omitted, no limit will be\n * applied.\n */\n readonly limit?: number;\n}\n\n/**\n * Options for getting followers from the repository.\n * @since 0.3.0\n */\nexport interface RepositoryGetFollowersOptions {\n /**\n * The offset of the followers to get. If omitted, 0 will be used.\n * @default `0`\n */\n readonly offset?: number;\n\n /**\n * The limit of the followers to get. If omitted, no limit will be applied.\n */\n readonly limit?: number;\n}\n\n/**\n * The prefixes for key-value store keys used by the bot.\n * @since 0.3.0\n */\nexport interface KvStoreRepositoryPrefixes {\n /**\n * The key prefix used for storing the key pairs of the bot actor.\n * @default `[\"_botkit\", \"keyPairs\"]`\n */\n readonly keyPairs: KvKey;\n\n /**\n * The key prefix used for storing published messages.\n * @default `[\"_botkit\", \"messages\"]`\n */\n readonly messages: KvKey;\n\n /**\n * The key prefix used for storing followers.\n * @default `[\"_botkit\", \"followers\"]`\n */\n readonly followers: KvKey;\n\n /**\n * The key prefix used for storing incoming follow requests.\n * @default `[\"_botkit\", \"followRequests\"]`\n */\n readonly followRequests: KvKey;\n\n /**\n * The key prefix used for storing followees.\n * @default `[\"_botkit\", \"followees\"]`\n */\n readonly followees: KvKey;\n\n /**\n * The key prefix used for storing outgoing follow requests.\n * @default `[\"_botkit\", \"follows\"]`\n */\n readonly follows: KvKey;\n}\n\n/**\n * A repository for storing bot data using a key-value store.\n */\nexport class KvRepository implements Repository {\n readonly kv: KvStore;\n readonly prefixes: KvStoreRepositoryPrefixes;\n\n /**\n * Creates a new key-value store repository.\n * @param kv The key-value store to use.\n * @param prefixes The prefixes for key-value store keys.\n */\n constructor(kv: KvStore, prefixes?: KvStoreRepositoryPrefixes) {\n this.kv = kv;\n this.prefixes = {\n keyPairs: [\"_botkit\", \"keyPairs\"],\n messages: [\"_botkit\", \"messages\"],\n followers: [\"_botkit\", \"followers\"],\n followRequests: [\"_botkit\", \"followRequests\"],\n followees: [\"_botkit\", \"followees\"],\n follows: [\"_botkit\", \"follows\"],\n ...prefixes ?? {},\n };\n }\n\n async setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n const pairs: KeyPair[] = [];\n for (const keyPair of keyPairs) {\n const pair: KeyPair = {\n private: await exportJwk(keyPair.privateKey),\n public: await exportJwk(keyPair.publicKey),\n };\n pairs.push(pair);\n }\n await this.kv.set(this.prefixes.keyPairs, pairs);\n }\n\n async getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n const keyPairs = await this.kv.get<KeyPair[]>(this.prefixes.keyPairs);\n if (keyPairs == null) return undefined;\n const promises = keyPairs.map(async (pair) => ({\n privateKey: await importJwk(pair.private, \"private\"),\n publicKey: await importJwk(pair.public, \"public\"),\n }));\n return await Promise.all(promises);\n }\n\n async addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n const messageKey: KvKey = [...this.prefixes.messages, id];\n await this.kv.set(\n messageKey,\n await activity.toJsonLd({ format: \"compact\" }),\n );\n const lockKey: KvKey = [...this.prefixes.messages, \"lock\"];\n const listKey: KvKey = this.prefixes.messages;\n do {\n await this.kv.set(lockKey, id);\n const set = new Set(await this.kv.get<string[]>(listKey) ?? []);\n set.add(id);\n const list = [...set];\n list.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== id);\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n const kvKey: KvKey = [...this.prefixes.messages, id];\n const createJson = await this.kv.get(kvKey);\n if (createJson == null) return false;\n const activity = await Activity.fromJsonLd(createJson);\n if (!(activity instanceof Create || activity instanceof Announce)) {\n return false;\n }\n const newActivity = await updater(activity);\n if (newActivity == null) return false;\n await this.kv.set(\n kvKey,\n await newActivity.toJsonLd({ format: \"compact\" }),\n );\n return true;\n }\n\n async removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const listKey: KvKey = this.prefixes.messages;\n const lockKey: KvKey = [...listKey, \"lock\"];\n const lockId = `${id}:delete`;\n do {\n await this.kv.set(lockKey, lockId);\n const set = new Set(await this.kv.get<string[]>(listKey) ?? []);\n set.delete(id);\n const list = [...set];\n list.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== lockId);\n const messageKey: KvKey = [...listKey, id];\n const activityJson = await this.kv.get(messageKey);\n if (activityJson == null) return;\n await this.kv.delete(messageKey);\n const activity = await Activity.fromJsonLd(activityJson);\n if (activity instanceof Create || activity instanceof Announce) {\n return activity;\n }\n return undefined;\n }\n\n async *getMessages(\n options: RepositoryGetMessagesOptions = {},\n ): AsyncIterable<Create | Announce> {\n const { order, until, since, limit } = options;\n const untilTs = until == null ? null : until.epochMilliseconds;\n const sinceTs = since == null ? null : since.epochMilliseconds;\n let messageIds = await this.kv.get<string[]>(this.prefixes.messages) ?? [];\n if (sinceTs != null) {\n const offset = messageIds.findIndex((id) =>\n extractTimestamp(id) >= sinceTs\n );\n messageIds = messageIds.slice(offset);\n }\n if (untilTs != null) {\n const offset = messageIds.findLastIndex((id) =>\n extractTimestamp(id) <= untilTs\n );\n messageIds = messageIds.slice(0, offset + 1);\n }\n if (order == null || order === \"newest\") {\n messageIds = messageIds.toReversed();\n }\n if (limit != null) {\n messageIds = messageIds.slice(0, limit);\n }\n for (const id of messageIds) {\n const messageJson = await this.kv.get([...this.prefixes.messages, id]);\n if (messageJson == null) continue;\n try {\n const activity = await Activity.fromJsonLd(messageJson);\n if (activity instanceof Create || activity instanceof Announce) {\n yield activity;\n }\n } catch {\n continue;\n }\n }\n }\n\n async getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const json = await this.kv.get([...this.prefixes.messages, id]);\n if (json == null) return undefined;\n let activity: Activity;\n try {\n activity = await Activity.fromJsonLd(json);\n } catch (e) {\n if (e instanceof TypeError) return undefined;\n throw e;\n }\n if (activity instanceof Create || activity instanceof Announce) {\n return activity;\n }\n return undefined;\n }\n\n async countMessages(): Promise<number> {\n const messageIds = await this.kv.get<string[]>(this.prefixes.messages) ??\n [];\n return messageIds.length;\n }\n\n async addFollower(followRequestId: URL, follower: Actor): Promise<void> {\n if (follower.id == null) {\n throw new TypeError(\"The follower ID is missing.\");\n }\n const followerKey: KvKey = [...this.prefixes.followers, follower.id.href];\n await this.kv.set(\n followerKey,\n await follower.toJsonLd({ format: \"compact\" }),\n );\n const lockKey: KvKey = [...this.prefixes.followers, \"lock\"];\n const listKey: KvKey = this.prefixes.followers;\n do {\n await this.kv.set(lockKey, follower.id.href);\n const list = await this.kv.get<string[]>(listKey) ?? [];\n if (!list.includes(follower.id.href)) list.push(follower.id.href);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== follower.id.href);\n const followRequestKey: KvKey = [\n ...this.prefixes.followRequests,\n followRequestId.href,\n ];\n await this.kv.set(followRequestKey, follower.id.href);\n }\n\n async removeFollower(\n followRequestId: URL,\n actorId: URL,\n ): Promise<Actor | undefined> {\n const followRequestKey: KvKey = [\n ...this.prefixes.followRequests,\n followRequestId.href,\n ];\n const followerId = await this.kv.get<string>(followRequestKey);\n if (followerId == null) return undefined;\n const followerKey: KvKey = [...this.prefixes.followers, followerId];\n if (followerId !== actorId.href) return undefined;\n const followerJson = await this.kv.get(followerKey);\n if (followerJson == null) return undefined;\n let follower: Object;\n try {\n follower = await Object.fromJsonLd(followerJson);\n } catch {\n return undefined;\n }\n if (!isActor(follower)) return undefined;\n const lockKey: KvKey = [...this.prefixes.followers, \"lock\"];\n const listKey: KvKey = this.prefixes.followers;\n do {\n await this.kv.set(lockKey, followerId);\n let list = await this.kv.get<string[]>(listKey) ?? [];\n list = list.filter((id) => id !== followerId);\n await this.kv.set(listKey, list);\n } while (await this.kv.get(lockKey) !== followerId);\n await this.kv.delete(followerKey);\n await this.kv.delete(followRequestKey);\n return follower;\n }\n\n async hasFollower(followerId: URL): Promise<boolean> {\n return await this.kv.get<unknown>([\n ...this.prefixes.followers,\n followerId.href,\n ]) != null;\n }\n\n async *getFollowers(\n options: RepositoryGetFollowersOptions = {},\n ): AsyncIterable<Actor> {\n const { offset = 0, limit } = options;\n let followerIds = await this.kv.get<string[]>(this.prefixes.followers) ??\n [];\n followerIds = followerIds.slice(offset);\n if (limit != null) {\n followerIds = followerIds.slice(0, limit);\n }\n for (const id of followerIds) {\n const json = await this.kv.get([...this.prefixes.followers, id]);\n let actor: Object;\n try {\n actor = await Object.fromJsonLd(json);\n } catch (e) {\n if (e instanceof TypeError) continue;\n throw e;\n }\n if (isActor(actor)) yield actor;\n }\n }\n\n async countFollowers(): Promise<number> {\n const followerIds = await this.kv.get<string[]>(this.prefixes.followers) ??\n [];\n return followerIds.length;\n }\n\n async addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n await this.kv.set(\n [...this.prefixes.follows, id],\n await follow.toJsonLd({ format: \"compact\" }),\n );\n }\n\n async removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const follow = await this.getSentFollow(id);\n if (follow == null) return undefined;\n await this.kv.delete([...this.prefixes.follows, id]);\n return follow;\n }\n\n async getSentFollow(id: Uuid): Promise<Follow | undefined> {\n const followJson = await this.kv.get([...this.prefixes.follows, id]);\n if (followJson == null) return undefined;\n try {\n return await Follow.fromJsonLd(followJson);\n } catch {\n return undefined;\n }\n }\n\n async addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n await this.kv.set(\n [...this.prefixes.followees, followeeId.href],\n await follow.toJsonLd({ format: \"compact\" }),\n );\n }\n\n async removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const follow = await this.getFollowee(followeeId);\n if (follow == null) return undefined;\n await this.kv.delete([...this.prefixes.followees, followeeId.href]);\n return follow;\n }\n\n async getFollowee(followeeId: URL): Promise<Follow | undefined> {\n const json = await this.kv.get([\n ...this.prefixes.followees,\n followeeId.href,\n ]);\n if (json == null) return undefined;\n try {\n return await Follow.fromJsonLd(json);\n } catch {\n return undefined;\n }\n }\n}\n\ninterface KeyPair {\n private: JsonWebKey;\n public: JsonWebKey;\n}\n\n/**\n * Extracts the timestamp from a UUIDv7.\n * @param uuid The UUIDv7 string to extract the timestamp from.\n * @return The timestamp in milliseconds since the Unix epoch.\n * @internal\n */\nfunction extractTimestamp(uuid: string): number {\n // UUIDv7 format: xxxxxxxx-xxxx-7xxx-yxxx-xxxxxxxxxxxx\n // The timestamp is in the first 6 bytes (48 bits) of the UUID.\n if (uuid.length !== 36 || uuid[14] !== \"7\") {\n throw new TypeError(\"Invalid UUIDv7 format.\");\n }\n const timestampHex = uuid.slice(0, 8) + uuid.slice(9, 13);\n return parseInt(timestampHex, 16);\n}\n\n/**\n * A repository for storing bot data in memory. This repository is not\n * persistent and is only suitable for testing or development.\n */\nexport class MemoryRepository implements Repository {\n keyPairs?: CryptoKeyPair[];\n messages: Map<Uuid, Create | Announce> = new Map();\n followers: Map<string, Actor> = new Map();\n followRequests: Record<string, string> = {};\n sentFollows: Record<string, Follow> = {};\n followees: Record<string, Follow> = {};\n\n setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n this.keyPairs = keyPairs;\n return Promise.resolve();\n }\n\n getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n return Promise.resolve(this.keyPairs);\n }\n\n addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n this.messages.set(id, activity);\n return Promise.resolve();\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n const existing = this.messages.get(id);\n if (existing == null) return false;\n const newActivity = await updater(existing);\n if (newActivity == null) return false;\n this.messages.set(id, newActivity);\n return true;\n }\n\n removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const activity = this.messages.get(id);\n this.messages.delete(id);\n return Promise.resolve(activity);\n }\n\n async *getMessages(\n options: RepositoryGetMessagesOptions = {},\n ): AsyncIterable<Create | Announce> {\n const { order, until, since, limit } = options;\n let messages = [...this.messages.values()];\n if (since != null) {\n messages = messages.filter((message) =>\n message.published != null &&\n Temporal.Instant.compare(message.published, since) >= 0\n );\n }\n if (until != null) {\n messages = messages.filter((message) =>\n message.published != null &&\n Temporal.Instant.compare(message.published, until) <= 0\n );\n }\n if (order === \"oldest\") {\n messages.sort((a, b) =>\n (a.published?.epochMilliseconds ?? 0) -\n (b.published?.epochMilliseconds ?? 0)\n );\n } else {\n messages.sort((a, b) =>\n (b.published?.epochMilliseconds ?? 0) -\n (a.published?.epochMilliseconds ?? 0)\n );\n }\n if (limit != null) {\n messages.slice(0, limit);\n }\n for (const message of messages) yield message;\n }\n\n getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n return Promise.resolve(this.messages.get(id));\n }\n\n countMessages(): Promise<number> {\n return Promise.resolve(this.messages.size);\n }\n\n addFollower(followId: URL, follower: Actor): Promise<void> {\n if (follower.id == null) {\n throw new TypeError(\"The follower ID is missing.\");\n }\n this.followers.set(follower.id.href, follower);\n this.followRequests[followId.href] = follower.id.href;\n return Promise.resolve();\n }\n\n removeFollower(followId: URL, followerId: URL): Promise<Actor | undefined> {\n const existing = this.followRequests[followId.href];\n if (existing == null || existing !== followerId.href) {\n return Promise.resolve(undefined);\n }\n delete this.followRequests[followId.href];\n const follower = this.followers.get(followerId.href);\n this.followers.delete(followerId.href);\n return Promise.resolve(follower);\n }\n\n hasFollower(followerId: URL): Promise<boolean> {\n return Promise.resolve(this.followers.has(followerId.href));\n }\n\n async *getFollowers(\n options: RepositoryGetFollowersOptions = {},\n ): AsyncIterable<Actor> {\n const { offset = 0, limit } = options;\n let followers = [...this.followers.values()];\n followers.sort((a, b) => b.id!.href.localeCompare(a.id!.href) ?? 0);\n if (offset > 0) {\n followers = followers.slice(offset);\n }\n if (limit != null) {\n followers = followers.slice(0, limit);\n }\n for (const follower of followers) {\n yield follower;\n }\n }\n\n countFollowers(): Promise<number> {\n return Promise.resolve(this.followers.size);\n }\n\n addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n this.sentFollows[id] = follow;\n return Promise.resolve();\n }\n\n removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const follow = this.sentFollows[id];\n delete this.sentFollows[id];\n return Promise.resolve(follow);\n }\n\n getSentFollow(id: Uuid): Promise<Follow | undefined> {\n return Promise.resolve(this.sentFollows[id]);\n }\n\n addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n this.followees[followeeId.href] = follow;\n return Promise.resolve();\n }\n\n removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const follow = this.followees[followeeId.href];\n delete this.followees[followeeId.href];\n return Promise.resolve(follow);\n }\n\n getFollowee(followeeId: URL): Promise<Follow | undefined> {\n return Promise.resolve(this.followees[followeeId.href]);\n }\n}\n\n/**\n * A repository decorator that adds an in-memory cache layer on top of another\n * repository. This is useful for improving performance by reducing the number\n * of accesses to the underlying persistent storage, but it increases memory\n * usage. The cache is not persistent and will be lost when the process exits.\n *\n * Note: List operations like `getMessages` and `getFollowers`, and count\n * operations like `countMessages` and `countFollowers` are not cached and\n * always delegate to the underlying repository.\n * @since 0.3.0\n */\nexport class MemoryCachedRepository implements Repository {\n private underlying: Repository;\n private cache: MemoryRepository;\n\n /**\n * Creates a new memory-cached repository.\n * @param underlying The underlying repository to cache.\n * @param cache An optional `MemoryRepository` instance to use as the cache.\n * If not provided, a new one will be created internally.\n */\n constructor(underlying: Repository, cache?: MemoryRepository) {\n this.underlying = underlying;\n this.cache = cache ?? new MemoryRepository();\n }\n\n async setKeyPairs(keyPairs: CryptoKeyPair[]): Promise<void> {\n await this.underlying.setKeyPairs(keyPairs);\n await this.cache.setKeyPairs(keyPairs);\n }\n\n async getKeyPairs(): Promise<CryptoKeyPair[] | undefined> {\n let keyPairs = await this.cache.getKeyPairs();\n if (keyPairs === undefined) {\n keyPairs = await this.underlying.getKeyPairs();\n if (keyPairs !== undefined) await this.cache.setKeyPairs(keyPairs);\n }\n return keyPairs;\n }\n\n async addMessage(id: Uuid, activity: Create | Announce): Promise<void> {\n await this.underlying.addMessage(id, activity);\n await this.cache.addMessage(id, activity);\n }\n\n async updateMessage(\n id: Uuid,\n updater: (\n existing: Create | Announce,\n ) => Create | Announce | undefined | Promise<Create | Announce | undefined>,\n ): Promise<boolean> {\n // Apply update to underlying first\n const updated = await this.underlying.updateMessage(id, updater);\n if (updated) {\n // If successful, fetch the updated message and update the cache\n const updatedMessage = await this.underlying.getMessage(id);\n if (updatedMessage) {\n await this.cache.addMessage(id, updatedMessage); // Use addMessage which acts like set\n } else {\n // Should not happen if updateMessage returned true, but handle defensively\n await this.cache.removeMessage(id);\n }\n }\n return updated;\n }\n\n async removeMessage(id: Uuid): Promise<Create | Announce | undefined> {\n const removedActivity = await this.underlying.removeMessage(id);\n if (removedActivity !== undefined) {\n await this.cache.removeMessage(id);\n }\n return removedActivity;\n }\n\n // getMessages is not cached due to complexity with options\n getMessages(\n options?: RepositoryGetMessagesOptions,\n ): AsyncIterable<Create | Announce> {\n return this.underlying.getMessages(options);\n }\n\n async getMessage(id: Uuid): Promise<Create | Announce | undefined> {\n let message = await this.cache.getMessage(id);\n if (message === undefined) {\n message = await this.underlying.getMessage(id);\n if (message !== undefined) {\n await this.cache.addMessage(id, message); // Use addMessage which acts like set\n }\n }\n return message;\n }\n\n // countMessages is not cached\n countMessages(): Promise<number> {\n return this.underlying.countMessages();\n }\n\n async addFollower(followId: URL, follower: Actor): Promise<void> {\n await this.underlying.addFollower(followId, follower);\n await this.cache.addFollower(followId, follower);\n }\n\n async removeFollower(\n followId: URL,\n followerId: URL,\n ): Promise<Actor | undefined> {\n const removedFollower = await this.underlying.removeFollower(\n followId,\n followerId,\n );\n if (removedFollower !== undefined) {\n await this.cache.removeFollower(followId, followerId);\n }\n return removedFollower;\n }\n\n async hasFollower(followerId: URL): Promise<boolean> {\n // Check cache first for potentially faster response\n if (await this.cache.hasFollower(followerId)) {\n return true;\n }\n // If not in cache, check underlying and update cache if found\n const exists = await this.underlying.hasFollower(followerId);\n // Note: We don't automatically add to cache here, as we don't have the Actor object\n // It will be cached if addFollower is called or if getFollowers iterates over it (though getFollowers isn't cached)\n return exists;\n }\n\n // getFollowers is not cached due to complexity with options\n getFollowers(options?: RepositoryGetFollowersOptions): AsyncIterable<Actor> {\n // We could potentially cache followers as they are iterated,\n // but for simplicity, delegate directly for now.\n return this.underlying.getFollowers(options);\n }\n\n // countFollowers is not cached\n countFollowers(): Promise<number> {\n return this.underlying.countFollowers();\n }\n\n async addSentFollow(id: Uuid, follow: Follow): Promise<void> {\n await this.underlying.addSentFollow(id, follow);\n await this.cache.addSentFollow(id, follow);\n }\n\n async removeSentFollow(id: Uuid): Promise<Follow | undefined> {\n const removedFollow = await this.underlying.removeSentFollow(id);\n if (removedFollow !== undefined) {\n await this.cache.removeSentFollow(id);\n }\n return removedFollow;\n }\n\n async getSentFollow(id: Uuid): Promise<Follow | undefined> {\n let follow = await this.cache.getSentFollow(id);\n if (follow === undefined) {\n follow = await this.underlying.getSentFollow(id);\n if (follow !== undefined) {\n await this.cache.addSentFollow(id, follow);\n }\n }\n return follow;\n }\n\n async addFollowee(followeeId: URL, follow: Follow): Promise<void> {\n await this.underlying.addFollowee(followeeId, follow);\n await this.cache.addFollowee(followeeId, follow);\n }\n\n async removeFollowee(followeeId: URL): Promise<Follow | undefined> {\n const removedFollow = await this.underlying.removeFollowee(followeeId);\n if (removedFollow !== undefined) {\n await this.cache.removeFollowee(followeeId);\n }\n return removedFollow;\n }\n\n async getFollowee(followeeId: URL): Promise<Follow | undefined> {\n let follow = await this.cache.getFollowee(followeeId);\n if (follow === undefined) {\n follow = await this.underlying.getFollowee(followeeId);\n if (follow !== undefined) {\n await this.cache.addFollowee(followeeId, follow);\n }\n }\n return follow;\n }\n}\n"],"mappings":"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"}
package/dist/session.d.ts CHANGED
@@ -2,7 +2,6 @@ import { Temporal, toTemporalInstant } from "@js-temporal/polyfill";
2
2
  Date.prototype.toTemporalInstant = toTemporalInstant;
3
3
  import { Text } from "./text.js";
4
4
  import { AuthorizedMessage, Message, MessageClass, MessageVisibility } from "./message.js";
5
- import { RepositoryGetMessagesOptions } from "./repository.js";
6
5
  import { Bot } from "./bot.js";
7
6
  import { Actor, Article, ChatMessage, Context, Document, Note, Question } from "@fedify/fedify";
8
7
  import { LanguageTag } from "@phensley/language-tag";
@@ -132,7 +131,28 @@ interface SessionPublishOptionsWithClass<T extends MessageClass, TContextData> e
132
131
  /**
133
132
  * Options for getting messages from the bot's outbox.
134
133
  */
135
- interface SessionGetOutboxOptions extends RepositoryGetMessagesOptions {}
134
+ interface SessionGetOutboxOptions {
135
+ /**
136
+ * The order of the messages. If omitted, `"newest"` will be used.
137
+ * @default `"newest"`
138
+ */
139
+ readonly order?: "oldest" | "newest";
140
+ /**
141
+ * The timestamp to get messages created at or before this time.
142
+ * If omitted, no limit will be applied.
143
+ */
144
+ readonly until?: Temporal.Instant;
145
+ /**
146
+ * The timestamp to get messages created at or after this time.
147
+ * If omitted, no limit will be applied.
148
+ */
149
+ readonly since?: Temporal.Instant;
150
+ /**
151
+ * The maximum number of messages to get. If omitted, no limit will be
152
+ * applied.
153
+ */
154
+ readonly limit?: number;
155
+ }
136
156
  //# sourceMappingURL=session.d.ts.map
137
157
  //#endregion
138
158
  export { Session, SessionGetOutboxOptions, SessionPublishOptions, SessionPublishOptionsWithClass };
@@ -1 +1 @@
1
- {"version":3,"file":"session.d.ts","names":[],"sources":["../src/session.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;UAsCiB;;;AAAjB;EAAwB,SAAA,GAAA,EAIR,GAJQ,CAIJ,YAJI,CAAA;EAAA;;;EASgB,SAApB,OAAA,EAAA,OAAA,CAAQ,YAAR,CAAA;EAAO;;;EAgBN,SAgBL,OAAA,EA3BI,GA2BJ;EAAK;;;EAeE,SAAG,WAAA,EAAA,IAAA,MAAA,IAAA,MAAA,EAAA;EAAG;;;;EAWkB,QASpB,EAAA,EAnDb,OAmDa,CAnDL,KAmDK,CAAA;EAAY;;;;;;;;;;;;;;EAcP,MAAE,CAAA,KAAA,EAjDlB,KAiDkB,GAjDV,GAiDU,GAAA,MAAA,CAAA,EAjDK,OAiDL,CAAA,IAAA,CAAA;EAAY;;;;;;;AAS5B;AAOlB;;;;;EAU+B,QAKN,CAAA,KAAA,EAjEP,KAiEO,GAjEC,GAiED,GAAA,MAAA,CAAA,EAjEgB,OAiEhB,CAAA,IAAA,CAAA;EAAQ;;;AAMD;AAQhC;;;;;EAOmB,OAAS,CAAA,KAAA,EA3EX,KA2EW,GA3EH,GA2EG,GAAA,MAAA,CAAA,EA3EY,OA2EZ,CAAA,OAAA,CAAA;EAAO;;;;;;EAEf,OAAU,CAAA,OAAA,EApEjB,IAoEiB,CAAA,OAAA,EApEH,YAoEG,CAAA,EAAA,OAAA,CAAA,EAnEhB,qBAmEgB,CAnEM,YAmEN,CAAA,CAAA,EAlEzB,OAkEyB,CAlEjB,iBAkEiB,CAlEC,IAkED,EAlEO,YAkEP,CAAA,CAAA;EAAI;;;;AANH;AAc/B;;oBAjEoB,uBACP,cAAc,wBACd,+BAA+B,GAAG,gBAC1C,QAAQ,kBAAkB,GAAG;;;;;;sBAQpB,0BACT,cAAc,kBAAkB,cAAc;;;;;;UAOlC;;;;+BAIc;;;;;wBAMP,QAAQ;;;;yBAKP;;;;;yBAMA,QAAQ,cAAc;;;;;;;UAQ9B,yCACL,oCAEF,sBAAsB;;;;kBAId,UAAU,iBAAiB,UACvC,UAAU,qBAAqB,cAC/B,UAAU,cAAc,OACxB,UAAU,kBAAkB;;;;;UAOjB,uBAAA,SAAgC"}
1
+ {"version":3,"file":"session.d.ts","names":[],"sources":["../src/session.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;UAqCiB;;;AAAjB;EAAwB,SAAA,GAAA,EAIR,GAJQ,CAIJ,YAJI,CAAA;EAAA;;;EASgB,SAApB,OAAA,EAAA,OAAA,CAAQ,YAAR,CAAA;EAAO;;;EAgBN,SAgBL,OAAA,EA3BI,GA2BJ;EAAK;;;EAeE,SAAG,WAAA,EAAA,IAAA,MAAA,IAAA,MAAA,EAAA;EAAG;;;;EAWkB,QASpB,EAAA,EAnDb,OAmDa,CAnDL,KAmDK,CAAA;EAAY;;;;;;;;;;;;;;EAcP,MAAE,CAAA,KAAA,EAjDlB,KAiDkB,GAjDV,GAiDU,GAAA,MAAA,CAAA,EAjDK,OAiDL,CAAA,IAAA,CAAA;EAAY;;;;;;;AAS5B;AAOlB;;;;;EAU+B,QAKN,CAAA,KAAA,EAjEP,KAiEO,GAjEC,GAiED,GAAA,MAAA,CAAA,EAjEgB,OAiEhB,CAAA,IAAA,CAAA;EAAQ;;;AAMD;AAQhC;;;;;EAOmB,OAAS,CAAA,KAAA,EA3EX,KA2EW,GA3EH,GA2EG,GAAA,MAAA,CAAA,EA3EY,OA2EZ,CAAA,OAAA,CAAA;EAAO;;;;;;EAEf,OAAU,CAAA,OAAA,EApEjB,IAoEiB,CAAA,OAAA,EApEH,YAoEG,CAAA,EAAA,OAAA,CAAA,EAnEhB,qBAmEgB,CAnEM,YAmEN,CAAA,CAAA,EAlEzB,OAkEyB,CAlEjB,iBAkEiB,CAlEC,IAkED,EAlEO,YAkEP,CAAA,CAAA;EAAI;;;;AANH;AAc/B;;EAAwC,OAWrB,CAAA,UA5EC,YA4EQ,CAAA,CAAA,OAAA,EA3Ef,IA2Ee,CAAA,OAAA,EA3ED,YA2EC,CAAA,EAAA,OAAA,EA1Ef,8BA0Ee,CA1EgB,CA0EhB,EA1EmB,YA0EnB,CAAA,CAAA,EAzEvB,OAyEuB,CAzEf,iBAyEe,CAzEG,CAyEH,EAzEM,YAyEN,CAAA,CAAA;EAAO;AAMA;;;;sBAvErB,0BACT,cAAc,kBAAkB,cAAc;;;;;;UAOlC;;;;+BAIc;;;;;wBAMP,QAAQ;;;;yBAKP;;;;;yBAMA,QAAQ,cAAc;;;;;;;UAQ9B,yCACL,oCAEF,sBAAsB;;;;kBAId,UAAU,iBAAiB,UACvC,UAAU,qBAAqB,cAC/B,UAAU,cAAc,OACxB,UAAU,kBAAkB;;;;;UAOjB,uBAAA;;;;;;;;;;mBAWE,QAAA,CAAS;;;;;mBAMT,QAAA,CAAS"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/botkit",
3
- "version": "0.3.0-dev.108+5ff4003a",
3
+ "version": "0.3.0-dev.111+1b9cba8a",
4
4
  "description": "A framework for creating ActivityPub bots",
5
5
  "license": "AGPL-3.0-only",
6
6
  "author": {
@@ -86,6 +86,14 @@
86
86
  "import": "./dist/reaction.js",
87
87
  "require": "./dist/reaction.cjs"
88
88
  },
89
+ "./repository": {
90
+ "types": {
91
+ "import": "./dist/repository.d.ts",
92
+ "require": "./dist/repository.d.cts"
93
+ },
94
+ "import": "./dist/repository.js",
95
+ "require": "./dist/repository.cjs"
96
+ },
89
97
  "./session": {
90
98
  "types": {
91
99
  "import": "./dist/session.d.ts",
@@ -112,7 +120,7 @@
112
120
  "README.md"
113
121
  ],
114
122
  "dependencies": {
115
- "@fedify/fedify": "^1.6.1",
123
+ "@fedify/fedify": "^1.6.2",
116
124
  "@fedify/markdown-it-hashtag": "^0.3.0",
117
125
  "@fedify/markdown-it-mention": "^0.3.0",
118
126
  "@js-temporal/polyfill": "^0.5.1",