@stream-io/video-react-native-sdk 1.29.1-beta.0 → 1.29.2

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.
Files changed (211) hide show
  1. package/CHANGELOG.md +3133 -0
  2. package/android/src/main/AndroidManifest.xml +1 -8
  3. package/android/src/main/AndroidManifestNew.xml +0 -11
  4. package/android/src/main/java/com/streamvideo/reactnative/StreamVideoReactNativeModule.kt +5 -42
  5. package/android/src/main/java/com/streamvideo/reactnative/audio/utils/WebRtcAudioUtils.kt +6 -70
  6. package/android/src/main/java/com/streamvideo/reactnative/callmanager/StreamInCallManagerModule.kt +4 -6
  7. package/android/src/main/java/com/streamvideo/reactnative/util/CallAliveServiceChecker.kt +95 -0
  8. package/dist/commonjs/hooks/push/index.js +2 -0
  9. package/dist/commonjs/hooks/push/index.js.map +1 -1
  10. package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js +160 -0
  11. package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -0
  12. package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js +31 -18
  13. package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  14. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js +67 -0
  15. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js.map +1 -0
  16. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js +97 -64
  17. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  18. package/dist/commonjs/index.js +0 -1
  19. package/dist/commonjs/index.js.map +1 -1
  20. package/dist/commonjs/modules/call-manager/CallManager.js +0 -26
  21. package/dist/commonjs/modules/call-manager/CallManager.js.map +1 -1
  22. package/dist/commonjs/providers/StreamCall/index.js +6 -6
  23. package/dist/commonjs/providers/StreamCall/index.js.map +1 -1
  24. package/dist/commonjs/utils/StreamVideoRN/index.js +21 -33
  25. package/dist/commonjs/utils/StreamVideoRN/index.js.map +1 -1
  26. package/dist/commonjs/utils/internal/registerSDKGlobals.js +3 -52
  27. package/dist/commonjs/utils/internal/registerSDKGlobals.js.map +1 -1
  28. package/dist/commonjs/utils/push/android.js +202 -155
  29. package/dist/commonjs/utils/push/android.js.map +1 -1
  30. package/dist/commonjs/utils/push/internal/ios.js +34 -17
  31. package/dist/commonjs/utils/push/internal/ios.js.map +1 -1
  32. package/dist/commonjs/utils/push/internal/rxSubjects.js +45 -1
  33. package/dist/commonjs/utils/push/internal/rxSubjects.js.map +1 -1
  34. package/dist/commonjs/utils/push/internal/utils.js +20 -32
  35. package/dist/commonjs/utils/push/internal/utils.js.map +1 -1
  36. package/dist/commonjs/utils/push/ios.js.map +1 -1
  37. package/dist/commonjs/utils/push/libs/callkeep.js +17 -0
  38. package/dist/commonjs/utils/push/libs/callkeep.js.map +1 -0
  39. package/dist/commonjs/utils/push/libs/index.js +19 -8
  40. package/dist/commonjs/utils/push/libs/index.js.map +1 -1
  41. package/dist/commonjs/utils/push/libs/notifee/index.js +19 -0
  42. package/dist/commonjs/utils/push/libs/notifee/index.js.map +1 -1
  43. package/dist/commonjs/utils/push/libs/voipPushNotification.js +17 -0
  44. package/dist/commonjs/utils/push/libs/voipPushNotification.js.map +1 -0
  45. package/dist/commonjs/utils/push/setupIosCallKeepEvents.js +205 -0
  46. package/dist/commonjs/utils/push/setupIosCallKeepEvents.js.map +1 -0
  47. package/dist/commonjs/utils/push/setupIosVoipPushEvents.js +6 -7
  48. package/dist/commonjs/utils/push/setupIosVoipPushEvents.js.map +1 -1
  49. package/dist/commonjs/version.js +1 -1
  50. package/dist/commonjs/version.js.map +1 -1
  51. package/dist/module/hooks/push/index.js +2 -0
  52. package/dist/module/hooks/push/index.js.map +1 -1
  53. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js +153 -0
  54. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -0
  55. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js +31 -18
  56. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  57. package/dist/module/hooks/push/useProcessPushCallEffect.js +60 -0
  58. package/dist/module/hooks/push/useProcessPushCallEffect.js.map +1 -0
  59. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js +99 -66
  60. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  61. package/dist/module/index.js +0 -1
  62. package/dist/module/index.js.map +1 -1
  63. package/dist/module/modules/call-manager/CallManager.js +0 -26
  64. package/dist/module/modules/call-manager/CallManager.js.map +1 -1
  65. package/dist/module/providers/StreamCall/index.js +6 -6
  66. package/dist/module/providers/StreamCall/index.js.map +1 -1
  67. package/dist/module/utils/StreamVideoRN/index.js +21 -33
  68. package/dist/module/utils/StreamVideoRN/index.js.map +1 -1
  69. package/dist/module/utils/internal/registerSDKGlobals.js +3 -52
  70. package/dist/module/utils/internal/registerSDKGlobals.js.map +1 -1
  71. package/dist/module/utils/push/android.js +204 -157
  72. package/dist/module/utils/push/android.js.map +1 -1
  73. package/dist/module/utils/push/internal/ios.js +34 -17
  74. package/dist/module/utils/push/internal/ios.js.map +1 -1
  75. package/dist/module/utils/push/internal/rxSubjects.js +44 -0
  76. package/dist/module/utils/push/internal/rxSubjects.js.map +1 -1
  77. package/dist/module/utils/push/internal/utils.js +19 -29
  78. package/dist/module/utils/push/internal/utils.js.map +1 -1
  79. package/dist/module/utils/push/ios.js.map +1 -1
  80. package/dist/module/utils/push/libs/callkeep.js +11 -0
  81. package/dist/module/utils/push/libs/callkeep.js.map +1 -0
  82. package/dist/module/utils/push/libs/index.js +2 -1
  83. package/dist/module/utils/push/libs/index.js.map +1 -1
  84. package/dist/module/utils/push/libs/notifee/index.js +18 -0
  85. package/dist/module/utils/push/libs/notifee/index.js.map +1 -1
  86. package/dist/module/utils/push/libs/voipPushNotification.js +11 -0
  87. package/dist/module/utils/push/libs/voipPushNotification.js.map +1 -0
  88. package/dist/module/utils/push/setupIosCallKeepEvents.js +199 -0
  89. package/dist/module/utils/push/setupIosCallKeepEvents.js.map +1 -0
  90. package/dist/module/utils/push/setupIosVoipPushEvents.js +6 -7
  91. package/dist/module/utils/push/setupIosVoipPushEvents.js.map +1 -1
  92. package/dist/module/version.js +1 -1
  93. package/dist/module/version.js.map +1 -1
  94. package/dist/typescript/hooks/push/index.d.ts.map +1 -1
  95. package/dist/typescript/hooks/push/useIosCallkeepWithCallingStateEffect.d.ts +5 -0
  96. package/dist/typescript/hooks/push/useIosCallkeepWithCallingStateEffect.d.ts.map +1 -0
  97. package/dist/typescript/hooks/push/useIosVoipPushEventsSetupEffect.d.ts.map +1 -1
  98. package/dist/typescript/hooks/push/useProcessPushCallEffect.d.ts +8 -0
  99. package/dist/typescript/hooks/push/useProcessPushCallEffect.d.ts.map +1 -0
  100. package/dist/typescript/hooks/useAndroidKeepCallAliveEffect.d.ts.map +1 -1
  101. package/dist/typescript/index.d.ts +0 -1
  102. package/dist/typescript/index.d.ts.map +1 -1
  103. package/dist/typescript/modules/call-manager/CallManager.d.ts +0 -5
  104. package/dist/typescript/modules/call-manager/CallManager.d.ts.map +1 -1
  105. package/dist/typescript/utils/StreamVideoRN/index.d.ts +2 -20
  106. package/dist/typescript/utils/StreamVideoRN/index.d.ts.map +1 -1
  107. package/dist/typescript/utils/StreamVideoRN/types.d.ts +29 -54
  108. package/dist/typescript/utils/StreamVideoRN/types.d.ts.map +1 -1
  109. package/dist/typescript/utils/internal/registerSDKGlobals.d.ts.map +1 -1
  110. package/dist/typescript/utils/push/android.d.ts +2 -1
  111. package/dist/typescript/utils/push/android.d.ts.map +1 -1
  112. package/dist/typescript/utils/push/internal/ios.d.ts.map +1 -1
  113. package/dist/typescript/utils/push/internal/rxSubjects.d.ts +33 -0
  114. package/dist/typescript/utils/push/internal/rxSubjects.d.ts.map +1 -1
  115. package/dist/typescript/utils/push/internal/utils.d.ts +1 -8
  116. package/dist/typescript/utils/push/internal/utils.d.ts.map +1 -1
  117. package/dist/typescript/utils/push/ios.d.ts +2 -1
  118. package/dist/typescript/utils/push/ios.d.ts.map +1 -1
  119. package/dist/typescript/utils/push/libs/callkeep.d.ts +3 -0
  120. package/dist/typescript/utils/push/libs/callkeep.d.ts.map +1 -0
  121. package/dist/typescript/utils/push/libs/firebaseMessaging/index.d.ts +2 -16
  122. package/dist/typescript/utils/push/libs/firebaseMessaging/index.d.ts.map +1 -1
  123. package/dist/typescript/utils/push/libs/index.d.ts +2 -1
  124. package/dist/typescript/utils/push/libs/index.d.ts.map +1 -1
  125. package/dist/typescript/utils/push/libs/notifee/index.d.ts +1 -0
  126. package/dist/typescript/utils/push/libs/notifee/index.d.ts.map +1 -1
  127. package/dist/typescript/utils/push/libs/voipPushNotification.d.ts +3 -0
  128. package/dist/typescript/utils/push/libs/voipPushNotification.d.ts.map +1 -0
  129. package/dist/typescript/utils/push/setupIosCallKeepEvents.d.ts +6 -0
  130. package/dist/typescript/utils/push/setupIosCallKeepEvents.d.ts.map +1 -0
  131. package/dist/typescript/utils/push/setupIosVoipPushEvents.d.ts.map +1 -1
  132. package/dist/typescript/version.d.ts +1 -1
  133. package/dist/typescript/version.d.ts.map +1 -1
  134. package/expo-config-plugin/dist/withAndroidManifest.js +33 -1
  135. package/expo-config-plugin/dist/withAndroidPermissions.js +7 -2
  136. package/expo-config-plugin/dist/withAppDelegate.js +197 -19
  137. package/expo-config-plugin/dist/withMainActivity.js +1 -1
  138. package/expo-config-plugin/dist/withiOSInfoPlist.js +3 -2
  139. package/ios/StreamInCallManager.m +0 -2
  140. package/ios/StreamInCallManager.swift +7 -19
  141. package/ios/StreamVideoReactNative.h +4 -7
  142. package/ios/StreamVideoReactNative.m +82 -189
  143. package/package.json +19 -14
  144. package/src/hooks/push/index.ts +2 -0
  145. package/src/hooks/push/useIosCallkeepWithCallingStateEffect.ts +235 -0
  146. package/src/hooks/push/useIosVoipPushEventsSetupEffect.ts +34 -21
  147. package/src/hooks/push/useProcessPushCallEffect.ts +108 -0
  148. package/src/hooks/useAndroidKeepCallAliveEffect.ts +120 -94
  149. package/src/index.ts +0 -1
  150. package/src/modules/call-manager/CallManager.ts +0 -36
  151. package/src/modules/call-manager/native-module.d.ts +0 -7
  152. package/src/providers/StreamCall/index.tsx +6 -6
  153. package/src/utils/StreamVideoRN/index.ts +30 -40
  154. package/src/utils/StreamVideoRN/types.ts +29 -56
  155. package/src/utils/internal/registerSDKGlobals.ts +4 -47
  156. package/src/utils/push/android.ts +309 -231
  157. package/src/utils/push/internal/ios.ts +44 -28
  158. package/src/utils/push/internal/rxSubjects.ts +61 -0
  159. package/src/utils/push/internal/utils.ts +26 -45
  160. package/src/utils/push/ios.ts +6 -1
  161. package/src/utils/push/libs/callkeep.ts +16 -0
  162. package/src/utils/push/libs/index.ts +2 -1
  163. package/src/utils/push/libs/notifee/index.ts +27 -0
  164. package/src/utils/push/libs/voipPushNotification.ts +17 -0
  165. package/src/utils/push/setupIosCallKeepEvents.ts +252 -0
  166. package/src/utils/push/setupIosVoipPushEvents.ts +7 -11
  167. package/src/version.ts +1 -1
  168. package/android/src/main/java/com/streamvideo/reactnative/keepalive/KeepAliveNotification.kt +0 -83
  169. package/android/src/main/java/com/streamvideo/reactnative/keepalive/StreamCallKeepAliveHeadlessService.kt +0 -149
  170. package/dist/commonjs/hooks/push/useCallingExpWithCallingStateEffect.js +0 -121
  171. package/dist/commonjs/hooks/push/useCallingExpWithCallingStateEffect.js.map +0 -1
  172. package/dist/commonjs/utils/internal/callingx/audioSessionPromise.js +0 -58
  173. package/dist/commonjs/utils/internal/callingx/audioSessionPromise.js.map +0 -1
  174. package/dist/commonjs/utils/internal/callingx/callingx.js +0 -109
  175. package/dist/commonjs/utils/internal/callingx/callingx.js.map +0 -1
  176. package/dist/commonjs/utils/keepCallAliveHeadlessTask.js +0 -48
  177. package/dist/commonjs/utils/keepCallAliveHeadlessTask.js.map +0 -1
  178. package/dist/commonjs/utils/push/libs/callingx.js +0 -75
  179. package/dist/commonjs/utils/push/libs/callingx.js.map +0 -1
  180. package/dist/commonjs/utils/push/setupCallingExpEvents.js +0 -108
  181. package/dist/commonjs/utils/push/setupCallingExpEvents.js.map +0 -1
  182. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js +0 -114
  183. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js.map +0 -1
  184. package/dist/module/utils/internal/callingx/audioSessionPromise.js +0 -51
  185. package/dist/module/utils/internal/callingx/audioSessionPromise.js.map +0 -1
  186. package/dist/module/utils/internal/callingx/callingx.js +0 -100
  187. package/dist/module/utils/internal/callingx/callingx.js.map +0 -1
  188. package/dist/module/utils/keepCallAliveHeadlessTask.js +0 -42
  189. package/dist/module/utils/keepCallAliveHeadlessTask.js.map +0 -1
  190. package/dist/module/utils/push/libs/callingx.js +0 -67
  191. package/dist/module/utils/push/libs/callingx.js.map +0 -1
  192. package/dist/module/utils/push/setupCallingExpEvents.js +0 -102
  193. package/dist/module/utils/push/setupCallingExpEvents.js.map +0 -1
  194. package/dist/typescript/hooks/push/useCallingExpWithCallingStateEffect.d.ts +0 -5
  195. package/dist/typescript/hooks/push/useCallingExpWithCallingStateEffect.d.ts.map +0 -1
  196. package/dist/typescript/utils/internal/callingx/audioSessionPromise.d.ts +0 -16
  197. package/dist/typescript/utils/internal/callingx/audioSessionPromise.d.ts.map +0 -1
  198. package/dist/typescript/utils/internal/callingx/callingx.d.ts +0 -13
  199. package/dist/typescript/utils/internal/callingx/callingx.d.ts.map +0 -1
  200. package/dist/typescript/utils/keepCallAliveHeadlessTask.d.ts +0 -10
  201. package/dist/typescript/utils/keepCallAliveHeadlessTask.d.ts.map +0 -1
  202. package/dist/typescript/utils/push/libs/callingx.d.ts +0 -9
  203. package/dist/typescript/utils/push/libs/callingx.d.ts.map +0 -1
  204. package/dist/typescript/utils/push/setupCallingExpEvents.d.ts +0 -8
  205. package/dist/typescript/utils/push/setupCallingExpEvents.d.ts.map +0 -1
  206. package/src/hooks/push/useCallingExpWithCallingStateEffect.ts +0 -147
  207. package/src/utils/internal/callingx/audioSessionPromise.ts +0 -53
  208. package/src/utils/internal/callingx/callingx.ts +0 -146
  209. package/src/utils/keepCallAliveHeadlessTask.ts +0 -54
  210. package/src/utils/push/libs/callingx.ts +0 -90
  211. package/src/utils/push/setupCallingExpEvents.ts +0 -130
@@ -1,4 +1,5 @@
1
1
  import {
2
+ Call,
2
3
  CallingState,
3
4
  StreamVideoClient,
4
5
  videoLoggerSystem,
@@ -14,15 +15,30 @@ import {
14
15
  getExpoNotificationsLibNoThrow,
15
16
  getFirebaseMessagingLib,
16
17
  getFirebaseMessagingLibNoThrow,
18
+ getIncomingCallForegroundServiceTypes,
17
19
  getNotifeeLibThrowIfNotInstalledForPush,
18
20
  type NotifeeLib,
19
21
  } from './libs';
20
- import { pushNonRingingCallData$ } from './internal/rxSubjects';
22
+ import {
23
+ pushAcceptedIncomingCallCId$,
24
+ pushAndroidBackgroundDeliveredIncomingCallCId$,
25
+ pushNonRingingCallData$,
26
+ pushRejectedIncomingCallCId$,
27
+ pushTappedIncomingCallCId$,
28
+ } from './internal/rxSubjects';
21
29
  import { pushUnsubscriptionCallbacks } from './internal/constants';
22
- import { canListenToWS, shouldCallBeClosed } from './internal/utils';
30
+ import {
31
+ canAddPushWSSubscriptionsRef,
32
+ clearPushWSEventSubscriptions,
33
+ processCallFromPushInBackground,
34
+ shouldCallBeEnded,
35
+ } from './internal/utils';
23
36
  import { setPushLogoutCallback } from '../internal/pushLogoutCallback';
37
+ import { getAndroidDefaultRingtoneUrl } from '../getAndroidDefaultRingtoneUrl';
24
38
  import { StreamVideoRN } from '../StreamVideoRN';
25
- import { getCallingxLib } from './libs/callingx';
39
+
40
+ const ACCEPT_CALL_ACTION_ID = 'accept';
41
+ const DECLINE_CALL_ACTION_ID = 'decline';
26
42
 
27
43
  type PushConfig = NonNullable<StreamVideoConfig['push']>;
28
44
 
@@ -91,10 +107,11 @@ export async function initAndroidPushToken(
91
107
  await setDeviceToken(token);
92
108
  }
93
109
  }
94
-
95
- const messaging = pushConfig.isExpo
96
- ? getFirebaseMessagingLibNoThrow(true)
97
- : getFirebaseMessagingLib();
110
+ // TODO: remove the incomingCallChannel check and find a better way once we have telecom integration for android
111
+ const messaging =
112
+ pushConfig.isExpo && !pushConfig.android.incomingCallChannel
113
+ ? getFirebaseMessagingLibNoThrow(true)
114
+ : getFirebaseMessagingLib();
98
115
  if (messaging) {
99
116
  logger.debug(`setting firebase token listeners`);
100
117
  const unsubscribe = messaging().onTokenRefresh((refreshedToken) =>
@@ -110,10 +127,10 @@ export async function initAndroidPushToken(
110
127
  * Creates notification from the push message data.
111
128
  * For Ringing and Non-Ringing calls.
112
129
  */
113
-
114
130
  export const firebaseDataHandler = async (
115
131
  data: FirebaseMessagingTypes.RemoteMessage['data'],
116
132
  ) => {
133
+ if (Platform.OS !== 'android') return;
117
134
  /* Example data from firebase
118
135
  "message": {
119
136
  "data": {
@@ -129,252 +146,227 @@ export const firebaseDataHandler = async (
129
146
  // other stuff
130
147
  }
131
148
  */
132
- if (Platform.OS !== 'android') return;
133
-
134
- const logger = videoLoggerSystem.getLogger('firebaseDataHandler');
135
149
  const pushConfig = StreamVideoRN.getConfig().push;
136
150
  if (!pushConfig || !data || data.sender !== 'stream.video') {
137
151
  return;
138
152
  }
153
+ const notifeeLib = getNotifeeLibThrowIfNotInstalledForPush();
154
+ const notifee = notifeeLib.default;
155
+ const settings = await notifee.getNotificationSettings();
156
+ if (settings.authorizationStatus !== 1) {
157
+ const logger = videoLoggerSystem.getLogger('firebaseDataHandler');
158
+ logger.debug(
159
+ `Notification permission not granted, unable to post ${data.type} notifications`,
160
+ );
161
+ return;
162
+ }
139
163
 
140
164
  if (data.type === 'call.ring') {
141
165
  const call_cid = data.call_cid as string;
142
- if (!call_cid) {
143
- logger.debug(
144
- `call_cid is not provided, skipping the call.ring notification`,
145
- );
146
- return;
147
- }
166
+ const created_by_id = data.created_by_id as string;
167
+ const receiver_id = data.receiver_id as string;
148
168
 
149
- const callingx = getCallingxLib();
150
- if (!callingx.canPostNotifications) {
151
- logger.warn(
152
- `Cannot post notifications, skipping the call.ring notification`,
153
- );
154
- return;
155
- }
169
+ const video_client = await pushConfig.createStreamVideoClient();
170
+ await video_client?.onRingingCall(call_cid);
156
171
 
157
- const client = await pushConfig.createStreamVideoClient();
158
- if (!client) {
159
- logger.debug(
160
- `video client not found, skipping the call.ring notification`,
172
+ const shouldCallBeClosed = (callToCheck: Call) => {
173
+ const { mustEndCall } = shouldCallBeEnded(
174
+ callToCheck,
175
+ created_by_id,
176
+ receiver_id,
161
177
  );
162
- return;
163
- }
164
-
165
- const shouldRejectCallWhenBusy = client['rejectCallWhenBusy'] ?? false;
166
- if (callingx.hasRegisteredCall() && shouldRejectCallWhenBusy) {
167
- logger.debug(
168
- `registered call found, skipping the call.ring notification`,
169
- );
170
- return;
171
- }
178
+ return mustEndCall;
179
+ };
172
180
 
181
+ const canListenToWS = () =>
182
+ canAddPushWSSubscriptionsRef.current &&
183
+ AppState.currentState !== 'active';
173
184
  const asForegroundService = canListenToWS();
174
185
 
175
- const callerName = data.created_by_display_name as string;
176
- const hasVideo = data.video === 'true';
177
-
178
186
  if (asForegroundService) {
179
187
  // Listen to call events from WS through fg service
180
188
  // note: this will replace the current empty fg service runner
181
- //we need to start service (e.g. by calling display incoming call) and than launch bg task, consider making those steps independent
182
- callingx.registerBackgroundTask((_: unknown, stopTask: () => void) => {
183
- return new Promise((resolve) => {
184
- const finishBackgroundTask = () => {
185
- callingx.log(
186
- `Finishing background task for callCid: ${call_cid}`,
187
- 'debug',
188
- );
189
- resolve(undefined);
190
- stopTask();
191
- };
192
-
193
- (async () => {
194
- try {
195
- const _client = await pushConfig.createStreamVideoClient();
196
- if (!_client) {
197
- logger.debug(
198
- `Closing fg service as there is no client to create from push config`,
199
- );
200
- finishBackgroundTask();
201
- return;
202
- }
203
-
204
- const callFromPush = await _client.onRingingCall(call_cid);
205
- const { mustEndCall, endCallReason } = shouldCallBeClosed(
206
- callFromPush,
207
- data,
189
+ notifee.registerForegroundService(() => {
190
+ return new Promise(async () => {
191
+ const client = await pushConfig.createStreamVideoClient();
192
+ if (!client) {
193
+ videoLoggerSystem
194
+ .getLogger('firebaseMessagingOnMessageHandler')
195
+ .debug(
196
+ `Closing fg service as there is no client to create from push config`,
208
197
  );
209
- if (mustEndCall) {
210
- logger.debug(
211
- `Closing fg service callCid: ${call_cid} endCallReason: ${endCallReason}`,
198
+ notifee.stopForegroundService();
199
+ return;
200
+ }
201
+ const callFromPush = await client.onRingingCall(call_cid);
202
+ let _shouldCallBeClosed = shouldCallBeClosed(callFromPush);
203
+ if (_shouldCallBeClosed) {
204
+ videoLoggerSystem
205
+ .getLogger('firebaseMessagingOnMessageHandler')
206
+ .debug(
207
+ `Closing fg service callCid: ${call_cid} shouldCallBeClosed: ${_shouldCallBeClosed}`,
208
+ );
209
+ notifee.stopForegroundService();
210
+ return;
211
+ }
212
+ const unsubscribeFunctions: Array<() => void> = [];
213
+ // check if service needs to be closed if accept/decline event was done on another device
214
+ const unsubscribe = callFromPush.on('all', (event) => {
215
+ const _canListenToWS = canListenToWS();
216
+ if (!_canListenToWS) {
217
+ videoLoggerSystem
218
+ .getLogger('firebaseMessagingOnMessageHandler')
219
+ .debug(
220
+ `Closing fg service from event callCid: ${call_cid} canListenToWS: ${_canListenToWS}`,
221
+ { event },
212
222
  );
213
-
214
- finishBackgroundTask();
215
- callingx.log(
216
- `Ending call with callCid: ${call_cid} endCallReason: ${endCallReason}`,
217
- 'debug',
223
+ unsubscribeFunctions.forEach((fn) => fn());
224
+ notifee.stopForegroundService();
225
+ return;
226
+ }
227
+ _shouldCallBeClosed = shouldCallBeClosed(callFromPush);
228
+ if (_shouldCallBeClosed) {
229
+ videoLoggerSystem
230
+ .getLogger('firebaseMessagingOnMessageHandler')
231
+ .debug(
232
+ `Closing fg service from event callCid: ${call_cid} canListenToWS: ${_canListenToWS} shouldCallBeClosed: ${_shouldCallBeClosed}`,
233
+ { event },
218
234
  );
219
- callingx.endCallWithReason(call_cid, endCallReason);
220
- return;
221
- }
222
-
223
- const unsubscribeFunctions: Array<() => void> = [];
224
- // check if service needs to be closed if accept/decline event was done on another device
225
- const unsubscribe = callFromPush.on('all', (event) => {
226
- const _canListenToWS = canListenToWS();
227
- if (!_canListenToWS) {
228
- logger.debug(
229
- `Closing fg service from event callCid: ${call_cid} canListenToWS: ${_canListenToWS}`,
230
- { event },
231
- );
232
- unsubscribeFunctions.forEach((fn) => fn());
233
-
234
- finishBackgroundTask();
235
- return;
236
- }
237
-
238
- const {
239
- mustEndCall: mustEndCallFromEvent,
240
- endCallReason: endCallReasonFromEvent,
241
- } = shouldCallBeClosed(callFromPush, data);
242
- if (mustEndCallFromEvent) {
243
- logger.debug(
244
- `Closing fg service from event callCid: ${call_cid} canListenToWS: ${_canListenToWS} shouldCallBeClosed`,
245
- { event },
246
- );
247
- unsubscribeFunctions.forEach((fn) => fn());
248
-
249
- finishBackgroundTask();
250
- callingx.endCallWithReason(call_cid, endCallReasonFromEvent);
251
- }
252
- });
253
-
254
- // check if service needs to be closed if call was left
255
- const stateSubscription =
256
- callFromPush.state.callingState$.subscribe((callingState) => {
257
- if (
258
- callingState === CallingState.IDLE ||
259
- callingState === CallingState.LEFT
260
- ) {
261
- logger.debug(
262
- `Closing fg service from callingState callCid: ${call_cid} callingState: ${callingState}`,
263
- );
264
- unsubscribeFunctions.forEach((fn) => fn());
265
-
266
- //TODO: think about sending appropriate reason for end call
267
- callingx.log(
268
- `Ending call with callCid: ${call_cid} callingState: ${callingState}`,
269
- 'debug',
270
- );
271
- finishBackgroundTask();
272
- callingx.endCallWithReason(call_cid, 'remote');
273
- }
274
- });
275
-
276
- const endCallSubscription = callingx.addEventListener(
277
- 'endCall',
278
- async ({ callId }: { callId: string }) => {
279
- unsubscribeFunctions.forEach((fn) => fn());
280
- try {
281
- await callFromPush.leave({
282
- reject: true,
283
- reason: 'decline',
284
- });
285
- } catch (error) {
286
- logger.error(
287
- `Failed to leave call with callCid: ${call_cid} error: ${error}`,
288
- );
289
- } finally {
290
- callingx.log(
291
- `Ending call with callCid: ${call_cid} callId: ${callId}`,
292
- 'debug',
293
- );
294
- finishBackgroundTask();
295
- callingx.endCallWithReason(callId, 'rejected');
296
- }
297
- },
298
- );
299
-
300
- //stop background task when app comes to foreground
301
- const appStateSubscription = AppState.addEventListener(
302
- 'change',
303
- (nextAppState) => {
304
- const _canListenToWS = canListenToWS();
305
- callingx.log(
306
- `AppState changed to: ${nextAppState} for callCid: ${call_cid} canListenToWS: ${_canListenToWS}`,
307
- 'debug',
308
- );
309
- if (!_canListenToWS) {
310
- unsubscribeFunctions.forEach((fn) => fn());
311
- finishBackgroundTask();
312
- return;
313
- }
314
- },
315
- );
316
-
317
- unsubscribeFunctions.push(unsubscribe);
318
- unsubscribeFunctions.push(() => stateSubscription.unsubscribe());
319
- unsubscribeFunctions.push(() => endCallSubscription.remove());
320
- unsubscribeFunctions.push(() => appStateSubscription.remove());
321
- pushUnsubscriptionCallbacks.get(call_cid)?.forEach((cb) => cb());
322
- pushUnsubscriptionCallbacks.set(call_cid, unsubscribeFunctions);
323
- } catch (error) {
324
- callingx.log(
325
- `Failed to start background task with callCid: ${call_cid} error: ${error}`,
326
- 'error',
327
- );
328
- finishBackgroundTask();
235
+ unsubscribeFunctions.forEach((fn) => fn());
236
+ notifee.stopForegroundService();
329
237
  }
330
- })();
238
+ });
239
+ // check if service needs to be closed if call was left
240
+ const subscription = callFromPush.state.callingState$.subscribe(
241
+ (callingState) => {
242
+ if (
243
+ callingState === CallingState.IDLE ||
244
+ callingState === CallingState.LEFT
245
+ ) {
246
+ videoLoggerSystem
247
+ .getLogger('firebaseMessagingOnMessageHandler')
248
+ .debug(
249
+ `Closing fg service from callingState callCid: ${call_cid} callingState: ${callingState}`,
250
+ );
251
+ unsubscribeFunctions.forEach((fn) => fn());
252
+ notifee.stopForegroundService();
253
+ }
254
+ },
255
+ );
256
+ unsubscribeFunctions.push(unsubscribe);
257
+ unsubscribeFunctions.push(() => subscription.unsubscribe());
258
+ pushUnsubscriptionCallbacks.get(call_cid)?.forEach((cb) => cb());
259
+ pushUnsubscriptionCallbacks.set(call_cid, unsubscribeFunctions);
331
260
  });
332
261
  });
333
262
  }
263
+ const incomingCallChannel = pushConfig.android.incomingCallChannel;
264
+ const incomingCallNotificationTextGetters =
265
+ pushConfig.android.incomingCallNotificationTextGetters;
266
+ if (!incomingCallChannel || !incomingCallNotificationTextGetters) {
267
+ const logger = videoLoggerSystem.getLogger(
268
+ 'firebaseMessagingOnMessageHandler',
269
+ );
270
+ logger.error(
271
+ "Can't show incoming call notification as either or both incomingCallChannel and incomingCallNotificationTextGetters were not provided",
272
+ );
273
+ return;
274
+ }
275
+ /*
276
+ * Sound has to be set on channel level for android 8 and above and cant be updated later after creation!
277
+ * For android 7 and below, sound should be set on notification level
278
+ */
279
+ // set default ringtone if not provided
280
+ if (!incomingCallChannel.sound) {
281
+ incomingCallChannel.sound = await getAndroidDefaultRingtoneUrl();
282
+ }
283
+ await notifee.createChannel(incomingCallChannel);
284
+ const { getTitle, getBody, getAcceptButtonTitle, getDeclineButtonTitle } =
285
+ incomingCallNotificationTextGetters;
286
+ const createdUserName = data.created_by_display_name as string;
334
287
 
335
- await callingx.displayIncomingCall(
336
- call_cid,
337
- call_cid,
338
- callerName,
339
- hasVideo,
340
- );
341
- logger.debug(
342
- `Displaying incoming call notification with callCid: ${call_cid} asForegroundService: ${asForegroundService}`,
343
- );
288
+ const title = getTitle(createdUserName);
289
+ const body = getBody(createdUserName);
290
+
291
+ videoLoggerSystem
292
+ .getLogger('firebaseMessagingOnMessageHandler')
293
+ .debug(
294
+ `Displaying incoming call notification with callCid: ${call_cid} title: ${title} body: ${body} asForegroundService: ${asForegroundService}`,
295
+ );
296
+
297
+ const channelId = incomingCallChannel.id;
298
+ await notifee.displayNotification({
299
+ id: call_cid,
300
+ title: getTitle(createdUserName),
301
+ body: getBody(createdUserName),
302
+ data,
303
+ android: {
304
+ channelId,
305
+ smallIcon: pushConfig.android.smallIcon,
306
+ importance: 4, // high importance
307
+ foregroundServiceTypes: getIncomingCallForegroundServiceTypes(),
308
+ asForegroundService,
309
+ ongoing: true,
310
+ sound: incomingCallChannel.sound,
311
+ vibrationPattern: incomingCallChannel.vibrationPattern,
312
+ loopSound: true,
313
+ pressAction: {
314
+ id: 'default',
315
+ launchActivity: 'default', // open the app when the notification is pressed
316
+ },
317
+ actions: [
318
+ {
319
+ title: getDeclineButtonTitle?.() ?? 'Decline',
320
+ pressAction: {
321
+ id: DECLINE_CALL_ACTION_ID,
322
+ },
323
+ },
324
+ {
325
+ title: getAcceptButtonTitle?.() ?? 'Accept',
326
+ pressAction: {
327
+ id: ACCEPT_CALL_ACTION_ID,
328
+ launchActivity: 'default', // open the app when the notification is pressed
329
+ },
330
+ },
331
+ ],
332
+ category: notifeeLib.AndroidCategory.CALL,
333
+ fullScreenAction: {
334
+ id: 'stream_ringing_incoming_call',
335
+ },
336
+ timeoutAfter: 60000, // 60 seconds, after which the notification will be dismissed automatically
337
+ },
338
+ });
344
339
 
345
340
  if (asForegroundService) {
346
341
  // no need to check if call has be closed as that will be handled by the fg service
347
342
  return;
348
343
  }
349
344
 
345
+ // check if call needs to be closed if accept/decline event was done
346
+ // before the notification was shown
347
+ const client = await pushConfig.createStreamVideoClient();
348
+ if (!client) {
349
+ return;
350
+ }
350
351
  const callFromPush = await client.onRingingCall(call_cid);
351
352
 
352
- const { mustEndCall, endCallReason } = shouldCallBeClosed(
353
- callFromPush,
354
- data,
355
- );
356
- if (mustEndCall) {
357
- logger.debug(
358
- `Removing incoming call notification immediately with callCid: ${call_cid} as it should be closed`,
359
- );
360
- callingx.endCallWithReason(call_cid, endCallReason);
353
+ if (shouldCallBeClosed(callFromPush)) {
354
+ videoLoggerSystem
355
+ .getLogger('firebaseMessagingOnMessageHandler')
356
+ .debug(
357
+ `Removing incoming call notification immediately with callCid: ${call_cid} as it should be closed`,
358
+ );
359
+ notifee.cancelDisplayedNotification(call_cid);
361
360
  }
362
361
  } else {
363
- const notifeeLib = getNotifeeLibThrowIfNotInstalledForPush();
364
- const notifee = notifeeLib.default;
365
- const settings = await notifee.getNotificationSettings();
366
- if (settings.authorizationStatus !== 1) {
367
- logger.debug(
368
- `Notification permission not granted, unable to post ${data.type} notifications`,
369
- );
370
- return;
371
- }
372
-
373
362
  // the other types are call.live_started and call.notification
374
363
  const callChannel = pushConfig.android.callChannel;
375
364
  const callNotificationTextGetters =
376
365
  pushConfig.android.callNotificationTextGetters;
377
366
  if (!callChannel || !callNotificationTextGetters) {
367
+ const logger = videoLoggerSystem.getLogger(
368
+ 'firebaseMessagingOnMessageHandler',
369
+ );
378
370
  logger.debug(
379
371
  "Can't show call notification as either or both callChannel and callNotificationTextGetters is not provided",
380
372
  );
@@ -390,12 +382,14 @@ export const firebaseDataHandler = async (
390
382
  const title = getTitle(type, createdUserName);
391
383
  const body = getBody(type, createdUserName);
392
384
 
393
- logger.debug(
394
- `Displaying NonRingingPushEvent ${type} notification with title: ${title} body: ${body}`,
395
- );
385
+ videoLoggerSystem
386
+ .getLogger('firebaseMessagingOnMessageHandler')
387
+ .debug(
388
+ `Displaying NonRingingPushEvent ${type} notification with title: ${title} body: ${body}`,
389
+ );
396
390
  await notifee.displayNotification({
397
- title,
398
- body,
391
+ title: getTitle(type, createdUserName),
392
+ body: getBody(type, createdUserName),
399
393
  data,
400
394
  android: {
401
395
  sound: callChannel.sound,
@@ -415,10 +409,16 @@ export const firebaseDataHandler = async (
415
409
  }
416
410
  };
417
411
 
418
- export const onAndroidNotifeeEvent = async ({ event }: { event: Event }) => {
412
+ export const onAndroidNotifeeEvent = async ({
413
+ event,
414
+ isBackground,
415
+ }: {
416
+ event: Event;
417
+ isBackground: boolean;
418
+ }) => {
419
419
  if (Platform.OS !== 'android') return;
420
420
  const { type, detail } = event;
421
- const { notification } = detail;
421
+ const { notification, pressAction } = detail;
422
422
  const notificationId = notification?.id;
423
423
  const data = notification?.data;
424
424
  const pushConfig = StreamVideoRN.getConfig().push;
@@ -434,14 +434,92 @@ export const onAndroidNotifeeEvent = async ({ event }: { event: Event }) => {
434
434
  // we can safely cast to string because the data is from "stream.video"
435
435
  const call_cid = data.call_cid as string;
436
436
 
437
- const notifeeLib = getNotifeeLibThrowIfNotInstalledForPush();
438
- if (type === notifeeLib.EventType.PRESS) {
439
- videoLoggerSystem
440
- .getLogger('onAndroidNotifeeEvent')
441
- .debug(`onTapNonRingingCallNotification with callCId: ${call_cid}`);
442
- pushConfig.onTapNonRingingCallNotification?.(
443
- call_cid,
444
- data.type as NonRingingPushEvent,
445
- );
437
+ if (data.type === 'call.ring') {
438
+ // check if we have observers for the call cid (this means the app is in the foreground state)
439
+ const hasObservers =
440
+ pushAcceptedIncomingCallCId$.observed &&
441
+ pushRejectedIncomingCallCId$.observed;
442
+
443
+ const notifeeLib = getNotifeeLibThrowIfNotInstalledForPush();
444
+ const notifee = notifeeLib.default;
445
+ // Check if we need to decline the call
446
+ const didPressDecline =
447
+ type === notifeeLib.EventType.ACTION_PRESS &&
448
+ pressAction?.id === DECLINE_CALL_ACTION_ID;
449
+ const didDismiss = type === notifeeLib.EventType.DISMISSED;
450
+ const mustDecline = didPressDecline || didDismiss;
451
+ // Check if we need to accept the call
452
+ const mustAccept =
453
+ type === notifeeLib.EventType.ACTION_PRESS &&
454
+ pressAction?.id === ACCEPT_CALL_ACTION_ID;
455
+
456
+ if (
457
+ mustAccept ||
458
+ mustDecline ||
459
+ type === notifeeLib.EventType.ACTION_PRESS
460
+ ) {
461
+ videoLoggerSystem
462
+ .getLogger('onAndroidNotifeeEvent')
463
+ .debug(
464
+ `clearPushWSEventSubscriptions for callCId: ${call_cid} mustAccept: ${mustAccept} mustDecline: ${mustDecline}`,
465
+ );
466
+ clearPushWSEventSubscriptions(call_cid);
467
+ notifee.stopForegroundService();
468
+ }
469
+
470
+ if (mustAccept) {
471
+ videoLoggerSystem
472
+ .getLogger('onAndroidNotifeeEvent')
473
+ .debug(`pushAcceptedIncomingCallCId$ added with callCId: ${call_cid}`);
474
+ pushAcceptedIncomingCallCId$.next(call_cid);
475
+ // NOTE: accept will be handled by the app with rxjs observers as the app will go to foreground always
476
+ } else if (mustDecline) {
477
+ videoLoggerSystem
478
+ .getLogger('onAndroidNotifeeEvent')
479
+ .debug(`pushRejectedIncomingCallCId$ added with callCId: ${call_cid}`);
480
+ pushRejectedIncomingCallCId$.next(call_cid);
481
+ if (hasObservers) {
482
+ // if we had observers we can return here as the observers will handle the call as the app is in the foreground state
483
+ videoLoggerSystem
484
+ .getLogger('onAndroidNotifeeEvent')
485
+ .debug(
486
+ `Skipped processCallFromPushInBackground for Declining call with callCId: ${call_cid} as the app is in the foreground state`,
487
+ );
488
+ return;
489
+ }
490
+ videoLoggerSystem
491
+ .getLogger('onAndroidNotifeeEvent')
492
+ .debug(
493
+ `start processCallFromPushInBackground - Declining call with callCId: ${call_cid}`,
494
+ );
495
+ await processCallFromPushInBackground(pushConfig, call_cid, 'decline');
496
+ } else {
497
+ if (type === notifeeLib.EventType.PRESS) {
498
+ videoLoggerSystem
499
+ .getLogger('onAndroidNotifeeEvent')
500
+ .debug(`pushTappedIncomingCallCId$ added with callCId: ${call_cid}`);
501
+ pushTappedIncomingCallCId$.next(call_cid);
502
+ // pressed state will be handled by the app with rxjs observers as the app will go to foreground always
503
+ } else if (isBackground && type === notifeeLib.EventType.DELIVERED) {
504
+ videoLoggerSystem
505
+ .getLogger('onAndroidNotifeeEvent')
506
+ .debug(
507
+ `pushAndroidBackgroundDeliveredIncomingCallCId$ added with callCId: ${call_cid}`,
508
+ );
509
+ pushAndroidBackgroundDeliveredIncomingCallCId$.next(call_cid);
510
+ // background delivered state will be handled by the app with rxjs observers as processing needs to happen only when app is opened
511
+ }
512
+ }
513
+ } else {
514
+ const notifeeLib = getNotifeeLibThrowIfNotInstalledForPush();
515
+ if (type === notifeeLib.EventType.PRESS) {
516
+ videoLoggerSystem
517
+ .getLogger('onAndroidNotifeeEvent')
518
+ .debug(`onTapNonRingingCallNotification with callCId: ${call_cid}`);
519
+ pushConfig.onTapNonRingingCallNotification?.(
520
+ call_cid,
521
+ data.type as NonRingingPushEvent,
522
+ );
523
+ }
446
524
  }
447
525
  };