@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.
- package/git-revision.txt +1 -1
- package/lib/@types/global.d.js.map +1 -1
- package/lib/autodiscovery.d.ts +1 -1
- package/lib/autodiscovery.d.ts.map +1 -1
- package/lib/autodiscovery.js.map +1 -1
- package/lib/base64.d.ts +3 -6
- package/lib/base64.d.ts.map +1 -1
- package/lib/base64.js +43 -36
- package/lib/base64.js.map +1 -1
- package/lib/client.d.ts +0 -21
- package/lib/client.d.ts.map +1 -1
- package/lib/client.js +7 -22
- package/lib/client.js.map +1 -1
- package/lib/digest.d.ts +2 -2
- package/lib/digest.d.ts.map +1 -1
- package/lib/digest.js +2 -2
- package/lib/digest.js.map +1 -1
- package/lib/models/event.d.ts +1 -1
- package/lib/models/event.d.ts.map +1 -1
- package/lib/models/event.js +10 -6
- package/lib/models/event.js.map +1 -1
- package/lib/sliding-sync.js +9 -6
- package/lib/sliding-sync.js.map +1 -1
- package/lib/store/indexeddb.d.ts +1 -1
- package/lib/store/indexeddb.d.ts.map +1 -1
- package/lib/store/indexeddb.js.map +1 -1
- package/package.json +2 -2
- package/src/@types/global.d.ts +21 -1
- package/src/autodiscovery.ts +1 -1
- package/src/base64.ts +38 -40
- package/src/client.ts +4 -35
- package/src/digest.ts +3 -3
- package/src/models/event.ts +5 -5
- package/src/sliding-sync.ts +6 -6
- package/src/store/indexeddb.ts +1 -1
package/lib/digest.d.ts
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
* Computes a SHA-256 hash of a string (after utf-8 encoding) and returns it as an ArrayBuffer.
|
3
3
|
*
|
4
4
|
* @param plaintext The string to hash
|
5
|
-
* @returns An
|
5
|
+
* @returns An Uint8Array containing the SHA-256 hash of the input string
|
6
6
|
* @throws If the subtle crypto API is not available, for example if the code is running
|
7
7
|
* in a web page with an insecure context (eg. served over plain HTTP).
|
8
8
|
*/
|
9
|
-
export declare function sha256(plaintext: string): Promise<
|
9
|
+
export declare function sha256(plaintext: string): Promise<Uint8Array>;
|
10
10
|
//# sourceMappingURL=digest.d.ts.map
|
package/lib/digest.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"digest.d.ts","sourceRoot":"","sources":["../src/digest.ts"],"names":[],"mappings":"AAgBA;;;;;;;GAOG;AACH,wBAAsB,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,
|
1
|
+
{"version":3,"file":"digest.d.ts","sourceRoot":"","sources":["../src/digest.ts"],"names":[],"mappings":"AAgBA;;;;;;;GAOG;AACH,wBAAsB,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CASnE"}
|
package/lib/digest.js
CHANGED
@@ -19,7 +19,7 @@ limitations under the License.
|
|
19
19
|
* Computes a SHA-256 hash of a string (after utf-8 encoding) and returns it as an ArrayBuffer.
|
20
20
|
*
|
21
21
|
* @param plaintext The string to hash
|
22
|
-
* @returns An
|
22
|
+
* @returns An Uint8Array containing the SHA-256 hash of the input string
|
23
23
|
* @throws If the subtle crypto API is not available, for example if the code is running
|
24
24
|
* in a web page with an insecure context (eg. served over plain HTTP).
|
25
25
|
*/
|
@@ -33,7 +33,7 @@ function _sha() {
|
|
33
33
|
}
|
34
34
|
var utf8 = new TextEncoder().encode(plaintext);
|
35
35
|
var digest = yield globalThis.crypto.subtle.digest("SHA-256", utf8);
|
36
|
-
return digest;
|
36
|
+
return new Uint8Array(digest);
|
37
37
|
});
|
38
38
|
return _sha.apply(this, arguments);
|
39
39
|
}
|
package/lib/digest.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"digest.js","names":["sha256","_x","_sha","apply","arguments","_asyncToGenerator","plaintext","globalThis","crypto","subtle","Error","utf8","TextEncoder","encode","digest"],"sources":["../src/digest.ts"],"sourcesContent":["/*\nCopyright 2024 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\n/**\n * Computes a SHA-256 hash of a string (after utf-8 encoding) and returns it as an ArrayBuffer.\n *\n * @param plaintext The string to hash\n * @returns An
|
1
|
+
{"version":3,"file":"digest.js","names":["sha256","_x","_sha","apply","arguments","_asyncToGenerator","plaintext","globalThis","crypto","subtle","Error","utf8","TextEncoder","encode","digest","Uint8Array"],"sources":["../src/digest.ts"],"sourcesContent":["/*\nCopyright 2024 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\n/**\n * Computes a SHA-256 hash of a string (after utf-8 encoding) and returns it as an ArrayBuffer.\n *\n * @param plaintext The string to hash\n * @returns An Uint8Array containing the SHA-256 hash of the input string\n * @throws If the subtle crypto API is not available, for example if the code is running\n * in a web page with an insecure context (eg. served over plain HTTP).\n */\nexport async function sha256(plaintext: string): Promise<Uint8Array> {\n if (!globalThis.crypto.subtle) {\n throw new Error(\"Crypto.subtle is not available: insecure context?\");\n }\n const utf8 = new TextEncoder().encode(plaintext);\n\n const digest = await globalThis.crypto.subtle.digest(\"SHA-256\", utf8);\n\n return new Uint8Array(digest);\n}\n"],"mappings":";AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAsBA,MAAMA,CAAAC,EAAA;EAAA,OAAAC,IAAA,CAAAC,KAAA,OAAAC,SAAA;AAAA;AAS3B,SAAAF,KAAA;EAAAA,IAAA,GAAAG,iBAAA,CATM,WAAsBC,SAAiB,EAAuB;IACjE,IAAI,CAACC,UAAU,CAACC,MAAM,CAACC,MAAM,EAAE;MAC3B,MAAM,IAAIC,KAAK,CAAC,mDAAmD,CAAC;IACxE;IACA,IAAMC,IAAI,GAAG,IAAIC,WAAW,CAAC,CAAC,CAACC,MAAM,CAACP,SAAS,CAAC;IAEhD,IAAMQ,MAAM,SAASP,UAAU,CAACC,MAAM,CAACC,MAAM,CAACK,MAAM,CAAC,SAAS,EAAEH,IAAI,CAAC;IAErE,OAAO,IAAII,UAAU,CAACD,MAAM,CAAC;EACjC,CAAC;EAAA,OAAAZ,IAAA,CAAAC,KAAA,OAAAC,SAAA;AAAA","ignoreList":[]}
|
package/lib/models/event.d.ts
CHANGED
@@ -682,7 +682,7 @@ export declare class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEve
|
|
682
682
|
* @param otherEvent - The other event to check against.
|
683
683
|
* @returns True if the events are the same, false otherwise.
|
684
684
|
*/
|
685
|
-
isEquivalentTo(otherEvent
|
685
|
+
isEquivalentTo(otherEvent?: MatrixEvent): boolean;
|
686
686
|
/**
|
687
687
|
* Summarise the event as JSON.
|
688
688
|
*
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../src/models/event.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../src/models/event.ts"],"names":[],"mappings":"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"}
|
package/lib/models/event.js
CHANGED
@@ -343,13 +343,15 @@ export class MatrixEvent extends TypedEventEmitter {
|
|
343
343
|
* @returns The event content JSON, or an empty object.
|
344
344
|
*/
|
345
345
|
getOriginalContent() {
|
346
|
+
var _this$event$content;
|
346
347
|
if (this._localRedactionEvent) {
|
347
348
|
return {};
|
348
349
|
}
|
349
350
|
if (this.clearEvent) {
|
350
|
-
|
351
|
+
var _this$clearEvent$cont;
|
352
|
+
return (_this$clearEvent$cont = this.clearEvent.content) !== null && _this$clearEvent$cont !== void 0 ? _this$clearEvent$cont : {};
|
351
353
|
}
|
352
|
-
return this.event.content
|
354
|
+
return (_this$event$content = this.event.content) !== null && _this$event$content !== void 0 ? _this$event$content : {};
|
353
355
|
}
|
354
356
|
|
355
357
|
/**
|
@@ -363,7 +365,8 @@ export class MatrixEvent extends TypedEventEmitter {
|
|
363
365
|
if (this._localRedactionEvent) {
|
364
366
|
return {};
|
365
367
|
} else if (this._replacingEvent) {
|
366
|
-
|
368
|
+
var _this$_replacingEvent;
|
369
|
+
return (_this$_replacingEvent = this._replacingEvent.getContent()["m.new_content"]) !== null && _this$_replacingEvent !== void 0 ? _this$_replacingEvent : {};
|
367
370
|
} else {
|
368
371
|
return this.getOriginalContent();
|
369
372
|
}
|
@@ -885,6 +888,7 @@ export class MatrixEvent extends TypedEventEmitter {
|
|
885
888
|
* @param event - the object to assign to the `event` property
|
886
889
|
*/
|
887
890
|
handleRemoteEcho(event) {
|
891
|
+
var _this$getAge;
|
888
892
|
var oldUnsigned = this.getUnsigned();
|
889
893
|
var oldId = this.getId();
|
890
894
|
this.event = event;
|
@@ -905,7 +909,7 @@ export class MatrixEvent extends TypedEventEmitter {
|
|
905
909
|
// emit the event if it changed
|
906
910
|
this.emit(MatrixEventEvent.LocalEventIdReplaced, this);
|
907
911
|
}
|
908
|
-
this.localTimestamp = Date.now() - this.getAge();
|
912
|
+
this.localTimestamp = Date.now() - ((_this$getAge = this.getAge()) !== null && _this$getAge !== void 0 ? _this$getAge : 0);
|
909
913
|
}
|
910
914
|
|
911
915
|
/**
|
@@ -1037,8 +1041,8 @@ export class MatrixEvent extends TypedEventEmitter {
|
|
1037
1041
|
return new Date(ts);
|
1038
1042
|
}
|
1039
1043
|
} else if (this._replacingEvent) {
|
1040
|
-
var _this$
|
1041
|
-
return (_this$
|
1044
|
+
var _this$_replacingEvent2;
|
1045
|
+
return (_this$_replacingEvent2 = this._replacingEvent.getDate()) !== null && _this$_replacingEvent2 !== void 0 ? _this$_replacingEvent2 : undefined;
|
1042
1046
|
}
|
1043
1047
|
}
|
1044
1048
|
|
package/lib/models/event.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"event.js","names":["ExtensibleEvents","EVENT_VISIBILITY_CHANGE_TYPE","EventType","RelationType","ToDeviceMessageId","UNSIGNED_THREAD_ID_FIELD","UNSIGNED_MEMBERSHIP_FIELD","deepSortedObjectEntries","internaliseString","THREAD_RELATION_TYPE","ThreadEvent","TypedReEmitter","TypedEventEmitter","EventTimeline","EventStatus","MESSAGE_VISIBLE","Object","freeze","visible","MatrixEventEvent","MatrixEvent","constructor","_this$getTs","event","arguments","length","undefined","_defineProperty","forEach","prop","_event$content","content","_event$content2","txnId","txn_id","age","getAge","localTimestamp","Date","now","getTs","reEmitter","unstableExtensibleEvent","_hasCachedExtEv","_cachedExtEv","parse","getEffectiveEvent","invalidateExtensibleEvent","assign","getContent","getWireType","RoomMessageEncrypted","key","value","entries","getWireContent","includes","clearEvent","getId","event_id","getSender","sender","getType","type","getRoomId","room_id","origin_server_ts","getDate","getDetails","room","_this$getDate","concat","toISOString","msgid","getOriginalContent","_localRedactionEvent","_replacingEvent","threadRootId","_this$getWireContent","isState","relatesTo","rel_type","name","thread","id","threadId","unsigned","getUnsigned","isThreadRoot","threadDetails","getServerAggregatedRelation","replyEventId","_this$getWireContent$","relationEventId","_this$getWireContent2","getPrevContent","prev_content","getDirectionalContent","forwardLooking","getLocalAge","getStateKey","state_key","getMembershipAtEvent","findIn","shouldAttemptDecryption","isRedacted","isEncrypted","getKeyRequestRecipients","userId","recipients","deviceId","getClearContent","getSenderKey","senderCurve25519Key","getKeysClaimed","claimedEd25519Key","ed25519","getClaimedEd25519Key","getForwardingCurve25519KeyChain","forwardingCurve25519KeyChain","isKeySourceUntrusted","untrusted","setUnsigned","unmarkLocallyRedacted","redacted_because","markLocallyRedacted","redactionEvent","emit","BeforeRedaction","applyVisibilityEvent","visibilityChange","_visibilityChange$vis","_visibilityChange$rea","reason","change","visibility","VisibilityChange","messageVisibility","makeRedacted","Error","hasOwnProperty","REDACT_KEEP_KEYS","has","keeps","REDACT_KEEP_CONTENT_MAP","moveAllRelatedToMainTimeline","moveToMainTimeline","events","_event$getRelation","getRelation","_this$thread","timelineSet","removeEvent","setThread","timeline","getLiveTimeline","getTimelineSet","insertEventIntoTimeline","getState","FORWARDS","Boolean","isRedaction","RoomRedaction","asVisibilityChange","matches","relation","eventId","isVisibilityEvent","getRedactionEvent","_this$clearEvent","_this$event$unsigned","_this$clearEvent$unsi","_this$clearEvent2","getPushActions","pushDetails","actions","getPushDetails","setPushDetails","pushActions","rule","handleRemoteEcho","oldUnsigned","oldId","setStatus","LocalEventIdReplaced","isSending","status","Status","replaceLocalEventId","isRelation","relType","_this$getWireContent3","Replace","Thread","_this$getWireContent$2","makeReplaced","newEvent","Replaced","getAssociatedStatus","_this$getUnsigned$mR","replacingEventId","replaceRelation","replacingEvent","replacingEventDate","ts","Number","isFinite","_this$_replacingEvent","localRedactionEvent","getAssociatedId","redacts","hasAssociation","updateAssociatedId","flagCancelled","cancelled","_isCancelled","isCancelled","toSnapshot","ev","JSON","stringify","p","v","isEquivalentTo","otherEvent","myProps","theirProps","toJSON","decrypted","encrypted","setTxnId","getTxnId","stopReEmitting","Update","setThreadId","reEmit","getThread","Set","RoomMember","membership","RoomJoinRules","join_rule","RoomPowerLevels","ban","events_default","kick","redact","state_default","users","users_default"],"sources":["../../src/models/event.ts"],"sourcesContent":["/*\nCopyright 2015 - 2023 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\n/**\n * This is an internal module. See {@link MatrixEvent} and {@link RoomEvent} for\n * the public classes.\n */\n\nimport { ExtensibleEvent, ExtensibleEvents, Optional } from \"matrix-events-sdk\";\n\nimport {\n EVENT_VISIBILITY_CHANGE_TYPE,\n EventType,\n MsgType,\n RelationType,\n ToDeviceMessageId,\n UNSIGNED_THREAD_ID_FIELD,\n UNSIGNED_MEMBERSHIP_FIELD,\n} from \"../@types/event.ts\";\nimport { deepSortedObjectEntries, internaliseString } from \"../utils.ts\";\nimport { RoomMember } from \"./room-member.ts\";\nimport { Thread, THREAD_RELATION_TYPE, ThreadEvent, ThreadEventHandlerMap } from \"./thread.ts\";\nimport { IActionsObject } from \"../pushprocessor.ts\";\nimport { TypedReEmitter } from \"../ReEmitter.ts\";\nimport { MatrixError } from \"../http-api/index.ts\";\nimport { TypedEventEmitter } from \"./typed-event-emitter.ts\";\nimport { EventStatus } from \"./event-status.ts\";\nimport { IAnnotatedPushRule } from \"../@types/PushRules.ts\";\nimport { Room } from \"./room.ts\";\nimport { EventTimeline } from \"./event-timeline.ts\";\nimport { Membership } from \"../@types/membership.ts\";\n\nexport { EventStatus } from \"./event-status.ts\";\n\n/* eslint-disable camelcase */\nexport interface IContent {\n [key: string]: any;\n \"msgtype\"?: MsgType | string;\n \"membership\"?: Membership;\n \"avatar_url\"?: string;\n \"displayname\"?: string;\n \"m.relates_to\"?: IEventRelation;\n\n \"m.mentions\"?: IMentions;\n}\n\ntype StrippedState = Required<Pick<IEvent, \"content\" | \"state_key\" | \"type\" | \"sender\">>;\n\nexport interface IUnsigned {\n [key: string]: any;\n \"age\"?: number;\n \"prev_sender\"?: string;\n \"prev_content\"?: IContent;\n \"redacted_because\"?: IEvent;\n \"replaces_state\"?: string;\n \"transaction_id\"?: string;\n \"invite_room_state\"?: StrippedState[];\n \"m.relations\"?: Record<RelationType | string, any>; // No common pattern for aggregated relations\n [UNSIGNED_THREAD_ID_FIELD.name]?: string;\n}\n\nexport interface IThreadBundledRelationship {\n latest_event: IEvent;\n count: number;\n current_user_participated?: boolean;\n}\n\nexport interface IEvent {\n event_id: string;\n type: string;\n content: IContent;\n sender: string;\n room_id?: string;\n origin_server_ts: number;\n txn_id?: string;\n state_key?: string;\n membership?: Membership;\n unsigned: IUnsigned;\n redacts?: string;\n}\n\nexport interface IAggregatedRelation {\n origin_server_ts: number;\n event_id?: string;\n sender?: string;\n type?: string;\n count?: number;\n key?: string;\n}\n\nexport interface IEventRelation {\n \"rel_type\"?: RelationType | string;\n \"event_id\"?: string;\n \"is_falling_back\"?: boolean;\n \"m.in_reply_to\"?: {\n event_id?: string;\n };\n \"key\"?: string;\n}\n\nexport interface IMentions {\n user_ids?: string[];\n room?: boolean;\n}\n\nexport interface PushDetails {\n rule?: IAnnotatedPushRule;\n actions?: IActionsObject;\n}\n\n/**\n * When an event is a visibility change event, as per MSC3531,\n * the visibility change implied by the event.\n */\nexport interface IVisibilityChange {\n /**\n * If `true`, the target event should be made visible.\n * Otherwise, it should be hidden.\n */\n visible: boolean;\n\n /**\n * The event id affected.\n */\n eventId: string;\n\n /**\n * Optionally, a human-readable reason explaining why\n * the event was hidden. Ignored if the event was made\n * visible.\n */\n reason: string | null;\n}\n\nexport interface IMarkedUnreadEvent {\n unread: boolean;\n}\n\nexport interface IClearEvent {\n room_id?: string;\n type: string;\n content: Omit<IContent, \"membership\" | \"avatar_url\" | \"displayname\" | \"m.relates_to\">;\n unsigned?: IUnsigned;\n}\n/* eslint-enable camelcase */\n\ninterface IKeyRequestRecipient {\n userId: string;\n deviceId: \"*\" | string;\n}\n\nexport interface IDecryptOptions {\n /** Whether to emit {@link MatrixEventEvent.Decrypted} events on successful decryption. Defaults to true.\n */\n emit?: boolean;\n\n /**\n * True if this is a retry, after receiving an update to the session key. (Enables more logging.)\n *\n * This is only intended for use within the js-sdk.\n *\n * @internal\n */\n isRetry?: boolean;\n\n /**\n * Whether the message should be re-decrypted if it was previously successfully decrypted with an untrusted key.\n * Defaults to `false`.\n */\n forceRedecryptIfUntrusted?: boolean;\n}\n\n/**\n * Message hiding, as specified by https://github.com/matrix-org/matrix-doc/pull/3531.\n */\nexport type MessageVisibility = IMessageVisibilityHidden | IMessageVisibilityVisible;\n/**\n * Variant of `MessageVisibility` for the case in which the message should be displayed.\n */\nexport interface IMessageVisibilityVisible {\n readonly visible: true;\n}\n/**\n * Variant of `MessageVisibility` for the case in which the message should be hidden.\n */\nexport interface IMessageVisibilityHidden {\n readonly visible: false;\n /**\n * Optionally, a human-readable reason to show to the user indicating why the\n * message has been hidden (e.g. \"Message Pending Moderation\").\n */\n readonly reason: string | null;\n}\n// A singleton implementing `IMessageVisibilityVisible`.\nconst MESSAGE_VISIBLE: IMessageVisibilityVisible = Object.freeze({ visible: true });\n\nexport enum MatrixEventEvent {\n /**\n * An event has been decrypted, or we have failed to decrypt it.\n *\n * The payload consists of:\n *\n * * `event` - The {@link MatrixEvent} which we attempted to decrypt.\n *\n * * `err` - The error that occurred during decryption, or `undefined` if no error occurred.\n * Avoid use of this: {@link MatrixEvent.decryptionFailureReason} is more useful.\n */\n Decrypted = \"Event.decrypted\",\n\n BeforeRedaction = \"Event.beforeRedaction\",\n VisibilityChange = \"Event.visibilityChange\",\n LocalEventIdReplaced = \"Event.localEventIdReplaced\",\n Status = \"Event.status\",\n Replaced = \"Event.replaced\",\n RelationsCreated = \"Event.relationsCreated\",\n}\n\nexport type MatrixEventEmittedEvents = MatrixEventEvent | ThreadEvent.Update;\n\nexport type MatrixEventHandlerMap = {\n [MatrixEventEvent.Decrypted]: (event: MatrixEvent, err?: Error) => void;\n [MatrixEventEvent.BeforeRedaction]: (event: MatrixEvent, redactionEvent: MatrixEvent) => void;\n [MatrixEventEvent.VisibilityChange]: (event: MatrixEvent, visible: boolean) => void;\n [MatrixEventEvent.LocalEventIdReplaced]: (event: MatrixEvent) => void;\n [MatrixEventEvent.Status]: (event: MatrixEvent, status: EventStatus | null) => void;\n [MatrixEventEvent.Replaced]: (event: MatrixEvent) => void;\n [MatrixEventEvent.RelationsCreated]: (relationType: string, eventType: string) => void;\n} & Pick<ThreadEventHandlerMap, ThreadEvent.Update>;\n\nexport class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, MatrixEventHandlerMap> {\n // applied push rule and action for this event\n private pushDetails: PushDetails = {};\n private _replacingEvent: MatrixEvent | null = null;\n private _localRedactionEvent: MatrixEvent | null = null;\n private _isCancelled = false;\n private clearEvent?: IClearEvent;\n\n /* Message hiding, as specified by https://github.com/matrix-org/matrix-doc/pull/3531.\n\n Note: We're returning this object, so any value stored here MUST be frozen.\n */\n private visibility: MessageVisibility = MESSAGE_VISIBLE;\n\n // Not all events will be extensible-event compatible, so cache a flag in\n // addition to a falsy cached event value. We check the flag later on in\n // a public getter to decide if the cache is valid.\n private _hasCachedExtEv = false;\n private _cachedExtEv: Optional<ExtensibleEvent> = undefined;\n\n /* curve25519 key which we believe belongs to the sender of the event. See\n * getSenderKey()\n */\n private senderCurve25519Key: string | null = null;\n\n /* ed25519 key which the sender of this event (for olm) or the creator of\n * the megolm session (for megolm) claims to own. See getClaimedEd25519Key()\n */\n private claimedEd25519Key: string | null = null;\n\n /* curve25519 keys of devices involved in telling us about the\n * senderCurve25519Key and claimedEd25519Key.\n * See getForwardingCurve25519KeyChain().\n */\n private forwardingCurve25519KeyChain: string[] = [];\n\n /* where the decryption key is untrusted\n */\n private untrusted: boolean | null = null;\n\n /* The txnId with which this event was sent if it was during this session,\n * allows for a unique ID which does not change when the event comes back down sync.\n */\n private txnId?: string;\n\n /**\n * A reference to the thread this event belongs to\n */\n private thread?: Thread;\n private threadId?: string;\n\n /* Set an approximate timestamp for the event relative the local clock.\n * This will inherently be approximate because it doesn't take into account\n * the time between the server putting the 'age' field on the event as it sent\n * it to us and the time we're now constructing this event, but that's better\n * than assuming the local clock is in sync with the origin HS's clock.\n */\n public localTimestamp: number;\n\n /**\n * The room member who sent this event, or null e.g.\n * this is a presence event. This is only guaranteed to be set for events that\n * appear in a timeline, ie. do not guarantee that it will be set on state\n * events.\n * @privateRemarks\n * Should be read-only\n */\n public sender: RoomMember | null = null;\n /**\n * The room member who is the target of this event, e.g.\n * the invitee, the person being banned, etc.\n * @privateRemarks\n * Should be read-only\n */\n public target: RoomMember | null = null;\n /**\n * The sending status of the event.\n * @privateRemarks\n * Should be read-only\n */\n public status: EventStatus | null = null;\n /**\n * most recent error associated with sending the event, if any\n * @privateRemarks\n * Should be read-only. May not be a MatrixError.\n */\n public error: MatrixError | null = null;\n /**\n * True if this event is 'forward looking', meaning\n * that getDirectionalContent() will return event.content and not event.prev_content.\n * Only state events may be backwards looking\n * Default: true. <strong>This property is experimental and may change.</strong>\n * @privateRemarks\n * Should be read-only\n */\n public forwardLooking = true;\n\n private readonly reEmitter: TypedReEmitter<MatrixEventEmittedEvents, MatrixEventHandlerMap>;\n\n /**\n * Construct a Matrix Event object\n *\n * @param event - The raw (possibly encrypted) event. <b>Do not access\n * this property</b> directly unless you absolutely have to. Prefer the getter\n * methods defined on this class. Using the getter methods shields your app\n * from changes to event JSON between Matrix versions.\n */\n public constructor(public event: Partial<IEvent> = {}) {\n super();\n\n // intern the values of matrix events to force share strings and reduce the\n // amount of needless string duplication. This can save moderate amounts of\n // memory (~10% on a 350MB heap).\n // 'membership' at the event level (rather than the content level) is a legacy\n // field that Element never otherwise looks at, but it will still take up a lot\n // of space if we don't intern it.\n ([\"state_key\", \"type\", \"sender\", \"room_id\", \"membership\"] as const).forEach((prop) => {\n if (typeof event[prop] !== \"string\") return;\n event[prop] = internaliseString(event[prop]!);\n });\n\n ([\"membership\", \"avatar_url\", \"displayname\"] as const).forEach((prop) => {\n if (typeof event.content?.[prop] !== \"string\") return;\n event.content[prop] = internaliseString(event.content[prop]!);\n });\n\n ([\"rel_type\"] as const).forEach((prop) => {\n if (typeof event.content?.[\"m.relates_to\"]?.[prop] !== \"string\") return;\n event.content[\"m.relates_to\"][prop] = internaliseString(event.content[\"m.relates_to\"][prop]!);\n });\n\n this.txnId = event.txn_id;\n // The localTimestamp is calculated using the age.\n // Some events lack an `age` property, either because they are EDUs such as typing events,\n // or due to server-side bugs such as https://github.com/matrix-org/synapse/issues/8429.\n // The fallback in these cases will be to use the origin_server_ts.\n // For EDUs, the origin_server_ts also is not defined so we use Date.now().\n const age = this.getAge();\n this.localTimestamp = age !== undefined ? Date.now() - age : (this.getTs() ?? Date.now());\n this.reEmitter = new TypedReEmitter(this);\n }\n\n /**\n * Unstable getter to try and get an extensible event. Note that this might\n * return a falsy value if the event could not be parsed as an extensible\n * event.\n *\n * @deprecated Use stable functions where possible.\n */\n public get unstableExtensibleEvent(): Optional<ExtensibleEvent> {\n if (!this._hasCachedExtEv) {\n this._cachedExtEv = ExtensibleEvents.parse(this.getEffectiveEvent());\n }\n return this._cachedExtEv;\n }\n\n private invalidateExtensibleEvent(): void {\n // just reset the flag - that'll trick the getter into parsing a new event\n this._hasCachedExtEv = false;\n }\n\n /**\n * Gets the event as it would appear if it had been sent unencrypted.\n *\n * If the event is encrypted, we attempt to mock up an event as it would have looked had the sender not encrypted it.\n * If the event is not encrypted, a copy of it is simply returned as-is.\n *\n * @returns A shallow copy of the event, in wire format, as it would have been had it not been encrypted.\n */\n public getEffectiveEvent(): IEvent {\n const content = Object.assign({}, this.getContent()); // clone for mutation\n\n if (this.getWireType() === EventType.RoomMessageEncrypted) {\n // Encrypted events sometimes aren't symmetrical on the `content` so we'll copy\n // that over too, but only for missing properties. We don't copy over mismatches\n // between the plain and decrypted copies of `content` because we assume that the\n // app is relying on the decrypted version, so we want to expose that as a source\n // of truth here too.\n for (const [key, value] of Object.entries(this.getWireContent())) {\n // Skip fields from the encrypted event schema though - we don't want to leak\n // these.\n if ([\"algorithm\", \"ciphertext\", \"device_id\", \"sender_key\", \"session_id\"].includes(key)) {\n continue;\n }\n\n if (content[key] === undefined) content[key] = value;\n }\n }\n\n // clearEvent doesn't have all the fields, so we'll copy what we can from this.event.\n // We also copy over our \"fixed\" content key.\n return Object.assign({}, this.event, this.clearEvent, { content }) as IEvent;\n }\n\n /**\n * Get the event_id for this event.\n * @returns The event ID, e.g. <code>$143350589368169JsLZx:localhost\n * </code>\n */\n public getId(): string | undefined {\n return this.event.event_id;\n }\n\n /**\n * Get the user_id for this event.\n * @returns The user ID, e.g. `@alice:matrix.org`\n */\n public getSender(): string | undefined {\n return this.event.sender; // v2 / v1\n }\n\n /**\n * Get the (decrypted, if necessary) type of event.\n *\n * @returns The event type, e.g. `m.room.message`\n */\n public getType(): EventType | string {\n if (this.clearEvent) {\n return this.clearEvent.type;\n }\n return this.event.type!;\n }\n\n /**\n * Get the (possibly encrypted) type of the event that will be sent to the\n * homeserver.\n *\n * @returns The event type.\n */\n public getWireType(): EventType | string {\n return this.event.type!;\n }\n\n /**\n * Get the room_id for this event. This will return `undefined`\n * for `m.presence` events.\n * @returns The room ID, e.g. <code>!cURbafjkfsMDVwdRDQ:matrix.org\n * </code>\n */\n public getRoomId(): string | undefined {\n return this.event.room_id;\n }\n\n /**\n * Get the timestamp of this event.\n * @returns The event timestamp, e.g. `1433502692297`\n */\n public getTs(): number {\n return this.event.origin_server_ts!;\n }\n\n /**\n * Get the timestamp of this event, as a Date object.\n * @returns The event date, e.g. `new Date(1433502692297)`\n */\n public getDate(): Date | null {\n return this.event.origin_server_ts ? new Date(this.event.origin_server_ts) : null;\n }\n\n /**\n * Get a string containing details of this event\n *\n * This is intended for logging, to help trace errors. Example output:\n *\n * @example\n * ```\n * id=$HjnOHV646n0SjLDAqFrgIjim7RCpB7cdMXFrekWYAn type=m.room.encrypted\n * sender=@user:example.com room=!room:example.com ts=2022-10-25T17:30:28.404Z\n * ```\n */\n public getDetails(): string {\n const room = this.getRoomId();\n if (room) {\n // in-room event\n return `id=${this.getId()} type=${this.getWireType()} sender=${this.getSender()} room=${room} ts=${this.getDate()?.toISOString()}`;\n } else {\n // to-device event\n const msgid = this.getContent()[ToDeviceMessageId];\n return `msgid=${msgid} type=${this.getWireType()} sender=${this.getSender()}`;\n }\n }\n\n /**\n * Get the (decrypted, if necessary) event content JSON, even if the event\n * was replaced by another event.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getOriginalContent<T = IContent>(): T {\n if (this._localRedactionEvent) {\n return {} as T;\n }\n if (this.clearEvent) {\n return (this.clearEvent.content || {}) as T;\n }\n return (this.event.content || {}) as T;\n }\n\n /**\n * Get the (decrypted, if necessary) event content JSON,\n * or the content from the replacing event, if any.\n * See `makeReplaced`.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getContent<T extends IContent = IContent>(): T {\n if (this._localRedactionEvent) {\n return {} as T;\n } else if (this._replacingEvent) {\n return this._replacingEvent.getContent()[\"m.new_content\"] || {};\n } else {\n return this.getOriginalContent();\n }\n }\n\n /**\n * Get the (possibly encrypted) event content JSON that will be sent to the\n * homeserver.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getWireContent(): IContent {\n return this.event.content || {};\n }\n\n /**\n * Get the event ID of the thread head\n */\n public get threadRootId(): string | undefined {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return undefined;\n }\n const relatesTo = this.getWireContent()?.[\"m.relates_to\"];\n if (relatesTo?.rel_type === THREAD_RELATION_TYPE.name) {\n return relatesTo.event_id;\n }\n if (this.thread) {\n return this.thread.id;\n }\n if (this.threadId !== undefined) {\n return this.threadId;\n }\n const unsigned = this.getUnsigned();\n if (typeof unsigned[UNSIGNED_THREAD_ID_FIELD.name] === \"string\") {\n return unsigned[UNSIGNED_THREAD_ID_FIELD.name];\n }\n return undefined;\n }\n\n /**\n * A helper to check if an event is a thread's head or not\n */\n public get isThreadRoot(): boolean {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return false;\n }\n\n const threadDetails = this.getServerAggregatedRelation<IThreadBundledRelationship>(THREAD_RELATION_TYPE.name);\n\n // Bundled relationships only returned when the sync response is limited\n // hence us having to check both bundled relation and inspect the thread\n // model\n return !!threadDetails || this.threadRootId === this.getId();\n }\n\n public get replyEventId(): string | undefined {\n return this.getWireContent()[\"m.relates_to\"]?.[\"m.in_reply_to\"]?.event_id;\n }\n\n public get relationEventId(): string | undefined {\n return this.getWireContent()?.[\"m.relates_to\"]?.event_id;\n }\n\n /**\n * Get the previous event content JSON. This will only return something for\n * state events which exist in the timeline.\n * @returns The previous event content JSON, or an empty object.\n */\n public getPrevContent(): IContent {\n // v2 then v1 then default\n return this.getUnsigned().prev_content || {};\n }\n\n /**\n * Get either 'content' or 'prev_content' depending on if this event is\n * 'forward-looking' or not. This can be modified via event.forwardLooking.\n * In practice, this means we get the chronologically earlier content value\n * for this event (this method should surely be called getEarlierContent)\n * <strong>This method is experimental and may change.</strong>\n * @returns event.content if this event is forward-looking, else\n * event.prev_content.\n */\n public getDirectionalContent(): IContent {\n return this.forwardLooking ? this.getContent() : this.getPrevContent();\n }\n\n /**\n * Get the age of this event. This represents the age of the event when the\n * event arrived at the device, and not the age of the event when this\n * function was called.\n * Can only be returned once the server has echo'ed back\n * @returns The age of this event in milliseconds.\n */\n public getAge(): number | undefined {\n return this.getUnsigned().age;\n }\n\n /**\n * Get the age of the event when this function was called.\n * This is the 'age' field adjusted according to how long this client has\n * had the event.\n * @returns The age of this event in milliseconds.\n */\n public getLocalAge(): number {\n return Date.now() - this.localTimestamp;\n }\n\n /**\n * Get the event state_key if it has one. This will return <code>undefined\n * </code> for message events.\n * @returns The event's `state_key`.\n */\n public getStateKey(): string | undefined {\n return this.event.state_key;\n }\n\n /**\n * Check if this event is a state event.\n * @returns True if this is a state event.\n */\n public isState(): boolean {\n return this.event.state_key !== undefined;\n }\n\n /**\n * Get the user's room membership at the time the event was sent, as reported\n * by the server. This uses MSC4115.\n *\n * @returns The user's room membership, or `undefined` if the server does\n * not report it.\n */\n public getMembershipAtEvent(): Optional<Membership | string> {\n const unsigned = this.getUnsigned();\n return UNSIGNED_MEMBERSHIP_FIELD.findIn<Membership | string>(unsigned);\n }\n\n public shouldAttemptDecryption(): boolean {\n if (this.isRedacted()) return false;\n if (this.clearEvent) return false;\n if (!this.isEncrypted()) return false;\n\n return true;\n }\n\n /**\n * Calculate the recipients for keyshare requests.\n *\n * @param userId - the user who received this event.\n *\n * @returns array of recipients\n */\n public getKeyRequestRecipients(userId: string): IKeyRequestRecipient[] {\n // send the request to all of our own devices\n const recipients = [\n {\n userId,\n deviceId: \"*\",\n },\n ];\n\n return recipients;\n }\n\n /**\n * Gets the cleartext content for this event. If the event is not encrypted,\n * or encryption has not been completed, this will return null.\n *\n * @returns The cleartext (decrypted) content for the event\n */\n public getClearContent(): IContent | null {\n return this.clearEvent ? this.clearEvent.content : null;\n }\n\n /**\n * Check if the event is encrypted.\n * @returns True if this event is encrypted.\n */\n public isEncrypted(): boolean {\n return !this.isState() && this.event.type === EventType.RoomMessageEncrypted;\n }\n\n /**\n * The curve25519 key for the device that we think sent this event\n *\n * For an Olm-encrypted event, this is inferred directly from the DH\n * exchange at the start of the session: the curve25519 key is involved in\n * the DH exchange, so only a device which holds the private part of that\n * key can establish such a session.\n *\n * For a megolm-encrypted event, it is inferred from the Olm message which\n * established the megolm session\n */\n public getSenderKey(): string | null {\n return this.senderCurve25519Key;\n }\n\n /**\n * The additional keys the sender of this encrypted event claims to possess.\n *\n * Just a wrapper for #getClaimedEd25519Key (q.v.)\n */\n public getKeysClaimed(): Partial<Record<\"ed25519\", string>> {\n if (!this.claimedEd25519Key) return {};\n\n return {\n ed25519: this.claimedEd25519Key,\n };\n }\n\n /**\n * Get the ed25519 the sender of this event claims to own.\n *\n * For Olm messages, this claim is encoded directly in the plaintext of the\n * event itself. For megolm messages, it is implied by the m.room_key event\n * which established the megolm session.\n *\n * Until we download the device list of the sender, it's just a claim: the\n * device list gives a proof that the owner of the curve25519 key used for\n * this event (and returned by #getSenderKey) also owns the ed25519 key by\n * signing the public curve25519 key with the ed25519 key.\n *\n * In general, applications should not use this method directly, but should\n * instead use {@link Crypto.CryptoApi#getEncryptionInfoForEvent}.\n */\n public getClaimedEd25519Key(): string | null {\n return this.claimedEd25519Key;\n }\n\n /**\n * Get the curve25519 keys of the devices which were involved in telling us\n * about the claimedEd25519Key and sender curve25519 key.\n *\n * Normally this will be empty, but in the case of a forwarded megolm\n * session, the sender keys are sent to us by another device (the forwarding\n * device), which we need to trust to do this. In that case, the result will\n * be a list consisting of one entry.\n *\n * If the device that sent us the key (A) got it from another device which\n * it wasn't prepared to vouch for (B), the result will be [A, B]. And so on.\n *\n * @returns base64-encoded curve25519 keys, from oldest to newest.\n */\n public getForwardingCurve25519KeyChain(): string[] {\n return this.forwardingCurve25519KeyChain;\n }\n\n /**\n * Whether the decryption key was obtained from an untrusted source. If so,\n * we cannot verify the authenticity of the message.\n */\n public isKeySourceUntrusted(): boolean | undefined {\n return !!this.untrusted;\n }\n\n public getUnsigned(): IUnsigned {\n return this.event.unsigned || {};\n }\n\n public setUnsigned(unsigned: IUnsigned): void {\n this.event.unsigned = unsigned;\n }\n\n public unmarkLocallyRedacted(): boolean {\n const value = this._localRedactionEvent;\n this._localRedactionEvent = null;\n if (this.event.unsigned) {\n this.event.unsigned.redacted_because = undefined;\n }\n return !!value;\n }\n\n public markLocallyRedacted(redactionEvent: MatrixEvent): void {\n if (this._localRedactionEvent) return;\n this.emit(MatrixEventEvent.BeforeRedaction, this, redactionEvent);\n this._localRedactionEvent = redactionEvent;\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = redactionEvent.event as IEvent;\n }\n\n /**\n * Change the visibility of an event, as per https://github.com/matrix-org/matrix-doc/pull/3531 .\n *\n * @param visibilityChange - event holding a hide/unhide payload, or nothing\n * if the event is being reset to its original visibility (presumably\n * by a visibility event being redacted).\n *\n * @remarks\n * Fires {@link MatrixEventEvent.VisibilityChange} if `visibilityEvent`\n * caused a change in the actual visibility of this event, either by making it\n * visible (if it was hidden), by making it hidden (if it was visible) or by\n * changing the reason (if it was hidden).\n */\n public applyVisibilityEvent(visibilityChange?: IVisibilityChange): void {\n const visible = visibilityChange?.visible ?? true;\n const reason = visibilityChange?.reason ?? null;\n let change = false;\n if (this.visibility.visible !== visible) {\n change = true;\n } else if (!this.visibility.visible && this.visibility[\"reason\"] !== reason) {\n change = true;\n }\n if (change) {\n if (visible) {\n this.visibility = MESSAGE_VISIBLE;\n } else {\n this.visibility = Object.freeze({\n visible: false,\n reason,\n });\n }\n this.emit(MatrixEventEvent.VisibilityChange, this, visible);\n }\n }\n\n /**\n * Return instructions to display or hide the message.\n *\n * @returns Instructions determining whether the message\n * should be displayed.\n */\n public messageVisibility(): MessageVisibility {\n // Note: We may return `this.visibility` without fear, as\n // this is a shallow frozen object.\n return this.visibility;\n }\n\n /**\n * Update the content of an event in the same way it would be by the server\n * if it were redacted before it was sent to us\n *\n * @param redactionEvent - event causing the redaction\n * @param room - the room in which the event exists\n */\n public makeRedacted(redactionEvent: MatrixEvent, room: Room): void {\n // quick sanity-check\n if (!redactionEvent.event) {\n throw new Error(\"invalid redactionEvent in makeRedacted\");\n }\n\n this._localRedactionEvent = null;\n\n this.emit(MatrixEventEvent.BeforeRedaction, this, redactionEvent);\n\n this._replacingEvent = null;\n // we attempt to replicate what we would see from the server if\n // the event had been redacted before we saw it.\n //\n // The server removes (most of) the content of the event, and adds a\n // \"redacted_because\" key to the unsigned section containing the\n // redacted event.\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = redactionEvent.event as IEvent;\n\n for (const key in this.event) {\n if (this.event.hasOwnProperty(key) && !REDACT_KEEP_KEYS.has(key)) {\n delete this.event[key as keyof IEvent];\n }\n }\n\n // If the event is encrypted prune the decrypted bits\n if (this.isEncrypted()) {\n this.clearEvent = undefined;\n }\n\n const keeps =\n this.getType() in REDACT_KEEP_CONTENT_MAP\n ? REDACT_KEEP_CONTENT_MAP[this.getType() as keyof typeof REDACT_KEEP_CONTENT_MAP]\n : {};\n const content = this.getContent();\n for (const key in content) {\n if (content.hasOwnProperty(key) && !keeps[key]) {\n delete content[key];\n }\n }\n\n // If the redacted event was in a thread (but not thread root), move it\n // to the main timeline. This will change if MSC3389 is merged.\n if (!this.isThreadRoot && this.threadRootId && this.threadRootId !== this.getId()) {\n this.moveAllRelatedToMainTimeline(room);\n redactionEvent.moveToMainTimeline(room);\n }\n\n this.invalidateExtensibleEvent();\n }\n\n private moveAllRelatedToMainTimeline(room: Room): void {\n const thread = this.thread;\n this.moveToMainTimeline(room);\n\n // If we dont have access to the thread, we can only move this\n // event, not things related to it.\n if (thread) {\n for (const event of thread.events) {\n if (event.getRelation()?.event_id === this.getId()) {\n event.moveAllRelatedToMainTimeline(room);\n }\n }\n }\n }\n\n private moveToMainTimeline(room: Room): void {\n // Remove it from its thread\n this.thread?.timelineSet.removeEvent(this.getId()!);\n this.setThread(undefined);\n\n // And insert it into the main timeline\n const timeline = room.getLiveTimeline();\n // We use insertEventIntoTimeline to insert it in timestamp order,\n // because we don't know where it should go (until we have MSC4033).\n timeline\n .getTimelineSet()\n .insertEventIntoTimeline(this, timeline, timeline.getState(EventTimeline.FORWARDS)!, false);\n }\n\n /**\n * Check if this event has been redacted\n *\n * @returns True if this event has been redacted\n */\n public isRedacted(): boolean {\n return Boolean(this.getUnsigned().redacted_because);\n }\n\n /**\n * Check if this event is a redaction of another event\n *\n * @returns True if this event is a redaction\n */\n public isRedaction(): boolean {\n return this.getType() === EventType.RoomRedaction;\n }\n\n /**\n * Return the visibility change caused by this event,\n * as per https://github.com/matrix-org/matrix-doc/pull/3531.\n *\n * @returns If the event is a well-formed visibility change event,\n * an instance of `IVisibilityChange`, otherwise `null`.\n */\n public asVisibilityChange(): IVisibilityChange | null {\n if (!EVENT_VISIBILITY_CHANGE_TYPE.matches(this.getType())) {\n // Not a visibility change event.\n return null;\n }\n const relation = this.getRelation();\n if (!relation || relation.rel_type != \"m.reference\") {\n // Ill-formed, ignore this event.\n return null;\n }\n const eventId = relation.event_id;\n if (!eventId) {\n // Ill-formed, ignore this event.\n return null;\n }\n const content = this.getWireContent();\n const visible = !!content.visible;\n const reason = content.reason;\n if (reason && typeof reason != \"string\") {\n // Ill-formed, ignore this event.\n return null;\n }\n // Well-formed visibility change event.\n return {\n visible,\n reason,\n eventId,\n };\n }\n\n /**\n * Check if this event alters the visibility of another event,\n * as per https://github.com/matrix-org/matrix-doc/pull/3531.\n *\n * @returns True if this event alters the visibility\n * of another event.\n */\n public isVisibilityEvent(): boolean {\n return EVENT_VISIBILITY_CHANGE_TYPE.matches(this.getType());\n }\n\n /**\n * Get the (decrypted, if necessary) redaction event JSON\n * if event was redacted\n *\n * @returns The redaction event JSON, or an empty object\n */\n public getRedactionEvent(): IEvent | {} | null {\n if (!this.isRedacted()) return null;\n\n if (this.clearEvent?.unsigned) {\n return this.clearEvent?.unsigned.redacted_because ?? null;\n } else if (this.event.unsigned?.redacted_because) {\n return this.event.unsigned.redacted_because;\n } else {\n return {};\n }\n }\n\n /**\n * Get the push actions, if known, for this event\n *\n * @returns push actions\n */\n public getPushActions(): IActionsObject | null {\n return this.pushDetails.actions || null;\n }\n\n /**\n * Get the push details, if known, for this event\n *\n * @returns push actions\n */\n public getPushDetails(): PushDetails {\n return this.pushDetails;\n }\n\n /**\n * Set the push details for this event.\n *\n * @param pushActions - push actions\n * @param rule - the executed push rule\n */\n public setPushDetails(pushActions?: IActionsObject, rule?: IAnnotatedPushRule): void {\n this.pushDetails = {\n actions: pushActions,\n rule,\n };\n }\n\n /**\n * Replace the `event` property and recalculate any properties based on it.\n * @param event - the object to assign to the `event` property\n */\n public handleRemoteEcho(event: object): void {\n const oldUnsigned = this.getUnsigned();\n const oldId = this.getId();\n this.event = event;\n // if this event was redacted before it was sent, it's locally marked as redacted.\n // At this point, we've received the remote echo for the event, but not yet for\n // the redaction that we are sending ourselves. Preserve the locally redacted\n // state by copying over redacted_because so we don't get a flash of\n // redacted, not-redacted, redacted as remote echos come in\n if (oldUnsigned.redacted_because) {\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = oldUnsigned.redacted_because;\n }\n // successfully sent.\n this.setStatus(null);\n if (this.getId() !== oldId) {\n // emit the event if it changed\n this.emit(MatrixEventEvent.LocalEventIdReplaced, this);\n }\n\n this.localTimestamp = Date.now() - this.getAge()!;\n }\n\n /**\n * Whether the event is in any phase of sending, send failure, waiting for\n * remote echo, etc.\n */\n public isSending(): boolean {\n return !!this.status;\n }\n\n /**\n * Update the event's sending status and emit an event as well.\n *\n * @param status - The new status\n */\n public setStatus(status: EventStatus | null): void {\n this.status = status;\n this.emit(MatrixEventEvent.Status, this, status);\n }\n\n public replaceLocalEventId(eventId: string): void {\n this.event.event_id = eventId;\n this.emit(MatrixEventEvent.LocalEventIdReplaced, this);\n }\n\n /**\n * Get whether the event is a relation event, and of a given type if\n * `relType` is passed in. State events cannot be relation events\n *\n * @param relType - if given, checks that the relation is of the\n * given type\n */\n public isRelation(relType?: string): boolean {\n // Relation info is lifted out of the encrypted content when sent to\n // encrypted rooms, so we have to check `getWireContent` for this.\n const relation = this.getWireContent()?.[\"m.relates_to\"];\n if (\n this.isState() &&\n !!relation?.rel_type &&\n ([RelationType.Replace, RelationType.Thread] as string[]).includes(relation.rel_type)\n ) {\n // State events cannot be m.replace or m.thread relations\n return false;\n }\n return !!(relation?.rel_type && relation.event_id && (relType ? relation.rel_type === relType : true));\n }\n\n /**\n * Get relation info for the event, if any.\n */\n public getRelation(): IEventRelation | null {\n if (!this.isRelation()) {\n return null;\n }\n return this.getWireContent()[\"m.relates_to\"] ?? null;\n }\n\n /**\n * Set an event that replaces the content of this event, through an m.replace relation.\n *\n * @param newEvent - the event with the replacing content, if any.\n *\n * @remarks\n * Fires {@link MatrixEventEvent.Replaced}\n */\n public makeReplaced(newEvent?: MatrixEvent): void {\n // don't allow redacted events to be replaced.\n // if newEvent is null we allow to go through though,\n // as with local redaction, the replacing event might get\n // cancelled, which should be reflected on the target event.\n if (this.isRedacted() && newEvent) {\n return;\n }\n // don't allow state events to be replaced using this mechanism as per MSC2676\n if (this.isState()) {\n return;\n }\n if (this._replacingEvent !== newEvent) {\n this._replacingEvent = newEvent ?? null;\n this.emit(MatrixEventEvent.Replaced, this);\n this.invalidateExtensibleEvent();\n }\n }\n\n /**\n * Returns the status of any associated edit or redaction\n * (not for reactions/annotations as their local echo doesn't affect the original event),\n * or else the status of the event.\n */\n public getAssociatedStatus(): EventStatus | null {\n if (this._replacingEvent) {\n return this._replacingEvent.status;\n } else if (this._localRedactionEvent) {\n return this._localRedactionEvent.status;\n }\n return this.status;\n }\n\n public getServerAggregatedRelation<T>(relType: RelationType | string): T | undefined {\n return this.getUnsigned()[\"m.relations\"]?.[relType];\n }\n\n /**\n * Returns the event ID of the event replacing the content of this event, if any.\n */\n public replacingEventId(): string | undefined {\n const replaceRelation = this.getServerAggregatedRelation<IAggregatedRelation>(RelationType.Replace);\n if (replaceRelation) {\n return replaceRelation.event_id;\n } else if (this._replacingEvent) {\n return this._replacingEvent.getId();\n }\n }\n\n /**\n * Returns the event replacing the content of this event, if any.\n * Replacements are aggregated on the server, so this would only\n * return an event in case it came down the sync, or for local echo of edits.\n */\n public replacingEvent(): MatrixEvent | null {\n return this._replacingEvent;\n }\n\n /**\n * Returns the origin_server_ts of the event replacing the content of this event, if any.\n */\n public replacingEventDate(): Date | undefined {\n const replaceRelation = this.getServerAggregatedRelation<IAggregatedRelation>(RelationType.Replace);\n if (replaceRelation) {\n const ts = replaceRelation.origin_server_ts;\n if (Number.isFinite(ts)) {\n return new Date(ts);\n }\n } else if (this._replacingEvent) {\n return this._replacingEvent.getDate() ?? undefined;\n }\n }\n\n /**\n * Returns the event that wants to redact this event, but hasn't been sent yet.\n * @returns the event\n */\n public localRedactionEvent(): MatrixEvent | null {\n return this._localRedactionEvent;\n }\n\n /**\n * For relations and redactions, returns the event_id this event is referring to.\n */\n public getAssociatedId(): string | undefined {\n const relation = this.getRelation();\n if (this.replyEventId) {\n return this.replyEventId;\n } else if (relation) {\n return relation.event_id;\n } else if (this.isRedaction()) {\n return this.event.redacts;\n }\n }\n\n /**\n * Checks if this event is associated with another event. See `getAssociatedId`.\n */\n public hasAssociation(): boolean {\n return !!this.getAssociatedId();\n }\n\n /**\n * Update the related id with a new one.\n *\n * Used to replace a local id with remote one before sending\n * an event with a related id.\n *\n * @param eventId - the new event id\n */\n public updateAssociatedId(eventId: string): void {\n const relation = this.getRelation();\n if (relation) {\n relation.event_id = eventId;\n } else if (this.isRedaction()) {\n this.event.redacts = eventId;\n }\n }\n\n /**\n * Flags an event as cancelled due to future conditions. For example, a verification\n * request event in the same sync transaction may be flagged as cancelled to warn\n * listeners that a cancellation event is coming down the same pipe shortly.\n * @param cancelled - Whether the event is to be cancelled or not.\n */\n public flagCancelled(cancelled = true): void {\n this._isCancelled = cancelled;\n }\n\n /**\n * Gets whether or not the event is flagged as cancelled. See flagCancelled() for\n * more information.\n * @returns True if the event is cancelled, false otherwise.\n */\n public isCancelled(): boolean {\n return this._isCancelled;\n }\n\n /**\n * Get a copy/snapshot of this event. The returned copy will be loosely linked\n * back to this instance, though will have \"frozen\" event information. Other\n * properties of this MatrixEvent instance will be copied verbatim, which can\n * mean they are in reference to this instance despite being on the copy too.\n * The reference the snapshot uses does not change, however members aside from\n * the underlying event will not be deeply cloned, thus may be mutated internally.\n * For example, the sender profile will be copied over at snapshot time, and\n * the sender profile internally may mutate without notice to the consumer.\n *\n * This is meant to be used to snapshot the event details themselves, not the\n * features (such as sender) surrounding the event.\n * @returns A snapshot of this event.\n */\n public toSnapshot(): MatrixEvent {\n const ev = new MatrixEvent(JSON.parse(JSON.stringify(this.event)));\n for (const [p, v] of Object.entries(this)) {\n if (p !== \"event\") {\n // exclude the thing we just cloned\n // @ts-ignore - XXX: this is just nasty\n ev[p as keyof MatrixEvent] = v;\n }\n }\n return ev;\n }\n\n /**\n * Determines if this event is equivalent to the given event. This only checks\n * the event object itself, not the other properties of the event. Intended for\n * use with toSnapshot() to identify events changing.\n * @param otherEvent - The other event to check against.\n * @returns True if the events are the same, false otherwise.\n */\n public isEquivalentTo(otherEvent: MatrixEvent): boolean {\n if (!otherEvent) return false;\n if (otherEvent === this) return true;\n const myProps = deepSortedObjectEntries(this.event);\n const theirProps = deepSortedObjectEntries(otherEvent.event);\n return JSON.stringify(myProps) === JSON.stringify(theirProps);\n }\n\n /**\n * Summarise the event as JSON.\n *\n * If encrypted, include both the decrypted and encrypted view of the event.\n *\n * This is named `toJSON` for use with `JSON.stringify` which checks objects\n * for functions named `toJSON` and will call them to customise the output\n * if they are defined.\n *\n * **WARNING** Do not log the result of this method; otherwise, it will end up\n * in rageshakes, leading to a privacy violation.\n *\n * @deprecated Prefer to use {@link MatrixEvent#getEffectiveEvent} or similar.\n * This method will be removed soon; it is too easy to use it accidentally\n * and cause a privacy violation (cf https://github.com/vector-im/element-web/issues/26380).\n * In any case, the value it returns is not a faithful serialization of the object.\n */\n public toJSON(): object {\n const event = this.getEffectiveEvent();\n\n if (!this.isEncrypted()) {\n return event;\n }\n\n return {\n decrypted: event,\n encrypted: this.event,\n };\n }\n\n public setTxnId(txnId: string): void {\n this.txnId = txnId;\n }\n\n public getTxnId(): string | undefined {\n return this.txnId;\n }\n\n /**\n * Set the instance of a thread associated with the current event\n * @param thread - the thread\n */\n public setThread(thread?: Thread): void {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return;\n }\n if (this.thread) {\n this.reEmitter.stopReEmitting(this.thread, [ThreadEvent.Update]);\n }\n this.thread = thread;\n this.setThreadId(thread?.id);\n if (thread) {\n this.reEmitter.reEmit(thread, [ThreadEvent.Update]);\n }\n }\n\n /**\n * Get the instance of the thread associated with the current event\n */\n public getThread(): Thread | undefined {\n return this.thread;\n }\n\n public setThreadId(threadId?: string): void {\n this.threadId = threadId;\n }\n}\n\n/* REDACT_KEEP_KEYS gives the keys we keep when an event is redacted\n *\n * This is specified here:\n * http://matrix.org/speculator/spec/HEAD/client_server/latest.html#redactions\n *\n * Also:\n * - We keep 'unsigned' since that is created by the local server\n * - We keep user_id for backwards-compat with v1\n */\nconst REDACT_KEEP_KEYS = new Set([\n \"event_id\",\n \"type\",\n \"room_id\",\n \"user_id\",\n \"sender\",\n \"state_key\",\n \"prev_state\",\n \"content\",\n \"unsigned\",\n \"origin_server_ts\",\n]);\n\n// a map from state event type to the .content keys we keep when an event is redacted\nconst REDACT_KEEP_CONTENT_MAP: Record<string, Record<string, 1>> = {\n [EventType.RoomMember]: { membership: 1 },\n [EventType.RoomJoinRules]: { join_rule: 1 },\n [EventType.RoomPowerLevels]: {\n ban: 1,\n events: 1,\n events_default: 1,\n kick: 1,\n redact: 1,\n state_default: 1,\n users: 1,\n users_default: 1,\n },\n} as const;\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"event.js","names":["ExtensibleEvents","EVENT_VISIBILITY_CHANGE_TYPE","EventType","RelationType","ToDeviceMessageId","UNSIGNED_THREAD_ID_FIELD","UNSIGNED_MEMBERSHIP_FIELD","deepSortedObjectEntries","internaliseString","THREAD_RELATION_TYPE","ThreadEvent","TypedReEmitter","TypedEventEmitter","EventTimeline","EventStatus","MESSAGE_VISIBLE","Object","freeze","visible","MatrixEventEvent","MatrixEvent","constructor","_this$getTs","event","arguments","length","undefined","_defineProperty","forEach","prop","_event$content","content","_event$content2","txnId","txn_id","age","getAge","localTimestamp","Date","now","getTs","reEmitter","unstableExtensibleEvent","_hasCachedExtEv","_cachedExtEv","parse","getEffectiveEvent","invalidateExtensibleEvent","assign","getContent","getWireType","RoomMessageEncrypted","key","value","entries","getWireContent","includes","clearEvent","getId","event_id","getSender","sender","getType","type","getRoomId","room_id","origin_server_ts","getDate","getDetails","room","_this$getDate","concat","toISOString","msgid","getOriginalContent","_this$event$content","_localRedactionEvent","_this$clearEvent$cont","_replacingEvent","_this$_replacingEvent","threadRootId","_this$getWireContent","isState","relatesTo","rel_type","name","thread","id","threadId","unsigned","getUnsigned","isThreadRoot","threadDetails","getServerAggregatedRelation","replyEventId","_this$getWireContent$","relationEventId","_this$getWireContent2","getPrevContent","prev_content","getDirectionalContent","forwardLooking","getLocalAge","getStateKey","state_key","getMembershipAtEvent","findIn","shouldAttemptDecryption","isRedacted","isEncrypted","getKeyRequestRecipients","userId","recipients","deviceId","getClearContent","getSenderKey","senderCurve25519Key","getKeysClaimed","claimedEd25519Key","ed25519","getClaimedEd25519Key","getForwardingCurve25519KeyChain","forwardingCurve25519KeyChain","isKeySourceUntrusted","untrusted","setUnsigned","unmarkLocallyRedacted","redacted_because","markLocallyRedacted","redactionEvent","emit","BeforeRedaction","applyVisibilityEvent","visibilityChange","_visibilityChange$vis","_visibilityChange$rea","reason","change","visibility","VisibilityChange","messageVisibility","makeRedacted","Error","hasOwnProperty","REDACT_KEEP_KEYS","has","keeps","REDACT_KEEP_CONTENT_MAP","moveAllRelatedToMainTimeline","moveToMainTimeline","events","_event$getRelation","getRelation","_this$thread","timelineSet","removeEvent","setThread","timeline","getLiveTimeline","getTimelineSet","insertEventIntoTimeline","getState","FORWARDS","Boolean","isRedaction","RoomRedaction","asVisibilityChange","matches","relation","eventId","isVisibilityEvent","getRedactionEvent","_this$clearEvent","_this$event$unsigned","_this$clearEvent$unsi","_this$clearEvent2","getPushActions","pushDetails","actions","getPushDetails","setPushDetails","pushActions","rule","handleRemoteEcho","_this$getAge","oldUnsigned","oldId","setStatus","LocalEventIdReplaced","isSending","status","Status","replaceLocalEventId","isRelation","relType","_this$getWireContent3","Replace","Thread","_this$getWireContent$2","makeReplaced","newEvent","Replaced","getAssociatedStatus","_this$getUnsigned$mR","replacingEventId","replaceRelation","replacingEvent","replacingEventDate","ts","Number","isFinite","_this$_replacingEvent2","localRedactionEvent","getAssociatedId","redacts","hasAssociation","updateAssociatedId","flagCancelled","cancelled","_isCancelled","isCancelled","toSnapshot","ev","JSON","stringify","p","v","isEquivalentTo","otherEvent","myProps","theirProps","toJSON","decrypted","encrypted","setTxnId","getTxnId","stopReEmitting","Update","setThreadId","reEmit","getThread","Set","RoomMember","membership","RoomJoinRules","join_rule","RoomPowerLevels","ban","events_default","kick","redact","state_default","users","users_default"],"sources":["../../src/models/event.ts"],"sourcesContent":["/*\nCopyright 2015 - 2023 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\n/**\n * This is an internal module. See {@link MatrixEvent} and {@link RoomEvent} for\n * the public classes.\n */\n\nimport { ExtensibleEvent, ExtensibleEvents, Optional } from \"matrix-events-sdk\";\n\nimport {\n EVENT_VISIBILITY_CHANGE_TYPE,\n EventType,\n MsgType,\n RelationType,\n ToDeviceMessageId,\n UNSIGNED_THREAD_ID_FIELD,\n UNSIGNED_MEMBERSHIP_FIELD,\n} from \"../@types/event.ts\";\nimport { deepSortedObjectEntries, internaliseString } from \"../utils.ts\";\nimport { RoomMember } from \"./room-member.ts\";\nimport { Thread, THREAD_RELATION_TYPE, ThreadEvent, ThreadEventHandlerMap } from \"./thread.ts\";\nimport { IActionsObject } from \"../pushprocessor.ts\";\nimport { TypedReEmitter } from \"../ReEmitter.ts\";\nimport { MatrixError } from \"../http-api/index.ts\";\nimport { TypedEventEmitter } from \"./typed-event-emitter.ts\";\nimport { EventStatus } from \"./event-status.ts\";\nimport { IAnnotatedPushRule } from \"../@types/PushRules.ts\";\nimport { Room } from \"./room.ts\";\nimport { EventTimeline } from \"./event-timeline.ts\";\nimport { Membership } from \"../@types/membership.ts\";\n\nexport { EventStatus } from \"./event-status.ts\";\n\n/* eslint-disable camelcase */\nexport interface IContent {\n [key: string]: any;\n \"msgtype\"?: MsgType | string;\n \"membership\"?: Membership;\n \"avatar_url\"?: string;\n \"displayname\"?: string;\n \"m.relates_to\"?: IEventRelation;\n\n \"m.mentions\"?: IMentions;\n}\n\ntype StrippedState = Required<Pick<IEvent, \"content\" | \"state_key\" | \"type\" | \"sender\">>;\n\nexport interface IUnsigned {\n [key: string]: any;\n \"age\"?: number;\n \"prev_sender\"?: string;\n \"prev_content\"?: IContent;\n \"redacted_because\"?: IEvent;\n \"replaces_state\"?: string;\n \"transaction_id\"?: string;\n \"invite_room_state\"?: StrippedState[];\n \"m.relations\"?: Record<RelationType | string, any>; // No common pattern for aggregated relations\n [UNSIGNED_THREAD_ID_FIELD.name]?: string;\n}\n\nexport interface IThreadBundledRelationship {\n latest_event: IEvent;\n count: number;\n current_user_participated?: boolean;\n}\n\nexport interface IEvent {\n event_id: string;\n type: string;\n content: IContent;\n sender: string;\n room_id?: string;\n origin_server_ts: number;\n txn_id?: string;\n state_key?: string;\n membership?: Membership;\n unsigned: IUnsigned;\n redacts?: string;\n}\n\nexport interface IAggregatedRelation {\n origin_server_ts: number;\n event_id?: string;\n sender?: string;\n type?: string;\n count?: number;\n key?: string;\n}\n\nexport interface IEventRelation {\n \"rel_type\"?: RelationType | string;\n \"event_id\"?: string;\n \"is_falling_back\"?: boolean;\n \"m.in_reply_to\"?: {\n event_id?: string;\n };\n \"key\"?: string;\n}\n\nexport interface IMentions {\n user_ids?: string[];\n room?: boolean;\n}\n\nexport interface PushDetails {\n rule?: IAnnotatedPushRule;\n actions?: IActionsObject;\n}\n\n/**\n * When an event is a visibility change event, as per MSC3531,\n * the visibility change implied by the event.\n */\nexport interface IVisibilityChange {\n /**\n * If `true`, the target event should be made visible.\n * Otherwise, it should be hidden.\n */\n visible: boolean;\n\n /**\n * The event id affected.\n */\n eventId: string;\n\n /**\n * Optionally, a human-readable reason explaining why\n * the event was hidden. Ignored if the event was made\n * visible.\n */\n reason: string | null;\n}\n\nexport interface IMarkedUnreadEvent {\n unread: boolean;\n}\n\nexport interface IClearEvent {\n room_id?: string;\n type: string;\n content: Omit<IContent, \"membership\" | \"avatar_url\" | \"displayname\" | \"m.relates_to\">;\n unsigned?: IUnsigned;\n}\n/* eslint-enable camelcase */\n\ninterface IKeyRequestRecipient {\n userId: string;\n deviceId: \"*\" | string;\n}\n\nexport interface IDecryptOptions {\n /** Whether to emit {@link MatrixEventEvent.Decrypted} events on successful decryption. Defaults to true.\n */\n emit?: boolean;\n\n /**\n * True if this is a retry, after receiving an update to the session key. (Enables more logging.)\n *\n * This is only intended for use within the js-sdk.\n *\n * @internal\n */\n isRetry?: boolean;\n\n /**\n * Whether the message should be re-decrypted if it was previously successfully decrypted with an untrusted key.\n * Defaults to `false`.\n */\n forceRedecryptIfUntrusted?: boolean;\n}\n\n/**\n * Message hiding, as specified by https://github.com/matrix-org/matrix-doc/pull/3531.\n */\nexport type MessageVisibility = IMessageVisibilityHidden | IMessageVisibilityVisible;\n/**\n * Variant of `MessageVisibility` for the case in which the message should be displayed.\n */\nexport interface IMessageVisibilityVisible {\n readonly visible: true;\n}\n/**\n * Variant of `MessageVisibility` for the case in which the message should be hidden.\n */\nexport interface IMessageVisibilityHidden {\n readonly visible: false;\n /**\n * Optionally, a human-readable reason to show to the user indicating why the\n * message has been hidden (e.g. \"Message Pending Moderation\").\n */\n readonly reason: string | null;\n}\n// A singleton implementing `IMessageVisibilityVisible`.\nconst MESSAGE_VISIBLE: IMessageVisibilityVisible = Object.freeze({ visible: true });\n\nexport enum MatrixEventEvent {\n /**\n * An event has been decrypted, or we have failed to decrypt it.\n *\n * The payload consists of:\n *\n * * `event` - The {@link MatrixEvent} which we attempted to decrypt.\n *\n * * `err` - The error that occurred during decryption, or `undefined` if no error occurred.\n * Avoid use of this: {@link MatrixEvent.decryptionFailureReason} is more useful.\n */\n Decrypted = \"Event.decrypted\",\n\n BeforeRedaction = \"Event.beforeRedaction\",\n VisibilityChange = \"Event.visibilityChange\",\n LocalEventIdReplaced = \"Event.localEventIdReplaced\",\n Status = \"Event.status\",\n Replaced = \"Event.replaced\",\n RelationsCreated = \"Event.relationsCreated\",\n}\n\nexport type MatrixEventEmittedEvents = MatrixEventEvent | ThreadEvent.Update;\n\nexport type MatrixEventHandlerMap = {\n [MatrixEventEvent.Decrypted]: (event: MatrixEvent, err?: Error) => void;\n [MatrixEventEvent.BeforeRedaction]: (event: MatrixEvent, redactionEvent: MatrixEvent) => void;\n [MatrixEventEvent.VisibilityChange]: (event: MatrixEvent, visible: boolean) => void;\n [MatrixEventEvent.LocalEventIdReplaced]: (event: MatrixEvent) => void;\n [MatrixEventEvent.Status]: (event: MatrixEvent, status: EventStatus | null) => void;\n [MatrixEventEvent.Replaced]: (event: MatrixEvent) => void;\n [MatrixEventEvent.RelationsCreated]: (relationType: string, eventType: string) => void;\n} & Pick<ThreadEventHandlerMap, ThreadEvent.Update>;\n\nexport class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, MatrixEventHandlerMap> {\n // applied push rule and action for this event\n private pushDetails: PushDetails = {};\n private _replacingEvent: MatrixEvent | null = null;\n private _localRedactionEvent: MatrixEvent | null = null;\n private _isCancelled = false;\n private clearEvent?: IClearEvent;\n\n /* Message hiding, as specified by https://github.com/matrix-org/matrix-doc/pull/3531.\n\n Note: We're returning this object, so any value stored here MUST be frozen.\n */\n private visibility: MessageVisibility = MESSAGE_VISIBLE;\n\n // Not all events will be extensible-event compatible, so cache a flag in\n // addition to a falsy cached event value. We check the flag later on in\n // a public getter to decide if the cache is valid.\n private _hasCachedExtEv = false;\n private _cachedExtEv: Optional<ExtensibleEvent> = undefined;\n\n /* curve25519 key which we believe belongs to the sender of the event. See\n * getSenderKey()\n */\n private senderCurve25519Key: string | null = null;\n\n /* ed25519 key which the sender of this event (for olm) or the creator of\n * the megolm session (for megolm) claims to own. See getClaimedEd25519Key()\n */\n private claimedEd25519Key: string | null = null;\n\n /* curve25519 keys of devices involved in telling us about the\n * senderCurve25519Key and claimedEd25519Key.\n * See getForwardingCurve25519KeyChain().\n */\n private forwardingCurve25519KeyChain: string[] = [];\n\n /* where the decryption key is untrusted\n */\n private untrusted: boolean | null = null;\n\n /* The txnId with which this event was sent if it was during this session,\n * allows for a unique ID which does not change when the event comes back down sync.\n */\n private txnId?: string;\n\n /**\n * A reference to the thread this event belongs to\n */\n private thread?: Thread;\n private threadId?: string;\n\n /* Set an approximate timestamp for the event relative the local clock.\n * This will inherently be approximate because it doesn't take into account\n * the time between the server putting the 'age' field on the event as it sent\n * it to us and the time we're now constructing this event, but that's better\n * than assuming the local clock is in sync with the origin HS's clock.\n */\n public localTimestamp: number;\n\n /**\n * The room member who sent this event, or null e.g.\n * this is a presence event. This is only guaranteed to be set for events that\n * appear in a timeline, ie. do not guarantee that it will be set on state\n * events.\n * @privateRemarks\n * Should be read-only\n */\n public sender: RoomMember | null = null;\n /**\n * The room member who is the target of this event, e.g.\n * the invitee, the person being banned, etc.\n * @privateRemarks\n * Should be read-only\n */\n public target: RoomMember | null = null;\n /**\n * The sending status of the event.\n * @privateRemarks\n * Should be read-only\n */\n public status: EventStatus | null = null;\n /**\n * most recent error associated with sending the event, if any\n * @privateRemarks\n * Should be read-only. May not be a MatrixError.\n */\n public error: MatrixError | null = null;\n /**\n * True if this event is 'forward looking', meaning\n * that getDirectionalContent() will return event.content and not event.prev_content.\n * Only state events may be backwards looking\n * Default: true. <strong>This property is experimental and may change.</strong>\n * @privateRemarks\n * Should be read-only\n */\n public forwardLooking = true;\n\n private readonly reEmitter: TypedReEmitter<MatrixEventEmittedEvents, MatrixEventHandlerMap>;\n\n /**\n * Construct a Matrix Event object\n *\n * @param event - The raw (possibly encrypted) event. <b>Do not access\n * this property</b> directly unless you absolutely have to. Prefer the getter\n * methods defined on this class. Using the getter methods shields your app\n * from changes to event JSON between Matrix versions.\n */\n public constructor(public event: Partial<IEvent> = {}) {\n super();\n\n // intern the values of matrix events to force share strings and reduce the\n // amount of needless string duplication. This can save moderate amounts of\n // memory (~10% on a 350MB heap).\n // 'membership' at the event level (rather than the content level) is a legacy\n // field that Element never otherwise looks at, but it will still take up a lot\n // of space if we don't intern it.\n ([\"state_key\", \"type\", \"sender\", \"room_id\", \"membership\"] as const).forEach((prop) => {\n if (typeof event[prop] !== \"string\") return;\n event[prop] = internaliseString(event[prop]!);\n });\n\n ([\"membership\", \"avatar_url\", \"displayname\"] as const).forEach((prop) => {\n if (typeof event.content?.[prop] !== \"string\") return;\n event.content[prop] = internaliseString(event.content[prop]!);\n });\n\n ([\"rel_type\"] as const).forEach((prop) => {\n if (typeof event.content?.[\"m.relates_to\"]?.[prop] !== \"string\") return;\n event.content[\"m.relates_to\"][prop] = internaliseString(event.content[\"m.relates_to\"][prop]!);\n });\n\n this.txnId = event.txn_id;\n // The localTimestamp is calculated using the age.\n // Some events lack an `age` property, either because they are EDUs such as typing events,\n // or due to server-side bugs such as https://github.com/matrix-org/synapse/issues/8429.\n // The fallback in these cases will be to use the origin_server_ts.\n // For EDUs, the origin_server_ts also is not defined so we use Date.now().\n const age = this.getAge();\n this.localTimestamp = age !== undefined ? Date.now() - age : (this.getTs() ?? Date.now());\n this.reEmitter = new TypedReEmitter(this);\n }\n\n /**\n * Unstable getter to try and get an extensible event. Note that this might\n * return a falsy value if the event could not be parsed as an extensible\n * event.\n *\n * @deprecated Use stable functions where possible.\n */\n public get unstableExtensibleEvent(): Optional<ExtensibleEvent> {\n if (!this._hasCachedExtEv) {\n this._cachedExtEv = ExtensibleEvents.parse(this.getEffectiveEvent());\n }\n return this._cachedExtEv;\n }\n\n private invalidateExtensibleEvent(): void {\n // just reset the flag - that'll trick the getter into parsing a new event\n this._hasCachedExtEv = false;\n }\n\n /**\n * Gets the event as it would appear if it had been sent unencrypted.\n *\n * If the event is encrypted, we attempt to mock up an event as it would have looked had the sender not encrypted it.\n * If the event is not encrypted, a copy of it is simply returned as-is.\n *\n * @returns A shallow copy of the event, in wire format, as it would have been had it not been encrypted.\n */\n public getEffectiveEvent(): IEvent {\n const content = Object.assign({}, this.getContent()); // clone for mutation\n\n if (this.getWireType() === EventType.RoomMessageEncrypted) {\n // Encrypted events sometimes aren't symmetrical on the `content` so we'll copy\n // that over too, but only for missing properties. We don't copy over mismatches\n // between the plain and decrypted copies of `content` because we assume that the\n // app is relying on the decrypted version, so we want to expose that as a source\n // of truth here too.\n for (const [key, value] of Object.entries(this.getWireContent())) {\n // Skip fields from the encrypted event schema though - we don't want to leak\n // these.\n if ([\"algorithm\", \"ciphertext\", \"device_id\", \"sender_key\", \"session_id\"].includes(key)) {\n continue;\n }\n\n if (content[key] === undefined) content[key] = value;\n }\n }\n\n // clearEvent doesn't have all the fields, so we'll copy what we can from this.event.\n // We also copy over our \"fixed\" content key.\n return Object.assign({}, this.event, this.clearEvent, { content }) as IEvent;\n }\n\n /**\n * Get the event_id for this event.\n * @returns The event ID, e.g. <code>$143350589368169JsLZx:localhost\n * </code>\n */\n public getId(): string | undefined {\n return this.event.event_id;\n }\n\n /**\n * Get the user_id for this event.\n * @returns The user ID, e.g. `@alice:matrix.org`\n */\n public getSender(): string | undefined {\n return this.event.sender; // v2 / v1\n }\n\n /**\n * Get the (decrypted, if necessary) type of event.\n *\n * @returns The event type, e.g. `m.room.message`\n */\n public getType(): EventType | string {\n if (this.clearEvent) {\n return this.clearEvent.type;\n }\n return this.event.type!;\n }\n\n /**\n * Get the (possibly encrypted) type of the event that will be sent to the\n * homeserver.\n *\n * @returns The event type.\n */\n public getWireType(): EventType | string {\n return this.event.type!;\n }\n\n /**\n * Get the room_id for this event. This will return `undefined`\n * for `m.presence` events.\n * @returns The room ID, e.g. <code>!cURbafjkfsMDVwdRDQ:matrix.org\n * </code>\n */\n public getRoomId(): string | undefined {\n return this.event.room_id;\n }\n\n /**\n * Get the timestamp of this event.\n * @returns The event timestamp, e.g. `1433502692297`\n */\n public getTs(): number {\n return this.event.origin_server_ts!;\n }\n\n /**\n * Get the timestamp of this event, as a Date object.\n * @returns The event date, e.g. `new Date(1433502692297)`\n */\n public getDate(): Date | null {\n return this.event.origin_server_ts ? new Date(this.event.origin_server_ts) : null;\n }\n\n /**\n * Get a string containing details of this event\n *\n * This is intended for logging, to help trace errors. Example output:\n *\n * @example\n * ```\n * id=$HjnOHV646n0SjLDAqFrgIjim7RCpB7cdMXFrekWYAn type=m.room.encrypted\n * sender=@user:example.com room=!room:example.com ts=2022-10-25T17:30:28.404Z\n * ```\n */\n public getDetails(): string {\n const room = this.getRoomId();\n if (room) {\n // in-room event\n return `id=${this.getId()} type=${this.getWireType()} sender=${this.getSender()} room=${room} ts=${this.getDate()?.toISOString()}`;\n } else {\n // to-device event\n const msgid = this.getContent()[ToDeviceMessageId];\n return `msgid=${msgid} type=${this.getWireType()} sender=${this.getSender()}`;\n }\n }\n\n /**\n * Get the (decrypted, if necessary) event content JSON, even if the event\n * was replaced by another event.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getOriginalContent<T = IContent>(): T {\n if (this._localRedactionEvent) {\n return {} as T;\n }\n if (this.clearEvent) {\n return (this.clearEvent.content ?? {}) as T;\n }\n return (this.event.content ?? {}) as T;\n }\n\n /**\n * Get the (decrypted, if necessary) event content JSON,\n * or the content from the replacing event, if any.\n * See `makeReplaced`.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getContent<T extends IContent = IContent>(): T {\n if (this._localRedactionEvent) {\n return {} as T;\n } else if (this._replacingEvent) {\n return this._replacingEvent.getContent()[\"m.new_content\"] ?? {};\n } else {\n return this.getOriginalContent();\n }\n }\n\n /**\n * Get the (possibly encrypted) event content JSON that will be sent to the\n * homeserver.\n *\n * @returns The event content JSON, or an empty object.\n */\n public getWireContent(): IContent {\n return this.event.content || {};\n }\n\n /**\n * Get the event ID of the thread head\n */\n public get threadRootId(): string | undefined {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return undefined;\n }\n const relatesTo = this.getWireContent()?.[\"m.relates_to\"];\n if (relatesTo?.rel_type === THREAD_RELATION_TYPE.name) {\n return relatesTo.event_id;\n }\n if (this.thread) {\n return this.thread.id;\n }\n if (this.threadId !== undefined) {\n return this.threadId;\n }\n const unsigned = this.getUnsigned();\n if (typeof unsigned[UNSIGNED_THREAD_ID_FIELD.name] === \"string\") {\n return unsigned[UNSIGNED_THREAD_ID_FIELD.name];\n }\n return undefined;\n }\n\n /**\n * A helper to check if an event is a thread's head or not\n */\n public get isThreadRoot(): boolean {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return false;\n }\n\n const threadDetails = this.getServerAggregatedRelation<IThreadBundledRelationship>(THREAD_RELATION_TYPE.name);\n\n // Bundled relationships only returned when the sync response is limited\n // hence us having to check both bundled relation and inspect the thread\n // model\n return !!threadDetails || this.threadRootId === this.getId();\n }\n\n public get replyEventId(): string | undefined {\n return this.getWireContent()[\"m.relates_to\"]?.[\"m.in_reply_to\"]?.event_id;\n }\n\n public get relationEventId(): string | undefined {\n return this.getWireContent()?.[\"m.relates_to\"]?.event_id;\n }\n\n /**\n * Get the previous event content JSON. This will only return something for\n * state events which exist in the timeline.\n * @returns The previous event content JSON, or an empty object.\n */\n public getPrevContent(): IContent {\n // v2 then v1 then default\n return this.getUnsigned().prev_content || {};\n }\n\n /**\n * Get either 'content' or 'prev_content' depending on if this event is\n * 'forward-looking' or not. This can be modified via event.forwardLooking.\n * In practice, this means we get the chronologically earlier content value\n * for this event (this method should surely be called getEarlierContent)\n * <strong>This method is experimental and may change.</strong>\n * @returns event.content if this event is forward-looking, else\n * event.prev_content.\n */\n public getDirectionalContent(): IContent {\n return this.forwardLooking ? this.getContent() : this.getPrevContent();\n }\n\n /**\n * Get the age of this event. This represents the age of the event when the\n * event arrived at the device, and not the age of the event when this\n * function was called.\n * Can only be returned once the server has echo'ed back\n * @returns The age of this event in milliseconds.\n */\n public getAge(): number | undefined {\n return this.getUnsigned().age;\n }\n\n /**\n * Get the age of the event when this function was called.\n * This is the 'age' field adjusted according to how long this client has\n * had the event.\n * @returns The age of this event in milliseconds.\n */\n public getLocalAge(): number {\n return Date.now() - this.localTimestamp;\n }\n\n /**\n * Get the event state_key if it has one. This will return <code>undefined\n * </code> for message events.\n * @returns The event's `state_key`.\n */\n public getStateKey(): string | undefined {\n return this.event.state_key;\n }\n\n /**\n * Check if this event is a state event.\n * @returns True if this is a state event.\n */\n public isState(): boolean {\n return this.event.state_key !== undefined;\n }\n\n /**\n * Get the user's room membership at the time the event was sent, as reported\n * by the server. This uses MSC4115.\n *\n * @returns The user's room membership, or `undefined` if the server does\n * not report it.\n */\n public getMembershipAtEvent(): Optional<Membership | string> {\n const unsigned = this.getUnsigned();\n return UNSIGNED_MEMBERSHIP_FIELD.findIn<Membership | string>(unsigned);\n }\n\n public shouldAttemptDecryption(): boolean {\n if (this.isRedacted()) return false;\n if (this.clearEvent) return false;\n if (!this.isEncrypted()) return false;\n\n return true;\n }\n\n /**\n * Calculate the recipients for keyshare requests.\n *\n * @param userId - the user who received this event.\n *\n * @returns array of recipients\n */\n public getKeyRequestRecipients(userId: string): IKeyRequestRecipient[] {\n // send the request to all of our own devices\n const recipients = [\n {\n userId,\n deviceId: \"*\",\n },\n ];\n\n return recipients;\n }\n\n /**\n * Gets the cleartext content for this event. If the event is not encrypted,\n * or encryption has not been completed, this will return null.\n *\n * @returns The cleartext (decrypted) content for the event\n */\n public getClearContent(): IContent | null {\n return this.clearEvent ? this.clearEvent.content : null;\n }\n\n /**\n * Check if the event is encrypted.\n * @returns True if this event is encrypted.\n */\n public isEncrypted(): boolean {\n return !this.isState() && this.event.type === EventType.RoomMessageEncrypted;\n }\n\n /**\n * The curve25519 key for the device that we think sent this event\n *\n * For an Olm-encrypted event, this is inferred directly from the DH\n * exchange at the start of the session: the curve25519 key is involved in\n * the DH exchange, so only a device which holds the private part of that\n * key can establish such a session.\n *\n * For a megolm-encrypted event, it is inferred from the Olm message which\n * established the megolm session\n */\n public getSenderKey(): string | null {\n return this.senderCurve25519Key;\n }\n\n /**\n * The additional keys the sender of this encrypted event claims to possess.\n *\n * Just a wrapper for #getClaimedEd25519Key (q.v.)\n */\n public getKeysClaimed(): Partial<Record<\"ed25519\", string>> {\n if (!this.claimedEd25519Key) return {};\n\n return {\n ed25519: this.claimedEd25519Key,\n };\n }\n\n /**\n * Get the ed25519 the sender of this event claims to own.\n *\n * For Olm messages, this claim is encoded directly in the plaintext of the\n * event itself. For megolm messages, it is implied by the m.room_key event\n * which established the megolm session.\n *\n * Until we download the device list of the sender, it's just a claim: the\n * device list gives a proof that the owner of the curve25519 key used for\n * this event (and returned by #getSenderKey) also owns the ed25519 key by\n * signing the public curve25519 key with the ed25519 key.\n *\n * In general, applications should not use this method directly, but should\n * instead use {@link Crypto.CryptoApi#getEncryptionInfoForEvent}.\n */\n public getClaimedEd25519Key(): string | null {\n return this.claimedEd25519Key;\n }\n\n /**\n * Get the curve25519 keys of the devices which were involved in telling us\n * about the claimedEd25519Key and sender curve25519 key.\n *\n * Normally this will be empty, but in the case of a forwarded megolm\n * session, the sender keys are sent to us by another device (the forwarding\n * device), which we need to trust to do this. In that case, the result will\n * be a list consisting of one entry.\n *\n * If the device that sent us the key (A) got it from another device which\n * it wasn't prepared to vouch for (B), the result will be [A, B]. And so on.\n *\n * @returns base64-encoded curve25519 keys, from oldest to newest.\n */\n public getForwardingCurve25519KeyChain(): string[] {\n return this.forwardingCurve25519KeyChain;\n }\n\n /**\n * Whether the decryption key was obtained from an untrusted source. If so,\n * we cannot verify the authenticity of the message.\n */\n public isKeySourceUntrusted(): boolean | undefined {\n return !!this.untrusted;\n }\n\n public getUnsigned(): IUnsigned {\n return this.event.unsigned || {};\n }\n\n public setUnsigned(unsigned: IUnsigned): void {\n this.event.unsigned = unsigned;\n }\n\n public unmarkLocallyRedacted(): boolean {\n const value = this._localRedactionEvent;\n this._localRedactionEvent = null;\n if (this.event.unsigned) {\n this.event.unsigned.redacted_because = undefined;\n }\n return !!value;\n }\n\n public markLocallyRedacted(redactionEvent: MatrixEvent): void {\n if (this._localRedactionEvent) return;\n this.emit(MatrixEventEvent.BeforeRedaction, this, redactionEvent);\n this._localRedactionEvent = redactionEvent;\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = redactionEvent.event as IEvent;\n }\n\n /**\n * Change the visibility of an event, as per https://github.com/matrix-org/matrix-doc/pull/3531 .\n *\n * @param visibilityChange - event holding a hide/unhide payload, or nothing\n * if the event is being reset to its original visibility (presumably\n * by a visibility event being redacted).\n *\n * @remarks\n * Fires {@link MatrixEventEvent.VisibilityChange} if `visibilityEvent`\n * caused a change in the actual visibility of this event, either by making it\n * visible (if it was hidden), by making it hidden (if it was visible) or by\n * changing the reason (if it was hidden).\n */\n public applyVisibilityEvent(visibilityChange?: IVisibilityChange): void {\n const visible = visibilityChange?.visible ?? true;\n const reason = visibilityChange?.reason ?? null;\n let change = false;\n if (this.visibility.visible !== visible) {\n change = true;\n } else if (!this.visibility.visible && this.visibility[\"reason\"] !== reason) {\n change = true;\n }\n if (change) {\n if (visible) {\n this.visibility = MESSAGE_VISIBLE;\n } else {\n this.visibility = Object.freeze({\n visible: false,\n reason,\n });\n }\n this.emit(MatrixEventEvent.VisibilityChange, this, visible);\n }\n }\n\n /**\n * Return instructions to display or hide the message.\n *\n * @returns Instructions determining whether the message\n * should be displayed.\n */\n public messageVisibility(): MessageVisibility {\n // Note: We may return `this.visibility` without fear, as\n // this is a shallow frozen object.\n return this.visibility;\n }\n\n /**\n * Update the content of an event in the same way it would be by the server\n * if it were redacted before it was sent to us\n *\n * @param redactionEvent - event causing the redaction\n * @param room - the room in which the event exists\n */\n public makeRedacted(redactionEvent: MatrixEvent, room: Room): void {\n // quick sanity-check\n if (!redactionEvent.event) {\n throw new Error(\"invalid redactionEvent in makeRedacted\");\n }\n\n this._localRedactionEvent = null;\n\n this.emit(MatrixEventEvent.BeforeRedaction, this, redactionEvent);\n\n this._replacingEvent = null;\n // we attempt to replicate what we would see from the server if\n // the event had been redacted before we saw it.\n //\n // The server removes (most of) the content of the event, and adds a\n // \"redacted_because\" key to the unsigned section containing the\n // redacted event.\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = redactionEvent.event as IEvent;\n\n for (const key in this.event) {\n if (this.event.hasOwnProperty(key) && !REDACT_KEEP_KEYS.has(key)) {\n delete this.event[key as keyof IEvent];\n }\n }\n\n // If the event is encrypted prune the decrypted bits\n if (this.isEncrypted()) {\n this.clearEvent = undefined;\n }\n\n const keeps =\n this.getType() in REDACT_KEEP_CONTENT_MAP\n ? REDACT_KEEP_CONTENT_MAP[this.getType() as keyof typeof REDACT_KEEP_CONTENT_MAP]\n : {};\n const content = this.getContent();\n for (const key in content) {\n if (content.hasOwnProperty(key) && !keeps[key]) {\n delete content[key];\n }\n }\n\n // If the redacted event was in a thread (but not thread root), move it\n // to the main timeline. This will change if MSC3389 is merged.\n if (!this.isThreadRoot && this.threadRootId && this.threadRootId !== this.getId()) {\n this.moveAllRelatedToMainTimeline(room);\n redactionEvent.moveToMainTimeline(room);\n }\n\n this.invalidateExtensibleEvent();\n }\n\n private moveAllRelatedToMainTimeline(room: Room): void {\n const thread = this.thread;\n this.moveToMainTimeline(room);\n\n // If we dont have access to the thread, we can only move this\n // event, not things related to it.\n if (thread) {\n for (const event of thread.events) {\n if (event.getRelation()?.event_id === this.getId()) {\n event.moveAllRelatedToMainTimeline(room);\n }\n }\n }\n }\n\n private moveToMainTimeline(room: Room): void {\n // Remove it from its thread\n this.thread?.timelineSet.removeEvent(this.getId()!);\n this.setThread(undefined);\n\n // And insert it into the main timeline\n const timeline = room.getLiveTimeline();\n // We use insertEventIntoTimeline to insert it in timestamp order,\n // because we don't know where it should go (until we have MSC4033).\n timeline\n .getTimelineSet()\n .insertEventIntoTimeline(this, timeline, timeline.getState(EventTimeline.FORWARDS)!, false);\n }\n\n /**\n * Check if this event has been redacted\n *\n * @returns True if this event has been redacted\n */\n public isRedacted(): boolean {\n return Boolean(this.getUnsigned().redacted_because);\n }\n\n /**\n * Check if this event is a redaction of another event\n *\n * @returns True if this event is a redaction\n */\n public isRedaction(): boolean {\n return this.getType() === EventType.RoomRedaction;\n }\n\n /**\n * Return the visibility change caused by this event,\n * as per https://github.com/matrix-org/matrix-doc/pull/3531.\n *\n * @returns If the event is a well-formed visibility change event,\n * an instance of `IVisibilityChange`, otherwise `null`.\n */\n public asVisibilityChange(): IVisibilityChange | null {\n if (!EVENT_VISIBILITY_CHANGE_TYPE.matches(this.getType())) {\n // Not a visibility change event.\n return null;\n }\n const relation = this.getRelation();\n if (!relation || relation.rel_type != \"m.reference\") {\n // Ill-formed, ignore this event.\n return null;\n }\n const eventId = relation.event_id;\n if (!eventId) {\n // Ill-formed, ignore this event.\n return null;\n }\n const content = this.getWireContent();\n const visible = !!content.visible;\n const reason = content.reason;\n if (reason && typeof reason != \"string\") {\n // Ill-formed, ignore this event.\n return null;\n }\n // Well-formed visibility change event.\n return {\n visible,\n reason,\n eventId,\n };\n }\n\n /**\n * Check if this event alters the visibility of another event,\n * as per https://github.com/matrix-org/matrix-doc/pull/3531.\n *\n * @returns True if this event alters the visibility\n * of another event.\n */\n public isVisibilityEvent(): boolean {\n return EVENT_VISIBILITY_CHANGE_TYPE.matches(this.getType());\n }\n\n /**\n * Get the (decrypted, if necessary) redaction event JSON\n * if event was redacted\n *\n * @returns The redaction event JSON, or an empty object\n */\n public getRedactionEvent(): IEvent | {} | null {\n if (!this.isRedacted()) return null;\n\n if (this.clearEvent?.unsigned) {\n return this.clearEvent?.unsigned.redacted_because ?? null;\n } else if (this.event.unsigned?.redacted_because) {\n return this.event.unsigned.redacted_because;\n } else {\n return {};\n }\n }\n\n /**\n * Get the push actions, if known, for this event\n *\n * @returns push actions\n */\n public getPushActions(): IActionsObject | null {\n return this.pushDetails.actions || null;\n }\n\n /**\n * Get the push details, if known, for this event\n *\n * @returns push actions\n */\n public getPushDetails(): PushDetails {\n return this.pushDetails;\n }\n\n /**\n * Set the push details for this event.\n *\n * @param pushActions - push actions\n * @param rule - the executed push rule\n */\n public setPushDetails(pushActions?: IActionsObject, rule?: IAnnotatedPushRule): void {\n this.pushDetails = {\n actions: pushActions,\n rule,\n };\n }\n\n /**\n * Replace the `event` property and recalculate any properties based on it.\n * @param event - the object to assign to the `event` property\n */\n public handleRemoteEcho(event: object): void {\n const oldUnsigned = this.getUnsigned();\n const oldId = this.getId();\n this.event = event;\n // if this event was redacted before it was sent, it's locally marked as redacted.\n // At this point, we've received the remote echo for the event, but not yet for\n // the redaction that we are sending ourselves. Preserve the locally redacted\n // state by copying over redacted_because so we don't get a flash of\n // redacted, not-redacted, redacted as remote echos come in\n if (oldUnsigned.redacted_because) {\n if (!this.event.unsigned) {\n this.event.unsigned = {};\n }\n this.event.unsigned.redacted_because = oldUnsigned.redacted_because;\n }\n // successfully sent.\n this.setStatus(null);\n if (this.getId() !== oldId) {\n // emit the event if it changed\n this.emit(MatrixEventEvent.LocalEventIdReplaced, this);\n }\n\n this.localTimestamp = Date.now() - (this.getAge() ?? 0);\n }\n\n /**\n * Whether the event is in any phase of sending, send failure, waiting for\n * remote echo, etc.\n */\n public isSending(): boolean {\n return !!this.status;\n }\n\n /**\n * Update the event's sending status and emit an event as well.\n *\n * @param status - The new status\n */\n public setStatus(status: EventStatus | null): void {\n this.status = status;\n this.emit(MatrixEventEvent.Status, this, status);\n }\n\n public replaceLocalEventId(eventId: string): void {\n this.event.event_id = eventId;\n this.emit(MatrixEventEvent.LocalEventIdReplaced, this);\n }\n\n /**\n * Get whether the event is a relation event, and of a given type if\n * `relType` is passed in. State events cannot be relation events\n *\n * @param relType - if given, checks that the relation is of the\n * given type\n */\n public isRelation(relType?: string): boolean {\n // Relation info is lifted out of the encrypted content when sent to\n // encrypted rooms, so we have to check `getWireContent` for this.\n const relation = this.getWireContent()?.[\"m.relates_to\"];\n if (\n this.isState() &&\n !!relation?.rel_type &&\n ([RelationType.Replace, RelationType.Thread] as string[]).includes(relation.rel_type)\n ) {\n // State events cannot be m.replace or m.thread relations\n return false;\n }\n return !!(relation?.rel_type && relation.event_id && (relType ? relation.rel_type === relType : true));\n }\n\n /**\n * Get relation info for the event, if any.\n */\n public getRelation(): IEventRelation | null {\n if (!this.isRelation()) {\n return null;\n }\n return this.getWireContent()[\"m.relates_to\"] ?? null;\n }\n\n /**\n * Set an event that replaces the content of this event, through an m.replace relation.\n *\n * @param newEvent - the event with the replacing content, if any.\n *\n * @remarks\n * Fires {@link MatrixEventEvent.Replaced}\n */\n public makeReplaced(newEvent?: MatrixEvent): void {\n // don't allow redacted events to be replaced.\n // if newEvent is null we allow to go through though,\n // as with local redaction, the replacing event might get\n // cancelled, which should be reflected on the target event.\n if (this.isRedacted() && newEvent) {\n return;\n }\n // don't allow state events to be replaced using this mechanism as per MSC2676\n if (this.isState()) {\n return;\n }\n if (this._replacingEvent !== newEvent) {\n this._replacingEvent = newEvent ?? null;\n this.emit(MatrixEventEvent.Replaced, this);\n this.invalidateExtensibleEvent();\n }\n }\n\n /**\n * Returns the status of any associated edit or redaction\n * (not for reactions/annotations as their local echo doesn't affect the original event),\n * or else the status of the event.\n */\n public getAssociatedStatus(): EventStatus | null {\n if (this._replacingEvent) {\n return this._replacingEvent.status;\n } else if (this._localRedactionEvent) {\n return this._localRedactionEvent.status;\n }\n return this.status;\n }\n\n public getServerAggregatedRelation<T>(relType: RelationType | string): T | undefined {\n return this.getUnsigned()[\"m.relations\"]?.[relType];\n }\n\n /**\n * Returns the event ID of the event replacing the content of this event, if any.\n */\n public replacingEventId(): string | undefined {\n const replaceRelation = this.getServerAggregatedRelation<IAggregatedRelation>(RelationType.Replace);\n if (replaceRelation) {\n return replaceRelation.event_id;\n } else if (this._replacingEvent) {\n return this._replacingEvent.getId();\n }\n }\n\n /**\n * Returns the event replacing the content of this event, if any.\n * Replacements are aggregated on the server, so this would only\n * return an event in case it came down the sync, or for local echo of edits.\n */\n public replacingEvent(): MatrixEvent | null {\n return this._replacingEvent;\n }\n\n /**\n * Returns the origin_server_ts of the event replacing the content of this event, if any.\n */\n public replacingEventDate(): Date | undefined {\n const replaceRelation = this.getServerAggregatedRelation<IAggregatedRelation>(RelationType.Replace);\n if (replaceRelation) {\n const ts = replaceRelation.origin_server_ts;\n if (Number.isFinite(ts)) {\n return new Date(ts);\n }\n } else if (this._replacingEvent) {\n return this._replacingEvent.getDate() ?? undefined;\n }\n }\n\n /**\n * Returns the event that wants to redact this event, but hasn't been sent yet.\n * @returns the event\n */\n public localRedactionEvent(): MatrixEvent | null {\n return this._localRedactionEvent;\n }\n\n /**\n * For relations and redactions, returns the event_id this event is referring to.\n */\n public getAssociatedId(): string | undefined {\n const relation = this.getRelation();\n if (this.replyEventId) {\n return this.replyEventId;\n } else if (relation) {\n return relation.event_id;\n } else if (this.isRedaction()) {\n return this.event.redacts;\n }\n }\n\n /**\n * Checks if this event is associated with another event. See `getAssociatedId`.\n */\n public hasAssociation(): boolean {\n return !!this.getAssociatedId();\n }\n\n /**\n * Update the related id with a new one.\n *\n * Used to replace a local id with remote one before sending\n * an event with a related id.\n *\n * @param eventId - the new event id\n */\n public updateAssociatedId(eventId: string): void {\n const relation = this.getRelation();\n if (relation) {\n relation.event_id = eventId;\n } else if (this.isRedaction()) {\n this.event.redacts = eventId;\n }\n }\n\n /**\n * Flags an event as cancelled due to future conditions. For example, a verification\n * request event in the same sync transaction may be flagged as cancelled to warn\n * listeners that a cancellation event is coming down the same pipe shortly.\n * @param cancelled - Whether the event is to be cancelled or not.\n */\n public flagCancelled(cancelled = true): void {\n this._isCancelled = cancelled;\n }\n\n /**\n * Gets whether or not the event is flagged as cancelled. See flagCancelled() for\n * more information.\n * @returns True if the event is cancelled, false otherwise.\n */\n public isCancelled(): boolean {\n return this._isCancelled;\n }\n\n /**\n * Get a copy/snapshot of this event. The returned copy will be loosely linked\n * back to this instance, though will have \"frozen\" event information. Other\n * properties of this MatrixEvent instance will be copied verbatim, which can\n * mean they are in reference to this instance despite being on the copy too.\n * The reference the snapshot uses does not change, however members aside from\n * the underlying event will not be deeply cloned, thus may be mutated internally.\n * For example, the sender profile will be copied over at snapshot time, and\n * the sender profile internally may mutate without notice to the consumer.\n *\n * This is meant to be used to snapshot the event details themselves, not the\n * features (such as sender) surrounding the event.\n * @returns A snapshot of this event.\n */\n public toSnapshot(): MatrixEvent {\n const ev = new MatrixEvent(JSON.parse(JSON.stringify(this.event)));\n for (const [p, v] of Object.entries(this)) {\n if (p !== \"event\") {\n // exclude the thing we just cloned\n // @ts-ignore - XXX: this is just nasty\n ev[p as keyof MatrixEvent] = v;\n }\n }\n return ev;\n }\n\n /**\n * Determines if this event is equivalent to the given event. This only checks\n * the event object itself, not the other properties of the event. Intended for\n * use with toSnapshot() to identify events changing.\n * @param otherEvent - The other event to check against.\n * @returns True if the events are the same, false otherwise.\n */\n public isEquivalentTo(otherEvent?: MatrixEvent): boolean {\n if (!otherEvent) return false;\n if (otherEvent === this) return true;\n const myProps = deepSortedObjectEntries(this.event);\n const theirProps = deepSortedObjectEntries(otherEvent.event);\n return JSON.stringify(myProps) === JSON.stringify(theirProps);\n }\n\n /**\n * Summarise the event as JSON.\n *\n * If encrypted, include both the decrypted and encrypted view of the event.\n *\n * This is named `toJSON` for use with `JSON.stringify` which checks objects\n * for functions named `toJSON` and will call them to customise the output\n * if they are defined.\n *\n * **WARNING** Do not log the result of this method; otherwise, it will end up\n * in rageshakes, leading to a privacy violation.\n *\n * @deprecated Prefer to use {@link MatrixEvent#getEffectiveEvent} or similar.\n * This method will be removed soon; it is too easy to use it accidentally\n * and cause a privacy violation (cf https://github.com/vector-im/element-web/issues/26380).\n * In any case, the value it returns is not a faithful serialization of the object.\n */\n public toJSON(): object {\n const event = this.getEffectiveEvent();\n\n if (!this.isEncrypted()) {\n return event;\n }\n\n return {\n decrypted: event,\n encrypted: this.event,\n };\n }\n\n public setTxnId(txnId: string): void {\n this.txnId = txnId;\n }\n\n public getTxnId(): string | undefined {\n return this.txnId;\n }\n\n /**\n * Set the instance of a thread associated with the current event\n * @param thread - the thread\n */\n public setThread(thread?: Thread): void {\n // don't allow state events to be threaded as per the spec\n if (this.isState()) {\n return;\n }\n if (this.thread) {\n this.reEmitter.stopReEmitting(this.thread, [ThreadEvent.Update]);\n }\n this.thread = thread;\n this.setThreadId(thread?.id);\n if (thread) {\n this.reEmitter.reEmit(thread, [ThreadEvent.Update]);\n }\n }\n\n /**\n * Get the instance of the thread associated with the current event\n */\n public getThread(): Thread | undefined {\n return this.thread;\n }\n\n public setThreadId(threadId?: string): void {\n this.threadId = threadId;\n }\n}\n\n/* REDACT_KEEP_KEYS gives the keys we keep when an event is redacted\n *\n * This is specified here:\n * http://matrix.org/speculator/spec/HEAD/client_server/latest.html#redactions\n *\n * Also:\n * - We keep 'unsigned' since that is created by the local server\n * - We keep user_id for backwards-compat with v1\n */\nconst REDACT_KEEP_KEYS = new Set([\n \"event_id\",\n \"type\",\n \"room_id\",\n \"user_id\",\n \"sender\",\n \"state_key\",\n \"prev_state\",\n \"content\",\n \"unsigned\",\n \"origin_server_ts\",\n]);\n\n// a map from state event type to the .content keys we keep when an event is redacted\nconst REDACT_KEEP_CONTENT_MAP: Record<string, Record<string, 1>> = {\n [EventType.RoomMember]: { membership: 1 },\n [EventType.RoomJoinRules]: { join_rule: 1 },\n [EventType.RoomPowerLevels]: {\n ban: 1,\n events: 1,\n events_default: 1,\n kick: 1,\n redact: 1,\n state_default: 1,\n users: 1,\n users_default: 1,\n },\n} as const;\n"],"mappings":"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","ignoreList":[]}
|
package/lib/sliding-sync.js
CHANGED
@@ -96,8 +96,9 @@ class SlidingList {
|
|
96
96
|
* @param list - The new list parameters
|
97
97
|
*/
|
98
98
|
replaceList(list) {
|
99
|
-
|
100
|
-
list.
|
99
|
+
var _list$filters, _list$ranges;
|
100
|
+
list.filters = (_list$filters = list.filters) !== null && _list$filters !== void 0 ? _list$filters : {};
|
101
|
+
list.ranges = (_list$ranges = list.ranges) !== null && _list$ranges !== void 0 ? _list$ranges : [];
|
101
102
|
this.list = JSON.parse(JSON.stringify(list));
|
102
103
|
this.isModified = true;
|
103
104
|
|
@@ -687,6 +688,7 @@ export class SlidingSync extends TypedEventEmitter {
|
|
687
688
|
var doNotUpdateList = false;
|
688
689
|
var resp;
|
689
690
|
try {
|
691
|
+
var _resp$lists, _resp$rooms, _resp$extensions;
|
690
692
|
var listModifiedCount = _this4.listModifiedCount;
|
691
693
|
var reqLists = {};
|
692
694
|
_this4.lists.forEach((l, key) => {
|
@@ -742,9 +744,9 @@ export class SlidingSync extends TypedEventEmitter {
|
|
742
744
|
l.setModified(false);
|
743
745
|
});
|
744
746
|
// set default empty values so we don't need to null check
|
745
|
-
resp.lists = resp.lists
|
746
|
-
resp.rooms = resp.rooms
|
747
|
-
resp.extensions = resp.extensions
|
747
|
+
resp.lists = (_resp$lists = resp.lists) !== null && _resp$lists !== void 0 ? _resp$lists : {};
|
748
|
+
resp.rooms = (_resp$rooms = resp.rooms) !== null && _resp$rooms !== void 0 ? _resp$rooms : {};
|
749
|
+
resp.extensions = (_resp$extensions = resp.extensions) !== null && _resp$extensions !== void 0 ? _resp$extensions : {};
|
748
750
|
Object.keys(resp.lists).forEach(key => {
|
749
751
|
var list = _this4.lists.get(key);
|
750
752
|
if (!list || !resp) {
|
@@ -781,7 +783,8 @@ export class SlidingSync extends TypedEventEmitter {
|
|
781
783
|
var listKeysWithUpdates = new Set();
|
782
784
|
if (!doNotUpdateList) {
|
783
785
|
for (var [key, list] of Object.entries(resp.lists)) {
|
784
|
-
|
786
|
+
var _list$ops;
|
787
|
+
list.ops = (_list$ops = list.ops) !== null && _list$ops !== void 0 ? _list$ops : [];
|
785
788
|
if (list.ops.length > 0) {
|
786
789
|
listKeysWithUpdates.add(key);
|
787
790
|
}
|