@gakr-gakr/matrix 0.1.0
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/CHANGELOG.md +285 -0
- package/SPEC-SUPPORT.md +116 -0
- package/api.ts +38 -0
- package/auth-presence.ts +56 -0
- package/autobot.plugin.json +28 -0
- package/channel-plugin-api.ts +3 -0
- package/cli-metadata.ts +11 -0
- package/contract-api.ts +17 -0
- package/doctor-contract-api.ts +1 -0
- package/helper-api.ts +3 -0
- package/index.ts +55 -0
- package/package.json +101 -0
- package/plugin-entry.handlers.runtime.ts +1 -0
- package/runtime-api.ts +72 -0
- package/runtime-heavy-api.ts +1 -0
- package/runtime-setter-api.ts +3 -0
- package/secret-contract-api.ts +5 -0
- package/setup-entry.ts +17 -0
- package/setup-plugin-api.ts +3 -0
- package/src/account-selection.ts +223 -0
- package/src/actions.ts +346 -0
- package/src/approval-auth.ts +25 -0
- package/src/approval-handler.runtime.ts +595 -0
- package/src/approval-ids.ts +6 -0
- package/src/approval-native.ts +348 -0
- package/src/approval-reaction-auth.ts +45 -0
- package/src/approval-reactions.ts +313 -0
- package/src/auth-precedence.ts +61 -0
- package/src/channel-account-paths.ts +97 -0
- package/src/channel.runtime.ts +17 -0
- package/src/channel.setup.ts +48 -0
- package/src/channel.ts +667 -0
- package/src/cli-metadata.ts +19 -0
- package/src/cli.ts +2298 -0
- package/src/config-adapter.ts +41 -0
- package/src/config-schema.ts +159 -0
- package/src/config-ui-hints.ts +56 -0
- package/src/directory-live.ts +238 -0
- package/src/doctor-contract.ts +287 -0
- package/src/doctor.ts +262 -0
- package/src/env-vars.ts +92 -0
- package/src/exec-approval-resolver.ts +23 -0
- package/src/exec-approvals.ts +293 -0
- package/src/group-mentions.ts +41 -0
- package/src/legacy-crypto-inspector-availability.ts +60 -0
- package/src/legacy-crypto.ts +531 -0
- package/src/legacy-state.ts +156 -0
- package/src/matrix/account-config.ts +175 -0
- package/src/matrix/accounts.ts +194 -0
- package/src/matrix/actions/client.ts +31 -0
- package/src/matrix/actions/devices.ts +34 -0
- package/src/matrix/actions/limits.ts +6 -0
- package/src/matrix/actions/messages.ts +129 -0
- package/src/matrix/actions/pins.ts +63 -0
- package/src/matrix/actions/polls.ts +109 -0
- package/src/matrix/actions/profile.ts +37 -0
- package/src/matrix/actions/reactions.ts +59 -0
- package/src/matrix/actions/room.ts +71 -0
- package/src/matrix/actions/summary.ts +88 -0
- package/src/matrix/actions/types.ts +63 -0
- package/src/matrix/actions/verification.ts +589 -0
- package/src/matrix/actions.ts +37 -0
- package/src/matrix/active-client.ts +26 -0
- package/src/matrix/async-lock.ts +18 -0
- package/src/matrix/backup-health.ts +124 -0
- package/src/matrix/client/config-runtime-api.ts +9 -0
- package/src/matrix/client/config-secret-input.runtime.ts +1 -0
- package/src/matrix/client/config.ts +853 -0
- package/src/matrix/client/create-client.ts +105 -0
- package/src/matrix/client/env-auth.ts +95 -0
- package/src/matrix/client/file-sync-store.ts +289 -0
- package/src/matrix/client/logging.ts +140 -0
- package/src/matrix/client/migration-snapshot.runtime.ts +1 -0
- package/src/matrix/client/private-network-host.ts +1 -0
- package/src/matrix/client/runtime.ts +4 -0
- package/src/matrix/client/shared.ts +316 -0
- package/src/matrix/client/storage.ts +543 -0
- package/src/matrix/client/types.ts +50 -0
- package/src/matrix/client/url-validation.ts +76 -0
- package/src/matrix/client-bootstrap.ts +173 -0
- package/src/matrix/client.ts +23 -0
- package/src/matrix/config-paths.ts +31 -0
- package/src/matrix/config-update.ts +292 -0
- package/src/matrix/credentials-read.ts +207 -0
- package/src/matrix/credentials-write.runtime.ts +35 -0
- package/src/matrix/credentials.ts +95 -0
- package/src/matrix/deps.ts +309 -0
- package/src/matrix/device-health.ts +31 -0
- package/src/matrix/direct-management.ts +349 -0
- package/src/matrix/direct-room.ts +128 -0
- package/src/matrix/draft-stream.ts +225 -0
- package/src/matrix/encryption-guidance.ts +24 -0
- package/src/matrix/errors.ts +21 -0
- package/src/matrix/format.ts +426 -0
- package/src/matrix/legacy-crypto-inspector.ts +95 -0
- package/src/matrix/media-errors.ts +20 -0
- package/src/matrix/media-text.ts +162 -0
- package/src/matrix/monitor/access-state.ts +145 -0
- package/src/matrix/monitor/ack-config.ts +27 -0
- package/src/matrix/monitor/allowlist.ts +92 -0
- package/src/matrix/monitor/auto-join.ts +86 -0
- package/src/matrix/monitor/config.ts +569 -0
- package/src/matrix/monitor/context-summary.ts +43 -0
- package/src/matrix/monitor/direct.ts +296 -0
- package/src/matrix/monitor/events.ts +397 -0
- package/src/matrix/monitor/handler.ts +2271 -0
- package/src/matrix/monitor/inbound-dedupe.ts +267 -0
- package/src/matrix/monitor/index.ts +540 -0
- package/src/matrix/monitor/legacy-crypto-restore.ts +139 -0
- package/src/matrix/monitor/location.ts +108 -0
- package/src/matrix/monitor/media.ts +119 -0
- package/src/matrix/monitor/mentions.ts +256 -0
- package/src/matrix/monitor/reaction-events.ts +197 -0
- package/src/matrix/monitor/recent-invite.ts +30 -0
- package/src/matrix/monitor/replies.ts +136 -0
- package/src/matrix/monitor/reply-context.ts +92 -0
- package/src/matrix/monitor/room-history.ts +301 -0
- package/src/matrix/monitor/room-info.ts +126 -0
- package/src/matrix/monitor/rooms.ts +52 -0
- package/src/matrix/monitor/route.ts +179 -0
- package/src/matrix/monitor/runtime-api.ts +28 -0
- package/src/matrix/monitor/startup-verification.ts +237 -0
- package/src/matrix/monitor/startup.ts +218 -0
- package/src/matrix/monitor/status.ts +120 -0
- package/src/matrix/monitor/sync-lifecycle.ts +91 -0
- package/src/matrix/monitor/task-runner.ts +38 -0
- package/src/matrix/monitor/test-events.ts +21 -0
- package/src/matrix/monitor/thread-context.ts +108 -0
- package/src/matrix/monitor/threads.ts +85 -0
- package/src/matrix/monitor/types.ts +30 -0
- package/src/matrix/monitor/verification-events.ts +643 -0
- package/src/matrix/monitor/verification-utils.ts +46 -0
- package/src/matrix/outbound-media-runtime.ts +1 -0
- package/src/matrix/poll-summary.ts +110 -0
- package/src/matrix/poll-types.ts +429 -0
- package/src/matrix/probe.runtime.ts +4 -0
- package/src/matrix/probe.ts +97 -0
- package/src/matrix/profile.ts +184 -0
- package/src/matrix/reaction-common.ts +147 -0
- package/src/matrix/sdk/crypto-bootstrap.ts +438 -0
- package/src/matrix/sdk/crypto-facade.ts +242 -0
- package/src/matrix/sdk/crypto-node.runtime.ts +17 -0
- package/src/matrix/sdk/crypto-runtime.ts +14 -0
- package/src/matrix/sdk/decrypt-bridge.ts +410 -0
- package/src/matrix/sdk/event-helpers.ts +83 -0
- package/src/matrix/sdk/http-client.ts +87 -0
- package/src/matrix/sdk/idb-persistence-lock.ts +51 -0
- package/src/matrix/sdk/idb-persistence.ts +286 -0
- package/src/matrix/sdk/logger.ts +108 -0
- package/src/matrix/sdk/read-response-with-limit.ts +19 -0
- package/src/matrix/sdk/recovery-key-store.ts +453 -0
- package/src/matrix/sdk/timeout-abort-signal.ts +1 -0
- package/src/matrix/sdk/transport-runtime-api.ts +18 -0
- package/src/matrix/sdk/transport.ts +352 -0
- package/src/matrix/sdk/types.ts +245 -0
- package/src/matrix/sdk/verification-manager.ts +795 -0
- package/src/matrix/sdk/verification-status.ts +23 -0
- package/src/matrix/sdk.ts +2152 -0
- package/src/matrix/send/client.ts +93 -0
- package/src/matrix/send/formatting.ts +189 -0
- package/src/matrix/send/media.ts +244 -0
- package/src/matrix/send/targets.ts +104 -0
- package/src/matrix/send/types.ts +131 -0
- package/src/matrix/send.ts +660 -0
- package/src/matrix/session-store-metadata.ts +108 -0
- package/src/matrix/startup-abort.ts +44 -0
- package/src/matrix/subagent-hooks.ts +308 -0
- package/src/matrix/sync-state.ts +27 -0
- package/src/matrix/target-ids.ts +79 -0
- package/src/matrix/thread-bindings-shared.ts +206 -0
- package/src/matrix/thread-bindings.ts +580 -0
- package/src/matrix-migration.runtime.ts +9 -0
- package/src/migration-config.ts +243 -0
- package/src/migration-snapshot-backup.ts +116 -0
- package/src/migration-snapshot.ts +53 -0
- package/src/onboarding.ts +775 -0
- package/src/outbound.ts +248 -0
- package/src/plugin-entry.runtime.js +115 -0
- package/src/plugin-entry.runtime.ts +70 -0
- package/src/profile-update.ts +71 -0
- package/src/record-shared.ts +3 -0
- package/src/resolve-targets.ts +175 -0
- package/src/resolver.runtime.ts +5 -0
- package/src/resolver.ts +21 -0
- package/src/runtime-api.ts +106 -0
- package/src/runtime.ts +13 -0
- package/src/secret-contract.ts +174 -0
- package/src/session-route.ts +126 -0
- package/src/setup-bootstrap.ts +102 -0
- package/src/setup-config.ts +222 -0
- package/src/setup-contract.ts +90 -0
- package/src/setup-core.ts +146 -0
- package/src/setup-dm-policy.ts +15 -0
- package/src/setup-surface.ts +4 -0
- package/src/startup-maintenance.ts +114 -0
- package/src/storage-paths.ts +92 -0
- package/src/thread-binding-api.ts +23 -0
- package/src/tool-actions.runtime.ts +1 -0
- package/src/tool-actions.ts +498 -0
- package/src/types.ts +257 -0
- package/subagent-hooks-api.ts +31 -0
- package/test-api.ts +21 -0
- package/thread-binding-api.ts +4 -0
- package/thread-bindings-runtime.ts +4 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import { requireRuntimeConfig } from "autobot/plugin-sdk/plugin-config-runtime";
|
|
2
|
+
import type { CoreConfig } from "../types.js";
|
|
3
|
+
import { getActiveMatrixClient } from "./active-client.js";
|
|
4
|
+
import { isBunRuntime } from "./client/runtime.js";
|
|
5
|
+
import type { MatrixClient } from "./sdk.js";
|
|
6
|
+
|
|
7
|
+
type ResolvedRuntimeMatrixClient = {
|
|
8
|
+
client: MatrixClient;
|
|
9
|
+
stopOnDone: boolean;
|
|
10
|
+
cleanup?: (mode: ResolvedRuntimeMatrixClientStopMode) => Promise<void>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
type MatrixRuntimeClientReadiness = "none" | "prepared" | "started";
|
|
14
|
+
type ResolvedRuntimeMatrixClientStopMode = "stop" | "persist" | "discard";
|
|
15
|
+
|
|
16
|
+
type MatrixResolvedClientHook = (
|
|
17
|
+
client: MatrixClient,
|
|
18
|
+
context: { preparedByDefault: boolean },
|
|
19
|
+
) => Promise<void> | void;
|
|
20
|
+
|
|
21
|
+
type MatrixSharedClientRuntimeDeps = Pick<
|
|
22
|
+
typeof import("./client.js"),
|
|
23
|
+
"acquireSharedMatrixClient" | "resolveMatrixAuthContext"
|
|
24
|
+
> &
|
|
25
|
+
Pick<typeof import("./client/shared.js"), "releaseSharedClientInstance">;
|
|
26
|
+
|
|
27
|
+
let matrixSharedClientRuntimeDepsPromise: Promise<MatrixSharedClientRuntimeDeps> | undefined;
|
|
28
|
+
|
|
29
|
+
async function loadMatrixSharedClientRuntimeDeps(): Promise<MatrixSharedClientRuntimeDeps> {
|
|
30
|
+
matrixSharedClientRuntimeDepsPromise ??= Promise.all([
|
|
31
|
+
import("./client.js"),
|
|
32
|
+
import("./client/shared.js"),
|
|
33
|
+
]).then(([clientModule, sharedModule]) => ({
|
|
34
|
+
acquireSharedMatrixClient: clientModule.acquireSharedMatrixClient,
|
|
35
|
+
resolveMatrixAuthContext: clientModule.resolveMatrixAuthContext,
|
|
36
|
+
releaseSharedClientInstance: sharedModule.releaseSharedClientInstance,
|
|
37
|
+
}));
|
|
38
|
+
return await matrixSharedClientRuntimeDepsPromise;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
async function ensureResolvedClientReadiness(params: {
|
|
42
|
+
client: MatrixClient;
|
|
43
|
+
readiness?: MatrixRuntimeClientReadiness;
|
|
44
|
+
preparedByDefault: boolean;
|
|
45
|
+
}): Promise<void> {
|
|
46
|
+
if (params.readiness === "started") {
|
|
47
|
+
await params.client.start();
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
if (params.readiness === "prepared" || (!params.readiness && params.preparedByDefault)) {
|
|
51
|
+
await params.client.prepareForOneOff();
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function ensureMatrixNodeRuntime() {
|
|
56
|
+
if (isBunRuntime()) {
|
|
57
|
+
throw new Error("Matrix support requires Node (bun runtime not supported)");
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
async function resolveRuntimeMatrixClient(opts: {
|
|
62
|
+
client?: MatrixClient;
|
|
63
|
+
cfg?: CoreConfig;
|
|
64
|
+
timeoutMs?: number;
|
|
65
|
+
accountId?: string | null;
|
|
66
|
+
onResolved?: MatrixResolvedClientHook;
|
|
67
|
+
}): Promise<ResolvedRuntimeMatrixClient> {
|
|
68
|
+
ensureMatrixNodeRuntime();
|
|
69
|
+
if (opts.client) {
|
|
70
|
+
await opts.onResolved?.(opts.client, { preparedByDefault: false });
|
|
71
|
+
return { client: opts.client, stopOnDone: false };
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (!opts.cfg) {
|
|
75
|
+
throw new Error(
|
|
76
|
+
"Matrix runtime client requires a resolved runtime config. Load and resolve config at the command or gateway boundary, then pass cfg through the runtime path.",
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
const cfg = requireRuntimeConfig(opts.cfg, "Matrix runtime client") as CoreConfig;
|
|
80
|
+
const { acquireSharedMatrixClient, releaseSharedClientInstance, resolveMatrixAuthContext } =
|
|
81
|
+
await loadMatrixSharedClientRuntimeDeps();
|
|
82
|
+
const authContext = resolveMatrixAuthContext({
|
|
83
|
+
cfg,
|
|
84
|
+
accountId: opts.accountId,
|
|
85
|
+
});
|
|
86
|
+
const active = getActiveMatrixClient(authContext.accountId);
|
|
87
|
+
if (active) {
|
|
88
|
+
await opts.onResolved?.(active, { preparedByDefault: false });
|
|
89
|
+
return { client: active, stopOnDone: false };
|
|
90
|
+
}
|
|
91
|
+
const client = await acquireSharedMatrixClient({
|
|
92
|
+
cfg,
|
|
93
|
+
timeoutMs: opts.timeoutMs,
|
|
94
|
+
accountId: authContext.accountId,
|
|
95
|
+
startClient: false,
|
|
96
|
+
});
|
|
97
|
+
try {
|
|
98
|
+
await opts.onResolved?.(client, { preparedByDefault: true });
|
|
99
|
+
} catch (err) {
|
|
100
|
+
await releaseSharedClientInstance(client, "stop");
|
|
101
|
+
throw err;
|
|
102
|
+
}
|
|
103
|
+
return {
|
|
104
|
+
client,
|
|
105
|
+
stopOnDone: true,
|
|
106
|
+
cleanup: async (mode) => {
|
|
107
|
+
await releaseSharedClientInstance(client, mode);
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export async function resolveRuntimeMatrixClientWithReadiness(opts: {
|
|
113
|
+
client?: MatrixClient;
|
|
114
|
+
cfg?: CoreConfig;
|
|
115
|
+
timeoutMs?: number;
|
|
116
|
+
accountId?: string | null;
|
|
117
|
+
readiness?: MatrixRuntimeClientReadiness;
|
|
118
|
+
}): Promise<ResolvedRuntimeMatrixClient> {
|
|
119
|
+
return await resolveRuntimeMatrixClient({
|
|
120
|
+
client: opts.client,
|
|
121
|
+
cfg: opts.cfg,
|
|
122
|
+
timeoutMs: opts.timeoutMs,
|
|
123
|
+
accountId: opts.accountId,
|
|
124
|
+
onResolved: async (client, context) => {
|
|
125
|
+
await ensureResolvedClientReadiness({
|
|
126
|
+
client,
|
|
127
|
+
readiness: opts.readiness,
|
|
128
|
+
preparedByDefault: context.preparedByDefault,
|
|
129
|
+
});
|
|
130
|
+
},
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export async function stopResolvedRuntimeMatrixClient(
|
|
135
|
+
resolved: ResolvedRuntimeMatrixClient,
|
|
136
|
+
mode: ResolvedRuntimeMatrixClientStopMode = "stop",
|
|
137
|
+
): Promise<void> {
|
|
138
|
+
if (!resolved.stopOnDone) {
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
if (resolved.cleanup) {
|
|
142
|
+
await resolved.cleanup(mode);
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
if (mode === "persist") {
|
|
146
|
+
await resolved.client.stopAndPersist();
|
|
147
|
+
return;
|
|
148
|
+
}
|
|
149
|
+
if (mode === "discard") {
|
|
150
|
+
resolved.client.stopWithoutPersist();
|
|
151
|
+
return;
|
|
152
|
+
}
|
|
153
|
+
resolved.client.stop();
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export async function withResolvedRuntimeMatrixClient<T>(
|
|
157
|
+
opts: {
|
|
158
|
+
client?: MatrixClient;
|
|
159
|
+
cfg?: CoreConfig;
|
|
160
|
+
timeoutMs?: number;
|
|
161
|
+
accountId?: string | null;
|
|
162
|
+
readiness?: MatrixRuntimeClientReadiness;
|
|
163
|
+
},
|
|
164
|
+
run: (client: MatrixClient) => Promise<T>,
|
|
165
|
+
stopMode: ResolvedRuntimeMatrixClientStopMode = "stop",
|
|
166
|
+
): Promise<T> {
|
|
167
|
+
const resolved = await resolveRuntimeMatrixClientWithReadiness(opts);
|
|
168
|
+
try {
|
|
169
|
+
return await run(resolved.client);
|
|
170
|
+
} finally {
|
|
171
|
+
await stopResolvedRuntimeMatrixClient(resolved, stopMode);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type { MatrixAuth } from "./client/types.js";
|
|
2
|
+
export { isBunRuntime } from "./client/runtime.js";
|
|
3
|
+
export { getMatrixScopedEnvVarNames } from "../env-vars.js";
|
|
4
|
+
export {
|
|
5
|
+
backfillMatrixAuthDeviceIdAfterStartup,
|
|
6
|
+
hasReadyMatrixEnvAuth,
|
|
7
|
+
resolveMatrixEnvAuthReadiness,
|
|
8
|
+
resolveMatrixConfigForAccount,
|
|
9
|
+
resolveScopedMatrixEnvConfig,
|
|
10
|
+
resolveMatrixAuth,
|
|
11
|
+
resolveMatrixAuthContext,
|
|
12
|
+
resolveValidatedMatrixHomeserverUrl,
|
|
13
|
+
validateMatrixHomeserverUrl,
|
|
14
|
+
} from "./client/config.js";
|
|
15
|
+
export { createMatrixClient } from "./client/create-client.js";
|
|
16
|
+
export {
|
|
17
|
+
acquireSharedMatrixClient,
|
|
18
|
+
removeSharedClientInstance,
|
|
19
|
+
releaseSharedClientInstance,
|
|
20
|
+
resolveSharedMatrixClient,
|
|
21
|
+
stopSharedClientForAccount,
|
|
22
|
+
stopSharedClientInstance,
|
|
23
|
+
} from "./client/shared.js";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "autobot/plugin-sdk/account-id";
|
|
2
|
+
import type { CoreConfig } from "../types.js";
|
|
3
|
+
|
|
4
|
+
export function shouldStoreMatrixAccountAtTopLevel(cfg: CoreConfig, accountId: string): boolean {
|
|
5
|
+
const normalizedAccountId = normalizeAccountId(accountId);
|
|
6
|
+
if (normalizedAccountId !== DEFAULT_ACCOUNT_ID) {
|
|
7
|
+
return false;
|
|
8
|
+
}
|
|
9
|
+
const accounts = cfg.channels?.matrix?.accounts;
|
|
10
|
+
return !accounts || Object.keys(accounts).length === 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function resolveMatrixConfigPath(cfg: CoreConfig, accountId: string): string {
|
|
14
|
+
const normalizedAccountId = normalizeAccountId(accountId);
|
|
15
|
+
if (shouldStoreMatrixAccountAtTopLevel(cfg, normalizedAccountId)) {
|
|
16
|
+
return "channels.matrix";
|
|
17
|
+
}
|
|
18
|
+
return `channels.matrix.accounts.${normalizedAccountId}`;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function resolveMatrixConfigFieldPath(
|
|
22
|
+
cfg: CoreConfig,
|
|
23
|
+
accountId: string,
|
|
24
|
+
fieldPath: string,
|
|
25
|
+
): string {
|
|
26
|
+
const suffix = fieldPath.trim().replace(/^\.+/, "");
|
|
27
|
+
if (!suffix) {
|
|
28
|
+
return resolveMatrixConfigPath(cfg, accountId);
|
|
29
|
+
}
|
|
30
|
+
return `${resolveMatrixConfigPath(cfg, accountId)}.${suffix}`;
|
|
31
|
+
}
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "autobot/plugin-sdk/account-id";
|
|
2
|
+
import { coerceSecretRef } from "autobot/plugin-sdk/secret-ref-runtime";
|
|
3
|
+
import { normalizeSecretInputString } from "autobot/plugin-sdk/setup";
|
|
4
|
+
import type { CoreConfig, MatrixConfig } from "../types.js";
|
|
5
|
+
import { findMatrixAccountConfig } from "./account-config.js";
|
|
6
|
+
import {
|
|
7
|
+
resolveMatrixConfigPath as resolveMatrixConfigPathBase,
|
|
8
|
+
shouldStoreMatrixAccountAtTopLevel,
|
|
9
|
+
} from "./config-paths.js";
|
|
10
|
+
|
|
11
|
+
export {
|
|
12
|
+
resolveMatrixConfigFieldPath,
|
|
13
|
+
shouldStoreMatrixAccountAtTopLevel,
|
|
14
|
+
} from "./config-paths.js";
|
|
15
|
+
export const resolveMatrixConfigPath = resolveMatrixConfigPathBase;
|
|
16
|
+
|
|
17
|
+
export type MatrixAccountPatch = {
|
|
18
|
+
name?: string | null;
|
|
19
|
+
enabled?: boolean;
|
|
20
|
+
homeserver?: string | null;
|
|
21
|
+
allowPrivateNetwork?: boolean | null;
|
|
22
|
+
proxy?: string | null;
|
|
23
|
+
userId?: string | null;
|
|
24
|
+
accessToken?: MatrixConfig["accessToken"] | null;
|
|
25
|
+
password?: MatrixConfig["password"] | null;
|
|
26
|
+
deviceId?: string | null;
|
|
27
|
+
deviceName?: string | null;
|
|
28
|
+
avatarUrl?: string | null;
|
|
29
|
+
encryption?: boolean | null;
|
|
30
|
+
initialSyncLimit?: number | null;
|
|
31
|
+
allowBots?: MatrixConfig["allowBots"] | null;
|
|
32
|
+
autoJoin?: MatrixConfig["autoJoin"] | null;
|
|
33
|
+
autoJoinAllowlist?: MatrixConfig["autoJoinAllowlist"] | null;
|
|
34
|
+
dm?: MatrixConfig["dm"] | null;
|
|
35
|
+
groupPolicy?: MatrixConfig["groupPolicy"] | null;
|
|
36
|
+
groupAllowFrom?: MatrixConfig["groupAllowFrom"] | null;
|
|
37
|
+
groups?: MatrixConfig["groups"] | null;
|
|
38
|
+
rooms?: MatrixConfig["rooms"] | null;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
function applyNullableStringField(
|
|
42
|
+
target: Record<string, unknown>,
|
|
43
|
+
key: keyof MatrixAccountPatch,
|
|
44
|
+
value: string | null | undefined,
|
|
45
|
+
): void {
|
|
46
|
+
if (value === undefined) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
if (value === null) {
|
|
50
|
+
delete target[key];
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
const trimmed = value.trim();
|
|
54
|
+
if (!trimmed) {
|
|
55
|
+
delete target[key];
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
target[key] = trimmed;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function applyNullableSecretInputField(
|
|
62
|
+
target: Record<string, unknown>,
|
|
63
|
+
key: "accessToken" | "password",
|
|
64
|
+
value: MatrixConfig["accessToken"] | null | undefined,
|
|
65
|
+
defaults?: NonNullable<CoreConfig["secrets"]>["defaults"],
|
|
66
|
+
): void {
|
|
67
|
+
if (value === undefined) {
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
if (value === null) {
|
|
71
|
+
delete target[key];
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
if (typeof value === "string") {
|
|
75
|
+
const normalized = normalizeSecretInputString(value);
|
|
76
|
+
if (normalized) {
|
|
77
|
+
target[key] = normalized;
|
|
78
|
+
} else {
|
|
79
|
+
delete target[key];
|
|
80
|
+
}
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const ref = coerceSecretRef(value, defaults);
|
|
85
|
+
if (!ref) {
|
|
86
|
+
throw new Error(`Invalid Matrix ${key} SecretInput.`);
|
|
87
|
+
}
|
|
88
|
+
target[key] = ref;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
function cloneMatrixDmConfig(dm: MatrixConfig["dm"]): MatrixConfig["dm"] {
|
|
92
|
+
if (!dm) {
|
|
93
|
+
return dm;
|
|
94
|
+
}
|
|
95
|
+
return {
|
|
96
|
+
...dm,
|
|
97
|
+
...(dm.allowFrom ? { allowFrom: [...dm.allowFrom] } : {}),
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function cloneMatrixRoomMap(rooms: MatrixConfig["groups"]): MatrixConfig["groups"] {
|
|
102
|
+
if (!rooms) {
|
|
103
|
+
return rooms;
|
|
104
|
+
}
|
|
105
|
+
const clonedRoomEntries: Array<[string, NonNullable<MatrixConfig["groups"]>[string]]> = [];
|
|
106
|
+
for (const [roomId, roomCfg] of Object.entries(rooms)) {
|
|
107
|
+
clonedRoomEntries.push([roomId, roomCfg ? { ...roomCfg } : roomCfg]);
|
|
108
|
+
}
|
|
109
|
+
return Object.fromEntries(clonedRoomEntries);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
function applyNullableArrayField(
|
|
113
|
+
target: Record<string, unknown>,
|
|
114
|
+
key: keyof MatrixAccountPatch,
|
|
115
|
+
value: Array<string | number> | null | undefined,
|
|
116
|
+
): void {
|
|
117
|
+
if (value === undefined) {
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
if (value === null) {
|
|
121
|
+
delete target[key];
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
target[key] = [...value];
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export function updateMatrixAccountConfig(
|
|
128
|
+
cfg: CoreConfig,
|
|
129
|
+
accountId: string,
|
|
130
|
+
patch: MatrixAccountPatch,
|
|
131
|
+
): CoreConfig {
|
|
132
|
+
const matrix = cfg.channels?.matrix ?? {};
|
|
133
|
+
const normalizedAccountId = normalizeAccountId(accountId);
|
|
134
|
+
const existingAccount = (findMatrixAccountConfig(cfg, normalizedAccountId) ??
|
|
135
|
+
(normalizedAccountId === DEFAULT_ACCOUNT_ID ? matrix : {})) as MatrixConfig;
|
|
136
|
+
const nextAccount: Record<string, unknown> = { ...existingAccount };
|
|
137
|
+
|
|
138
|
+
if (patch.name !== undefined) {
|
|
139
|
+
if (patch.name === null) {
|
|
140
|
+
delete nextAccount.name;
|
|
141
|
+
} else {
|
|
142
|
+
const trimmed = patch.name.trim();
|
|
143
|
+
if (trimmed) {
|
|
144
|
+
nextAccount.name = trimmed;
|
|
145
|
+
} else {
|
|
146
|
+
delete nextAccount.name;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
if (typeof patch.enabled === "boolean") {
|
|
151
|
+
nextAccount.enabled = patch.enabled;
|
|
152
|
+
} else if (typeof nextAccount.enabled !== "boolean") {
|
|
153
|
+
nextAccount.enabled = true;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
applyNullableStringField(nextAccount, "homeserver", patch.homeserver);
|
|
157
|
+
applyNullableStringField(nextAccount, "proxy", patch.proxy);
|
|
158
|
+
applyNullableStringField(nextAccount, "userId", patch.userId);
|
|
159
|
+
applyNullableSecretInputField(
|
|
160
|
+
nextAccount,
|
|
161
|
+
"accessToken",
|
|
162
|
+
patch.accessToken,
|
|
163
|
+
cfg.secrets?.defaults,
|
|
164
|
+
);
|
|
165
|
+
applyNullableSecretInputField(nextAccount, "password", patch.password, cfg.secrets?.defaults);
|
|
166
|
+
applyNullableStringField(nextAccount, "deviceId", patch.deviceId);
|
|
167
|
+
applyNullableStringField(nextAccount, "deviceName", patch.deviceName);
|
|
168
|
+
applyNullableStringField(nextAccount, "avatarUrl", patch.avatarUrl);
|
|
169
|
+
|
|
170
|
+
if (patch.allowPrivateNetwork !== undefined) {
|
|
171
|
+
const nextNetwork =
|
|
172
|
+
nextAccount.network && typeof nextAccount.network === "object"
|
|
173
|
+
? { ...(nextAccount.network as Record<string, unknown>) }
|
|
174
|
+
: {};
|
|
175
|
+
if (patch.allowPrivateNetwork === null) {
|
|
176
|
+
delete nextNetwork.dangerouslyAllowPrivateNetwork;
|
|
177
|
+
} else {
|
|
178
|
+
nextNetwork.dangerouslyAllowPrivateNetwork = patch.allowPrivateNetwork;
|
|
179
|
+
}
|
|
180
|
+
if (Object.keys(nextNetwork).length > 0) {
|
|
181
|
+
nextAccount.network = nextNetwork;
|
|
182
|
+
} else {
|
|
183
|
+
delete nextAccount.network;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
if (patch.initialSyncLimit !== undefined) {
|
|
188
|
+
if (patch.initialSyncLimit === null) {
|
|
189
|
+
delete nextAccount.initialSyncLimit;
|
|
190
|
+
} else {
|
|
191
|
+
nextAccount.initialSyncLimit = Math.max(0, Math.floor(patch.initialSyncLimit));
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
if (patch.encryption !== undefined) {
|
|
196
|
+
if (patch.encryption === null) {
|
|
197
|
+
delete nextAccount.encryption;
|
|
198
|
+
} else {
|
|
199
|
+
nextAccount.encryption = patch.encryption;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
if (patch.allowBots !== undefined) {
|
|
203
|
+
if (patch.allowBots === null) {
|
|
204
|
+
delete nextAccount.allowBots;
|
|
205
|
+
} else {
|
|
206
|
+
nextAccount.allowBots = patch.allowBots;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
if (patch.autoJoin !== undefined) {
|
|
210
|
+
if (patch.autoJoin === null) {
|
|
211
|
+
delete nextAccount.autoJoin;
|
|
212
|
+
} else {
|
|
213
|
+
nextAccount.autoJoin = patch.autoJoin;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
applyNullableArrayField(nextAccount, "autoJoinAllowlist", patch.autoJoinAllowlist);
|
|
217
|
+
if (patch.dm !== undefined) {
|
|
218
|
+
if (patch.dm === null) {
|
|
219
|
+
delete nextAccount.dm;
|
|
220
|
+
} else {
|
|
221
|
+
nextAccount.dm = cloneMatrixDmConfig({
|
|
222
|
+
...(nextAccount.dm as MatrixConfig["dm"] | undefined),
|
|
223
|
+
...patch.dm,
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
if (patch.groupPolicy !== undefined) {
|
|
228
|
+
if (patch.groupPolicy === null) {
|
|
229
|
+
delete nextAccount.groupPolicy;
|
|
230
|
+
} else {
|
|
231
|
+
nextAccount.groupPolicy = patch.groupPolicy;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
applyNullableArrayField(nextAccount, "groupAllowFrom", patch.groupAllowFrom);
|
|
235
|
+
if (patch.groups !== undefined) {
|
|
236
|
+
if (patch.groups === null) {
|
|
237
|
+
delete nextAccount.groups;
|
|
238
|
+
} else {
|
|
239
|
+
nextAccount.groups = cloneMatrixRoomMap(patch.groups);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
if (patch.rooms !== undefined) {
|
|
243
|
+
if (patch.rooms === null) {
|
|
244
|
+
delete nextAccount.rooms;
|
|
245
|
+
} else {
|
|
246
|
+
nextAccount.rooms = cloneMatrixRoomMap(patch.rooms);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
const nextAccounts = Object.fromEntries(
|
|
251
|
+
Object.entries(matrix.accounts ?? {}).filter(
|
|
252
|
+
([rawAccountId]) =>
|
|
253
|
+
rawAccountId === normalizedAccountId ||
|
|
254
|
+
normalizeAccountId(rawAccountId) !== normalizedAccountId,
|
|
255
|
+
),
|
|
256
|
+
);
|
|
257
|
+
|
|
258
|
+
if (shouldStoreMatrixAccountAtTopLevel(cfg, normalizedAccountId)) {
|
|
259
|
+
const { accounts: _ignoredAccounts, defaultAccount } = matrix;
|
|
260
|
+
const {
|
|
261
|
+
accounts: _ignoredNextAccounts,
|
|
262
|
+
defaultAccount: _ignoredNextDefaultAccount,
|
|
263
|
+
...topLevelAccount
|
|
264
|
+
} = nextAccount;
|
|
265
|
+
return {
|
|
266
|
+
...cfg,
|
|
267
|
+
channels: {
|
|
268
|
+
...cfg.channels,
|
|
269
|
+
matrix: {
|
|
270
|
+
...(defaultAccount ? { defaultAccount } : {}),
|
|
271
|
+
enabled: true,
|
|
272
|
+
...topLevelAccount,
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
};
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
return {
|
|
279
|
+
...cfg,
|
|
280
|
+
channels: {
|
|
281
|
+
...cfg.channels,
|
|
282
|
+
matrix: {
|
|
283
|
+
...matrix,
|
|
284
|
+
enabled: true,
|
|
285
|
+
accounts: {
|
|
286
|
+
...nextAccounts,
|
|
287
|
+
[normalizedAccountId]: nextAccount as MatrixConfig,
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
|
+
},
|
|
291
|
+
};
|
|
292
|
+
}
|