@metamask-previews/notification-services-controller 18.3.1-preview-9fa15fd0 → 19.0.0-preview-55f130d1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -1
- package/dist/NotificationServicesController/NotificationServicesController.cjs +30 -30
- package/dist/NotificationServicesController/NotificationServicesController.cjs.map +1 -1
- package/dist/NotificationServicesController/NotificationServicesController.d.cts +6 -5
- package/dist/NotificationServicesController/NotificationServicesController.d.cts.map +1 -1
- package/dist/NotificationServicesController/NotificationServicesController.d.mts +6 -5
- package/dist/NotificationServicesController/NotificationServicesController.d.mts.map +1 -1
- package/dist/NotificationServicesController/NotificationServicesController.mjs +30 -30
- package/dist/NotificationServicesController/NotificationServicesController.mjs.map +1 -1
- package/dist/NotificationServicesPushController/NotificationServicesPushController.cjs +8 -8
- package/dist/NotificationServicesPushController/NotificationServicesPushController.cjs.map +1 -1
- package/dist/NotificationServicesPushController/NotificationServicesPushController.d.cts +4 -4
- package/dist/NotificationServicesPushController/NotificationServicesPushController.d.cts.map +1 -1
- package/dist/NotificationServicesPushController/NotificationServicesPushController.d.mts +4 -4
- package/dist/NotificationServicesPushController/NotificationServicesPushController.d.mts.map +1 -1
- package/dist/NotificationServicesPushController/NotificationServicesPushController.mjs +8 -8
- package/dist/NotificationServicesPushController/NotificationServicesPushController.mjs.map +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [19.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6538](https://github.com/MetaMask/core/pull/6538))
|
|
15
|
+
- Previously, `NotificationServicesController` and `NotificationServicesPushController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
|
|
16
|
+
- **BREAKING:** Metadata property `anonymous` renamed to `includeInDebugSnapshot` ([#6538](https://github.com/MetaMask/core/pull/6538))
|
|
17
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^23.0.0` to `^24.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
18
|
+
- **BREAKING:** Bump `@metamask/profile-sync-controller` from `^25.0.0` to `^26.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
19
|
+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
20
|
+
|
|
21
|
+
### Removed
|
|
22
|
+
|
|
23
|
+
- **BREAKING:** Remove package-level exports of `AllowedActions` and `AllowedEvents` from `NotificationServicesController` and `NotificationServicesPushController` ([#6538](https://github.com/MetaMask/core/pull/6538))
|
|
24
|
+
|
|
10
25
|
## [18.3.1]
|
|
11
26
|
|
|
12
27
|
### Changed
|
|
@@ -582,7 +597,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
582
597
|
|
|
583
598
|
- Initial release
|
|
584
599
|
|
|
585
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@
|
|
600
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@19.0.0...HEAD
|
|
601
|
+
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@18.3.1...@metamask/notification-services-controller@19.0.0
|
|
586
602
|
[18.3.1]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@18.3.0...@metamask/notification-services-controller@18.3.1
|
|
587
603
|
[18.3.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@18.2.0...@metamask/notification-services-controller@18.3.0
|
|
588
604
|
[18.2.0]: https://github.com/MetaMask/core/compare/@metamask/notification-services-controller@18.1.0...@metamask/notification-services-controller@18.2.0
|
|
@@ -55,61 +55,61 @@ const metadata = {
|
|
|
55
55
|
subscriptionAccountsSeen: {
|
|
56
56
|
includeInStateLogs: true,
|
|
57
57
|
persist: true,
|
|
58
|
-
|
|
58
|
+
includeInDebugSnapshot: true,
|
|
59
59
|
usedInUi: true,
|
|
60
60
|
},
|
|
61
61
|
isMetamaskNotificationsFeatureSeen: {
|
|
62
62
|
includeInStateLogs: true,
|
|
63
63
|
persist: true,
|
|
64
|
-
|
|
64
|
+
includeInDebugSnapshot: false,
|
|
65
65
|
usedInUi: true,
|
|
66
66
|
},
|
|
67
67
|
isNotificationServicesEnabled: {
|
|
68
68
|
includeInStateLogs: true,
|
|
69
69
|
persist: true,
|
|
70
|
-
|
|
70
|
+
includeInDebugSnapshot: false,
|
|
71
71
|
usedInUi: true,
|
|
72
72
|
},
|
|
73
73
|
isFeatureAnnouncementsEnabled: {
|
|
74
74
|
includeInStateLogs: true,
|
|
75
75
|
persist: true,
|
|
76
|
-
|
|
76
|
+
includeInDebugSnapshot: false,
|
|
77
77
|
usedInUi: true,
|
|
78
78
|
},
|
|
79
79
|
metamaskNotificationsList: {
|
|
80
80
|
includeInStateLogs: true,
|
|
81
81
|
persist: true,
|
|
82
|
-
|
|
82
|
+
includeInDebugSnapshot: true,
|
|
83
83
|
usedInUi: true,
|
|
84
84
|
},
|
|
85
85
|
metamaskNotificationsReadList: {
|
|
86
86
|
includeInStateLogs: false,
|
|
87
87
|
persist: true,
|
|
88
|
-
|
|
88
|
+
includeInDebugSnapshot: true,
|
|
89
89
|
usedInUi: true,
|
|
90
90
|
},
|
|
91
91
|
isUpdatingMetamaskNotifications: {
|
|
92
92
|
includeInStateLogs: false,
|
|
93
93
|
persist: false,
|
|
94
|
-
|
|
94
|
+
includeInDebugSnapshot: false,
|
|
95
95
|
usedInUi: true,
|
|
96
96
|
},
|
|
97
97
|
isFetchingMetamaskNotifications: {
|
|
98
98
|
includeInStateLogs: false,
|
|
99
99
|
persist: false,
|
|
100
|
-
|
|
100
|
+
includeInDebugSnapshot: false,
|
|
101
101
|
usedInUi: true,
|
|
102
102
|
},
|
|
103
103
|
isUpdatingMetamaskNotificationsAccount: {
|
|
104
104
|
includeInStateLogs: false,
|
|
105
105
|
persist: false,
|
|
106
|
-
|
|
106
|
+
includeInDebugSnapshot: false,
|
|
107
107
|
usedInUi: true,
|
|
108
108
|
},
|
|
109
109
|
isCheckingAccountsPresence: {
|
|
110
110
|
includeInStateLogs: false,
|
|
111
111
|
persist: false,
|
|
112
|
-
|
|
112
|
+
includeInDebugSnapshot: false,
|
|
113
113
|
usedInUi: true,
|
|
114
114
|
},
|
|
115
115
|
};
|
|
@@ -153,29 +153,29 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
153
153
|
_NotificationServicesController_keyringController.set(this, {
|
|
154
154
|
isUnlocked: false,
|
|
155
155
|
setupLockedStateSubscriptions: (onUnlock) => {
|
|
156
|
-
const { isUnlocked } = this.
|
|
156
|
+
const { isUnlocked } = this.messenger.call('KeyringController:getState');
|
|
157
157
|
__classPrivateFieldGet(this, _NotificationServicesController_keyringController, "f").isUnlocked = isUnlocked;
|
|
158
|
-
this.
|
|
158
|
+
this.messenger.subscribe('KeyringController:unlock', () => {
|
|
159
159
|
__classPrivateFieldGet(this, _NotificationServicesController_keyringController, "f").isUnlocked = true;
|
|
160
160
|
// messaging system cannot await promises
|
|
161
161
|
// we don't need to wait for a result on this.
|
|
162
162
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
163
163
|
onUnlock();
|
|
164
164
|
});
|
|
165
|
-
this.
|
|
165
|
+
this.messenger.subscribe('KeyringController:lock', () => {
|
|
166
166
|
__classPrivateFieldGet(this, _NotificationServicesController_keyringController, "f").isUnlocked = false;
|
|
167
167
|
});
|
|
168
168
|
},
|
|
169
169
|
});
|
|
170
170
|
_NotificationServicesController_auth.set(this, {
|
|
171
171
|
getBearerToken: async () => {
|
|
172
|
-
return await this.
|
|
172
|
+
return await this.messenger.call('AuthenticationController:getBearerToken');
|
|
173
173
|
},
|
|
174
174
|
isSignedIn: () => {
|
|
175
|
-
return this.
|
|
175
|
+
return this.messenger.call('AuthenticationController:isSignedIn');
|
|
176
176
|
},
|
|
177
177
|
signIn: async () => {
|
|
178
|
-
return await this.
|
|
178
|
+
return await this.messenger.call('AuthenticationController:performSignIn');
|
|
179
179
|
},
|
|
180
180
|
});
|
|
181
181
|
_NotificationServicesController_pushNotifications.set(this, {
|
|
@@ -184,11 +184,11 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
184
184
|
// To ensure we subscribe to the most up-to-date notifications
|
|
185
185
|
isSetup: false,
|
|
186
186
|
subscribeToPushNotifications: async () => {
|
|
187
|
-
await this.
|
|
187
|
+
await this.messenger.call('NotificationServicesPushController:subscribeToPushNotifications');
|
|
188
188
|
},
|
|
189
189
|
enablePushNotifications: async (addresses) => {
|
|
190
190
|
try {
|
|
191
|
-
await this.
|
|
191
|
+
await this.messenger.call('NotificationServicesPushController:enablePushNotifications', addresses);
|
|
192
192
|
}
|
|
193
193
|
catch (e) {
|
|
194
194
|
loglevel_1.default.error('Silently failed to enable push notifications', e);
|
|
@@ -196,14 +196,14 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
196
196
|
},
|
|
197
197
|
disablePushNotifications: async () => {
|
|
198
198
|
try {
|
|
199
|
-
await this.
|
|
199
|
+
await this.messenger.call('NotificationServicesPushController:disablePushNotifications');
|
|
200
200
|
}
|
|
201
201
|
catch (e) {
|
|
202
202
|
loglevel_1.default.error('Silently failed to disable push notifications', e);
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
subscribe: () => {
|
|
206
|
-
this.
|
|
206
|
+
this.messenger.subscribe('NotificationServicesPushController:onNewNotifications', (notification) => {
|
|
207
207
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
208
208
|
this.updateMetamaskNotificationsList(notification);
|
|
209
209
|
});
|
|
@@ -237,7 +237,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
237
237
|
// Flag to ensure we only setup once
|
|
238
238
|
isNotificationAccountsSetup: false,
|
|
239
239
|
getNotificationAccounts: () => {
|
|
240
|
-
const { keyrings } = this.
|
|
240
|
+
const { keyrings } = this.messenger.call('KeyringController:getState');
|
|
241
241
|
const firstHDKeyring = keyrings.find((k) => k.type === keyring_controller_1.KeyringTypes.hd.toString());
|
|
242
242
|
const keyringAccounts = firstHDKeyring?.accounts ?? null;
|
|
243
243
|
return keyringAccounts;
|
|
@@ -300,7 +300,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
300
300
|
* And call effects to subscribe/unsubscribe to notifications.
|
|
301
301
|
*/
|
|
302
302
|
subscribe: () => {
|
|
303
|
-
this.
|
|
303
|
+
this.messenger.subscribe('KeyringController:stateChange', async (totalAccounts, prevTotalAccounts) => {
|
|
304
304
|
const hasTotalAccountsChanged = totalAccounts !== prevTotalAccounts;
|
|
305
305
|
if (!this.state.isNotificationServicesEnabled ||
|
|
306
306
|
!hasTotalAccountsChanged) {
|
|
@@ -610,7 +610,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
610
610
|
this.update((state) => {
|
|
611
611
|
state.metamaskNotificationsList = metamaskNotifications;
|
|
612
612
|
});
|
|
613
|
-
this.
|
|
613
|
+
this.messenger.publish(`${controllerName}:notificationsListUpdated`, this.state.metamaskNotificationsList);
|
|
614
614
|
__classPrivateFieldGet(this, _NotificationServicesController_instances, "m", _NotificationServicesController_setIsFetchingMetamaskNotifications).call(this, false);
|
|
615
615
|
return metamaskNotifications;
|
|
616
616
|
}
|
|
@@ -664,7 +664,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
664
664
|
for (const id of ids) {
|
|
665
665
|
await this.deleteNotificationById(id);
|
|
666
666
|
}
|
|
667
|
-
this.
|
|
667
|
+
this.messenger.publish(`${controllerName}:notificationsListUpdated`, this.state.metamaskNotificationsList);
|
|
668
668
|
}
|
|
669
669
|
/**
|
|
670
670
|
* Marks specified metamask notifications as read.
|
|
@@ -740,7 +740,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
740
740
|
return notification;
|
|
741
741
|
});
|
|
742
742
|
});
|
|
743
|
-
this.
|
|
743
|
+
this.messenger.publish(`${controllerName}:markNotificationsAsRead`, this.state.metamaskNotificationsList);
|
|
744
744
|
}
|
|
745
745
|
/**
|
|
746
746
|
* Updates the list of MetaMask notifications by adding a new notification at the beginning of the list.
|
|
@@ -765,7 +765,7 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
765
765
|
];
|
|
766
766
|
}
|
|
767
767
|
});
|
|
768
|
-
this.
|
|
768
|
+
this.messenger.publish(`${controllerName}:notificationsListUpdated`, this.state.metamaskNotificationsList);
|
|
769
769
|
}
|
|
770
770
|
}
|
|
771
771
|
/**
|
|
@@ -785,10 +785,10 @@ class NotificationServicesController extends base_controller_1.BaseController {
|
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
787
|
_NotificationServicesController_keyringController = new WeakMap(), _NotificationServicesController_auth = new WeakMap(), _NotificationServicesController_pushNotifications = new WeakMap(), _NotificationServicesController_accounts = new WeakMap(), _NotificationServicesController_featureAnnouncementEnv = new WeakMap(), _NotificationServicesController_instances = new WeakSet(), _NotificationServicesController_registerMessageHandlers = function _NotificationServicesController_registerMessageHandlers() {
|
|
788
|
-
this.
|
|
789
|
-
this.
|
|
790
|
-
this.
|
|
791
|
-
this.
|
|
788
|
+
this.messenger.registerActionHandler(`${controllerName}:updateMetamaskNotificationsList`, this.updateMetamaskNotificationsList.bind(this));
|
|
789
|
+
this.messenger.registerActionHandler(`${controllerName}:disableNotificationServices`, this.disableNotificationServices.bind(this));
|
|
790
|
+
this.messenger.registerActionHandler(`${controllerName}:getNotificationsByType`, this.getNotificationsByType.bind(this));
|
|
791
|
+
this.messenger.registerActionHandler(`${controllerName}:deleteNotificationsById`, this.deleteNotificationsById.bind(this));
|
|
792
792
|
}, _NotificationServicesController_clearLoadingStates = function _NotificationServicesController_clearLoadingStates() {
|
|
793
793
|
this.update((state) => {
|
|
794
794
|
state.isUpdatingMetamaskNotifications = false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationServicesController.cjs","sourceRoot":"","sources":["../../src/NotificationServicesController/NotificationServicesController.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n RestrictedMessenger,\n ControllerGetStateAction,\n ControllerStateChangeEvent,\n StateMetadata,\n} from '@metamask/base-controller';\nimport { BaseController } from '@metamask/base-controller';\nimport {\n isValidHexAddress,\n toChecksumHexAddress,\n} from '@metamask/controller-utils';\nimport {\n type KeyringControllerStateChangeEvent,\n type KeyringControllerGetStateAction,\n type KeyringControllerLockEvent,\n type KeyringControllerUnlockEvent,\n KeyringTypes,\n type KeyringControllerState,\n} from '@metamask/keyring-controller';\nimport type { AuthenticationController } from '@metamask/profile-sync-controller';\nimport { assert } from '@metamask/utils';\nimport log from 'loglevel';\n\nimport { TRIGGER_TYPES } from './constants/notification-schema';\nimport {\n processAndFilterNotifications,\n safeProcessNotification,\n} from './processors/process-notifications';\nimport * as FeatureNotifications from './services/feature-announcements';\nimport * as OnChainNotifications from './services/onchain-notifications';\nimport { createPerpOrderNotification } from './services/perp-notifications';\nimport type {\n INotification,\n MarkAsReadNotificationsParam,\n} from './types/notification/notification';\nimport type { OnChainRawNotification } from './types/on-chain-notification/on-chain-notification';\nimport type { OrderInput } from './types/perps';\nimport type {\n NotificationServicesPushControllerEnablePushNotificationsAction,\n NotificationServicesPushControllerDisablePushNotificationsAction,\n NotificationServicesPushControllerSubscribeToNotificationsAction,\n NotificationServicesPushControllerStateChangeEvent,\n NotificationServicesPushControllerOnNewNotificationEvent,\n} from '../NotificationServicesPushController';\n\n// Unique name for the controller\nconst controllerName = 'NotificationServicesController';\n\n/**\n * State shape for NotificationServicesController\n */\nexport type NotificationServicesControllerState = {\n /**\n * We store and manage accounts that have been seen/visted through the\n * account subscription. This allows us to track and add notifications for new accounts and not previous accounts added.\n */\n subscriptionAccountsSeen: string[];\n\n /**\n * Flag that indicates if the metamask notifications feature has been seen\n */\n isMetamaskNotificationsFeatureSeen: boolean;\n\n /**\n * Flag that indicates if the metamask notifications are enabled\n */\n isNotificationServicesEnabled: boolean;\n\n /**\n * Flag that indicates if the feature announcements are enabled\n */\n isFeatureAnnouncementsEnabled: boolean;\n\n /**\n * List of metamask notifications\n */\n metamaskNotificationsList: INotification[];\n\n /**\n * List of read metamask notifications\n */\n metamaskNotificationsReadList: string[];\n /**\n * Flag that indicates that the creating notifications is in progress\n */\n isUpdatingMetamaskNotifications: boolean;\n /**\n * Flag that indicates that the fetching notifications is in progress\n * This is used to show a loading spinner in the UI\n * when fetching notifications\n */\n isFetchingMetamaskNotifications: boolean;\n /**\n * Flag that indicates that the updating notifications for a specific address is in progress\n */\n isUpdatingMetamaskNotificationsAccount: string[];\n /**\n * Flag that indicates that the checking accounts presence is in progress\n */\n isCheckingAccountsPresence: boolean;\n};\n\nconst metadata: StateMetadata<NotificationServicesControllerState> = {\n subscriptionAccountsSeen: {\n includeInStateLogs: true,\n persist: true,\n anonymous: true,\n usedInUi: true,\n },\n\n isMetamaskNotificationsFeatureSeen: {\n includeInStateLogs: true,\n persist: true,\n anonymous: false,\n usedInUi: true,\n },\n isNotificationServicesEnabled: {\n includeInStateLogs: true,\n persist: true,\n anonymous: false,\n usedInUi: true,\n },\n isFeatureAnnouncementsEnabled: {\n includeInStateLogs: true,\n persist: true,\n anonymous: false,\n usedInUi: true,\n },\n metamaskNotificationsList: {\n includeInStateLogs: true,\n persist: true,\n anonymous: true,\n usedInUi: true,\n },\n metamaskNotificationsReadList: {\n includeInStateLogs: false,\n persist: true,\n anonymous: true,\n usedInUi: true,\n },\n isUpdatingMetamaskNotifications: {\n includeInStateLogs: false,\n persist: false,\n anonymous: false,\n usedInUi: true,\n },\n isFetchingMetamaskNotifications: {\n includeInStateLogs: false,\n persist: false,\n anonymous: false,\n usedInUi: true,\n },\n isUpdatingMetamaskNotificationsAccount: {\n includeInStateLogs: false,\n persist: false,\n anonymous: false,\n usedInUi: true,\n },\n isCheckingAccountsPresence: {\n includeInStateLogs: false,\n persist: false,\n anonymous: false,\n usedInUi: true,\n },\n};\nexport const defaultState: NotificationServicesControllerState = {\n subscriptionAccountsSeen: [],\n isMetamaskNotificationsFeatureSeen: false,\n isNotificationServicesEnabled: false,\n isFeatureAnnouncementsEnabled: false,\n metamaskNotificationsList: [],\n metamaskNotificationsReadList: [],\n isUpdatingMetamaskNotifications: false,\n isFetchingMetamaskNotifications: false,\n isUpdatingMetamaskNotificationsAccount: [],\n isCheckingAccountsPresence: false,\n};\n\nconst locallyPersistedNotificationTypes = new Set<TRIGGER_TYPES>([\n TRIGGER_TYPES.SNAP,\n]);\n\nexport type NotificationServicesControllerGetStateAction =\n ControllerGetStateAction<\n typeof controllerName,\n NotificationServicesControllerState\n >;\n\nexport type NotificationServicesControllerUpdateMetamaskNotificationsList = {\n type: `${typeof controllerName}:updateMetamaskNotificationsList`;\n handler: NotificationServicesController['updateMetamaskNotificationsList'];\n};\n\nexport type NotificationServicesControllerDisableNotificationServices = {\n type: `${typeof controllerName}:disableNotificationServices`;\n handler: NotificationServicesController['disableNotificationServices'];\n};\n\nexport type NotificationServicesControllerGetNotificationsByType = {\n type: `${typeof controllerName}:getNotificationsByType`;\n handler: NotificationServicesController['getNotificationsByType'];\n};\n\nexport type NotificationServicesControllerDeleteNotificationsById = {\n type: `${typeof controllerName}:deleteNotificationsById`;\n handler: NotificationServicesController['deleteNotificationsById'];\n};\n\n// Messenger Actions\nexport type Actions =\n | NotificationServicesControllerGetStateAction\n | NotificationServicesControllerUpdateMetamaskNotificationsList\n | NotificationServicesControllerDisableNotificationServices\n | NotificationServicesControllerGetNotificationsByType\n | NotificationServicesControllerDeleteNotificationsById;\n\n// Allowed Actions\nexport type AllowedActions =\n // Keyring Controller Requests\n | KeyringControllerGetStateAction\n // Auth Controller Requests\n | AuthenticationController.AuthenticationControllerGetBearerToken\n | AuthenticationController.AuthenticationControllerIsSignedIn\n | AuthenticationController.AuthenticationControllerPerformSignIn\n // Push Notifications Controller Requests\n | NotificationServicesPushControllerEnablePushNotificationsAction\n | NotificationServicesPushControllerDisablePushNotificationsAction\n | NotificationServicesPushControllerSubscribeToNotificationsAction;\n\n// Events\nexport type NotificationServicesControllerStateChangeEvent =\n ControllerStateChangeEvent<\n typeof controllerName,\n NotificationServicesControllerState\n >;\n\nexport type NotificationListUpdatedEvent = {\n type: `${typeof controllerName}:notificationsListUpdated`;\n payload: [INotification[]];\n};\n\nexport type MarkNotificationsAsReadEvent = {\n type: `${typeof controllerName}:markNotificationsAsRead`;\n payload: [INotification[]];\n};\n\n// Events\nexport type Events =\n | NotificationServicesControllerStateChangeEvent\n | NotificationListUpdatedEvent\n | MarkNotificationsAsReadEvent;\n\n// Allowed Events\nexport type AllowedEvents =\n // Keyring Events\n | KeyringControllerStateChangeEvent\n | KeyringControllerLockEvent\n | KeyringControllerUnlockEvent\n // Push Notification Events\n | NotificationServicesPushControllerOnNewNotificationEvent\n | NotificationServicesPushControllerStateChangeEvent;\n\n// Type for the messenger of NotificationServicesController\nexport type NotificationServicesControllerMessenger = RestrictedMessenger<\n typeof controllerName,\n Actions | AllowedActions,\n Events | AllowedEvents,\n AllowedActions['type'],\n AllowedEvents['type']\n>;\n\ntype FeatureAnnouncementEnv = {\n spaceId: string;\n accessToken: string;\n platform: 'extension' | 'mobile';\n platformVersion?: string;\n};\n\n/**\n * Controller that enables wallet notifications and feature announcements\n */\nexport default class NotificationServicesController extends BaseController<\n typeof controllerName,\n NotificationServicesControllerState,\n NotificationServicesControllerMessenger\n> {\n readonly #keyringController = {\n isUnlocked: false,\n\n setupLockedStateSubscriptions: (onUnlock: () => Promise<void>) => {\n const { isUnlocked } = this.messagingSystem.call(\n 'KeyringController:getState',\n );\n this.#keyringController.isUnlocked = isUnlocked;\n\n this.messagingSystem.subscribe('KeyringController:unlock', () => {\n this.#keyringController.isUnlocked = true;\n // messaging system cannot await promises\n // we don't need to wait for a result on this.\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n onUnlock();\n });\n\n this.messagingSystem.subscribe('KeyringController:lock', () => {\n this.#keyringController.isUnlocked = false;\n });\n },\n };\n\n readonly #auth = {\n getBearerToken: async () => {\n return await this.messagingSystem.call(\n 'AuthenticationController:getBearerToken',\n );\n },\n isSignedIn: () => {\n return this.messagingSystem.call('AuthenticationController:isSignedIn');\n },\n signIn: async () => {\n return await this.messagingSystem.call(\n 'AuthenticationController:performSignIn',\n );\n },\n };\n\n readonly #pushNotifications = {\n // Flag to check is notifications have been setup when the browser/extension is initialized.\n // We want to re-initialize push notifications when the browser/extension is refreshed\n // To ensure we subscribe to the most up-to-date notifications\n isSetup: false,\n\n subscribeToPushNotifications: async () => {\n await this.messagingSystem.call(\n 'NotificationServicesPushController:subscribeToPushNotifications',\n );\n },\n enablePushNotifications: async (addresses: string[]) => {\n try {\n await this.messagingSystem.call(\n 'NotificationServicesPushController:enablePushNotifications',\n addresses,\n );\n } catch (e) {\n log.error('Silently failed to enable push notifications', e);\n }\n },\n disablePushNotifications: async () => {\n try {\n await this.messagingSystem.call(\n 'NotificationServicesPushController:disablePushNotifications',\n );\n } catch (e) {\n log.error('Silently failed to disable push notifications', e);\n }\n },\n subscribe: () => {\n this.messagingSystem.subscribe(\n 'NotificationServicesPushController:onNewNotifications',\n (notification) => {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.updateMetamaskNotificationsList(notification);\n },\n );\n },\n initializePushNotifications: async () => {\n if (!this.state.isNotificationServicesEnabled) {\n return;\n }\n if (this.#pushNotifications.isSetup) {\n return;\n }\n\n // If wallet is unlocked, we can create a fresh push subscription\n // Otherwise we can subscribe to original subscription\n try {\n if (!this.#keyringController.isUnlocked) {\n throw new Error('Keyring is locked');\n }\n await this.enablePushNotifications();\n this.#pushNotifications.isSetup = true;\n } catch {\n await this.#pushNotifications\n .subscribeToPushNotifications()\n .catch(() => {\n // do nothing\n });\n }\n },\n };\n\n readonly #accounts = {\n // Flag to ensure we only setup once\n isNotificationAccountsSetup: false,\n\n getNotificationAccounts: () => {\n const { keyrings } = this.messagingSystem.call(\n 'KeyringController:getState',\n );\n const firstHDKeyring = keyrings.find(\n (k) => k.type === KeyringTypes.hd.toString(),\n );\n const keyringAccounts = firstHDKeyring?.accounts ?? null;\n return keyringAccounts;\n },\n\n /**\n * Used to get list of addresses from keyring (wallet addresses)\n *\n * @returns addresses removed, added, and latest list of addresses\n */\n listAccounts: () => {\n // Get previous and current account sets\n const nonChecksumAccounts = this.#accounts.getNotificationAccounts();\n if (!nonChecksumAccounts) {\n return {\n accountsAdded: [],\n accountsRemoved: [],\n accounts: [],\n };\n }\n\n const accounts = nonChecksumAccounts\n .map((a) => toChecksumHexAddress(a))\n .filter((a) => isValidHexAddress(a));\n const currentAccountsSet = new Set(accounts);\n const prevAccountsSet = new Set(this.state.subscriptionAccountsSeen);\n\n // Invalid value you cannot have zero accounts\n // Only occurs when the Accounts controller is initializing.\n if (accounts.length === 0) {\n return {\n accountsAdded: [],\n accountsRemoved: [],\n accounts: [],\n };\n }\n\n // Calculate added and removed addresses\n const accountsAdded = accounts.filter((a) => !prevAccountsSet.has(a));\n const accountsRemoved = [...prevAccountsSet.values()].filter(\n (a) => !currentAccountsSet.has(a),\n );\n\n // Update accounts seen\n this.update((state) => {\n state.subscriptionAccountsSeen = [...currentAccountsSet];\n });\n\n return {\n accountsAdded,\n accountsRemoved,\n accounts,\n };\n },\n\n /**\n * Initializes the cache/previous list. This is handy so we have an accurate in-mem state of the previous list of accounts.\n */\n initialize: (): void => {\n if (\n this.#keyringController.isUnlocked &&\n !this.#accounts.isNotificationAccountsSetup\n ) {\n this.#accounts.listAccounts();\n this.#accounts.isNotificationAccountsSetup = true;\n }\n },\n\n /**\n * Subscription to any state change in the keyring controller (aka wallet accounts).\n * We can call the `listAccounts` defined above to find out about any accounts added, removed\n * And call effects to subscribe/unsubscribe to notifications.\n */\n subscribe: () => {\n this.messagingSystem.subscribe(\n 'KeyringController:stateChange',\n\n async (totalAccounts, prevTotalAccounts) => {\n const hasTotalAccountsChanged = totalAccounts !== prevTotalAccounts;\n if (\n !this.state.isNotificationServicesEnabled ||\n !hasTotalAccountsChanged\n ) {\n return;\n }\n\n const { accountsAdded, accountsRemoved } =\n this.#accounts.listAccounts();\n\n const promises: Promise<unknown>[] = [];\n if (accountsAdded.length > 0) {\n promises.push(this.enableAccounts(accountsAdded));\n }\n if (accountsRemoved.length > 0) {\n promises.push(this.disableAccounts(accountsRemoved));\n }\n await Promise.allSettled(promises);\n },\n (state: KeyringControllerState) => {\n return (\n state?.keyrings?.flatMap?.((keyring) => keyring.accounts)?.length ??\n 0\n );\n },\n );\n },\n };\n\n readonly #featureAnnouncementEnv: FeatureAnnouncementEnv;\n\n /**\n * Creates a NotificationServicesController instance.\n *\n * @param args - The arguments to this function.\n * @param args.messenger - Messenger used to communicate with BaseV2 controller.\n * @param args.state - Initial state to set on this controller.\n * @param args.env - environment variables for a given controller.\n * @param args.env.featureAnnouncements - env variables for feature announcements.\n * @param args.env.isPushIntegrated - toggle push notifications on/off if client has integrated them.\n */\n constructor({\n messenger,\n state,\n env,\n }: {\n messenger: NotificationServicesControllerMessenger;\n state?: Partial<NotificationServicesControllerState>;\n env: {\n featureAnnouncements: FeatureAnnouncementEnv;\n isPushIntegrated?: boolean;\n };\n }) {\n super({\n messenger,\n metadata,\n name: controllerName,\n state: { ...defaultState, ...state },\n });\n\n this.#featureAnnouncementEnv = env.featureAnnouncements;\n this.#registerMessageHandlers();\n this.#clearLoadingStates();\n }\n\n init() {\n this.#keyringController.setupLockedStateSubscriptions(async () => {\n this.#accounts.initialize();\n await this.#pushNotifications.initializePushNotifications();\n });\n\n this.#accounts.initialize();\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.#pushNotifications.initializePushNotifications();\n this.#accounts.subscribe();\n this.#pushNotifications.subscribe();\n }\n\n #registerMessageHandlers(): void {\n this.messagingSystem.registerActionHandler(\n `${controllerName}:updateMetamaskNotificationsList`,\n this.updateMetamaskNotificationsList.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:disableNotificationServices`,\n this.disableNotificationServices.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:getNotificationsByType`,\n this.getNotificationsByType.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:deleteNotificationsById`,\n this.deleteNotificationsById.bind(this),\n );\n }\n\n #clearLoadingStates(): void {\n this.update((state) => {\n state.isUpdatingMetamaskNotifications = false;\n state.isCheckingAccountsPresence = false;\n state.isFetchingMetamaskNotifications = false;\n state.isUpdatingMetamaskNotificationsAccount = [];\n });\n }\n\n #assertAuthEnabled() {\n if (!this.#auth.isSignedIn()) {\n this.update((state) => {\n state.isNotificationServicesEnabled = false;\n });\n throw new Error('User is not signed in.');\n }\n }\n\n async #enableAuth() {\n const isSignedIn = this.#auth.isSignedIn();\n if (!isSignedIn) {\n await this.#auth.signIn();\n }\n }\n\n async #getBearerToken() {\n this.#assertAuthEnabled();\n\n const bearerToken = await this.#auth.getBearerToken();\n\n if (!bearerToken) {\n throw new Error('Missing BearerToken');\n }\n\n return { bearerToken };\n }\n\n /**\n * Sets the state of notification creation process.\n *\n * This method updates the `isUpdatingMetamaskNotifications` state, which can be used to indicate\n * whether the notification creation process is currently active or not. This is useful\n * for UI elements that need to reflect the state of ongoing operations, such as loading\n * indicators or disabled buttons during processing.\n *\n * @param isUpdatingMetamaskNotifications - A boolean value representing the new state of the notification creation process.\n */\n #setIsUpdatingMetamaskNotifications(\n isUpdatingMetamaskNotifications: boolean,\n ) {\n this.update((state) => {\n state.isUpdatingMetamaskNotifications = isUpdatingMetamaskNotifications;\n });\n }\n\n /**\n * Updates the state to indicate whether fetching of MetaMask notifications is in progress.\n *\n * This method is used to set the `isFetchingMetamaskNotifications` state, which can be utilized\n * to show or hide loading indicators in the UI when notifications are being fetched.\n *\n * @param isFetchingMetamaskNotifications - A boolean value representing the fetching state.\n */\n #setIsFetchingMetamaskNotifications(\n isFetchingMetamaskNotifications: boolean,\n ) {\n this.update((state) => {\n state.isFetchingMetamaskNotifications = isFetchingMetamaskNotifications;\n });\n }\n\n /**\n * Updates the state to indicate that the checking of accounts presence is in progress.\n *\n * This method modifies the `isCheckingAccountsPresence` state, which can be used to manage UI elements\n * that depend on the status of account presence checks, such as displaying loading indicators or disabling\n * buttons while the check is ongoing.\n *\n * @param isCheckingAccountsPresence - A boolean value indicating whether the account presence check is currently active.\n */\n #setIsCheckingAccountsPresence(isCheckingAccountsPresence: boolean) {\n this.update((state) => {\n state.isCheckingAccountsPresence = isCheckingAccountsPresence;\n });\n }\n\n /**\n * Updates the state to indicate that account updates are in progress.\n * Removes duplicate accounts before updating the state.\n *\n * @param accounts - The accounts being updated.\n */\n #updateUpdatingAccountsState(accounts: string[]) {\n this.update((state) => {\n const uniqueAccounts = new Set([\n ...state.isUpdatingMetamaskNotificationsAccount,\n ...accounts,\n ]);\n state.isUpdatingMetamaskNotificationsAccount = Array.from(uniqueAccounts);\n });\n }\n\n /**\n * Clears the state indicating that account updates are complete.\n *\n * @param accounts - The accounts that have finished updating.\n */\n #clearUpdatingAccountsState(accounts: string[]) {\n this.update((state) => {\n state.isUpdatingMetamaskNotificationsAccount =\n state.isUpdatingMetamaskNotificationsAccount.filter(\n (existingAccount) => !accounts.includes(existingAccount),\n );\n });\n }\n\n /**\n * Public method to expose enabling push notifications\n */\n public async enablePushNotifications() {\n try {\n const { bearerToken } = await this.#getBearerToken();\n const { accounts } = this.#accounts.listAccounts();\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n const addresses = addressesWithNotifications\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n if (addresses.length > 0) {\n await this.#pushNotifications.enablePushNotifications(addresses);\n }\n } catch (e) {\n log.error('Failed to enable push notifications', e);\n }\n }\n\n /**\n * Public method to expose disabling push notifications\n */\n public async disablePushNotifications() {\n await this.#pushNotifications.disablePushNotifications();\n }\n\n public async checkAccountsPresence(\n accounts: string[],\n ): Promise<Record<string, boolean>> {\n try {\n this.#setIsCheckingAccountsPresence(true);\n\n // Retrieve user storage\n const { bearerToken } = await this.#getBearerToken();\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n\n const result: Record<string, boolean> = {};\n addressesWithNotifications.forEach((a) => {\n result[a.address] = a.enabled;\n });\n return result;\n } catch (error) {\n log.error('Failed to check accounts presence', error);\n throw error;\n } finally {\n this.#setIsCheckingAccountsPresence(false);\n }\n }\n\n /**\n * Sets the enabled state of feature announcements.\n *\n * **Action** - used in the notification settings to enable/disable feature announcements.\n *\n * @param featureAnnouncementsEnabled - A boolean value indicating the desired enabled state of the feature announcements.\n * @async\n * @throws {Error} If fails to update\n */\n public async setFeatureAnnouncementsEnabled(\n featureAnnouncementsEnabled: boolean,\n ) {\n try {\n this.update((s) => {\n s.isFeatureAnnouncementsEnabled = featureAnnouncementsEnabled;\n });\n } catch (e) {\n log.error('Unable to toggle feature announcements', e);\n throw new Error('Unable to toggle feature announcements');\n }\n }\n\n /**\n * This creates/re-creates on-chain triggers defined in User Storage.\n *\n * **Action** - Used during Sign In / Enabling of notifications.\n *\n * @param opts - optional options to mutate this functionality\n * @param opts.resetNotifications - this will not use the users stored preferences, and instead re-create notification triggers\n * It will help in case uses get into a corrupted state or wants to wipe their notifications.\n * @returns The updated or newly created user storage.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async createOnChainTriggers(opts?: {\n resetNotifications?: boolean;\n }): Promise<void> {\n try {\n this.#setIsUpdatingMetamaskNotifications(true);\n\n const { bearerToken } = await this.#getBearerToken();\n\n const { accounts } = this.#accounts.listAccounts();\n\n // 1. See if has enabled notifications before\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n\n // Notifications API can return array with addresses set to false\n // So assert that at least one address is enabled\n let accountsWithNotifications = addressesWithNotifications\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n\n // 2. Enable Notifications (if no accounts subscribed or we are resetting)\n if (accountsWithNotifications.length === 0 || opts?.resetNotifications) {\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: true })),\n );\n accountsWithNotifications = accounts;\n }\n\n // 3. Lazily enable push notifications (FCM may take some time, so keeps UI unblocked)\n this.#pushNotifications\n .enablePushNotifications(accountsWithNotifications)\n .catch(() => {\n // Do Nothing\n });\n\n // Update the state of the controller\n this.update((state) => {\n state.isNotificationServicesEnabled = true;\n state.isFeatureAnnouncementsEnabled = true;\n state.isMetamaskNotificationsFeatureSeen = true;\n });\n } catch (err) {\n log.error('Failed to create On Chain triggers', err);\n throw new Error('Failed to create On Chain triggers');\n } finally {\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n }\n\n /**\n * Enables all MetaMask notifications for the user.\n * This is identical flow when initializing notifications for the first time.\n *\n * @throws {Error} If there is an error during the process of enabling notifications.\n */\n public async enableMetamaskNotifications() {\n try {\n this.#setIsUpdatingMetamaskNotifications(true);\n await this.#enableAuth();\n await this.createOnChainTriggers();\n } catch (e) {\n log.error('Unable to enable notifications', e);\n throw new Error('Unable to enable notifications');\n } finally {\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n }\n\n /**\n * Disables all MetaMask notifications for the user.\n * This method ensures that the user is authenticated, retrieves all linked accounts,\n * and disables on-chain triggers for each account. It also sets the global notification\n * settings for MetaMask, feature announcements to false.\n *\n * @throws {Error} If the user is not authenticated or if there is an error during the process.\n */\n public async disableNotificationServices() {\n this.#setIsUpdatingMetamaskNotifications(true);\n\n // Attempt Disable Push Notifications\n try {\n await this.#pushNotifications.disablePushNotifications();\n } catch {\n // Do nothing\n }\n\n // Update State: remove non-permitted notifications & disable flags\n const snapNotifications = this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === TRIGGER_TYPES.SNAP,\n );\n this.update((state) => {\n state.isNotificationServicesEnabled = false;\n state.isFeatureAnnouncementsEnabled = false;\n // reassigning the notifications list with just snaps\n // since the disable shouldn't affect snaps notifications\n state.metamaskNotificationsList = snapNotifications;\n });\n\n // Finish Updating State\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n\n /**\n * Deletes on-chain triggers associated with a specific account/s.\n * This method performs several key operations:\n * 1. Validates Auth\n * 2. Deletes accounts\n * (note) We do not need to look through push notifications as we've deleted triggers\n *\n * **Action** - When a user disables notifications for a given account in settings.\n *\n * @param accounts - The account for which on-chain triggers are to be deleted.\n * @returns A promise that resolves to void or an object containing a success message.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async disableAccounts(accounts: string[]): Promise<void> {\n try {\n this.#updateUpdatingAccountsState(accounts);\n // Get and Validate BearerToken and User Storage Key\n const { bearerToken } = await this.#getBearerToken();\n\n // Delete these UUIDs (Mutates User Storage)\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: false })),\n );\n } catch (err) {\n log.error('Failed to delete OnChain triggers', err);\n throw new Error('Failed to delete OnChain triggers');\n } finally {\n this.#clearUpdatingAccountsState(accounts);\n }\n }\n\n /**\n * Updates/Creates on-chain triggers for a specific account.\n *\n * This method performs several key operations:\n * 1. Validates Auth & Storage\n * 2. Finds and creates any missing triggers associated with the account\n * 3. Enables any related push notifications\n * 4. Updates Storage to reflect new state.\n *\n * **Action** - When a user enables notifications for an account\n *\n * @param accounts - List of accounts you want to update.\n * @returns A promise that resolves to the updated user storage.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async enableAccounts(accounts: string[]): Promise<void> {\n try {\n this.#updateUpdatingAccountsState(accounts);\n\n const { bearerToken } = await this.#getBearerToken();\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: true })),\n );\n } catch (err) {\n log.error('Failed to update OnChain triggers', err);\n throw new Error('Failed to update OnChain triggers');\n } finally {\n this.#clearUpdatingAccountsState(accounts);\n }\n }\n\n /**\n * Fetches the list of metamask notifications.\n * This includes OnChain notifications; Feature Announcements; and Snap Notifications.\n *\n * **Action** - When a user views the notification list page/dropdown\n *\n * @param previewToken - the preview token to use if needed\n * @returns A promise that resolves to the list of notifications.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async fetchAndUpdateMetamaskNotifications(\n previewToken?: string,\n ): Promise<INotification[]> {\n try {\n this.#setIsFetchingMetamaskNotifications(true);\n\n // This is used by Feature Announcement & On Chain\n // Not used by Snaps\n const isGlobalNotifsEnabled = this.state.isNotificationServicesEnabled;\n\n // Raw Feature Notifications\n const rawAnnouncements =\n isGlobalNotifsEnabled && this.state.isFeatureAnnouncementsEnabled\n ? await FeatureNotifications.getFeatureAnnouncementNotifications(\n this.#featureAnnouncementEnv,\n previewToken,\n ).catch(() => [])\n : [];\n\n // Raw On Chain Notifications\n const rawOnChainNotifications: OnChainRawNotification[] = [];\n if (isGlobalNotifsEnabled) {\n try {\n const { bearerToken } = await this.#getBearerToken();\n const { accounts } = this.#accounts.listAccounts();\n const addressesWithNotifications = (\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n )\n )\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n const notifications =\n await OnChainNotifications.getOnChainNotifications(\n bearerToken,\n addressesWithNotifications,\n ).catch(() => []);\n rawOnChainNotifications.push(...notifications);\n } catch {\n // Do nothing\n }\n }\n\n // Snap Notifications (original)\n // We do not want to remove them\n const snapNotifications = this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === TRIGGER_TYPES.SNAP,\n );\n\n const readIds = this.state.metamaskNotificationsReadList;\n\n // Combine Notifications\n const metamaskNotifications: INotification[] = [\n ...processAndFilterNotifications(rawAnnouncements, readIds),\n ...processAndFilterNotifications(rawOnChainNotifications, readIds),\n ...snapNotifications,\n ];\n\n // Sort Notifications\n metamaskNotifications.sort(\n (a, b) =>\n new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime(),\n );\n\n // Update State\n this.update((state) => {\n state.metamaskNotificationsList = metamaskNotifications;\n });\n\n this.messagingSystem.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n\n this.#setIsFetchingMetamaskNotifications(false);\n return metamaskNotifications;\n } catch (err) {\n this.#setIsFetchingMetamaskNotifications(false);\n log.error('Failed to fetch notifications', err);\n throw new Error('Failed to fetch notifications');\n }\n }\n\n /**\n * Gets the specified type of notifications from state.\n *\n * @param type - The trigger type.\n * @returns An array of notifications of the passed in type.\n * @throws Throws an error if an invalid trigger type is passed.\n */\n public getNotificationsByType(type: TRIGGER_TYPES) {\n assert(\n Object.values(TRIGGER_TYPES).includes(type),\n 'Invalid trigger type.',\n );\n return this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === type,\n );\n }\n\n /**\n * Used to delete a notification by id.\n *\n * Note: This function should only be used for notifications that are stored\n * in this controller directly, currently only snaps notifications.\n *\n * @param id - The id of the notification to delete.\n */\n public async deleteNotificationById(id: string) {\n const fetchedNotification = this.state.metamaskNotificationsList.find(\n (notification) => notification.id === id,\n );\n\n assert(\n fetchedNotification,\n 'The notification to be deleted does not exist.',\n );\n\n assert(\n locallyPersistedNotificationTypes.has(fetchedNotification.type),\n `The notification type of \"${\n // notifications are guaranteed to have type properties which equate to strings\n fetchedNotification.type as string\n }\" is not locally persisted, only the following types can use this function: ${[\n ...locallyPersistedNotificationTypes,\n ].join(', ')}.`,\n );\n\n const newList = this.state.metamaskNotificationsList.filter(\n (notification) => notification.id !== id,\n );\n\n this.update((state) => {\n state.metamaskNotificationsList = newList;\n });\n }\n\n /**\n * Used to batch delete notifications by id.\n *\n * Note: This function should only be used for notifications that are stored\n * in this controller directly, currently only snaps notifications.\n *\n * @param ids - The ids of the notifications to delete.\n */\n public async deleteNotificationsById(ids: string[]) {\n for (const id of ids) {\n await this.deleteNotificationById(id);\n }\n\n this.messagingSystem.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n }\n\n /**\n * Marks specified metamask notifications as read.\n *\n * @param notifications - An array of notifications to be marked as read. Each notification should include its type and read status.\n * @returns A promise that resolves when the operation is complete.\n */\n public async markMetamaskNotificationsAsRead(\n notifications: MarkAsReadNotificationsParam,\n ): Promise<void> {\n let onchainNotificationIds: string[] = [];\n let featureAnnouncementNotificationIds: string[] = [];\n let snapNotificationIds: string[] = [];\n\n try {\n const [\n onChainNotifications,\n featureAnnouncementNotifications,\n snapNotifications,\n ] = notifications.reduce<\n [\n MarkAsReadNotificationsParam,\n MarkAsReadNotificationsParam,\n MarkAsReadNotificationsParam,\n ]\n >(\n (allNotifications, notification) => {\n if (!notification.isRead) {\n switch (notification.type) {\n case TRIGGER_TYPES.FEATURES_ANNOUNCEMENT:\n allNotifications[1].push(notification);\n break;\n case TRIGGER_TYPES.SNAP:\n allNotifications[2].push(notification);\n break;\n default:\n allNotifications[0].push(notification);\n }\n }\n return allNotifications;\n },\n [[], [], []],\n );\n\n // Mark On-Chain Notifications as Read\n if (onChainNotifications.length > 0) {\n const bearerToken = await this.#auth.getBearerToken();\n\n if (bearerToken) {\n onchainNotificationIds = onChainNotifications.map(\n (notification) => notification.id,\n );\n await OnChainNotifications.markNotificationsAsRead(\n bearerToken,\n onchainNotificationIds,\n ).catch(() => {\n onchainNotificationIds = [];\n log.warn('Unable to mark onchain notifications as read');\n });\n }\n }\n\n // Mark Off-Chain notifications as Read\n if (featureAnnouncementNotifications.length > 0) {\n featureAnnouncementNotificationIds =\n featureAnnouncementNotifications.map(\n (notification) => notification.id,\n );\n }\n\n if (snapNotifications.length > 0) {\n snapNotificationIds = snapNotifications.map(\n (notification) => notification.id,\n );\n }\n } catch (err) {\n log.warn('Something failed when marking notifications as read', err);\n }\n\n // Update the state (state is also used on counter & badge)\n this.update((state) => {\n const currentReadList = state.metamaskNotificationsReadList;\n const newReadIds = [\n ...featureAnnouncementNotificationIds,\n ...snapNotificationIds,\n ];\n state.metamaskNotificationsReadList = [\n ...new Set([...currentReadList, ...newReadIds]),\n ];\n\n state.metamaskNotificationsList = state.metamaskNotificationsList.map(\n (notification: INotification) => {\n if (\n newReadIds.includes(notification.id) ||\n onchainNotificationIds.includes(notification.id)\n ) {\n if (notification.type === TRIGGER_TYPES.SNAP) {\n return {\n ...notification,\n isRead: true,\n readDate: new Date().toISOString(),\n };\n }\n return { ...notification, isRead: true };\n }\n return notification;\n },\n );\n });\n\n this.messagingSystem.publish(\n `${controllerName}:markNotificationsAsRead`,\n this.state.metamaskNotificationsList,\n );\n }\n\n /**\n * Updates the list of MetaMask notifications by adding a new notification at the beginning of the list.\n * This method ensures that the most recent notification is displayed first in the UI.\n *\n * @param notification - The new notification object to be added to the list.\n * @returns A promise that resolves when the notification list has been successfully updated.\n */\n public async updateMetamaskNotificationsList(\n notification: INotification,\n ): Promise<void> {\n if (\n this.state.metamaskNotificationsList.some((n) => n.id === notification.id)\n ) {\n return;\n }\n\n const processedNotification = safeProcessNotification(notification);\n\n if (processedNotification) {\n this.update((state) => {\n const existingNotificationIds = new Set(\n state.metamaskNotificationsList.map((n) => n.id),\n );\n // Add the new notification only if its ID is not already present in the list\n if (!existingNotificationIds.has(processedNotification.id)) {\n state.metamaskNotificationsList = [\n processedNotification,\n ...state.metamaskNotificationsList,\n ];\n }\n });\n\n this.messagingSystem.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n }\n }\n\n /**\n * Creates an perp order notification subscription.\n * Requires notifications and auth to be enabled to start receiving this notifications\n *\n * @param input perp input\n */\n public async sendPerpPlaceOrderNotification(input: OrderInput) {\n try {\n const { bearerToken } = await this.#getBearerToken();\n await createPerpOrderNotification(bearerToken, input);\n } catch {\n // Do Nothing\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"NotificationServicesController.cjs","sourceRoot":"","sources":["../../src/NotificationServicesController/NotificationServicesController.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ControllerGetStateAction,\n ControllerStateChangeEvent,\n StateMetadata,\n} from '@metamask/base-controller';\nimport { BaseController } from '@metamask/base-controller';\nimport {\n isValidHexAddress,\n toChecksumHexAddress,\n} from '@metamask/controller-utils';\nimport {\n type KeyringControllerStateChangeEvent,\n type KeyringControllerGetStateAction,\n type KeyringControllerLockEvent,\n type KeyringControllerUnlockEvent,\n KeyringTypes,\n type KeyringControllerState,\n} from '@metamask/keyring-controller';\nimport type { Messenger } from '@metamask/messenger';\nimport type { AuthenticationController } from '@metamask/profile-sync-controller';\nimport { assert } from '@metamask/utils';\nimport log from 'loglevel';\n\nimport { TRIGGER_TYPES } from './constants/notification-schema';\nimport {\n processAndFilterNotifications,\n safeProcessNotification,\n} from './processors/process-notifications';\nimport * as FeatureNotifications from './services/feature-announcements';\nimport * as OnChainNotifications from './services/onchain-notifications';\nimport { createPerpOrderNotification } from './services/perp-notifications';\nimport type {\n INotification,\n MarkAsReadNotificationsParam,\n} from './types/notification/notification';\nimport type { OnChainRawNotification } from './types/on-chain-notification/on-chain-notification';\nimport type { OrderInput } from './types/perps';\nimport type {\n NotificationServicesPushControllerEnablePushNotificationsAction,\n NotificationServicesPushControllerDisablePushNotificationsAction,\n NotificationServicesPushControllerSubscribeToNotificationsAction,\n NotificationServicesPushControllerStateChangeEvent,\n NotificationServicesPushControllerOnNewNotificationEvent,\n} from '../NotificationServicesPushController';\n\n// Unique name for the controller\nconst controllerName = 'NotificationServicesController';\n\n/**\n * State shape for NotificationServicesController\n */\nexport type NotificationServicesControllerState = {\n /**\n * We store and manage accounts that have been seen/visited through the\n * account subscription. This allows us to track and add notifications for new accounts and not previous accounts added.\n */\n subscriptionAccountsSeen: string[];\n\n /**\n * Flag that indicates if the metamask notifications feature has been seen\n */\n isMetamaskNotificationsFeatureSeen: boolean;\n\n /**\n * Flag that indicates if the metamask notifications are enabled\n */\n isNotificationServicesEnabled: boolean;\n\n /**\n * Flag that indicates if the feature announcements are enabled\n */\n isFeatureAnnouncementsEnabled: boolean;\n\n /**\n * List of metamask notifications\n */\n metamaskNotificationsList: INotification[];\n\n /**\n * List of read metamask notifications\n */\n metamaskNotificationsReadList: string[];\n /**\n * Flag that indicates that the creating notifications is in progress\n */\n isUpdatingMetamaskNotifications: boolean;\n /**\n * Flag that indicates that the fetching notifications is in progress\n * This is used to show a loading spinner in the UI\n * when fetching notifications\n */\n isFetchingMetamaskNotifications: boolean;\n /**\n * Flag that indicates that the updating notifications for a specific address is in progress\n */\n isUpdatingMetamaskNotificationsAccount: string[];\n /**\n * Flag that indicates that the checking accounts presence is in progress\n */\n isCheckingAccountsPresence: boolean;\n};\n\nconst metadata: StateMetadata<NotificationServicesControllerState> = {\n subscriptionAccountsSeen: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n\n isMetamaskNotificationsFeatureSeen: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n isNotificationServicesEnabled: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n isFeatureAnnouncementsEnabled: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n metamaskNotificationsList: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n metamaskNotificationsReadList: {\n includeInStateLogs: false,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n isUpdatingMetamaskNotifications: {\n includeInStateLogs: false,\n persist: false,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n isFetchingMetamaskNotifications: {\n includeInStateLogs: false,\n persist: false,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n isUpdatingMetamaskNotificationsAccount: {\n includeInStateLogs: false,\n persist: false,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n isCheckingAccountsPresence: {\n includeInStateLogs: false,\n persist: false,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n};\nexport const defaultState: NotificationServicesControllerState = {\n subscriptionAccountsSeen: [],\n isMetamaskNotificationsFeatureSeen: false,\n isNotificationServicesEnabled: false,\n isFeatureAnnouncementsEnabled: false,\n metamaskNotificationsList: [],\n metamaskNotificationsReadList: [],\n isUpdatingMetamaskNotifications: false,\n isFetchingMetamaskNotifications: false,\n isUpdatingMetamaskNotificationsAccount: [],\n isCheckingAccountsPresence: false,\n};\n\nconst locallyPersistedNotificationTypes = new Set<TRIGGER_TYPES>([\n TRIGGER_TYPES.SNAP,\n]);\n\nexport type NotificationServicesControllerGetStateAction =\n ControllerGetStateAction<\n typeof controllerName,\n NotificationServicesControllerState\n >;\n\nexport type NotificationServicesControllerUpdateMetamaskNotificationsList = {\n type: `${typeof controllerName}:updateMetamaskNotificationsList`;\n handler: NotificationServicesController['updateMetamaskNotificationsList'];\n};\n\nexport type NotificationServicesControllerDisableNotificationServices = {\n type: `${typeof controllerName}:disableNotificationServices`;\n handler: NotificationServicesController['disableNotificationServices'];\n};\n\nexport type NotificationServicesControllerGetNotificationsByType = {\n type: `${typeof controllerName}:getNotificationsByType`;\n handler: NotificationServicesController['getNotificationsByType'];\n};\n\nexport type NotificationServicesControllerDeleteNotificationsById = {\n type: `${typeof controllerName}:deleteNotificationsById`;\n handler: NotificationServicesController['deleteNotificationsById'];\n};\n\n// Messenger Actions\nexport type Actions =\n | NotificationServicesControllerGetStateAction\n | NotificationServicesControllerUpdateMetamaskNotificationsList\n | NotificationServicesControllerDisableNotificationServices\n | NotificationServicesControllerGetNotificationsByType\n | NotificationServicesControllerDeleteNotificationsById;\n\n// Allowed Actions\ntype AllowedActions =\n // Keyring Controller Requests\n | KeyringControllerGetStateAction\n // Auth Controller Requests\n | AuthenticationController.AuthenticationControllerGetBearerToken\n | AuthenticationController.AuthenticationControllerIsSignedIn\n | AuthenticationController.AuthenticationControllerPerformSignIn\n // Push Notifications Controller Requests\n | NotificationServicesPushControllerEnablePushNotificationsAction\n | NotificationServicesPushControllerDisablePushNotificationsAction\n | NotificationServicesPushControllerSubscribeToNotificationsAction;\n\n// Events\nexport type NotificationServicesControllerStateChangeEvent =\n ControllerStateChangeEvent<\n typeof controllerName,\n NotificationServicesControllerState\n >;\n\nexport type NotificationListUpdatedEvent = {\n type: `${typeof controllerName}:notificationsListUpdated`;\n payload: [INotification[]];\n};\n\nexport type MarkNotificationsAsReadEvent = {\n type: `${typeof controllerName}:markNotificationsAsRead`;\n payload: [INotification[]];\n};\n\n// Events\nexport type Events =\n | NotificationServicesControllerStateChangeEvent\n | NotificationListUpdatedEvent\n | MarkNotificationsAsReadEvent;\n\n// Allowed Events\ntype AllowedEvents =\n // Keyring Events\n | KeyringControllerStateChangeEvent\n | KeyringControllerLockEvent\n | KeyringControllerUnlockEvent\n // Push Notification Events\n | NotificationServicesPushControllerOnNewNotificationEvent\n | NotificationServicesPushControllerStateChangeEvent;\n\n// Type for the messenger of NotificationServicesController\nexport type NotificationServicesControllerMessenger = Messenger<\n typeof controllerName,\n Actions | AllowedActions,\n Events | AllowedEvents\n>;\n\ntype FeatureAnnouncementEnv = {\n spaceId: string;\n accessToken: string;\n platform: 'extension' | 'mobile';\n platformVersion?: string;\n};\n\n/**\n * Controller that enables wallet notifications and feature announcements\n */\nexport default class NotificationServicesController extends BaseController<\n typeof controllerName,\n NotificationServicesControllerState,\n NotificationServicesControllerMessenger\n> {\n readonly #keyringController = {\n isUnlocked: false,\n\n setupLockedStateSubscriptions: (onUnlock: () => Promise<void>) => {\n const { isUnlocked } = this.messenger.call('KeyringController:getState');\n this.#keyringController.isUnlocked = isUnlocked;\n\n this.messenger.subscribe('KeyringController:unlock', () => {\n this.#keyringController.isUnlocked = true;\n // messaging system cannot await promises\n // we don't need to wait for a result on this.\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n onUnlock();\n });\n\n this.messenger.subscribe('KeyringController:lock', () => {\n this.#keyringController.isUnlocked = false;\n });\n },\n };\n\n readonly #auth = {\n getBearerToken: async () => {\n return await this.messenger.call(\n 'AuthenticationController:getBearerToken',\n );\n },\n isSignedIn: () => {\n return this.messenger.call('AuthenticationController:isSignedIn');\n },\n signIn: async () => {\n return await this.messenger.call(\n 'AuthenticationController:performSignIn',\n );\n },\n };\n\n readonly #pushNotifications = {\n // Flag to check is notifications have been setup when the browser/extension is initialized.\n // We want to re-initialize push notifications when the browser/extension is refreshed\n // To ensure we subscribe to the most up-to-date notifications\n isSetup: false,\n\n subscribeToPushNotifications: async () => {\n await this.messenger.call(\n 'NotificationServicesPushController:subscribeToPushNotifications',\n );\n },\n enablePushNotifications: async (addresses: string[]) => {\n try {\n await this.messenger.call(\n 'NotificationServicesPushController:enablePushNotifications',\n addresses,\n );\n } catch (e) {\n log.error('Silently failed to enable push notifications', e);\n }\n },\n disablePushNotifications: async () => {\n try {\n await this.messenger.call(\n 'NotificationServicesPushController:disablePushNotifications',\n );\n } catch (e) {\n log.error('Silently failed to disable push notifications', e);\n }\n },\n subscribe: () => {\n this.messenger.subscribe(\n 'NotificationServicesPushController:onNewNotifications',\n (notification) => {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.updateMetamaskNotificationsList(notification);\n },\n );\n },\n initializePushNotifications: async () => {\n if (!this.state.isNotificationServicesEnabled) {\n return;\n }\n if (this.#pushNotifications.isSetup) {\n return;\n }\n\n // If wallet is unlocked, we can create a fresh push subscription\n // Otherwise we can subscribe to original subscription\n try {\n if (!this.#keyringController.isUnlocked) {\n throw new Error('Keyring is locked');\n }\n await this.enablePushNotifications();\n this.#pushNotifications.isSetup = true;\n } catch {\n await this.#pushNotifications\n .subscribeToPushNotifications()\n .catch(() => {\n // do nothing\n });\n }\n },\n };\n\n readonly #accounts = {\n // Flag to ensure we only setup once\n isNotificationAccountsSetup: false,\n\n getNotificationAccounts: () => {\n const { keyrings } = this.messenger.call('KeyringController:getState');\n const firstHDKeyring = keyrings.find(\n (k) => k.type === KeyringTypes.hd.toString(),\n );\n const keyringAccounts = firstHDKeyring?.accounts ?? null;\n return keyringAccounts;\n },\n\n /**\n * Used to get list of addresses from keyring (wallet addresses)\n *\n * @returns addresses removed, added, and latest list of addresses\n */\n listAccounts: () => {\n // Get previous and current account sets\n const nonChecksumAccounts = this.#accounts.getNotificationAccounts();\n if (!nonChecksumAccounts) {\n return {\n accountsAdded: [],\n accountsRemoved: [],\n accounts: [],\n };\n }\n\n const accounts = nonChecksumAccounts\n .map((a) => toChecksumHexAddress(a))\n .filter((a) => isValidHexAddress(a));\n const currentAccountsSet = new Set(accounts);\n const prevAccountsSet = new Set(this.state.subscriptionAccountsSeen);\n\n // Invalid value you cannot have zero accounts\n // Only occurs when the Accounts controller is initializing.\n if (accounts.length === 0) {\n return {\n accountsAdded: [],\n accountsRemoved: [],\n accounts: [],\n };\n }\n\n // Calculate added and removed addresses\n const accountsAdded = accounts.filter((a) => !prevAccountsSet.has(a));\n const accountsRemoved = [...prevAccountsSet.values()].filter(\n (a) => !currentAccountsSet.has(a),\n );\n\n // Update accounts seen\n this.update((state) => {\n state.subscriptionAccountsSeen = [...currentAccountsSet];\n });\n\n return {\n accountsAdded,\n accountsRemoved,\n accounts,\n };\n },\n\n /**\n * Initializes the cache/previous list. This is handy so we have an accurate in-mem state of the previous list of accounts.\n */\n initialize: (): void => {\n if (\n this.#keyringController.isUnlocked &&\n !this.#accounts.isNotificationAccountsSetup\n ) {\n this.#accounts.listAccounts();\n this.#accounts.isNotificationAccountsSetup = true;\n }\n },\n\n /**\n * Subscription to any state change in the keyring controller (aka wallet accounts).\n * We can call the `listAccounts` defined above to find out about any accounts added, removed\n * And call effects to subscribe/unsubscribe to notifications.\n */\n subscribe: () => {\n this.messenger.subscribe(\n 'KeyringController:stateChange',\n\n async (totalAccounts, prevTotalAccounts) => {\n const hasTotalAccountsChanged = totalAccounts !== prevTotalAccounts;\n if (\n !this.state.isNotificationServicesEnabled ||\n !hasTotalAccountsChanged\n ) {\n return;\n }\n\n const { accountsAdded, accountsRemoved } =\n this.#accounts.listAccounts();\n\n const promises: Promise<unknown>[] = [];\n if (accountsAdded.length > 0) {\n promises.push(this.enableAccounts(accountsAdded));\n }\n if (accountsRemoved.length > 0) {\n promises.push(this.disableAccounts(accountsRemoved));\n }\n await Promise.allSettled(promises);\n },\n (state: KeyringControllerState) => {\n return (\n state?.keyrings?.flatMap?.((keyring) => keyring.accounts)?.length ??\n 0\n );\n },\n );\n },\n };\n\n readonly #featureAnnouncementEnv: FeatureAnnouncementEnv;\n\n /**\n * Creates a NotificationServicesController instance.\n *\n * @param args - The arguments to this function.\n * @param args.messenger - Messenger used to communicate with BaseV2 controller.\n * @param args.state - Initial state to set on this controller.\n * @param args.env - environment variables for a given controller.\n * @param args.env.featureAnnouncements - env variables for feature announcements.\n * @param args.env.isPushIntegrated - toggle push notifications on/off if client has integrated them.\n */\n constructor({\n messenger,\n state,\n env,\n }: {\n messenger: NotificationServicesControllerMessenger;\n state?: Partial<NotificationServicesControllerState>;\n env: {\n featureAnnouncements: FeatureAnnouncementEnv;\n isPushIntegrated?: boolean;\n };\n }) {\n super({\n messenger,\n metadata,\n name: controllerName,\n state: { ...defaultState, ...state },\n });\n\n this.#featureAnnouncementEnv = env.featureAnnouncements;\n this.#registerMessageHandlers();\n this.#clearLoadingStates();\n }\n\n init() {\n this.#keyringController.setupLockedStateSubscriptions(async () => {\n this.#accounts.initialize();\n await this.#pushNotifications.initializePushNotifications();\n });\n\n this.#accounts.initialize();\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.#pushNotifications.initializePushNotifications();\n this.#accounts.subscribe();\n this.#pushNotifications.subscribe();\n }\n\n #registerMessageHandlers(): void {\n this.messenger.registerActionHandler(\n `${controllerName}:updateMetamaskNotificationsList`,\n this.updateMetamaskNotificationsList.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:disableNotificationServices`,\n this.disableNotificationServices.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:getNotificationsByType`,\n this.getNotificationsByType.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:deleteNotificationsById`,\n this.deleteNotificationsById.bind(this),\n );\n }\n\n #clearLoadingStates(): void {\n this.update((state) => {\n state.isUpdatingMetamaskNotifications = false;\n state.isCheckingAccountsPresence = false;\n state.isFetchingMetamaskNotifications = false;\n state.isUpdatingMetamaskNotificationsAccount = [];\n });\n }\n\n #assertAuthEnabled() {\n if (!this.#auth.isSignedIn()) {\n this.update((state) => {\n state.isNotificationServicesEnabled = false;\n });\n throw new Error('User is not signed in.');\n }\n }\n\n async #enableAuth() {\n const isSignedIn = this.#auth.isSignedIn();\n if (!isSignedIn) {\n await this.#auth.signIn();\n }\n }\n\n async #getBearerToken() {\n this.#assertAuthEnabled();\n\n const bearerToken = await this.#auth.getBearerToken();\n\n if (!bearerToken) {\n throw new Error('Missing BearerToken');\n }\n\n return { bearerToken };\n }\n\n /**\n * Sets the state of notification creation process.\n *\n * This method updates the `isUpdatingMetamaskNotifications` state, which can be used to indicate\n * whether the notification creation process is currently active or not. This is useful\n * for UI elements that need to reflect the state of ongoing operations, such as loading\n * indicators or disabled buttons during processing.\n *\n * @param isUpdatingMetamaskNotifications - A boolean value representing the new state of the notification creation process.\n */\n #setIsUpdatingMetamaskNotifications(\n isUpdatingMetamaskNotifications: boolean,\n ) {\n this.update((state) => {\n state.isUpdatingMetamaskNotifications = isUpdatingMetamaskNotifications;\n });\n }\n\n /**\n * Updates the state to indicate whether fetching of MetaMask notifications is in progress.\n *\n * This method is used to set the `isFetchingMetamaskNotifications` state, which can be utilized\n * to show or hide loading indicators in the UI when notifications are being fetched.\n *\n * @param isFetchingMetamaskNotifications - A boolean value representing the fetching state.\n */\n #setIsFetchingMetamaskNotifications(\n isFetchingMetamaskNotifications: boolean,\n ) {\n this.update((state) => {\n state.isFetchingMetamaskNotifications = isFetchingMetamaskNotifications;\n });\n }\n\n /**\n * Updates the state to indicate that the checking of accounts presence is in progress.\n *\n * This method modifies the `isCheckingAccountsPresence` state, which can be used to manage UI elements\n * that depend on the status of account presence checks, such as displaying loading indicators or disabling\n * buttons while the check is ongoing.\n *\n * @param isCheckingAccountsPresence - A boolean value indicating whether the account presence check is currently active.\n */\n #setIsCheckingAccountsPresence(isCheckingAccountsPresence: boolean) {\n this.update((state) => {\n state.isCheckingAccountsPresence = isCheckingAccountsPresence;\n });\n }\n\n /**\n * Updates the state to indicate that account updates are in progress.\n * Removes duplicate accounts before updating the state.\n *\n * @param accounts - The accounts being updated.\n */\n #updateUpdatingAccountsState(accounts: string[]) {\n this.update((state) => {\n const uniqueAccounts = new Set([\n ...state.isUpdatingMetamaskNotificationsAccount,\n ...accounts,\n ]);\n state.isUpdatingMetamaskNotificationsAccount = Array.from(uniqueAccounts);\n });\n }\n\n /**\n * Clears the state indicating that account updates are complete.\n *\n * @param accounts - The accounts that have finished updating.\n */\n #clearUpdatingAccountsState(accounts: string[]) {\n this.update((state) => {\n state.isUpdatingMetamaskNotificationsAccount =\n state.isUpdatingMetamaskNotificationsAccount.filter(\n (existingAccount) => !accounts.includes(existingAccount),\n );\n });\n }\n\n /**\n * Public method to expose enabling push notifications\n */\n public async enablePushNotifications() {\n try {\n const { bearerToken } = await this.#getBearerToken();\n const { accounts } = this.#accounts.listAccounts();\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n const addresses = addressesWithNotifications\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n if (addresses.length > 0) {\n await this.#pushNotifications.enablePushNotifications(addresses);\n }\n } catch (e) {\n log.error('Failed to enable push notifications', e);\n }\n }\n\n /**\n * Public method to expose disabling push notifications\n */\n public async disablePushNotifications() {\n await this.#pushNotifications.disablePushNotifications();\n }\n\n public async checkAccountsPresence(\n accounts: string[],\n ): Promise<Record<string, boolean>> {\n try {\n this.#setIsCheckingAccountsPresence(true);\n\n // Retrieve user storage\n const { bearerToken } = await this.#getBearerToken();\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n\n const result: Record<string, boolean> = {};\n addressesWithNotifications.forEach((a) => {\n result[a.address] = a.enabled;\n });\n return result;\n } catch (error) {\n log.error('Failed to check accounts presence', error);\n throw error;\n } finally {\n this.#setIsCheckingAccountsPresence(false);\n }\n }\n\n /**\n * Sets the enabled state of feature announcements.\n *\n * **Action** - used in the notification settings to enable/disable feature announcements.\n *\n * @param featureAnnouncementsEnabled - A boolean value indicating the desired enabled state of the feature announcements.\n * @async\n * @throws {Error} If fails to update\n */\n public async setFeatureAnnouncementsEnabled(\n featureAnnouncementsEnabled: boolean,\n ) {\n try {\n this.update((s) => {\n s.isFeatureAnnouncementsEnabled = featureAnnouncementsEnabled;\n });\n } catch (e) {\n log.error('Unable to toggle feature announcements', e);\n throw new Error('Unable to toggle feature announcements');\n }\n }\n\n /**\n * This creates/re-creates on-chain triggers defined in User Storage.\n *\n * **Action** - Used during Sign In / Enabling of notifications.\n *\n * @param opts - optional options to mutate this functionality\n * @param opts.resetNotifications - this will not use the users stored preferences, and instead re-create notification triggers\n * It will help in case uses get into a corrupted state or wants to wipe their notifications.\n * @returns The updated or newly created user storage.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async createOnChainTriggers(opts?: {\n resetNotifications?: boolean;\n }): Promise<void> {\n try {\n this.#setIsUpdatingMetamaskNotifications(true);\n\n const { bearerToken } = await this.#getBearerToken();\n\n const { accounts } = this.#accounts.listAccounts();\n\n // 1. See if has enabled notifications before\n const addressesWithNotifications =\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n );\n\n // Notifications API can return array with addresses set to false\n // So assert that at least one address is enabled\n let accountsWithNotifications = addressesWithNotifications\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n\n // 2. Enable Notifications (if no accounts subscribed or we are resetting)\n if (accountsWithNotifications.length === 0 || opts?.resetNotifications) {\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: true })),\n );\n accountsWithNotifications = accounts;\n }\n\n // 3. Lazily enable push notifications (FCM may take some time, so keeps UI unblocked)\n this.#pushNotifications\n .enablePushNotifications(accountsWithNotifications)\n .catch(() => {\n // Do Nothing\n });\n\n // Update the state of the controller\n this.update((state) => {\n state.isNotificationServicesEnabled = true;\n state.isFeatureAnnouncementsEnabled = true;\n state.isMetamaskNotificationsFeatureSeen = true;\n });\n } catch (err) {\n log.error('Failed to create On Chain triggers', err);\n throw new Error('Failed to create On Chain triggers');\n } finally {\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n }\n\n /**\n * Enables all MetaMask notifications for the user.\n * This is identical flow when initializing notifications for the first time.\n *\n * @throws {Error} If there is an error during the process of enabling notifications.\n */\n public async enableMetamaskNotifications() {\n try {\n this.#setIsUpdatingMetamaskNotifications(true);\n await this.#enableAuth();\n await this.createOnChainTriggers();\n } catch (e) {\n log.error('Unable to enable notifications', e);\n throw new Error('Unable to enable notifications');\n } finally {\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n }\n\n /**\n * Disables all MetaMask notifications for the user.\n * This method ensures that the user is authenticated, retrieves all linked accounts,\n * and disables on-chain triggers for each account. It also sets the global notification\n * settings for MetaMask, feature announcements to false.\n *\n * @throws {Error} If the user is not authenticated or if there is an error during the process.\n */\n public async disableNotificationServices() {\n this.#setIsUpdatingMetamaskNotifications(true);\n\n // Attempt Disable Push Notifications\n try {\n await this.#pushNotifications.disablePushNotifications();\n } catch {\n // Do nothing\n }\n\n // Update State: remove non-permitted notifications & disable flags\n const snapNotifications = this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === TRIGGER_TYPES.SNAP,\n );\n this.update((state) => {\n state.isNotificationServicesEnabled = false;\n state.isFeatureAnnouncementsEnabled = false;\n // reassigning the notifications list with just snaps\n // since the disable shouldn't affect snaps notifications\n state.metamaskNotificationsList = snapNotifications;\n });\n\n // Finish Updating State\n this.#setIsUpdatingMetamaskNotifications(false);\n }\n\n /**\n * Deletes on-chain triggers associated with a specific account/s.\n * This method performs several key operations:\n * 1. Validates Auth\n * 2. Deletes accounts\n * (note) We do not need to look through push notifications as we've deleted triggers\n *\n * **Action** - When a user disables notifications for a given account in settings.\n *\n * @param accounts - The account for which on-chain triggers are to be deleted.\n * @returns A promise that resolves to void or an object containing a success message.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async disableAccounts(accounts: string[]): Promise<void> {\n try {\n this.#updateUpdatingAccountsState(accounts);\n // Get and Validate BearerToken and User Storage Key\n const { bearerToken } = await this.#getBearerToken();\n\n // Delete these UUIDs (Mutates User Storage)\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: false })),\n );\n } catch (err) {\n log.error('Failed to delete OnChain triggers', err);\n throw new Error('Failed to delete OnChain triggers');\n } finally {\n this.#clearUpdatingAccountsState(accounts);\n }\n }\n\n /**\n * Updates/Creates on-chain triggers for a specific account.\n *\n * This method performs several key operations:\n * 1. Validates Auth & Storage\n * 2. Finds and creates any missing triggers associated with the account\n * 3. Enables any related push notifications\n * 4. Updates Storage to reflect new state.\n *\n * **Action** - When a user enables notifications for an account\n *\n * @param accounts - List of accounts you want to update.\n * @returns A promise that resolves to the updated user storage.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async enableAccounts(accounts: string[]): Promise<void> {\n try {\n this.#updateUpdatingAccountsState(accounts);\n\n const { bearerToken } = await this.#getBearerToken();\n await OnChainNotifications.updateOnChainNotifications(\n bearerToken,\n accounts.map((address) => ({ address, enabled: true })),\n );\n } catch (err) {\n log.error('Failed to update OnChain triggers', err);\n throw new Error('Failed to update OnChain triggers');\n } finally {\n this.#clearUpdatingAccountsState(accounts);\n }\n }\n\n /**\n * Fetches the list of metamask notifications.\n * This includes OnChain notifications; Feature Announcements; and Snap Notifications.\n *\n * **Action** - When a user views the notification list page/dropdown\n *\n * @param previewToken - the preview token to use if needed\n * @returns A promise that resolves to the list of notifications.\n * @throws {Error} Throws an error if unauthenticated or from other operations.\n */\n public async fetchAndUpdateMetamaskNotifications(\n previewToken?: string,\n ): Promise<INotification[]> {\n try {\n this.#setIsFetchingMetamaskNotifications(true);\n\n // This is used by Feature Announcement & On Chain\n // Not used by Snaps\n const isGlobalNotifsEnabled = this.state.isNotificationServicesEnabled;\n\n // Raw Feature Notifications\n const rawAnnouncements =\n isGlobalNotifsEnabled && this.state.isFeatureAnnouncementsEnabled\n ? await FeatureNotifications.getFeatureAnnouncementNotifications(\n this.#featureAnnouncementEnv,\n previewToken,\n ).catch(() => [])\n : [];\n\n // Raw On Chain Notifications\n const rawOnChainNotifications: OnChainRawNotification[] = [];\n if (isGlobalNotifsEnabled) {\n try {\n const { bearerToken } = await this.#getBearerToken();\n const { accounts } = this.#accounts.listAccounts();\n const addressesWithNotifications = (\n await OnChainNotifications.getOnChainNotificationsConfigCached(\n bearerToken,\n accounts,\n )\n )\n .filter((a) => Boolean(a.enabled))\n .map((a) => a.address);\n const notifications =\n await OnChainNotifications.getOnChainNotifications(\n bearerToken,\n addressesWithNotifications,\n ).catch(() => []);\n rawOnChainNotifications.push(...notifications);\n } catch {\n // Do nothing\n }\n }\n\n // Snap Notifications (original)\n // We do not want to remove them\n const snapNotifications = this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === TRIGGER_TYPES.SNAP,\n );\n\n const readIds = this.state.metamaskNotificationsReadList;\n\n // Combine Notifications\n const metamaskNotifications: INotification[] = [\n ...processAndFilterNotifications(rawAnnouncements, readIds),\n ...processAndFilterNotifications(rawOnChainNotifications, readIds),\n ...snapNotifications,\n ];\n\n // Sort Notifications\n metamaskNotifications.sort(\n (a, b) =>\n new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime(),\n );\n\n // Update State\n this.update((state) => {\n state.metamaskNotificationsList = metamaskNotifications;\n });\n\n this.messenger.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n\n this.#setIsFetchingMetamaskNotifications(false);\n return metamaskNotifications;\n } catch (err) {\n this.#setIsFetchingMetamaskNotifications(false);\n log.error('Failed to fetch notifications', err);\n throw new Error('Failed to fetch notifications');\n }\n }\n\n /**\n * Gets the specified type of notifications from state.\n *\n * @param type - The trigger type.\n * @returns An array of notifications of the passed in type.\n * @throws Throws an error if an invalid trigger type is passed.\n */\n public getNotificationsByType(type: TRIGGER_TYPES) {\n assert(\n Object.values(TRIGGER_TYPES).includes(type),\n 'Invalid trigger type.',\n );\n return this.state.metamaskNotificationsList.filter(\n (notification) => notification.type === type,\n );\n }\n\n /**\n * Used to delete a notification by id.\n *\n * Note: This function should only be used for notifications that are stored\n * in this controller directly, currently only snaps notifications.\n *\n * @param id - The id of the notification to delete.\n */\n public async deleteNotificationById(id: string) {\n const fetchedNotification = this.state.metamaskNotificationsList.find(\n (notification) => notification.id === id,\n );\n\n assert(\n fetchedNotification,\n 'The notification to be deleted does not exist.',\n );\n\n assert(\n locallyPersistedNotificationTypes.has(fetchedNotification.type),\n `The notification type of \"${\n // notifications are guaranteed to have type properties which equate to strings\n fetchedNotification.type as string\n }\" is not locally persisted, only the following types can use this function: ${[\n ...locallyPersistedNotificationTypes,\n ].join(', ')}.`,\n );\n\n const newList = this.state.metamaskNotificationsList.filter(\n (notification) => notification.id !== id,\n );\n\n this.update((state) => {\n state.metamaskNotificationsList = newList;\n });\n }\n\n /**\n * Used to batch delete notifications by id.\n *\n * Note: This function should only be used for notifications that are stored\n * in this controller directly, currently only snaps notifications.\n *\n * @param ids - The ids of the notifications to delete.\n */\n public async deleteNotificationsById(ids: string[]) {\n for (const id of ids) {\n await this.deleteNotificationById(id);\n }\n\n this.messenger.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n }\n\n /**\n * Marks specified metamask notifications as read.\n *\n * @param notifications - An array of notifications to be marked as read. Each notification should include its type and read status.\n * @returns A promise that resolves when the operation is complete.\n */\n public async markMetamaskNotificationsAsRead(\n notifications: MarkAsReadNotificationsParam,\n ): Promise<void> {\n let onchainNotificationIds: string[] = [];\n let featureAnnouncementNotificationIds: string[] = [];\n let snapNotificationIds: string[] = [];\n\n try {\n const [\n onChainNotifications,\n featureAnnouncementNotifications,\n snapNotifications,\n ] = notifications.reduce<\n [\n MarkAsReadNotificationsParam,\n MarkAsReadNotificationsParam,\n MarkAsReadNotificationsParam,\n ]\n >(\n (allNotifications, notification) => {\n if (!notification.isRead) {\n switch (notification.type) {\n case TRIGGER_TYPES.FEATURES_ANNOUNCEMENT:\n allNotifications[1].push(notification);\n break;\n case TRIGGER_TYPES.SNAP:\n allNotifications[2].push(notification);\n break;\n default:\n allNotifications[0].push(notification);\n }\n }\n return allNotifications;\n },\n [[], [], []],\n );\n\n // Mark On-Chain Notifications as Read\n if (onChainNotifications.length > 0) {\n const bearerToken = await this.#auth.getBearerToken();\n\n if (bearerToken) {\n onchainNotificationIds = onChainNotifications.map(\n (notification) => notification.id,\n );\n await OnChainNotifications.markNotificationsAsRead(\n bearerToken,\n onchainNotificationIds,\n ).catch(() => {\n onchainNotificationIds = [];\n log.warn('Unable to mark onchain notifications as read');\n });\n }\n }\n\n // Mark Off-Chain notifications as Read\n if (featureAnnouncementNotifications.length > 0) {\n featureAnnouncementNotificationIds =\n featureAnnouncementNotifications.map(\n (notification) => notification.id,\n );\n }\n\n if (snapNotifications.length > 0) {\n snapNotificationIds = snapNotifications.map(\n (notification) => notification.id,\n );\n }\n } catch (err) {\n log.warn('Something failed when marking notifications as read', err);\n }\n\n // Update the state (state is also used on counter & badge)\n this.update((state) => {\n const currentReadList = state.metamaskNotificationsReadList;\n const newReadIds = [\n ...featureAnnouncementNotificationIds,\n ...snapNotificationIds,\n ];\n state.metamaskNotificationsReadList = [\n ...new Set([...currentReadList, ...newReadIds]),\n ];\n\n state.metamaskNotificationsList = state.metamaskNotificationsList.map(\n (notification: INotification) => {\n if (\n newReadIds.includes(notification.id) ||\n onchainNotificationIds.includes(notification.id)\n ) {\n if (notification.type === TRIGGER_TYPES.SNAP) {\n return {\n ...notification,\n isRead: true,\n readDate: new Date().toISOString(),\n };\n }\n return { ...notification, isRead: true };\n }\n return notification;\n },\n );\n });\n\n this.messenger.publish(\n `${controllerName}:markNotificationsAsRead`,\n this.state.metamaskNotificationsList,\n );\n }\n\n /**\n * Updates the list of MetaMask notifications by adding a new notification at the beginning of the list.\n * This method ensures that the most recent notification is displayed first in the UI.\n *\n * @param notification - The new notification object to be added to the list.\n * @returns A promise that resolves when the notification list has been successfully updated.\n */\n public async updateMetamaskNotificationsList(\n notification: INotification,\n ): Promise<void> {\n if (\n this.state.metamaskNotificationsList.some((n) => n.id === notification.id)\n ) {\n return;\n }\n\n const processedNotification = safeProcessNotification(notification);\n\n if (processedNotification) {\n this.update((state) => {\n const existingNotificationIds = new Set(\n state.metamaskNotificationsList.map((n) => n.id),\n );\n // Add the new notification only if its ID is not already present in the list\n if (!existingNotificationIds.has(processedNotification.id)) {\n state.metamaskNotificationsList = [\n processedNotification,\n ...state.metamaskNotificationsList,\n ];\n }\n });\n\n this.messenger.publish(\n `${controllerName}:notificationsListUpdated`,\n this.state.metamaskNotificationsList,\n );\n }\n }\n\n /**\n * Creates an perp order notification subscription.\n * Requires notifications and auth to be enabled to start receiving this notifications\n *\n * @param input perp input\n */\n public async sendPerpPlaceOrderNotification(input: OrderInput) {\n try {\n const { bearerToken } = await this.#getBearerToken();\n await createPerpOrderNotification(bearerToken, input);\n } catch {\n // Do Nothing\n }\n }\n}\n"]}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ControllerGetStateAction, ControllerStateChangeEvent } from "@metamask/base-controller";
|
|
2
2
|
import { BaseController } from "@metamask/base-controller";
|
|
3
3
|
import { type KeyringControllerStateChangeEvent, type KeyringControllerGetStateAction, type KeyringControllerLockEvent, type KeyringControllerUnlockEvent } from "@metamask/keyring-controller";
|
|
4
|
+
import type { Messenger } from "@metamask/messenger";
|
|
4
5
|
import type { AuthenticationController } from "@metamask/profile-sync-controller";
|
|
5
6
|
import { TRIGGER_TYPES } from "./constants/notification-schema.cjs";
|
|
6
7
|
import type { INotification, MarkAsReadNotificationsParam } from "./types/notification/notification.cjs";
|
|
@@ -12,7 +13,7 @@ declare const controllerName = "NotificationServicesController";
|
|
|
12
13
|
*/
|
|
13
14
|
export type NotificationServicesControllerState = {
|
|
14
15
|
/**
|
|
15
|
-
* We store and manage accounts that have been seen/
|
|
16
|
+
* We store and manage accounts that have been seen/visited through the
|
|
16
17
|
* account subscription. This allows us to track and add notifications for new accounts and not previous accounts added.
|
|
17
18
|
*/
|
|
18
19
|
subscriptionAccountsSeen: string[];
|
|
@@ -74,7 +75,7 @@ export type NotificationServicesControllerDeleteNotificationsById = {
|
|
|
74
75
|
handler: NotificationServicesController['deleteNotificationsById'];
|
|
75
76
|
};
|
|
76
77
|
export type Actions = NotificationServicesControllerGetStateAction | NotificationServicesControllerUpdateMetamaskNotificationsList | NotificationServicesControllerDisableNotificationServices | NotificationServicesControllerGetNotificationsByType | NotificationServicesControllerDeleteNotificationsById;
|
|
77
|
-
|
|
78
|
+
type AllowedActions = KeyringControllerGetStateAction | AuthenticationController.AuthenticationControllerGetBearerToken | AuthenticationController.AuthenticationControllerIsSignedIn | AuthenticationController.AuthenticationControllerPerformSignIn | NotificationServicesPushControllerEnablePushNotificationsAction | NotificationServicesPushControllerDisablePushNotificationsAction | NotificationServicesPushControllerSubscribeToNotificationsAction;
|
|
78
79
|
export type NotificationServicesControllerStateChangeEvent = ControllerStateChangeEvent<typeof controllerName, NotificationServicesControllerState>;
|
|
79
80
|
export type NotificationListUpdatedEvent = {
|
|
80
81
|
type: `${typeof controllerName}:notificationsListUpdated`;
|
|
@@ -85,8 +86,8 @@ export type MarkNotificationsAsReadEvent = {
|
|
|
85
86
|
payload: [INotification[]];
|
|
86
87
|
};
|
|
87
88
|
export type Events = NotificationServicesControllerStateChangeEvent | NotificationListUpdatedEvent | MarkNotificationsAsReadEvent;
|
|
88
|
-
|
|
89
|
-
export type NotificationServicesControllerMessenger =
|
|
89
|
+
type AllowedEvents = KeyringControllerStateChangeEvent | KeyringControllerLockEvent | KeyringControllerUnlockEvent | NotificationServicesPushControllerOnNewNotificationEvent | NotificationServicesPushControllerStateChangeEvent;
|
|
90
|
+
export type NotificationServicesControllerMessenger = Messenger<typeof controllerName, Actions | AllowedActions, Events | AllowedEvents>;
|
|
90
91
|
type FeatureAnnouncementEnv = {
|
|
91
92
|
spaceId: string;
|
|
92
93
|
accessToken: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationServicesController.d.cts","sourceRoot":"","sources":["../../src/NotificationServicesController/NotificationServicesController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,
|
|
1
|
+
{"version":3,"file":"NotificationServicesController.d.cts","sourceRoot":"","sources":["../../src/NotificationServicesController/NotificationServicesController.ts"],"names":[],"mappings":"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"}
|