Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3725918
D7873.id26670.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D7873.id26670.diff
View Options
diff --git a/native/android/app/src/main/java/app/comm/android/notifications/CommNotificationsHandler.java b/native/android/app/src/main/java/app/comm/android/notifications/CommNotificationsHandler.java
--- a/native/android/app/src/main/java/app/comm/android/notifications/CommNotificationsHandler.java
+++ b/native/android/app/src/main/java/app/comm/android/notifications/CommNotificationsHandler.java
@@ -21,10 +21,14 @@
import app.comm.android.fbjni.GlobalDBSingleton;
import app.comm.android.fbjni.MessageOperationsUtilities;
import app.comm.android.fbjni.NetworkModule;
+import app.comm.android.fbjni.NotificationsCryptoModule;
import app.comm.android.fbjni.ThreadOperations;
import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;
import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Set;
import me.leolin.shortcutbadger.ShortcutBadger;
public class CommNotificationsHandler extends FirebaseMessagingService {
@@ -33,6 +37,10 @@
private static final String BACKGROUND_NOTIF_TYPE_KEY = "backgroundNotifType";
private static final String SET_UNREAD_STATUS_KEY = "setUnreadStatus";
private static final String NOTIF_ID_KEY = "id";
+ private static final String ENCRYPTED_KEY = "encrypted";
+
+ private static final Set<String> UNENCRYPTED_FIELDS =
+ Set.of(NOTIF_ID_KEY, BADGE_ONLY_KEY, ENCRYPTED_KEY);
private static final String CHANNEL_ID = "default";
private static final long[] VIBRATION_SPEC = {500, 500};
@@ -78,6 +86,20 @@
handleNotificationRescind(message);
}
+ String encrypted = message.getData().get(ENCRYPTED_KEY);
+ if (encrypted != null && "1".equals(encrypted)) {
+ try {
+ message = this.decryptRemoteMessage(message);
+ } catch (Exception e) {
+ Log.w("COMM", "Failed to decrypt encrypted notification", e);
+ return;
+ }
+ } else if (encrypted != null) {
+ Log.w(
+ "COMM",
+ "Received unencrypted notification for client with existing olm session for notifications");
+ }
+
String badge = message.getData().get(BADGE_KEY);
if (badge != null) {
try {
@@ -205,4 +227,26 @@
intent,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_MUTABLE);
}
+
+ private RemoteMessage decryptRemoteMessage(RemoteMessage message) {
+ List<String> payloadFieldNames =
+ new ArrayList<>(message.getData().keySet());
+ for (String payloadFieldName : payloadFieldNames) {
+ if (UNENCRYPTED_FIELDS.contains(payloadFieldName)) {
+ continue;
+ }
+ String encryptedPayloadFieldValue =
+ message.getData().get(payloadFieldName);
+ if (encryptedPayloadFieldValue == null) {
+ continue;
+ }
+
+ String decryptedPayloadFieldValue = NotificationsCryptoModule.decrypt(
+ encryptedPayloadFieldValue,
+ NotificationsCryptoModule.olmEncryptedTypeMessage(),
+ "CommNotificationsHandler");
+ message.getData().put(payloadFieldName, decryptedPayloadFieldValue);
+ }
+ return message;
+ }
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 9, 7:23 PM (1 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2838491
Default Alt Text
D7873.id26670.diff (3 KB)
Attached To
Mode
D7873: Implement notification decryption in CommNotificationsHandler
Attached
Detach File
Event Timeline
Log In to Comment