@unwanted/matrix-sdk-mini 34.12.0-9 → 34.13.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.
@@ -1 +1 @@
1
- {"version":3,"file":"sliding-sync.js","names":["logger","TypedEventEmitter","sleep","defer","BUFFER_PERIOD_MS","MSC3575_WILDCARD","MSC3575_STATE_KEY_ME","MSC3575_STATE_KEY_LAZY","SlidingSyncState","SlidingList","constructor","list","_defineProperty","replaceList","setModified","modified","isModified","updateListRange","newRanges","ranges","JSON","parse","stringify","filters","roomIndexToRoomId","joinedCount","getList","forceIncludeAllParams","isIndexInRange","i","r","ExtensionState","SlidingSyncEvent","SlidingSync","proxyBaseUrl","lists","roomSubscriptionInfo","client","timeoutMS","Set","Map","forEach","key","set","addCustomSubscription","name","sub","customSubscriptions","has","warn","concat","useCustomSubscription","roomId","roomIdToCustomSubscription","get","confirmedRoomSubscriptions","delete","getListData","data","Object","assign","getListParams","params","setListRanges","Promise","reject","Error","resend","setList","existingList","listModifiedCount","getRoomSubscriptions","Array","from","desiredRoomSubscriptions","modifyRoomSubscriptions","s","modifyRoomSubscriptionInfo","rs","registerExtension","ext","extensions","getExtensionRequest","isInitial","keys","extName","onRequest","onPreExtensionsResponse","_this","_asyncToGenerator","all","map","_ref","when","PreProcess","onResponse","_x","apply","arguments","onPostExtensionsResponse","_this2","_ref2","PostProcess","_x2","invokeRoomDataListeners","roomData","_this3","required_state","timeline","emitPromised","RoomData","invokeLifecycleListeners","state","resp","err","emit","Lifecycle","shiftRight","listKey","hi","low","shiftLeft","removeEntry","index","max","n","Number","addEntry","processListOps","gapIndex","listData","ops","op","debug","room_id","startIndex","range","room_ids","join","_this$abortController","needsResend","txnIdDefers","length","promise","txnId","makeTxnId","d","push","_objectSpread","abortController","abort","AbortController","resolveTransactionDefers","txnIndex","resolve","slice","stop","_this$abortController2","terminated","removeAllListeners","List","resetup","_this$abortController3","l","start","_this4","currentPos","_loop","doNotUpdateList","reqLists","reqBody","pos","timeout","clientTimeout","undefined","newSubscriptions","difference","unsubscriptions","size","unsubscribe_rooms","room_subscriptions","customSubName","txn_id","pendingReq","slidingSync","signal","add","rooms","count","RequestFinished","httpStatus","error","listKeysWithUpdates","entries","Complete","_ret","setA","setB","diff","elem"],"sources":["../src/sliding-sync.ts"],"sourcesContent":["/*\nCopyright 2022 The Matrix.org Foundation C.I.C.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\nimport { logger } from \"./logger.ts\";\nimport { MatrixClient } from \"./client.ts\";\nimport { IRoomEvent, IStateEvent } from \"./sync-accumulator.ts\";\nimport { TypedEventEmitter } from \"./models/typed-event-emitter.ts\";\nimport { sleep, IDeferred, defer } from \"./utils.ts\";\nimport { HTTPError } from \"./http-api/index.ts\";\n\n// /sync requests allow you to set a timeout= but the request may continue\n// beyond that and wedge forever, so we need to track how long we are willing\n// to keep open the connection. This constant is *ADDED* to the timeout= value\n// to determine the max time we're willing to wait.\nconst BUFFER_PERIOD_MS = 10 * 1000;\n\nexport const MSC3575_WILDCARD = \"*\";\nexport const MSC3575_STATE_KEY_ME = \"$ME\";\nexport const MSC3575_STATE_KEY_LAZY = \"$LAZY\";\n\n/**\n * Represents a subscription to a room or set of rooms. Controls which events are returned.\n */\nexport interface MSC3575RoomSubscription {\n required_state?: string[][];\n timeline_limit?: number;\n include_old_rooms?: MSC3575RoomSubscription;\n}\n\n/**\n * Controls which rooms are returned in a given list.\n */\nexport interface MSC3575Filter {\n is_dm?: boolean;\n is_encrypted?: boolean;\n is_invite?: boolean;\n room_name_like?: string;\n room_types?: string[];\n not_room_types?: string[];\n spaces?: string[];\n tags?: string[];\n not_tags?: string[];\n}\n\n/**\n * Represents a list subscription.\n */\nexport interface MSC3575List extends MSC3575RoomSubscription {\n ranges: number[][];\n sort?: string[];\n filters?: MSC3575Filter;\n slow_get_all_rooms?: boolean;\n}\n\n/**\n * A complete Sliding Sync request.\n */\nexport interface MSC3575SlidingSyncRequest {\n // json body params\n lists?: Record<string, MSC3575List>;\n unsubscribe_rooms?: string[];\n room_subscriptions?: Record<string, MSC3575RoomSubscription>;\n extensions?: object;\n txn_id?: string;\n\n // query params\n pos?: string;\n timeout?: number;\n clientTimeout?: number;\n}\n\nexport interface MSC3575RoomData {\n name: string;\n required_state: IStateEvent[];\n timeline: (IRoomEvent | IStateEvent)[];\n notification_count?: number;\n highlight_count?: number;\n joined_count?: number;\n invited_count?: number;\n invite_state?: IStateEvent[];\n initial?: boolean;\n limited?: boolean;\n is_dm?: boolean;\n prev_batch?: string;\n num_live?: number;\n}\n\ninterface ListResponse {\n count: number;\n ops: Operation[];\n}\n\ninterface BaseOperation {\n op: string;\n}\n\ninterface DeleteOperation extends BaseOperation {\n op: \"DELETE\";\n index: number;\n}\n\ninterface InsertOperation extends BaseOperation {\n op: \"INSERT\";\n index: number;\n room_id: string;\n}\n\ninterface InvalidateOperation extends BaseOperation {\n op: \"INVALIDATE\";\n range: [number, number];\n}\n\ninterface SyncOperation extends BaseOperation {\n op: \"SYNC\";\n range: [number, number];\n room_ids: string[];\n}\n\ntype Operation = DeleteOperation | InsertOperation | InvalidateOperation | SyncOperation;\n\n/**\n * A complete Sliding Sync response\n */\nexport interface MSC3575SlidingSyncResponse {\n pos: string;\n txn_id?: string;\n lists: Record<string, ListResponse>;\n rooms: Record<string, MSC3575RoomData>;\n extensions: Record<string, object>;\n}\n\nexport enum SlidingSyncState {\n /**\n * Fired by SlidingSyncEvent.Lifecycle event immediately before processing the response.\n */\n RequestFinished = \"FINISHED\",\n /**\n * Fired by SlidingSyncEvent.Lifecycle event immediately after all room data listeners have been\n * invoked, but before list listeners.\n */\n Complete = \"COMPLETE\",\n}\n\n/**\n * Internal Class. SlidingList represents a single list in sliding sync. The list can have filters,\n * multiple sliding windows, and maintains the index-\\>room_id mapping.\n */\nclass SlidingList {\n private list!: MSC3575List;\n private isModified?: boolean;\n\n // returned data\n public roomIndexToRoomId: Record<number, string> = {};\n public joinedCount = 0;\n\n /**\n * Construct a new sliding list.\n * @param list - The range, sort and filter values to use for this list.\n */\n public constructor(list: MSC3575List) {\n this.replaceList(list);\n }\n\n /**\n * Mark this list as modified or not. Modified lists will return sticky params with calls to getList.\n * This is useful for the first time the list is sent, or if the list has changed in some way.\n * @param modified - True to mark this list as modified so all sticky parameters will be re-sent.\n */\n public setModified(modified: boolean): void {\n this.isModified = modified;\n }\n\n /**\n * Update the list range for this list. Does not affect modified status as list ranges are non-sticky.\n * @param newRanges - The new ranges for the list\n */\n public updateListRange(newRanges: number[][]): void {\n this.list.ranges = JSON.parse(JSON.stringify(newRanges));\n }\n\n /**\n * Replace list parameters. All fields will be replaced with the new list parameters.\n * @param list - The new list parameters\n */\n public replaceList(list: MSC3575List): void {\n list.filters = list.filters || {};\n list.ranges = list.ranges || [];\n this.list = JSON.parse(JSON.stringify(list));\n this.isModified = true;\n\n // reset values as the join count may be very different (if filters changed) including the rooms\n // (e.g. sort orders or sliding window ranges changed)\n\n // the constantly changing sliding window ranges. Not an array for performance reasons\n // E.g. tracking ranges 0-99, 500-599, we don't want to have a 600 element array\n this.roomIndexToRoomId = {};\n // the total number of joined rooms according to the server, always >= len(roomIndexToRoomId)\n this.joinedCount = 0;\n }\n\n /**\n * Return a copy of the list suitable for a request body.\n * @param forceIncludeAllParams - True to forcibly include all params even if the list\n * hasn't been modified. Callers may want to do this if they are modifying the list prior to calling\n * updateList.\n */\n public getList(forceIncludeAllParams: boolean): MSC3575List {\n let list = {\n ranges: JSON.parse(JSON.stringify(this.list.ranges)),\n };\n if (this.isModified || forceIncludeAllParams) {\n list = JSON.parse(JSON.stringify(this.list));\n }\n return list;\n }\n\n /**\n * Check if a given index is within the list range. This is required even though the /sync API\n * provides explicit updates with index positions because of the following situation:\n * 0 1 2 3 4 5 6 7 8 indexes\n * a b c d e f COMMANDS: SYNC 0 2 a b c; SYNC 6 8 d e f;\n * a b c d _ f COMMAND: DELETE 7;\n * e a b c d f COMMAND: INSERT 0 e;\n * c=3 is wrong as we are not tracking it, ergo we need to see if `i` is in range else drop it\n * @param i - The index to check\n * @returns True if the index is within a sliding window\n */\n public isIndexInRange(i: number): boolean {\n for (const r of this.list.ranges) {\n if (r[0] <= i && i <= r[1]) {\n return true;\n }\n }\n return false;\n }\n}\n\n/**\n * When onResponse extensions should be invoked: before or after processing the main response.\n */\nexport enum ExtensionState {\n // Call onResponse before processing the response body. This is useful when your extension is\n // preparing the ground for the response body e.g. processing to-device messages before the\n // encrypted event arrives.\n PreProcess = \"ExtState.PreProcess\",\n // Call onResponse after processing the response body. This is useful when your extension is\n // decorating data from the client, and you rely on MatrixClient.getRoom returning the Room object\n // e.g. room account data.\n PostProcess = \"ExtState.PostProcess\",\n}\n\n/**\n * An interface that must be satisfied to register extensions\n */\nexport interface Extension<Req extends {}, Res extends {}> {\n /**\n * The extension name to go under 'extensions' in the request body.\n * @returns The JSON key.\n */\n name(): string;\n /**\n * A function which is called when the request JSON is being formed.\n * Returns the data to insert under this key.\n * @param isInitial - True when this is part of the initial request (send sticky params)\n * @returns The request JSON to send.\n */\n onRequest(isInitial: boolean): Req | undefined;\n /**\n * A function which is called when there is response JSON under this extension.\n * @param data - The response JSON under the extension name.\n */\n onResponse(data: Res): Promise<void>;\n /**\n * Controls when onResponse should be called.\n * @returns The state when it should be called.\n */\n when(): ExtensionState;\n}\n\n/**\n * Events which can be fired by the SlidingSync class. These are designed to provide different levels\n * of information when processing sync responses.\n * - RoomData: concerns rooms, useful for SlidingSyncSdk to update its knowledge of rooms.\n * - Lifecycle: concerns callbacks at various well-defined points in the sync process.\n * - List: concerns lists, useful for UI layers to re-render room lists.\n * Specifically, the order of event invocation is:\n * - Lifecycle (state=RequestFinished)\n * - RoomData (N times)\n * - Lifecycle (state=Complete)\n * - List (at most once per list)\n */\nexport enum SlidingSyncEvent {\n /**\n * This event fires when there are updates for a room. Fired as and when rooms are encountered\n * in the response.\n */\n RoomData = \"SlidingSync.RoomData\",\n /**\n * This event fires at various points in the /sync loop lifecycle.\n * - SlidingSyncState.RequestFinished: Fires after we receive a valid response but before the\n * response has been processed. Perform any pre-process steps here. If there was a problem syncing,\n * `err` will be set (e.g network errors).\n * - SlidingSyncState.Complete: Fires after all SlidingSyncEvent.RoomData have been fired but before\n * SlidingSyncEvent.List.\n */\n Lifecycle = \"SlidingSync.Lifecycle\",\n /**\n * This event fires whenever there has been a change to this list index. It fires exactly once\n * per list, even if there were multiple operations for the list.\n * It fires AFTER Lifecycle and RoomData events.\n */\n List = \"SlidingSync.List\",\n}\n\nexport type SlidingSyncEventHandlerMap = {\n [SlidingSyncEvent.RoomData]: (roomId: string, roomData: MSC3575RoomData) => Promise<void> | void;\n [SlidingSyncEvent.Lifecycle]: (\n state: SlidingSyncState,\n resp: MSC3575SlidingSyncResponse | null,\n err?: Error,\n ) => void;\n [SlidingSyncEvent.List]: (listKey: string, joinedCount: number, roomIndexToRoomId: Record<number, string>) => void;\n};\n\n/**\n * SlidingSync is a high-level data structure which controls the majority of sliding sync.\n * It has no hooks into JS SDK except for needing a MatrixClient to perform the HTTP request.\n * This means this class (and everything it uses) can be used in isolation from JS SDK if needed.\n * To hook this up with the JS SDK, you need to use SlidingSyncSdk.\n */\nexport class SlidingSync extends TypedEventEmitter<SlidingSyncEvent, SlidingSyncEventHandlerMap> {\n private lists: Map<string, SlidingList>;\n private listModifiedCount = 0;\n private terminated = false;\n // flag set when resend() is called because we cannot rely on detecting AbortError in JS SDK :(\n private needsResend = false;\n // the txn_id to send with the next request.\n private txnId: string | null = null;\n // a list (in chronological order of when they were sent) of objects containing the txn ID and\n // a defer to resolve/reject depending on whether they were successfully sent or not.\n private txnIdDefers: (IDeferred<string> & { txnId: string })[] = [];\n // map of extension name to req/resp handler\n private extensions: Record<string, Extension<any, any>> = {};\n\n private desiredRoomSubscriptions = new Set<string>(); // the *desired* room subscriptions\n private confirmedRoomSubscriptions = new Set<string>();\n\n // map of custom subscription name to the subscription\n private customSubscriptions: Map<string, MSC3575RoomSubscription> = new Map();\n // map of room ID to custom subscription name\n private roomIdToCustomSubscription: Map<string, string> = new Map();\n\n private pendingReq?: Promise<MSC3575SlidingSyncResponse>;\n private abortController?: AbortController;\n\n /**\n * Create a new sliding sync instance\n * @param proxyBaseUrl - The base URL of the sliding sync proxy\n * @param lists - The lists to use for sliding sync.\n * @param roomSubscriptionInfo - The params to use for room subscriptions.\n * @param client - The client to use for /sync calls.\n * @param timeoutMS - The number of milliseconds to wait for a response.\n */\n public constructor(\n private readonly proxyBaseUrl: string,\n lists: Map<string, MSC3575List>,\n private roomSubscriptionInfo: MSC3575RoomSubscription,\n private readonly client: MatrixClient,\n private readonly timeoutMS: number,\n ) {\n super();\n this.lists = new Map<string, SlidingList>();\n lists.forEach((list, key) => {\n this.lists.set(key, new SlidingList(list));\n });\n }\n\n /**\n * Add a custom room subscription, referred to by an arbitrary name. If a subscription with this\n * name already exists, it is replaced. No requests are sent by calling this method.\n * @param name - The name of the subscription. Only used to reference this subscription in\n * useCustomSubscription.\n * @param sub - The subscription information.\n */\n public addCustomSubscription(name: string, sub: MSC3575RoomSubscription): void {\n if (this.customSubscriptions.has(name)) {\n logger.warn(`addCustomSubscription: ${name} already exists as a custom subscription, ignoring.`);\n return;\n }\n this.customSubscriptions.set(name, sub);\n }\n\n /**\n * Use a custom subscription previously added via addCustomSubscription. No requests are sent\n * by calling this method. Use modifyRoomSubscriptions to resend subscription information.\n * @param roomId - The room to use the subscription in.\n * @param name - The name of the subscription. If this name is unknown, the default subscription\n * will be used.\n */\n public useCustomSubscription(roomId: string, name: string): void {\n // We already know about this custom subscription, as it is immutable,\n // we don't need to unconfirm the subscription.\n if (this.roomIdToCustomSubscription.get(roomId) === name) {\n return;\n }\n this.roomIdToCustomSubscription.set(roomId, name);\n // unconfirm this subscription so a resend() will send it up afresh.\n this.confirmedRoomSubscriptions.delete(roomId);\n }\n\n /**\n * Get the room index data for a list.\n * @param key - The list key\n * @returns The list data which contains the rooms in this list\n */\n public getListData(key: string): { joinedCount: number; roomIndexToRoomId: Record<number, string> } | null {\n const data = this.lists.get(key);\n if (!data) {\n return null;\n }\n return {\n joinedCount: data.joinedCount,\n roomIndexToRoomId: Object.assign({}, data.roomIndexToRoomId),\n };\n }\n\n /**\n * Get the full request list parameters for a list index. This function is provided for callers to use\n * in conjunction with setList to update fields on an existing list.\n * @param key - The list key to get the params for.\n * @returns A copy of the list params or undefined.\n */\n public getListParams(key: string): MSC3575List | null {\n const params = this.lists.get(key);\n if (!params) {\n return null;\n }\n return params.getList(true);\n }\n\n /**\n * Set new ranges for an existing list. Calling this function when _only_ the ranges have changed\n * is more efficient than calling setList(index,list) as this function won't resend sticky params,\n * whereas setList always will.\n * @param key - The list key to modify\n * @param ranges - The new ranges to apply.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public setListRanges(key: string, ranges: number[][]): Promise<string> {\n const list = this.lists.get(key);\n if (!list) {\n return Promise.reject(new Error(\"no list with key \" + key));\n }\n list.updateListRange(ranges);\n return this.resend();\n }\n\n /**\n * Add or replace a list. Calling this function will interrupt the /sync request to resend new\n * lists.\n * @param key - The key to modify\n * @param list - The new list parameters.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public setList(key: string, list: MSC3575List): Promise<string> {\n const existingList = this.lists.get(key);\n if (existingList) {\n existingList.replaceList(list);\n this.lists.set(key, existingList);\n } else {\n this.lists.set(key, new SlidingList(list));\n }\n this.listModifiedCount += 1;\n return this.resend();\n }\n\n /**\n * Get the room subscriptions for the sync API.\n * @returns A copy of the desired room subscriptions.\n */\n public getRoomSubscriptions(): Set<string> {\n return new Set(Array.from(this.desiredRoomSubscriptions));\n }\n\n /**\n * Modify the room subscriptions for the sync API. Calling this function will interrupt the\n * /sync request to resend new subscriptions. If the /sync stream has not started, this will\n * prepare the room subscriptions for when start() is called.\n * @param s - The new desired room subscriptions.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public modifyRoomSubscriptions(s: Set<string>): Promise<string> {\n this.desiredRoomSubscriptions = s;\n return this.resend();\n }\n\n /**\n * Modify which events to retrieve for room subscriptions. Invalidates all room subscriptions\n * such that they will be sent up afresh.\n * @param rs - The new room subscription fields to fetch.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public modifyRoomSubscriptionInfo(rs: MSC3575RoomSubscription): Promise<string> {\n this.roomSubscriptionInfo = rs;\n this.confirmedRoomSubscriptions = new Set<string>();\n return this.resend();\n }\n\n /**\n * Register an extension to send with the /sync request.\n * @param ext - The extension to register.\n */\n public registerExtension(ext: Extension<any, any>): void {\n if (this.extensions[ext.name()]) {\n throw new Error(`registerExtension: ${ext.name()} already exists as an extension`);\n }\n this.extensions[ext.name()] = ext;\n }\n\n private getExtensionRequest(isInitial: boolean): Record<string, object | undefined> {\n const ext: Record<string, object | undefined> = {};\n Object.keys(this.extensions).forEach((extName) => {\n ext[extName] = this.extensions[extName].onRequest(isInitial);\n });\n return ext;\n }\n\n private async onPreExtensionsResponse(ext: Record<string, object>): Promise<void> {\n await Promise.all(\n Object.keys(ext).map(async (extName) => {\n if (this.extensions[extName].when() == ExtensionState.PreProcess) {\n await this.extensions[extName].onResponse(ext[extName]);\n }\n }),\n );\n }\n\n private async onPostExtensionsResponse(ext: Record<string, object>): Promise<void> {\n await Promise.all(\n Object.keys(ext).map(async (extName) => {\n if (this.extensions[extName].when() == ExtensionState.PostProcess) {\n await this.extensions[extName].onResponse(ext[extName]);\n }\n }),\n );\n }\n\n /**\n * Invoke all attached room data listeners.\n * @param roomId - The room which received some data.\n * @param roomData - The raw sliding sync response JSON.\n */\n private async invokeRoomDataListeners(roomId: string, roomData: MSC3575RoomData): Promise<void> {\n if (!roomData.required_state) {\n roomData.required_state = [];\n }\n if (!roomData.timeline) {\n roomData.timeline = [];\n }\n await this.emitPromised(SlidingSyncEvent.RoomData, roomId, roomData);\n }\n\n /**\n * Invoke all attached lifecycle listeners.\n * @param state - The Lifecycle state\n * @param resp - The raw sync response JSON\n * @param err - Any error that occurred when making the request e.g. network errors.\n */\n private invokeLifecycleListeners(\n state: SlidingSyncState,\n resp: MSC3575SlidingSyncResponse | null,\n err?: Error,\n ): void {\n this.emit(SlidingSyncEvent.Lifecycle, state, resp, err);\n }\n\n private shiftRight(listKey: string, hi: number, low: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // l h\n // 0,1,2,3,4 <- before\n // 0,1,2,2,3 <- after, hi is deleted and low is duplicated\n for (let i = hi; i > low; i--) {\n if (list.isIndexInRange(i)) {\n list.roomIndexToRoomId[i] = list.roomIndexToRoomId[i - 1];\n }\n }\n }\n\n private shiftLeft(listKey: string, hi: number, low: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // l h\n // 0,1,2,3,4 <- before\n // 0,1,3,4,4 <- after, low is deleted and hi is duplicated\n for (let i = low; i < hi; i++) {\n if (list.isIndexInRange(i)) {\n list.roomIndexToRoomId[i] = list.roomIndexToRoomId[i + 1];\n }\n }\n }\n\n private removeEntry(listKey: string, index: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // work out the max index\n let max = -1;\n for (const n in list.roomIndexToRoomId) {\n if (Number(n) > max) {\n max = Number(n);\n }\n }\n if (max < 0 || index > max) {\n return;\n }\n // Everything higher than the gap needs to be shifted left.\n this.shiftLeft(listKey, max, index);\n delete list.roomIndexToRoomId[max];\n }\n\n private addEntry(listKey: string, index: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // work out the max index\n let max = -1;\n for (const n in list.roomIndexToRoomId) {\n if (Number(n) > max) {\n max = Number(n);\n }\n }\n if (max < 0 || index > max) {\n return;\n }\n // Everything higher than the gap needs to be shifted right, +1 so we don't delete the highest element\n this.shiftRight(listKey, max + 1, index);\n }\n\n private processListOps(list: ListResponse, listKey: string): void {\n let gapIndex = -1;\n const listData = this.lists.get(listKey);\n if (!listData) {\n return;\n }\n list.ops.forEach((op: Operation) => {\n if (!listData) {\n return;\n }\n switch (op.op) {\n case \"DELETE\": {\n logger.debug(\"DELETE\", listKey, op.index, \";\");\n delete listData.roomIndexToRoomId[op.index];\n if (gapIndex !== -1) {\n // we already have a DELETE operation to process, so process it.\n this.removeEntry(listKey, gapIndex);\n }\n gapIndex = op.index;\n break;\n }\n case \"INSERT\": {\n logger.debug(\"INSERT\", listKey, op.index, op.room_id, \";\");\n if (listData.roomIndexToRoomId[op.index]) {\n // something is in this space, shift items out of the way\n if (gapIndex < 0) {\n // we haven't been told where to shift from, so make way for a new room entry.\n this.addEntry(listKey, op.index);\n } else if (gapIndex > op.index) {\n // the gap is further down the list, shift every element to the right\n // starting at the gap so we can just shift each element in turn:\n // [A,B,C,_] gapIndex=3, op.index=0\n // [A,B,C,C] i=3\n // [A,B,B,C] i=2\n // [A,A,B,C] i=1\n // Terminate. We'll assign into op.index next.\n this.shiftRight(listKey, gapIndex, op.index);\n } else if (gapIndex < op.index) {\n // the gap is further up the list, shift every element to the left\n // starting at the gap so we can just shift each element in turn\n this.shiftLeft(listKey, op.index, gapIndex);\n }\n }\n // forget the gap, we don't need it anymore. This is outside the check for\n // a room being present in this index position because INSERTs always universally\n // forget the gap, not conditionally based on the presence of a room in the INSERT\n // position. Without this, DELETE 0; INSERT 0; would do the wrong thing.\n gapIndex = -1;\n listData.roomIndexToRoomId[op.index] = op.room_id;\n break;\n }\n case \"INVALIDATE\": {\n const startIndex = op.range[0];\n for (let i = startIndex; i <= op.range[1]; i++) {\n delete listData.roomIndexToRoomId[i];\n }\n logger.debug(\"INVALIDATE\", listKey, op.range[0], op.range[1], \";\");\n break;\n }\n case \"SYNC\": {\n const startIndex = op.range[0];\n for (let i = startIndex; i <= op.range[1]; i++) {\n const roomId = op.room_ids[i - startIndex];\n if (!roomId) {\n break; // we are at the end of list\n }\n listData.roomIndexToRoomId[i] = roomId;\n }\n logger.debug(\"SYNC\", listKey, op.range[0], op.range[1], (op.room_ids || []).join(\" \"), \";\");\n break;\n }\n }\n });\n if (gapIndex !== -1) {\n // we already have a DELETE operation to process, so process it\n // Everything higher than the gap needs to be shifted left.\n this.removeEntry(listKey, gapIndex);\n }\n }\n\n /**\n * Resend a Sliding Sync request. Used when something has changed in the request. Resolves with\n * the transaction ID of this request on success. Rejects with the transaction ID of this request\n * on failure.\n */\n public resend(): Promise<string> {\n if (this.needsResend && this.txnIdDefers.length > 0) {\n // we already have a resend queued, so just return the same promise\n return this.txnIdDefers[this.txnIdDefers.length - 1].promise;\n }\n this.needsResend = true;\n this.txnId = this.client.makeTxnId();\n const d = defer<string>();\n this.txnIdDefers.push({\n ...d,\n txnId: this.txnId,\n });\n this.abortController?.abort();\n this.abortController = new AbortController();\n return d.promise;\n }\n\n private resolveTransactionDefers(txnId?: string): void {\n if (!txnId) {\n return;\n }\n // find the matching index\n let txnIndex = -1;\n for (let i = 0; i < this.txnIdDefers.length; i++) {\n if (this.txnIdDefers[i].txnId === txnId) {\n txnIndex = i;\n break;\n }\n }\n if (txnIndex === -1) {\n // this shouldn't happen; we shouldn't be seeing txn_ids for things we don't know about,\n // whine about it.\n logger.warn(`resolveTransactionDefers: seen ${txnId} but it isn't a pending txn, ignoring.`);\n return;\n }\n // This list is sorted in time, so if the input txnId ACKs in the middle of this array,\n // then everything before it that hasn't been ACKed yet never will and we should reject them.\n for (let i = 0; i < txnIndex; i++) {\n this.txnIdDefers[i].reject(this.txnIdDefers[i].txnId);\n }\n this.txnIdDefers[txnIndex].resolve(txnId);\n // clear out settled promises, including the one we resolved.\n this.txnIdDefers = this.txnIdDefers.slice(txnIndex + 1);\n }\n\n /**\n * Stop syncing with the server.\n */\n public stop(): void {\n this.terminated = true;\n this.abortController?.abort();\n // remove all listeners so things can be GC'd\n this.removeAllListeners(SlidingSyncEvent.Lifecycle);\n this.removeAllListeners(SlidingSyncEvent.List);\n this.removeAllListeners(SlidingSyncEvent.RoomData);\n }\n\n /**\n * Re-setup this connection e.g in the event of an expired session.\n */\n private resetup(): void {\n logger.warn(\"SlidingSync: resetting connection info\");\n // any pending txn ID defers will be forgotten already by the server, so clear them out\n this.txnIdDefers.forEach((d) => {\n d.reject(d.txnId);\n });\n this.txnIdDefers = [];\n // resend sticky params and de-confirm all subscriptions\n this.lists.forEach((l) => {\n l.setModified(true);\n });\n this.confirmedRoomSubscriptions = new Set<string>(); // leave desired ones alone though!\n // reset the connection as we might be wedged\n this.needsResend = true;\n this.abortController?.abort();\n this.abortController = new AbortController();\n }\n\n /**\n * Start syncing with the server. Blocks until stopped.\n */\n public async start(): Promise<void> {\n this.abortController = new AbortController();\n\n let currentPos: string | undefined;\n while (!this.terminated) {\n this.needsResend = false;\n let doNotUpdateList = false;\n let resp: MSC3575SlidingSyncResponse | undefined;\n try {\n const listModifiedCount = this.listModifiedCount;\n const reqLists: Record<string, MSC3575List> = {};\n this.lists.forEach((l: SlidingList, key: string) => {\n reqLists[key] = l.getList(false);\n });\n const reqBody: MSC3575SlidingSyncRequest = {\n lists: reqLists,\n pos: currentPos,\n timeout: this.timeoutMS,\n clientTimeout: this.timeoutMS + BUFFER_PERIOD_MS,\n extensions: this.getExtensionRequest(currentPos === undefined),\n };\n // check if we are (un)subscribing to a room and modify request this one time for it\n const newSubscriptions = difference(this.desiredRoomSubscriptions, this.confirmedRoomSubscriptions);\n const unsubscriptions = difference(this.confirmedRoomSubscriptions, this.desiredRoomSubscriptions);\n if (unsubscriptions.size > 0) {\n reqBody.unsubscribe_rooms = Array.from(unsubscriptions);\n }\n if (newSubscriptions.size > 0) {\n reqBody.room_subscriptions = {};\n for (const roomId of newSubscriptions) {\n const customSubName = this.roomIdToCustomSubscription.get(roomId);\n let sub = this.roomSubscriptionInfo;\n if (customSubName && this.customSubscriptions.has(customSubName)) {\n sub = this.customSubscriptions.get(customSubName)!;\n }\n reqBody.room_subscriptions[roomId] = sub;\n }\n }\n if (this.txnId) {\n reqBody.txn_id = this.txnId;\n this.txnId = null;\n }\n this.pendingReq = this.client.slidingSync(reqBody, this.proxyBaseUrl, this.abortController.signal);\n resp = await this.pendingReq;\n currentPos = resp.pos;\n // update what we think we're subscribed to.\n for (const roomId of newSubscriptions) {\n this.confirmedRoomSubscriptions.add(roomId);\n }\n for (const roomId of unsubscriptions) {\n this.confirmedRoomSubscriptions.delete(roomId);\n }\n if (listModifiedCount !== this.listModifiedCount) {\n // the lists have been modified whilst we were waiting for 'await' to return, but the abort()\n // call did nothing. It is NOT SAFE to modify the list array now. We'll process the response but\n // not update list pointers.\n logger.debug(\"list modified during await call, not updating list\");\n doNotUpdateList = true;\n }\n // mark all these lists as having been sent as sticky so we don't keep sending sticky params\n this.lists.forEach((l) => {\n l.setModified(false);\n });\n // set default empty values so we don't need to null check\n resp.lists = resp.lists || {};\n resp.rooms = resp.rooms || {};\n resp.extensions = resp.extensions || {};\n Object.keys(resp.lists).forEach((key: string) => {\n const list = this.lists.get(key);\n if (!list || !resp) {\n return;\n }\n list.joinedCount = resp.lists[key].count;\n });\n this.invokeLifecycleListeners(SlidingSyncState.RequestFinished, resp);\n } catch (err) {\n if ((<HTTPError>err).httpStatus) {\n this.invokeLifecycleListeners(SlidingSyncState.RequestFinished, null, <Error>err);\n if ((<HTTPError>err).httpStatus === 400) {\n // session probably expired TODO: assign an errcode\n // so drop state and re-request\n this.resetup();\n currentPos = undefined;\n await sleep(50); // in case the 400 was for something else; don't tightloop\n continue;\n } // else fallthrough to generic error handling\n } else if (this.needsResend || (<Error>err).name === \"AbortError\") {\n continue; // don't sleep as we caused this error by abort()ing the request.\n }\n logger.error(err);\n await sleep(5000);\n }\n if (!resp) {\n continue;\n }\n await this.onPreExtensionsResponse(resp.extensions);\n\n for (const roomId in resp.rooms) {\n await this.invokeRoomDataListeners(roomId, resp!.rooms[roomId]);\n }\n\n const listKeysWithUpdates: Set<string> = new Set();\n if (!doNotUpdateList) {\n for (const [key, list] of Object.entries(resp.lists)) {\n list.ops = list.ops || [];\n if (list.ops.length > 0) {\n listKeysWithUpdates.add(key);\n }\n this.processListOps(list, key);\n }\n }\n this.invokeLifecycleListeners(SlidingSyncState.Complete, resp);\n await this.onPostExtensionsResponse(resp.extensions);\n listKeysWithUpdates.forEach((listKey: string) => {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n this.emit(SlidingSyncEvent.List, listKey, list.joinedCount, Object.assign({}, list.roomIndexToRoomId));\n });\n\n this.resolveTransactionDefers(resp.txn_id);\n }\n }\n}\n\nconst difference = (setA: Set<string>, setB: Set<string>): Set<string> => {\n const diff = new Set(setA);\n for (const elem of setB) {\n diff.delete(elem);\n }\n return diff;\n};\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"sliding-sync.js","names":["logger","TypedEventEmitter","sleep","defer","BUFFER_PERIOD_MS","MSC3575_WILDCARD","MSC3575_STATE_KEY_ME","MSC3575_STATE_KEY_LAZY","SlidingSyncState","SlidingList","constructor","list","_defineProperty","replaceList","setModified","modified","isModified","updateListRange","newRanges","ranges","JSON","parse","stringify","_list$filters","_list$ranges","filters","roomIndexToRoomId","joinedCount","getList","forceIncludeAllParams","isIndexInRange","i","r","ExtensionState","SlidingSyncEvent","SlidingSync","proxyBaseUrl","lists","roomSubscriptionInfo","client","timeoutMS","Set","Map","forEach","key","set","addCustomSubscription","name","sub","customSubscriptions","has","warn","concat","useCustomSubscription","roomId","roomIdToCustomSubscription","get","confirmedRoomSubscriptions","delete","getListData","data","Object","assign","getListParams","params","setListRanges","Promise","reject","Error","resend","setList","existingList","listModifiedCount","getRoomSubscriptions","Array","from","desiredRoomSubscriptions","modifyRoomSubscriptions","s","modifyRoomSubscriptionInfo","rs","registerExtension","ext","extensions","getExtensionRequest","isInitial","keys","extName","onRequest","onPreExtensionsResponse","_this","_asyncToGenerator","all","map","_ref","when","PreProcess","onResponse","_x","apply","arguments","onPostExtensionsResponse","_this2","_ref2","PostProcess","_x2","invokeRoomDataListeners","roomData","_this3","required_state","timeline","emitPromised","RoomData","invokeLifecycleListeners","state","resp","err","emit","Lifecycle","shiftRight","listKey","hi","low","shiftLeft","removeEntry","index","max","n","Number","addEntry","processListOps","gapIndex","listData","ops","op","debug","room_id","startIndex","range","room_ids","join","_this$abortController","needsResend","txnIdDefers","length","promise","txnId","makeTxnId","d","push","_objectSpread","abortController","abort","AbortController","resolveTransactionDefers","txnIndex","resolve","slice","stop","_this$abortController2","terminated","removeAllListeners","List","resetup","_this$abortController3","l","start","_this4","currentPos","_loop","doNotUpdateList","_resp$lists","_resp$rooms","_resp$extensions","reqLists","reqBody","pos","timeout","clientTimeout","undefined","newSubscriptions","difference","unsubscriptions","size","unsubscribe_rooms","room_subscriptions","customSubName","txn_id","pendingReq","slidingSync","signal","add","rooms","count","RequestFinished","httpStatus","error","listKeysWithUpdates","entries","_list$ops","Complete","_ret","setA","setB","diff","elem"],"sources":["../src/sliding-sync.ts"],"sourcesContent":["/*\nCopyright 2022 The Matrix.org Foundation C.I.C.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\nimport { logger } from \"./logger.ts\";\nimport { MatrixClient } from \"./client.ts\";\nimport { IRoomEvent, IStateEvent } from \"./sync-accumulator.ts\";\nimport { TypedEventEmitter } from \"./models/typed-event-emitter.ts\";\nimport { sleep, IDeferred, defer } from \"./utils.ts\";\nimport { HTTPError } from \"./http-api/index.ts\";\n\n// /sync requests allow you to set a timeout= but the request may continue\n// beyond that and wedge forever, so we need to track how long we are willing\n// to keep open the connection. This constant is *ADDED* to the timeout= value\n// to determine the max time we're willing to wait.\nconst BUFFER_PERIOD_MS = 10 * 1000;\n\nexport const MSC3575_WILDCARD = \"*\";\nexport const MSC3575_STATE_KEY_ME = \"$ME\";\nexport const MSC3575_STATE_KEY_LAZY = \"$LAZY\";\n\n/**\n * Represents a subscription to a room or set of rooms. Controls which events are returned.\n */\nexport interface MSC3575RoomSubscription {\n required_state?: string[][];\n timeline_limit?: number;\n include_old_rooms?: MSC3575RoomSubscription;\n}\n\n/**\n * Controls which rooms are returned in a given list.\n */\nexport interface MSC3575Filter {\n is_dm?: boolean;\n is_encrypted?: boolean;\n is_invite?: boolean;\n room_name_like?: string;\n room_types?: string[];\n not_room_types?: string[];\n spaces?: string[];\n tags?: string[];\n not_tags?: string[];\n}\n\n/**\n * Represents a list subscription.\n */\nexport interface MSC3575List extends MSC3575RoomSubscription {\n ranges: number[][];\n sort?: string[];\n filters?: MSC3575Filter;\n slow_get_all_rooms?: boolean;\n}\n\n/**\n * A complete Sliding Sync request.\n */\nexport interface MSC3575SlidingSyncRequest {\n // json body params\n lists?: Record<string, MSC3575List>;\n unsubscribe_rooms?: string[];\n room_subscriptions?: Record<string, MSC3575RoomSubscription>;\n extensions?: object;\n txn_id?: string;\n\n // query params\n pos?: string;\n timeout?: number;\n clientTimeout?: number;\n}\n\nexport interface MSC3575RoomData {\n name: string;\n required_state: IStateEvent[];\n timeline: (IRoomEvent | IStateEvent)[];\n notification_count?: number;\n highlight_count?: number;\n joined_count?: number;\n invited_count?: number;\n invite_state?: IStateEvent[];\n initial?: boolean;\n limited?: boolean;\n is_dm?: boolean;\n prev_batch?: string;\n num_live?: number;\n}\n\ninterface ListResponse {\n count: number;\n ops: Operation[];\n}\n\ninterface BaseOperation {\n op: string;\n}\n\ninterface DeleteOperation extends BaseOperation {\n op: \"DELETE\";\n index: number;\n}\n\ninterface InsertOperation extends BaseOperation {\n op: \"INSERT\";\n index: number;\n room_id: string;\n}\n\ninterface InvalidateOperation extends BaseOperation {\n op: \"INVALIDATE\";\n range: [number, number];\n}\n\ninterface SyncOperation extends BaseOperation {\n op: \"SYNC\";\n range: [number, number];\n room_ids: string[];\n}\n\ntype Operation = DeleteOperation | InsertOperation | InvalidateOperation | SyncOperation;\n\n/**\n * A complete Sliding Sync response\n */\nexport interface MSC3575SlidingSyncResponse {\n pos: string;\n txn_id?: string;\n lists: Record<string, ListResponse>;\n rooms: Record<string, MSC3575RoomData>;\n extensions: Record<string, object>;\n}\n\nexport enum SlidingSyncState {\n /**\n * Fired by SlidingSyncEvent.Lifecycle event immediately before processing the response.\n */\n RequestFinished = \"FINISHED\",\n /**\n * Fired by SlidingSyncEvent.Lifecycle event immediately after all room data listeners have been\n * invoked, but before list listeners.\n */\n Complete = \"COMPLETE\",\n}\n\n/**\n * Internal Class. SlidingList represents a single list in sliding sync. The list can have filters,\n * multiple sliding windows, and maintains the index-\\>room_id mapping.\n */\nclass SlidingList {\n private list!: MSC3575List;\n private isModified?: boolean;\n\n // returned data\n public roomIndexToRoomId: Record<number, string> = {};\n public joinedCount = 0;\n\n /**\n * Construct a new sliding list.\n * @param list - The range, sort and filter values to use for this list.\n */\n public constructor(list: MSC3575List) {\n this.replaceList(list);\n }\n\n /**\n * Mark this list as modified or not. Modified lists will return sticky params with calls to getList.\n * This is useful for the first time the list is sent, or if the list has changed in some way.\n * @param modified - True to mark this list as modified so all sticky parameters will be re-sent.\n */\n public setModified(modified: boolean): void {\n this.isModified = modified;\n }\n\n /**\n * Update the list range for this list. Does not affect modified status as list ranges are non-sticky.\n * @param newRanges - The new ranges for the list\n */\n public updateListRange(newRanges: number[][]): void {\n this.list.ranges = JSON.parse(JSON.stringify(newRanges));\n }\n\n /**\n * Replace list parameters. All fields will be replaced with the new list parameters.\n * @param list - The new list parameters\n */\n public replaceList(list: MSC3575List): void {\n list.filters = list.filters ?? {};\n list.ranges = list.ranges ?? [];\n this.list = JSON.parse(JSON.stringify(list));\n this.isModified = true;\n\n // reset values as the join count may be very different (if filters changed) including the rooms\n // (e.g. sort orders or sliding window ranges changed)\n\n // the constantly changing sliding window ranges. Not an array for performance reasons\n // E.g. tracking ranges 0-99, 500-599, we don't want to have a 600 element array\n this.roomIndexToRoomId = {};\n // the total number of joined rooms according to the server, always >= len(roomIndexToRoomId)\n this.joinedCount = 0;\n }\n\n /**\n * Return a copy of the list suitable for a request body.\n * @param forceIncludeAllParams - True to forcibly include all params even if the list\n * hasn't been modified. Callers may want to do this if they are modifying the list prior to calling\n * updateList.\n */\n public getList(forceIncludeAllParams: boolean): MSC3575List {\n let list = {\n ranges: JSON.parse(JSON.stringify(this.list.ranges)),\n };\n if (this.isModified || forceIncludeAllParams) {\n list = JSON.parse(JSON.stringify(this.list));\n }\n return list;\n }\n\n /**\n * Check if a given index is within the list range. This is required even though the /sync API\n * provides explicit updates with index positions because of the following situation:\n * 0 1 2 3 4 5 6 7 8 indexes\n * a b c d e f COMMANDS: SYNC 0 2 a b c; SYNC 6 8 d e f;\n * a b c d _ f COMMAND: DELETE 7;\n * e a b c d f COMMAND: INSERT 0 e;\n * c=3 is wrong as we are not tracking it, ergo we need to see if `i` is in range else drop it\n * @param i - The index to check\n * @returns True if the index is within a sliding window\n */\n public isIndexInRange(i: number): boolean {\n for (const r of this.list.ranges) {\n if (r[0] <= i && i <= r[1]) {\n return true;\n }\n }\n return false;\n }\n}\n\n/**\n * When onResponse extensions should be invoked: before or after processing the main response.\n */\nexport enum ExtensionState {\n // Call onResponse before processing the response body. This is useful when your extension is\n // preparing the ground for the response body e.g. processing to-device messages before the\n // encrypted event arrives.\n PreProcess = \"ExtState.PreProcess\",\n // Call onResponse after processing the response body. This is useful when your extension is\n // decorating data from the client, and you rely on MatrixClient.getRoom returning the Room object\n // e.g. room account data.\n PostProcess = \"ExtState.PostProcess\",\n}\n\n/**\n * An interface that must be satisfied to register extensions\n */\nexport interface Extension<Req extends {}, Res extends {}> {\n /**\n * The extension name to go under 'extensions' in the request body.\n * @returns The JSON key.\n */\n name(): string;\n /**\n * A function which is called when the request JSON is being formed.\n * Returns the data to insert under this key.\n * @param isInitial - True when this is part of the initial request (send sticky params)\n * @returns The request JSON to send.\n */\n onRequest(isInitial: boolean): Req | undefined;\n /**\n * A function which is called when there is response JSON under this extension.\n * @param data - The response JSON under the extension name.\n */\n onResponse(data: Res): Promise<void>;\n /**\n * Controls when onResponse should be called.\n * @returns The state when it should be called.\n */\n when(): ExtensionState;\n}\n\n/**\n * Events which can be fired by the SlidingSync class. These are designed to provide different levels\n * of information when processing sync responses.\n * - RoomData: concerns rooms, useful for SlidingSyncSdk to update its knowledge of rooms.\n * - Lifecycle: concerns callbacks at various well-defined points in the sync process.\n * - List: concerns lists, useful for UI layers to re-render room lists.\n * Specifically, the order of event invocation is:\n * - Lifecycle (state=RequestFinished)\n * - RoomData (N times)\n * - Lifecycle (state=Complete)\n * - List (at most once per list)\n */\nexport enum SlidingSyncEvent {\n /**\n * This event fires when there are updates for a room. Fired as and when rooms are encountered\n * in the response.\n */\n RoomData = \"SlidingSync.RoomData\",\n /**\n * This event fires at various points in the /sync loop lifecycle.\n * - SlidingSyncState.RequestFinished: Fires after we receive a valid response but before the\n * response has been processed. Perform any pre-process steps here. If there was a problem syncing,\n * `err` will be set (e.g network errors).\n * - SlidingSyncState.Complete: Fires after all SlidingSyncEvent.RoomData have been fired but before\n * SlidingSyncEvent.List.\n */\n Lifecycle = \"SlidingSync.Lifecycle\",\n /**\n * This event fires whenever there has been a change to this list index. It fires exactly once\n * per list, even if there were multiple operations for the list.\n * It fires AFTER Lifecycle and RoomData events.\n */\n List = \"SlidingSync.List\",\n}\n\nexport type SlidingSyncEventHandlerMap = {\n [SlidingSyncEvent.RoomData]: (roomId: string, roomData: MSC3575RoomData) => Promise<void> | void;\n [SlidingSyncEvent.Lifecycle]: (\n state: SlidingSyncState,\n resp: MSC3575SlidingSyncResponse | null,\n err?: Error,\n ) => void;\n [SlidingSyncEvent.List]: (listKey: string, joinedCount: number, roomIndexToRoomId: Record<number, string>) => void;\n};\n\n/**\n * SlidingSync is a high-level data structure which controls the majority of sliding sync.\n * It has no hooks into JS SDK except for needing a MatrixClient to perform the HTTP request.\n * This means this class (and everything it uses) can be used in isolation from JS SDK if needed.\n * To hook this up with the JS SDK, you need to use SlidingSyncSdk.\n */\nexport class SlidingSync extends TypedEventEmitter<SlidingSyncEvent, SlidingSyncEventHandlerMap> {\n private lists: Map<string, SlidingList>;\n private listModifiedCount = 0;\n private terminated = false;\n // flag set when resend() is called because we cannot rely on detecting AbortError in JS SDK :(\n private needsResend = false;\n // the txn_id to send with the next request.\n private txnId: string | null = null;\n // a list (in chronological order of when they were sent) of objects containing the txn ID and\n // a defer to resolve/reject depending on whether they were successfully sent or not.\n private txnIdDefers: (IDeferred<string> & { txnId: string })[] = [];\n // map of extension name to req/resp handler\n private extensions: Record<string, Extension<any, any>> = {};\n\n private desiredRoomSubscriptions = new Set<string>(); // the *desired* room subscriptions\n private confirmedRoomSubscriptions = new Set<string>();\n\n // map of custom subscription name to the subscription\n private customSubscriptions: Map<string, MSC3575RoomSubscription> = new Map();\n // map of room ID to custom subscription name\n private roomIdToCustomSubscription: Map<string, string> = new Map();\n\n private pendingReq?: Promise<MSC3575SlidingSyncResponse>;\n private abortController?: AbortController;\n\n /**\n * Create a new sliding sync instance\n * @param proxyBaseUrl - The base URL of the sliding sync proxy\n * @param lists - The lists to use for sliding sync.\n * @param roomSubscriptionInfo - The params to use for room subscriptions.\n * @param client - The client to use for /sync calls.\n * @param timeoutMS - The number of milliseconds to wait for a response.\n */\n public constructor(\n private readonly proxyBaseUrl: string,\n lists: Map<string, MSC3575List>,\n private roomSubscriptionInfo: MSC3575RoomSubscription,\n private readonly client: MatrixClient,\n private readonly timeoutMS: number,\n ) {\n super();\n this.lists = new Map<string, SlidingList>();\n lists.forEach((list, key) => {\n this.lists.set(key, new SlidingList(list));\n });\n }\n\n /**\n * Add a custom room subscription, referred to by an arbitrary name. If a subscription with this\n * name already exists, it is replaced. No requests are sent by calling this method.\n * @param name - The name of the subscription. Only used to reference this subscription in\n * useCustomSubscription.\n * @param sub - The subscription information.\n */\n public addCustomSubscription(name: string, sub: MSC3575RoomSubscription): void {\n if (this.customSubscriptions.has(name)) {\n logger.warn(`addCustomSubscription: ${name} already exists as a custom subscription, ignoring.`);\n return;\n }\n this.customSubscriptions.set(name, sub);\n }\n\n /**\n * Use a custom subscription previously added via addCustomSubscription. No requests are sent\n * by calling this method. Use modifyRoomSubscriptions to resend subscription information.\n * @param roomId - The room to use the subscription in.\n * @param name - The name of the subscription. If this name is unknown, the default subscription\n * will be used.\n */\n public useCustomSubscription(roomId: string, name: string): void {\n // We already know about this custom subscription, as it is immutable,\n // we don't need to unconfirm the subscription.\n if (this.roomIdToCustomSubscription.get(roomId) === name) {\n return;\n }\n this.roomIdToCustomSubscription.set(roomId, name);\n // unconfirm this subscription so a resend() will send it up afresh.\n this.confirmedRoomSubscriptions.delete(roomId);\n }\n\n /**\n * Get the room index data for a list.\n * @param key - The list key\n * @returns The list data which contains the rooms in this list\n */\n public getListData(key: string): { joinedCount: number; roomIndexToRoomId: Record<number, string> } | null {\n const data = this.lists.get(key);\n if (!data) {\n return null;\n }\n return {\n joinedCount: data.joinedCount,\n roomIndexToRoomId: Object.assign({}, data.roomIndexToRoomId),\n };\n }\n\n /**\n * Get the full request list parameters for a list index. This function is provided for callers to use\n * in conjunction with setList to update fields on an existing list.\n * @param key - The list key to get the params for.\n * @returns A copy of the list params or undefined.\n */\n public getListParams(key: string): MSC3575List | null {\n const params = this.lists.get(key);\n if (!params) {\n return null;\n }\n return params.getList(true);\n }\n\n /**\n * Set new ranges for an existing list. Calling this function when _only_ the ranges have changed\n * is more efficient than calling setList(index,list) as this function won't resend sticky params,\n * whereas setList always will.\n * @param key - The list key to modify\n * @param ranges - The new ranges to apply.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public setListRanges(key: string, ranges: number[][]): Promise<string> {\n const list = this.lists.get(key);\n if (!list) {\n return Promise.reject(new Error(\"no list with key \" + key));\n }\n list.updateListRange(ranges);\n return this.resend();\n }\n\n /**\n * Add or replace a list. Calling this function will interrupt the /sync request to resend new\n * lists.\n * @param key - The key to modify\n * @param list - The new list parameters.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public setList(key: string, list: MSC3575List): Promise<string> {\n const existingList = this.lists.get(key);\n if (existingList) {\n existingList.replaceList(list);\n this.lists.set(key, existingList);\n } else {\n this.lists.set(key, new SlidingList(list));\n }\n this.listModifiedCount += 1;\n return this.resend();\n }\n\n /**\n * Get the room subscriptions for the sync API.\n * @returns A copy of the desired room subscriptions.\n */\n public getRoomSubscriptions(): Set<string> {\n return new Set(Array.from(this.desiredRoomSubscriptions));\n }\n\n /**\n * Modify the room subscriptions for the sync API. Calling this function will interrupt the\n * /sync request to resend new subscriptions. If the /sync stream has not started, this will\n * prepare the room subscriptions for when start() is called.\n * @param s - The new desired room subscriptions.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public modifyRoomSubscriptions(s: Set<string>): Promise<string> {\n this.desiredRoomSubscriptions = s;\n return this.resend();\n }\n\n /**\n * Modify which events to retrieve for room subscriptions. Invalidates all room subscriptions\n * such that they will be sent up afresh.\n * @param rs - The new room subscription fields to fetch.\n * @returns A promise which resolves to the transaction ID when it has been received down sync\n * (or rejects with the transaction ID if the action was not applied e.g the request was cancelled\n * immediately after sending, in which case the action will be applied in the subsequent request)\n */\n public modifyRoomSubscriptionInfo(rs: MSC3575RoomSubscription): Promise<string> {\n this.roomSubscriptionInfo = rs;\n this.confirmedRoomSubscriptions = new Set<string>();\n return this.resend();\n }\n\n /**\n * Register an extension to send with the /sync request.\n * @param ext - The extension to register.\n */\n public registerExtension(ext: Extension<any, any>): void {\n if (this.extensions[ext.name()]) {\n throw new Error(`registerExtension: ${ext.name()} already exists as an extension`);\n }\n this.extensions[ext.name()] = ext;\n }\n\n private getExtensionRequest(isInitial: boolean): Record<string, object | undefined> {\n const ext: Record<string, object | undefined> = {};\n Object.keys(this.extensions).forEach((extName) => {\n ext[extName] = this.extensions[extName].onRequest(isInitial);\n });\n return ext;\n }\n\n private async onPreExtensionsResponse(ext: Record<string, object>): Promise<void> {\n await Promise.all(\n Object.keys(ext).map(async (extName) => {\n if (this.extensions[extName].when() == ExtensionState.PreProcess) {\n await this.extensions[extName].onResponse(ext[extName]);\n }\n }),\n );\n }\n\n private async onPostExtensionsResponse(ext: Record<string, object>): Promise<void> {\n await Promise.all(\n Object.keys(ext).map(async (extName) => {\n if (this.extensions[extName].when() == ExtensionState.PostProcess) {\n await this.extensions[extName].onResponse(ext[extName]);\n }\n }),\n );\n }\n\n /**\n * Invoke all attached room data listeners.\n * @param roomId - The room which received some data.\n * @param roomData - The raw sliding sync response JSON.\n */\n private async invokeRoomDataListeners(roomId: string, roomData: MSC3575RoomData): Promise<void> {\n if (!roomData.required_state) {\n roomData.required_state = [];\n }\n if (!roomData.timeline) {\n roomData.timeline = [];\n }\n await this.emitPromised(SlidingSyncEvent.RoomData, roomId, roomData);\n }\n\n /**\n * Invoke all attached lifecycle listeners.\n * @param state - The Lifecycle state\n * @param resp - The raw sync response JSON\n * @param err - Any error that occurred when making the request e.g. network errors.\n */\n private invokeLifecycleListeners(\n state: SlidingSyncState,\n resp: MSC3575SlidingSyncResponse | null,\n err?: Error,\n ): void {\n this.emit(SlidingSyncEvent.Lifecycle, state, resp, err);\n }\n\n private shiftRight(listKey: string, hi: number, low: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // l h\n // 0,1,2,3,4 <- before\n // 0,1,2,2,3 <- after, hi is deleted and low is duplicated\n for (let i = hi; i > low; i--) {\n if (list.isIndexInRange(i)) {\n list.roomIndexToRoomId[i] = list.roomIndexToRoomId[i - 1];\n }\n }\n }\n\n private shiftLeft(listKey: string, hi: number, low: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // l h\n // 0,1,2,3,4 <- before\n // 0,1,3,4,4 <- after, low is deleted and hi is duplicated\n for (let i = low; i < hi; i++) {\n if (list.isIndexInRange(i)) {\n list.roomIndexToRoomId[i] = list.roomIndexToRoomId[i + 1];\n }\n }\n }\n\n private removeEntry(listKey: string, index: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // work out the max index\n let max = -1;\n for (const n in list.roomIndexToRoomId) {\n if (Number(n) > max) {\n max = Number(n);\n }\n }\n if (max < 0 || index > max) {\n return;\n }\n // Everything higher than the gap needs to be shifted left.\n this.shiftLeft(listKey, max, index);\n delete list.roomIndexToRoomId[max];\n }\n\n private addEntry(listKey: string, index: number): void {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n // work out the max index\n let max = -1;\n for (const n in list.roomIndexToRoomId) {\n if (Number(n) > max) {\n max = Number(n);\n }\n }\n if (max < 0 || index > max) {\n return;\n }\n // Everything higher than the gap needs to be shifted right, +1 so we don't delete the highest element\n this.shiftRight(listKey, max + 1, index);\n }\n\n private processListOps(list: ListResponse, listKey: string): void {\n let gapIndex = -1;\n const listData = this.lists.get(listKey);\n if (!listData) {\n return;\n }\n list.ops.forEach((op: Operation) => {\n if (!listData) {\n return;\n }\n switch (op.op) {\n case \"DELETE\": {\n logger.debug(\"DELETE\", listKey, op.index, \";\");\n delete listData.roomIndexToRoomId[op.index];\n if (gapIndex !== -1) {\n // we already have a DELETE operation to process, so process it.\n this.removeEntry(listKey, gapIndex);\n }\n gapIndex = op.index;\n break;\n }\n case \"INSERT\": {\n logger.debug(\"INSERT\", listKey, op.index, op.room_id, \";\");\n if (listData.roomIndexToRoomId[op.index]) {\n // something is in this space, shift items out of the way\n if (gapIndex < 0) {\n // we haven't been told where to shift from, so make way for a new room entry.\n this.addEntry(listKey, op.index);\n } else if (gapIndex > op.index) {\n // the gap is further down the list, shift every element to the right\n // starting at the gap so we can just shift each element in turn:\n // [A,B,C,_] gapIndex=3, op.index=0\n // [A,B,C,C] i=3\n // [A,B,B,C] i=2\n // [A,A,B,C] i=1\n // Terminate. We'll assign into op.index next.\n this.shiftRight(listKey, gapIndex, op.index);\n } else if (gapIndex < op.index) {\n // the gap is further up the list, shift every element to the left\n // starting at the gap so we can just shift each element in turn\n this.shiftLeft(listKey, op.index, gapIndex);\n }\n }\n // forget the gap, we don't need it anymore. This is outside the check for\n // a room being present in this index position because INSERTs always universally\n // forget the gap, not conditionally based on the presence of a room in the INSERT\n // position. Without this, DELETE 0; INSERT 0; would do the wrong thing.\n gapIndex = -1;\n listData.roomIndexToRoomId[op.index] = op.room_id;\n break;\n }\n case \"INVALIDATE\": {\n const startIndex = op.range[0];\n for (let i = startIndex; i <= op.range[1]; i++) {\n delete listData.roomIndexToRoomId[i];\n }\n logger.debug(\"INVALIDATE\", listKey, op.range[0], op.range[1], \";\");\n break;\n }\n case \"SYNC\": {\n const startIndex = op.range[0];\n for (let i = startIndex; i <= op.range[1]; i++) {\n const roomId = op.room_ids[i - startIndex];\n if (!roomId) {\n break; // we are at the end of list\n }\n listData.roomIndexToRoomId[i] = roomId;\n }\n logger.debug(\"SYNC\", listKey, op.range[0], op.range[1], (op.room_ids || []).join(\" \"), \";\");\n break;\n }\n }\n });\n if (gapIndex !== -1) {\n // we already have a DELETE operation to process, so process it\n // Everything higher than the gap needs to be shifted left.\n this.removeEntry(listKey, gapIndex);\n }\n }\n\n /**\n * Resend a Sliding Sync request. Used when something has changed in the request. Resolves with\n * the transaction ID of this request on success. Rejects with the transaction ID of this request\n * on failure.\n */\n public resend(): Promise<string> {\n if (this.needsResend && this.txnIdDefers.length > 0) {\n // we already have a resend queued, so just return the same promise\n return this.txnIdDefers[this.txnIdDefers.length - 1].promise;\n }\n this.needsResend = true;\n this.txnId = this.client.makeTxnId();\n const d = defer<string>();\n this.txnIdDefers.push({\n ...d,\n txnId: this.txnId,\n });\n this.abortController?.abort();\n this.abortController = new AbortController();\n return d.promise;\n }\n\n private resolveTransactionDefers(txnId?: string): void {\n if (!txnId) {\n return;\n }\n // find the matching index\n let txnIndex = -1;\n for (let i = 0; i < this.txnIdDefers.length; i++) {\n if (this.txnIdDefers[i].txnId === txnId) {\n txnIndex = i;\n break;\n }\n }\n if (txnIndex === -1) {\n // this shouldn't happen; we shouldn't be seeing txn_ids for things we don't know about,\n // whine about it.\n logger.warn(`resolveTransactionDefers: seen ${txnId} but it isn't a pending txn, ignoring.`);\n return;\n }\n // This list is sorted in time, so if the input txnId ACKs in the middle of this array,\n // then everything before it that hasn't been ACKed yet never will and we should reject them.\n for (let i = 0; i < txnIndex; i++) {\n this.txnIdDefers[i].reject(this.txnIdDefers[i].txnId);\n }\n this.txnIdDefers[txnIndex].resolve(txnId);\n // clear out settled promises, including the one we resolved.\n this.txnIdDefers = this.txnIdDefers.slice(txnIndex + 1);\n }\n\n /**\n * Stop syncing with the server.\n */\n public stop(): void {\n this.terminated = true;\n this.abortController?.abort();\n // remove all listeners so things can be GC'd\n this.removeAllListeners(SlidingSyncEvent.Lifecycle);\n this.removeAllListeners(SlidingSyncEvent.List);\n this.removeAllListeners(SlidingSyncEvent.RoomData);\n }\n\n /**\n * Re-setup this connection e.g in the event of an expired session.\n */\n private resetup(): void {\n logger.warn(\"SlidingSync: resetting connection info\");\n // any pending txn ID defers will be forgotten already by the server, so clear them out\n this.txnIdDefers.forEach((d) => {\n d.reject(d.txnId);\n });\n this.txnIdDefers = [];\n // resend sticky params and de-confirm all subscriptions\n this.lists.forEach((l) => {\n l.setModified(true);\n });\n this.confirmedRoomSubscriptions = new Set<string>(); // leave desired ones alone though!\n // reset the connection as we might be wedged\n this.needsResend = true;\n this.abortController?.abort();\n this.abortController = new AbortController();\n }\n\n /**\n * Start syncing with the server. Blocks until stopped.\n */\n public async start(): Promise<void> {\n this.abortController = new AbortController();\n\n let currentPos: string | undefined;\n while (!this.terminated) {\n this.needsResend = false;\n let doNotUpdateList = false;\n let resp: MSC3575SlidingSyncResponse | undefined;\n try {\n const listModifiedCount = this.listModifiedCount;\n const reqLists: Record<string, MSC3575List> = {};\n this.lists.forEach((l: SlidingList, key: string) => {\n reqLists[key] = l.getList(false);\n });\n const reqBody: MSC3575SlidingSyncRequest = {\n lists: reqLists,\n pos: currentPos,\n timeout: this.timeoutMS,\n clientTimeout: this.timeoutMS + BUFFER_PERIOD_MS,\n extensions: this.getExtensionRequest(currentPos === undefined),\n };\n // check if we are (un)subscribing to a room and modify request this one time for it\n const newSubscriptions = difference(this.desiredRoomSubscriptions, this.confirmedRoomSubscriptions);\n const unsubscriptions = difference(this.confirmedRoomSubscriptions, this.desiredRoomSubscriptions);\n if (unsubscriptions.size > 0) {\n reqBody.unsubscribe_rooms = Array.from(unsubscriptions);\n }\n if (newSubscriptions.size > 0) {\n reqBody.room_subscriptions = {};\n for (const roomId of newSubscriptions) {\n const customSubName = this.roomIdToCustomSubscription.get(roomId);\n let sub = this.roomSubscriptionInfo;\n if (customSubName && this.customSubscriptions.has(customSubName)) {\n sub = this.customSubscriptions.get(customSubName)!;\n }\n reqBody.room_subscriptions[roomId] = sub;\n }\n }\n if (this.txnId) {\n reqBody.txn_id = this.txnId;\n this.txnId = null;\n }\n this.pendingReq = this.client.slidingSync(reqBody, this.proxyBaseUrl, this.abortController.signal);\n resp = await this.pendingReq;\n currentPos = resp.pos;\n // update what we think we're subscribed to.\n for (const roomId of newSubscriptions) {\n this.confirmedRoomSubscriptions.add(roomId);\n }\n for (const roomId of unsubscriptions) {\n this.confirmedRoomSubscriptions.delete(roomId);\n }\n if (listModifiedCount !== this.listModifiedCount) {\n // the lists have been modified whilst we were waiting for 'await' to return, but the abort()\n // call did nothing. It is NOT SAFE to modify the list array now. We'll process the response but\n // not update list pointers.\n logger.debug(\"list modified during await call, not updating list\");\n doNotUpdateList = true;\n }\n // mark all these lists as having been sent as sticky so we don't keep sending sticky params\n this.lists.forEach((l) => {\n l.setModified(false);\n });\n // set default empty values so we don't need to null check\n resp.lists = resp.lists ?? {};\n resp.rooms = resp.rooms ?? {};\n resp.extensions = resp.extensions ?? {};\n Object.keys(resp.lists).forEach((key: string) => {\n const list = this.lists.get(key);\n if (!list || !resp) {\n return;\n }\n list.joinedCount = resp.lists[key].count;\n });\n this.invokeLifecycleListeners(SlidingSyncState.RequestFinished, resp);\n } catch (err) {\n if ((<HTTPError>err).httpStatus) {\n this.invokeLifecycleListeners(SlidingSyncState.RequestFinished, null, <Error>err);\n if ((<HTTPError>err).httpStatus === 400) {\n // session probably expired TODO: assign an errcode\n // so drop state and re-request\n this.resetup();\n currentPos = undefined;\n await sleep(50); // in case the 400 was for something else; don't tightloop\n continue;\n } // else fallthrough to generic error handling\n } else if (this.needsResend || (<Error>err).name === \"AbortError\") {\n continue; // don't sleep as we caused this error by abort()ing the request.\n }\n logger.error(err);\n await sleep(5000);\n }\n if (!resp) {\n continue;\n }\n await this.onPreExtensionsResponse(resp.extensions);\n\n for (const roomId in resp.rooms) {\n await this.invokeRoomDataListeners(roomId, resp!.rooms[roomId]);\n }\n\n const listKeysWithUpdates: Set<string> = new Set();\n if (!doNotUpdateList) {\n for (const [key, list] of Object.entries(resp.lists)) {\n list.ops = list.ops ?? [];\n if (list.ops.length > 0) {\n listKeysWithUpdates.add(key);\n }\n this.processListOps(list, key);\n }\n }\n this.invokeLifecycleListeners(SlidingSyncState.Complete, resp);\n await this.onPostExtensionsResponse(resp.extensions);\n listKeysWithUpdates.forEach((listKey: string) => {\n const list = this.lists.get(listKey);\n if (!list) {\n return;\n }\n this.emit(SlidingSyncEvent.List, listKey, list.joinedCount, Object.assign({}, list.roomIndexToRoomId));\n });\n\n this.resolveTransactionDefers(resp.txn_id);\n }\n }\n}\n\nconst difference = (setA: Set<string>, setB: Set<string>): Set<string> => {\n const diff = new Set(setA);\n for (const elem of setB) {\n diff.delete(elem);\n }\n return diff;\n};\n"],"mappings":"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","ignoreList":[]}
@@ -9,7 +9,7 @@ import { IndexedToDeviceBatch, ToDeviceBatchWithTxnId } from "../models/ToDevice
9
9
  import { IStoredClientOpts } from "../client.ts";
10
10
  interface IOpts extends IBaseOpts {
11
11
  /** The Indexed DB interface e.g. `window.indexedDB` */
12
- indexedDB: IDBFactory;
12
+ indexedDB?: IDBFactory;
13
13
  /** Optional database name. The same name must be used to open the same database. */
14
14
  dbName?: string;
15
15
  /** Optional factory to spin up a Worker to execute the IDB transactions within. */
@@ -1 +1 @@
1
- {"version":3,"file":"indexeddb.d.ts","sourceRoot":"","sources":["../../src/store/indexeddb.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"indexeddb.d.ts","sourceRoot":"","sources":["../../src/store/indexeddb.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"indexeddb.js","names":["MemoryStore","LocalIndexedDBStoreBackend","RemoteIndexedDBStoreBackend","MatrixEvent","logger","TypedEventEmitter","WRITE_DELAY_MS","IndexedDBStore","exists","indexedDB","dbName","constructor","opts","_defineProperty","emitter","emit","degradable","backend","getSavedSync","isNewlyCreated","getNextBatchToken","deleteAllData","clearDatabase","then","log","err","error","concat","syncTs","Date","now","userTuples","u","getUsers","userModifiedMap","userId","getLastModifiedTime","events","presence","push","event","syncToDatabase","syncData","setSyncData","roomId","getOutOfBandMembers","membershipEvents","setOutOfBandMembers","clearOutOfBandMembers","getClientOptions","options","storeClientOptions","Error","workerFactory","on","handler","startup","startedUp","Promise","resolve","connect","onClose","getUserPresenceEvents","userPresenceEvents","forEach","_ref","rawEvent","createUser","setPresenceEvent","storeUser","destroy","wantsSave","save","force","arguments","length","undefined","reallySave","func","fallback","_this","fallbackFn","_asyncToGenerator","_len","args","Array","_key","call","e","warn","getPendingEvents","_superprop_getGetPendingEvents","_this2","localStorage","serialized","getItem","pendingEventsKey","JSON","parse","setPendingEvents","_superprop_getSetPendingEvents","_this3","setItem","stringify","removeItem","saveToDeviceBatches","batches","getOldestToDeviceBatch","removeToDeviceBatch","id"],"sources":["../../src/store/indexeddb.ts"],"sourcesContent":["/*\nCopyright 2017 - 2021 Vector Creations Ltd\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\n/* eslint-disable @babel/no-invalid-this */\n\nimport { MemoryStore, IOpts as IBaseOpts } from \"./memory.ts\";\nimport { LocalIndexedDBStoreBackend } from \"./indexeddb-local-backend.ts\";\nimport { RemoteIndexedDBStoreBackend } from \"./indexeddb-remote-backend.ts\";\nimport { IEvent, MatrixEvent } from \"../models/event.ts\";\nimport { logger } from \"../logger.ts\";\nimport { ISavedSync } from \"./index.ts\";\nimport { IIndexedDBBackend } from \"./indexeddb-backend.ts\";\nimport { ISyncResponse } from \"../sync-accumulator.ts\";\nimport { EventEmitterEvents, TypedEventEmitter } from \"../models/typed-event-emitter.ts\";\nimport { IStateEventWithRoomId } from \"../@types/search.ts\";\nimport { IndexedToDeviceBatch, ToDeviceBatchWithTxnId } from \"../models/ToDeviceMessage.ts\";\nimport { IStoredClientOpts } from \"../client.ts\";\n\n/**\n * This is an internal module. See {@link IndexedDBStore} for the public class.\n */\n\n// If this value is too small we'll be writing very often which will cause\n// noticeable stop-the-world pauses. If this value is too big we'll be writing\n// so infrequently that the /sync size gets bigger on reload. Writing more\n// often does not affect the length of the pause since the entire /sync\n// response is persisted each time.\nconst WRITE_DELAY_MS = 1000 * 60 * 5; // once every 5 minutes\n\ninterface IOpts extends IBaseOpts {\n /** The Indexed DB interface e.g. `window.indexedDB` */\n indexedDB: IDBFactory;\n /** Optional database name. The same name must be used to open the same database. */\n dbName?: string;\n /** Optional factory to spin up a Worker to execute the IDB transactions within. */\n workerFactory?: () => Worker;\n}\n\ntype EventHandlerMap = {\n // Fired when an IDB command fails on a degradable path, and the store falls back to MemoryStore\n // This signals the potential for data volatility.\n degraded: (e: Error) => void;\n // Fired when the IndexedDB gets closed unexpectedly, for example, if the underlying storage is removed or\n // if the user clears the database in the browser's history preferences.\n closed: () => void;\n};\n\nexport class IndexedDBStore extends MemoryStore {\n public static exists(indexedDB: IDBFactory, dbName: string): Promise<boolean> {\n return LocalIndexedDBStoreBackend.exists(indexedDB, dbName);\n }\n\n /**\n * The backend instance.\n * Call through to this API if you need to perform specific indexeddb actions like deleting the database.\n */\n public readonly backend: IIndexedDBBackend;\n\n private startedUp = false;\n private syncTs = 0;\n // Records the last-modified-time of each user at the last point we saved\n // the database, such that we can derive the set if users that have been\n // modified since we last saved.\n private userModifiedMap: Record<string, number> = {}; // user_id : timestamp\n private emitter = new TypedEventEmitter<keyof EventHandlerMap, EventHandlerMap>();\n\n /**\n * Construct a new Indexed Database store, which extends MemoryStore.\n *\n * This store functions like a MemoryStore except it periodically persists\n * the contents of the store to an IndexedDB backend.\n *\n * All data is still kept in-memory but can be loaded from disk by calling\n * `startup()`. This can make startup times quicker as a complete\n * sync from the server is not required. This does not reduce memory usage as all\n * the data is eagerly fetched when `startup()` is called.\n * ```\n * let opts = { indexedDB: window.indexedDB, localStorage: window.localStorage };\n * let store = new IndexedDBStore(opts);\n * let client = sdk.createClient({\n * store: store,\n * });\n * await store.startup(); // load from indexed db, must be called after createClient\n * client.startClient();\n * client.on(\"sync\", function(state, prevState, data) {\n * if (state === \"PREPARED\") {\n * console.log(\"Started up, now with go faster stripes!\");\n * }\n * });\n * ```\n *\n * @param opts - Options object.\n */\n public constructor(opts: IOpts) {\n super(opts);\n\n if (!opts.indexedDB) {\n throw new Error(\"Missing required option: indexedDB\");\n }\n\n if (opts.workerFactory) {\n this.backend = new RemoteIndexedDBStoreBackend(opts.workerFactory, opts.dbName);\n } else {\n this.backend = new LocalIndexedDBStoreBackend(opts.indexedDB, opts.dbName);\n }\n }\n\n /** Re-exports `TypedEventEmitter.on` */\n public on(event: EventEmitterEvents | \"degraded\" | \"closed\", handler: (...args: any[]) => void): void {\n this.emitter.on(event, handler);\n }\n\n /**\n * @returns Resolved when loaded from indexed db.\n */\n public startup(): Promise<void> {\n if (this.startedUp) {\n logger.log(`IndexedDBStore.startup: already started`);\n return Promise.resolve();\n }\n\n logger.log(`IndexedDBStore.startup: connecting to backend`);\n return this.backend\n .connect(this.onClose)\n .then(() => {\n logger.log(`IndexedDBStore.startup: loading presence events`);\n return this.backend.getUserPresenceEvents();\n })\n .then((userPresenceEvents) => {\n logger.log(`IndexedDBStore.startup: processing presence events`);\n userPresenceEvents.forEach(([userId, rawEvent]) => {\n if (!this.createUser) {\n throw new Error(\n \"`IndexedDBStore.startup` must be called after assigning it to the client, not before!\",\n );\n }\n const u = this.createUser(userId);\n if (rawEvent) {\n u.setPresenceEvent(new MatrixEvent(rawEvent));\n }\n this.userModifiedMap[u.userId] = u.getLastModifiedTime();\n this.storeUser(u);\n });\n this.startedUp = true;\n });\n }\n\n /*\n * Close the database and destroy any associated workers\n */\n public destroy(): Promise<void> {\n return this.backend.destroy();\n }\n\n private onClose = (): void => {\n this.emitter.emit(\"closed\");\n };\n\n /**\n * @returns Promise which resolves with a sync response to restore the\n * client state to where it was at the last save, or null if there\n * is no saved sync data.\n */\n public getSavedSync = this.degradable((): Promise<ISavedSync | null> => {\n return this.backend.getSavedSync();\n }, \"getSavedSync\");\n\n /** @returns whether or not the database was newly created in this session. */\n public isNewlyCreated = this.degradable((): Promise<boolean> => {\n return this.backend.isNewlyCreated();\n }, \"isNewlyCreated\");\n\n /**\n * @returns If there is a saved sync, the nextBatch token\n * for this sync, otherwise null.\n */\n public getSavedSyncToken = this.degradable((): Promise<string | null> => {\n return this.backend.getNextBatchToken();\n }, \"getSavedSyncToken\");\n\n /**\n * Delete all data from this store.\n * @returns Promise which resolves if the data was deleted from the database.\n */\n public deleteAllData = this.degradable((): Promise<void> => {\n super.deleteAllData();\n return this.backend.clearDatabase().then(\n () => {\n logger.log(\"Deleted indexeddb data.\");\n },\n (err) => {\n logger.error(`Failed to delete indexeddb data: ${err}`);\n throw err;\n },\n );\n }, null);\n\n /**\n * Whether this store would like to save its data\n * Note that obviously whether the store wants to save or\n * not could change between calling this function and calling\n * save().\n *\n * @returns True if calling save() will actually save\n * (at the time this function is called).\n */\n public wantsSave(): boolean {\n const now = Date.now();\n return now - this.syncTs > WRITE_DELAY_MS;\n }\n\n /**\n * Possibly write data to the database.\n *\n * @param force - True to force a save to happen\n * @returns Promise resolves after the write completes\n * (or immediately if no write is performed)\n */\n public save(force = false): Promise<void> {\n if (force || this.wantsSave()) {\n return this.reallySave();\n }\n return Promise.resolve();\n }\n\n private reallySave = this.degradable((): Promise<void> => {\n this.syncTs = Date.now(); // set now to guard against multi-writes\n\n // work out changed users (this doesn't handle deletions but you\n // can't 'delete' users as they are just presence events).\n const userTuples: [userId: string, presenceEvent: Partial<IEvent>][] = [];\n for (const u of this.getUsers()) {\n if (this.userModifiedMap[u.userId] === u.getLastModifiedTime()) continue;\n if (!u.events.presence) continue;\n\n userTuples.push([u.userId, u.events.presence.event]);\n\n // note that we've saved this version of the user\n this.userModifiedMap[u.userId] = u.getLastModifiedTime();\n }\n\n return this.backend.syncToDatabase(userTuples);\n }, null);\n\n public setSyncData = this.degradable((syncData: ISyncResponse): Promise<void> => {\n return this.backend.setSyncData(syncData);\n }, \"setSyncData\");\n\n /**\n * Returns the out-of-band membership events for this room that\n * were previously loaded.\n * @returns the events, potentially an empty array if OOB loading didn't yield any new members\n * @returns in case the members for this room haven't been stored yet\n */\n public getOutOfBandMembers = this.degradable((roomId: string): Promise<IStateEventWithRoomId[] | null> => {\n return this.backend.getOutOfBandMembers(roomId);\n }, \"getOutOfBandMembers\");\n\n /**\n * Stores the out-of-band membership events for this room. Note that\n * it still makes sense to store an empty array as the OOB status for the room is\n * marked as fetched, and getOutOfBandMembers will return an empty array instead of null\n * @param membershipEvents - the membership events to store\n * @returns when all members have been stored\n */\n public setOutOfBandMembers = this.degradable(\n (roomId: string, membershipEvents: IStateEventWithRoomId[]): Promise<void> => {\n super.setOutOfBandMembers(roomId, membershipEvents);\n return this.backend.setOutOfBandMembers(roomId, membershipEvents);\n },\n \"setOutOfBandMembers\",\n );\n\n public clearOutOfBandMembers = this.degradable((roomId: string) => {\n super.clearOutOfBandMembers(roomId);\n return this.backend.clearOutOfBandMembers(roomId);\n }, \"clearOutOfBandMembers\");\n\n public getClientOptions = this.degradable((): Promise<IStoredClientOpts | undefined> => {\n return this.backend.getClientOptions();\n }, \"getClientOptions\");\n\n public storeClientOptions = this.degradable((options: IStoredClientOpts): Promise<void> => {\n super.storeClientOptions(options);\n return this.backend.storeClientOptions(options);\n }, \"storeClientOptions\");\n\n /**\n * All member functions of `IndexedDBStore` that access the backend use this wrapper to\n * watch for failures after initial store startup, including `QuotaExceededError` as\n * free disk space changes, etc.\n *\n * When IndexedDB fails via any of these paths, we degrade this back to a `MemoryStore`\n * in place so that the current operation and all future ones are in-memory only.\n *\n * @param func - The degradable work to do.\n * @param fallback - The method name for fallback.\n * @returns A wrapped member function.\n */\n private degradable<A extends Array<any>, F extends keyof MemoryStore | null, R = void>(\n func: DegradableFn<A, R>,\n fallback: F,\n ): DegradableFn<A, F extends string ? R : void> {\n const fallbackFn = fallback ? (super[fallback] as (...args: A) => Promise<R>) : null;\n\n return (async (...args) => {\n try {\n return await func.call(this, ...args);\n } catch (e) {\n logger.error(\"IndexedDBStore failure, degrading to MemoryStore\", e);\n this.emitter.emit(\"degraded\", e as Error);\n try {\n // We try to delete IndexedDB after degrading since this store is only a\n // cache (the app will still function correctly without the data).\n // It's possible that deleting repair IndexedDB for the next app load,\n // potentially by making a little more space available.\n logger.log(\"IndexedDBStore trying to delete degraded data\");\n await this.backend.clearDatabase();\n logger.log(\"IndexedDBStore delete after degrading succeeded\");\n } catch (e) {\n logger.warn(\"IndexedDBStore delete after degrading failed\", e);\n }\n // Degrade the store from being an instance of `IndexedDBStore` to instead be\n // an instance of `MemoryStore` so that future API calls use the memory path\n // directly and skip IndexedDB entirely. This should be safe as\n // `IndexedDBStore` already extends from `MemoryStore`, so we are making the\n // store become its parent type in a way. The mutator methods of\n // `IndexedDBStore` also maintain the state that `MemoryStore` uses (many are\n // not overridden at all).\n if (fallbackFn) {\n return fallbackFn.call(this, ...args);\n }\n }\n }) as DegradableFn<A, F extends string ? R : void>;\n }\n\n // XXX: ideally these would be stored in indexeddb as part of the room but,\n // we don't store rooms as such and instead accumulate entire sync responses atm.\n public async getPendingEvents(roomId: string): Promise<Partial<IEvent>[]> {\n if (!this.localStorage) return super.getPendingEvents(roomId);\n\n const serialized = this.localStorage.getItem(pendingEventsKey(roomId));\n if (serialized) {\n try {\n return JSON.parse(serialized);\n } catch (e) {\n logger.error(\"Could not parse persisted pending events\", e);\n }\n }\n return [];\n }\n\n public async setPendingEvents(roomId: string, events: Partial<IEvent>[]): Promise<void> {\n if (!this.localStorage) return super.setPendingEvents(roomId, events);\n\n if (events.length > 0) {\n this.localStorage.setItem(pendingEventsKey(roomId), JSON.stringify(events));\n } else {\n this.localStorage.removeItem(pendingEventsKey(roomId));\n }\n }\n\n public saveToDeviceBatches(batches: ToDeviceBatchWithTxnId[]): Promise<void> {\n return this.backend.saveToDeviceBatches(batches);\n }\n\n public getOldestToDeviceBatch(): Promise<IndexedToDeviceBatch | null> {\n return this.backend.getOldestToDeviceBatch();\n }\n\n public removeToDeviceBatch(id: number): Promise<void> {\n return this.backend.removeToDeviceBatch(id);\n }\n}\n\n/**\n * @param roomId - ID of the current room\n * @returns Storage key to retrieve pending events\n */\nfunction pendingEventsKey(roomId: string): string {\n return `mx_pending_events_${roomId}`;\n}\n\ntype DegradableFn<A extends Array<any>, T> = (...args: A) => Promise<T>;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"indexeddb.js","names":["MemoryStore","LocalIndexedDBStoreBackend","RemoteIndexedDBStoreBackend","MatrixEvent","logger","TypedEventEmitter","WRITE_DELAY_MS","IndexedDBStore","exists","indexedDB","dbName","constructor","opts","_defineProperty","emitter","emit","degradable","backend","getSavedSync","isNewlyCreated","getNextBatchToken","deleteAllData","clearDatabase","then","log","err","error","concat","syncTs","Date","now","userTuples","u","getUsers","userModifiedMap","userId","getLastModifiedTime","events","presence","push","event","syncToDatabase","syncData","setSyncData","roomId","getOutOfBandMembers","membershipEvents","setOutOfBandMembers","clearOutOfBandMembers","getClientOptions","options","storeClientOptions","Error","workerFactory","on","handler","startup","startedUp","Promise","resolve","connect","onClose","getUserPresenceEvents","userPresenceEvents","forEach","_ref","rawEvent","createUser","setPresenceEvent","storeUser","destroy","wantsSave","save","force","arguments","length","undefined","reallySave","func","fallback","_this","fallbackFn","_asyncToGenerator","_len","args","Array","_key","call","e","warn","getPendingEvents","_superprop_getGetPendingEvents","_this2","localStorage","serialized","getItem","pendingEventsKey","JSON","parse","setPendingEvents","_superprop_getSetPendingEvents","_this3","setItem","stringify","removeItem","saveToDeviceBatches","batches","getOldestToDeviceBatch","removeToDeviceBatch","id"],"sources":["../../src/store/indexeddb.ts"],"sourcesContent":["/*\nCopyright 2017 - 2021 Vector Creations Ltd\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\n/* eslint-disable @babel/no-invalid-this */\n\nimport { MemoryStore, IOpts as IBaseOpts } from \"./memory.ts\";\nimport { LocalIndexedDBStoreBackend } from \"./indexeddb-local-backend.ts\";\nimport { RemoteIndexedDBStoreBackend } from \"./indexeddb-remote-backend.ts\";\nimport { IEvent, MatrixEvent } from \"../models/event.ts\";\nimport { logger } from \"../logger.ts\";\nimport { ISavedSync } from \"./index.ts\";\nimport { IIndexedDBBackend } from \"./indexeddb-backend.ts\";\nimport { ISyncResponse } from \"../sync-accumulator.ts\";\nimport { EventEmitterEvents, TypedEventEmitter } from \"../models/typed-event-emitter.ts\";\nimport { IStateEventWithRoomId } from \"../@types/search.ts\";\nimport { IndexedToDeviceBatch, ToDeviceBatchWithTxnId } from \"../models/ToDeviceMessage.ts\";\nimport { IStoredClientOpts } from \"../client.ts\";\n\n/**\n * This is an internal module. See {@link IndexedDBStore} for the public class.\n */\n\n// If this value is too small we'll be writing very often which will cause\n// noticeable stop-the-world pauses. If this value is too big we'll be writing\n// so infrequently that the /sync size gets bigger on reload. Writing more\n// often does not affect the length of the pause since the entire /sync\n// response is persisted each time.\nconst WRITE_DELAY_MS = 1000 * 60 * 5; // once every 5 minutes\n\ninterface IOpts extends IBaseOpts {\n /** The Indexed DB interface e.g. `window.indexedDB` */\n indexedDB?: IDBFactory;\n /** Optional database name. The same name must be used to open the same database. */\n dbName?: string;\n /** Optional factory to spin up a Worker to execute the IDB transactions within. */\n workerFactory?: () => Worker;\n}\n\ntype EventHandlerMap = {\n // Fired when an IDB command fails on a degradable path, and the store falls back to MemoryStore\n // This signals the potential for data volatility.\n degraded: (e: Error) => void;\n // Fired when the IndexedDB gets closed unexpectedly, for example, if the underlying storage is removed or\n // if the user clears the database in the browser's history preferences.\n closed: () => void;\n};\n\nexport class IndexedDBStore extends MemoryStore {\n public static exists(indexedDB: IDBFactory, dbName: string): Promise<boolean> {\n return LocalIndexedDBStoreBackend.exists(indexedDB, dbName);\n }\n\n /**\n * The backend instance.\n * Call through to this API if you need to perform specific indexeddb actions like deleting the database.\n */\n public readonly backend: IIndexedDBBackend;\n\n private startedUp = false;\n private syncTs = 0;\n // Records the last-modified-time of each user at the last point we saved\n // the database, such that we can derive the set if users that have been\n // modified since we last saved.\n private userModifiedMap: Record<string, number> = {}; // user_id : timestamp\n private emitter = new TypedEventEmitter<keyof EventHandlerMap, EventHandlerMap>();\n\n /**\n * Construct a new Indexed Database store, which extends MemoryStore.\n *\n * This store functions like a MemoryStore except it periodically persists\n * the contents of the store to an IndexedDB backend.\n *\n * All data is still kept in-memory but can be loaded from disk by calling\n * `startup()`. This can make startup times quicker as a complete\n * sync from the server is not required. This does not reduce memory usage as all\n * the data is eagerly fetched when `startup()` is called.\n * ```\n * let opts = { indexedDB: window.indexedDB, localStorage: window.localStorage };\n * let store = new IndexedDBStore(opts);\n * let client = sdk.createClient({\n * store: store,\n * });\n * await store.startup(); // load from indexed db, must be called after createClient\n * client.startClient();\n * client.on(\"sync\", function(state, prevState, data) {\n * if (state === \"PREPARED\") {\n * console.log(\"Started up, now with go faster stripes!\");\n * }\n * });\n * ```\n *\n * @param opts - Options object.\n */\n public constructor(opts: IOpts) {\n super(opts);\n\n if (!opts.indexedDB) {\n throw new Error(\"Missing required option: indexedDB\");\n }\n\n if (opts.workerFactory) {\n this.backend = new RemoteIndexedDBStoreBackend(opts.workerFactory, opts.dbName);\n } else {\n this.backend = new LocalIndexedDBStoreBackend(opts.indexedDB, opts.dbName);\n }\n }\n\n /** Re-exports `TypedEventEmitter.on` */\n public on(event: EventEmitterEvents | \"degraded\" | \"closed\", handler: (...args: any[]) => void): void {\n this.emitter.on(event, handler);\n }\n\n /**\n * @returns Resolved when loaded from indexed db.\n */\n public startup(): Promise<void> {\n if (this.startedUp) {\n logger.log(`IndexedDBStore.startup: already started`);\n return Promise.resolve();\n }\n\n logger.log(`IndexedDBStore.startup: connecting to backend`);\n return this.backend\n .connect(this.onClose)\n .then(() => {\n logger.log(`IndexedDBStore.startup: loading presence events`);\n return this.backend.getUserPresenceEvents();\n })\n .then((userPresenceEvents) => {\n logger.log(`IndexedDBStore.startup: processing presence events`);\n userPresenceEvents.forEach(([userId, rawEvent]) => {\n if (!this.createUser) {\n throw new Error(\n \"`IndexedDBStore.startup` must be called after assigning it to the client, not before!\",\n );\n }\n const u = this.createUser(userId);\n if (rawEvent) {\n u.setPresenceEvent(new MatrixEvent(rawEvent));\n }\n this.userModifiedMap[u.userId] = u.getLastModifiedTime();\n this.storeUser(u);\n });\n this.startedUp = true;\n });\n }\n\n /*\n * Close the database and destroy any associated workers\n */\n public destroy(): Promise<void> {\n return this.backend.destroy();\n }\n\n private onClose = (): void => {\n this.emitter.emit(\"closed\");\n };\n\n /**\n * @returns Promise which resolves with a sync response to restore the\n * client state to where it was at the last save, or null if there\n * is no saved sync data.\n */\n public getSavedSync = this.degradable((): Promise<ISavedSync | null> => {\n return this.backend.getSavedSync();\n }, \"getSavedSync\");\n\n /** @returns whether or not the database was newly created in this session. */\n public isNewlyCreated = this.degradable((): Promise<boolean> => {\n return this.backend.isNewlyCreated();\n }, \"isNewlyCreated\");\n\n /**\n * @returns If there is a saved sync, the nextBatch token\n * for this sync, otherwise null.\n */\n public getSavedSyncToken = this.degradable((): Promise<string | null> => {\n return this.backend.getNextBatchToken();\n }, \"getSavedSyncToken\");\n\n /**\n * Delete all data from this store.\n * @returns Promise which resolves if the data was deleted from the database.\n */\n public deleteAllData = this.degradable((): Promise<void> => {\n super.deleteAllData();\n return this.backend.clearDatabase().then(\n () => {\n logger.log(\"Deleted indexeddb data.\");\n },\n (err) => {\n logger.error(`Failed to delete indexeddb data: ${err}`);\n throw err;\n },\n );\n }, null);\n\n /**\n * Whether this store would like to save its data\n * Note that obviously whether the store wants to save or\n * not could change between calling this function and calling\n * save().\n *\n * @returns True if calling save() will actually save\n * (at the time this function is called).\n */\n public wantsSave(): boolean {\n const now = Date.now();\n return now - this.syncTs > WRITE_DELAY_MS;\n }\n\n /**\n * Possibly write data to the database.\n *\n * @param force - True to force a save to happen\n * @returns Promise resolves after the write completes\n * (or immediately if no write is performed)\n */\n public save(force = false): Promise<void> {\n if (force || this.wantsSave()) {\n return this.reallySave();\n }\n return Promise.resolve();\n }\n\n private reallySave = this.degradable((): Promise<void> => {\n this.syncTs = Date.now(); // set now to guard against multi-writes\n\n // work out changed users (this doesn't handle deletions but you\n // can't 'delete' users as they are just presence events).\n const userTuples: [userId: string, presenceEvent: Partial<IEvent>][] = [];\n for (const u of this.getUsers()) {\n if (this.userModifiedMap[u.userId] === u.getLastModifiedTime()) continue;\n if (!u.events.presence) continue;\n\n userTuples.push([u.userId, u.events.presence.event]);\n\n // note that we've saved this version of the user\n this.userModifiedMap[u.userId] = u.getLastModifiedTime();\n }\n\n return this.backend.syncToDatabase(userTuples);\n }, null);\n\n public setSyncData = this.degradable((syncData: ISyncResponse): Promise<void> => {\n return this.backend.setSyncData(syncData);\n }, \"setSyncData\");\n\n /**\n * Returns the out-of-band membership events for this room that\n * were previously loaded.\n * @returns the events, potentially an empty array if OOB loading didn't yield any new members\n * @returns in case the members for this room haven't been stored yet\n */\n public getOutOfBandMembers = this.degradable((roomId: string): Promise<IStateEventWithRoomId[] | null> => {\n return this.backend.getOutOfBandMembers(roomId);\n }, \"getOutOfBandMembers\");\n\n /**\n * Stores the out-of-band membership events for this room. Note that\n * it still makes sense to store an empty array as the OOB status for the room is\n * marked as fetched, and getOutOfBandMembers will return an empty array instead of null\n * @param membershipEvents - the membership events to store\n * @returns when all members have been stored\n */\n public setOutOfBandMembers = this.degradable(\n (roomId: string, membershipEvents: IStateEventWithRoomId[]): Promise<void> => {\n super.setOutOfBandMembers(roomId, membershipEvents);\n return this.backend.setOutOfBandMembers(roomId, membershipEvents);\n },\n \"setOutOfBandMembers\",\n );\n\n public clearOutOfBandMembers = this.degradable((roomId: string) => {\n super.clearOutOfBandMembers(roomId);\n return this.backend.clearOutOfBandMembers(roomId);\n }, \"clearOutOfBandMembers\");\n\n public getClientOptions = this.degradable((): Promise<IStoredClientOpts | undefined> => {\n return this.backend.getClientOptions();\n }, \"getClientOptions\");\n\n public storeClientOptions = this.degradable((options: IStoredClientOpts): Promise<void> => {\n super.storeClientOptions(options);\n return this.backend.storeClientOptions(options);\n }, \"storeClientOptions\");\n\n /**\n * All member functions of `IndexedDBStore` that access the backend use this wrapper to\n * watch for failures after initial store startup, including `QuotaExceededError` as\n * free disk space changes, etc.\n *\n * When IndexedDB fails via any of these paths, we degrade this back to a `MemoryStore`\n * in place so that the current operation and all future ones are in-memory only.\n *\n * @param func - The degradable work to do.\n * @param fallback - The method name for fallback.\n * @returns A wrapped member function.\n */\n private degradable<A extends Array<any>, F extends keyof MemoryStore | null, R = void>(\n func: DegradableFn<A, R>,\n fallback: F,\n ): DegradableFn<A, F extends string ? R : void> {\n const fallbackFn = fallback ? (super[fallback] as (...args: A) => Promise<R>) : null;\n\n return (async (...args) => {\n try {\n return await func.call(this, ...args);\n } catch (e) {\n logger.error(\"IndexedDBStore failure, degrading to MemoryStore\", e);\n this.emitter.emit(\"degraded\", e as Error);\n try {\n // We try to delete IndexedDB after degrading since this store is only a\n // cache (the app will still function correctly without the data).\n // It's possible that deleting repair IndexedDB for the next app load,\n // potentially by making a little more space available.\n logger.log(\"IndexedDBStore trying to delete degraded data\");\n await this.backend.clearDatabase();\n logger.log(\"IndexedDBStore delete after degrading succeeded\");\n } catch (e) {\n logger.warn(\"IndexedDBStore delete after degrading failed\", e);\n }\n // Degrade the store from being an instance of `IndexedDBStore` to instead be\n // an instance of `MemoryStore` so that future API calls use the memory path\n // directly and skip IndexedDB entirely. This should be safe as\n // `IndexedDBStore` already extends from `MemoryStore`, so we are making the\n // store become its parent type in a way. The mutator methods of\n // `IndexedDBStore` also maintain the state that `MemoryStore` uses (many are\n // not overridden at all).\n if (fallbackFn) {\n return fallbackFn.call(this, ...args);\n }\n }\n }) as DegradableFn<A, F extends string ? R : void>;\n }\n\n // XXX: ideally these would be stored in indexeddb as part of the room but,\n // we don't store rooms as such and instead accumulate entire sync responses atm.\n public async getPendingEvents(roomId: string): Promise<Partial<IEvent>[]> {\n if (!this.localStorage) return super.getPendingEvents(roomId);\n\n const serialized = this.localStorage.getItem(pendingEventsKey(roomId));\n if (serialized) {\n try {\n return JSON.parse(serialized);\n } catch (e) {\n logger.error(\"Could not parse persisted pending events\", e);\n }\n }\n return [];\n }\n\n public async setPendingEvents(roomId: string, events: Partial<IEvent>[]): Promise<void> {\n if (!this.localStorage) return super.setPendingEvents(roomId, events);\n\n if (events.length > 0) {\n this.localStorage.setItem(pendingEventsKey(roomId), JSON.stringify(events));\n } else {\n this.localStorage.removeItem(pendingEventsKey(roomId));\n }\n }\n\n public saveToDeviceBatches(batches: ToDeviceBatchWithTxnId[]): Promise<void> {\n return this.backend.saveToDeviceBatches(batches);\n }\n\n public getOldestToDeviceBatch(): Promise<IndexedToDeviceBatch | null> {\n return this.backend.getOldestToDeviceBatch();\n }\n\n public removeToDeviceBatch(id: number): Promise<void> {\n return this.backend.removeToDeviceBatch(id);\n }\n}\n\n/**\n * @param roomId - ID of the current room\n * @returns Storage key to retrieve pending events\n */\nfunction pendingEventsKey(roomId: string): string {\n return `mx_pending_events_${roomId}`;\n}\n\ntype DegradableFn<A extends Array<any>, T> = (...args: A) => Promise<T>;\n"],"mappings":"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","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unwanted/matrix-sdk-mini",
3
- "version": "34.12.0-9",
3
+ "version": "34.13.0",
4
4
  "description": "Matrix Client-Server mini SDK for Javascript",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
@@ -118,7 +118,7 @@
118
118
  "prettier": "3.4.1",
119
119
  "rimraf": "^6.0.0",
120
120
  "ts-node": "^10.9.2",
121
- "typedoc": "^0.26.0",
121
+ "typedoc": "^0.27.0",
122
122
  "typedoc-plugin-coverage": "^3.4.0",
123
123
  "typedoc-plugin-mdn-links": "^3.0.3",
124
124
  "typedoc-plugin-missing-exports": "^3.0.0",
@@ -62,6 +62,26 @@ declare global {
62
62
  interface Navigator {
63
63
  // We check for the webkit-prefixed getUserMedia to detect if we're
64
64
  // on webkit: we should check if we still need to do this
65
- webkitGetUserMedia: DummyInterfaceWeShouldntBeUsingThis;
65
+ webkitGetUserMedia?: DummyInterfaceWeShouldntBeUsingThis;
66
+ }
67
+
68
+ export interface Uint8ArrayToBase64Options {
69
+ alphabet?: "base64" | "base64url";
70
+ omitPadding?: boolean;
71
+ }
72
+
73
+ interface Uint8Array {
74
+ // https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.prototype.tobase64
75
+ toBase64?(options?: Uint8ArrayToBase64Options): string;
76
+ }
77
+
78
+ export interface Uint8ArrayFromBase64Options {
79
+ alphabet?: "base64"; // Our fallback code only handles base64.
80
+ lastChunkHandling?: "loose"; // Our fallback code doesn't support other handling at this time.
81
+ }
82
+
83
+ interface Uint8ArrayConstructor {
84
+ // https://tc39.es/proposal-arraybuffer-base64/spec/#sec-uint8array.frombase64
85
+ fromBase64?(base64: string, options?: Uint8ArrayFromBase64Options): Uint8Array;
66
86
  }
67
87
  }
@@ -130,7 +130,7 @@ export class AutoDiscovery {
130
130
  * configuration, which may include error states. Rejects on unexpected
131
131
  * failure, not when verification fails.
132
132
  */
133
- public static async fromDiscoveryConfig(wellknown: IClientWellKnown): Promise<ClientConfig> {
133
+ public static async fromDiscoveryConfig(wellknown?: IClientWellKnown): Promise<ClientConfig> {
134
134
  // Step 1 is to get the config, which is provided to us here.
135
135
 
136
136
  // We default to an error state to make the first few checks easier to