mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-19 06:27:30 +00:00
8cf2654c5b
Fixes #8792
199 lines
7.2 KiB
Java
199 lines
7.2 KiB
Java
package org.thoughtcrime.securesms.notifications;
|
|
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
|
|
import org.thoughtcrime.securesms.conversation.ConversationActivity;
|
|
import org.thoughtcrime.securesms.conversation.ConversationPopupActivity;
|
|
import org.thoughtcrime.securesms.database.RecipientDatabase.VibrateState;
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import java.util.LinkedHashSet;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
|
|
public class NotificationState {
|
|
|
|
private static final String TAG = NotificationState.class.getSimpleName();
|
|
|
|
private final LinkedList<NotificationItem> notifications = new LinkedList<>();
|
|
private final LinkedHashSet<Long> threads = new LinkedHashSet<>();
|
|
|
|
private int notificationCount = 0;
|
|
|
|
public NotificationState() {}
|
|
|
|
public NotificationState(@NonNull List<NotificationItem> items) {
|
|
for (NotificationItem item : items) {
|
|
addNotification(item);
|
|
}
|
|
}
|
|
|
|
public void addNotification(NotificationItem item) {
|
|
notifications.addFirst(item);
|
|
|
|
if (threads.contains(item.getThreadId())) {
|
|
threads.remove(item.getThreadId());
|
|
}
|
|
|
|
threads.add(item.getThreadId());
|
|
notificationCount++;
|
|
}
|
|
|
|
public @Nullable Uri getRingtone(@NonNull Context context) {
|
|
if (!notifications.isEmpty()) {
|
|
Recipient recipient = notifications.getFirst().getRecipient();
|
|
|
|
if (recipient != null) {
|
|
return NotificationChannels.supported() ? NotificationChannels.getMessageRingtone(context, recipient)
|
|
: recipient.resolve().getMessageRingtone();
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public VibrateState getVibrate() {
|
|
if (!notifications.isEmpty()) {
|
|
Recipient recipient = notifications.getFirst().getRecipient();
|
|
|
|
if (recipient != null) {
|
|
return recipient.resolve().getMessageVibrate();
|
|
}
|
|
}
|
|
|
|
return VibrateState.DEFAULT;
|
|
}
|
|
|
|
public boolean hasMultipleThreads() {
|
|
return threads.size() > 1;
|
|
}
|
|
|
|
public LinkedHashSet<Long> getThreads() {
|
|
return threads;
|
|
}
|
|
|
|
public int getThreadCount() {
|
|
return threads.size();
|
|
}
|
|
|
|
public int getMessageCount() {
|
|
return notificationCount;
|
|
}
|
|
|
|
public List<NotificationItem> getNotifications() {
|
|
return notifications;
|
|
}
|
|
|
|
public List<NotificationItem> getNotificationsForThread(long threadId) {
|
|
LinkedList<NotificationItem> list = new LinkedList<>();
|
|
|
|
for (NotificationItem item : notifications) {
|
|
if (item.getThreadId() == threadId) list.addFirst(item);
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
public PendingIntent getMarkAsReadIntent(Context context, int notificationId) {
|
|
long[] threadArray = new long[threads.size()];
|
|
int index = 0;
|
|
|
|
for (long thread : threads) {
|
|
Log.i(TAG, "Added thread: " + thread);
|
|
threadArray[index++] = thread;
|
|
}
|
|
|
|
Intent intent = new Intent(MarkReadReceiver.CLEAR_ACTION);
|
|
intent.setClass(context, MarkReadReceiver.class);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
intent.putExtra(MarkReadReceiver.THREAD_IDS_EXTRA, threadArray);
|
|
intent.putExtra(MarkReadReceiver.NOTIFICATION_ID_EXTRA, notificationId);
|
|
|
|
return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
public PendingIntent getRemoteReplyIntent(Context context, Recipient recipient, ReplyMethod replyMethod) {
|
|
if (threads.size() != 1) throw new AssertionError("We only support replies to single thread notifications!");
|
|
|
|
Intent intent = new Intent(RemoteReplyReceiver.REPLY_ACTION);
|
|
intent.setClass(context, RemoteReplyReceiver.class);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
intent.putExtra(RemoteReplyReceiver.ADDRESS_EXTRA, recipient.getAddress());
|
|
intent.putExtra(RemoteReplyReceiver.REPLY_METHOD, replyMethod);
|
|
intent.setPackage(context.getPackageName());
|
|
|
|
return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
public PendingIntent getAndroidAutoReplyIntent(Context context, Recipient recipient) {
|
|
if (threads.size() != 1) throw new AssertionError("We only support replies to single thread notifications!");
|
|
|
|
Intent intent = new Intent(AndroidAutoReplyReceiver.REPLY_ACTION);
|
|
intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
|
|
intent.setClass(context, AndroidAutoReplyReceiver.class);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
intent.putExtra(AndroidAutoReplyReceiver.ADDRESS_EXTRA, recipient.getAddress());
|
|
intent.putExtra(AndroidAutoReplyReceiver.THREAD_ID_EXTRA, (long)threads.toArray()[0]);
|
|
intent.setPackage(context.getPackageName());
|
|
|
|
return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
public PendingIntent getAndroidAutoHeardIntent(Context context, int notificationId) {
|
|
long[] threadArray = new long[threads.size()];
|
|
int index = 0;
|
|
for (long thread : threads) {
|
|
Log.i(TAG, "getAndroidAutoHeardIntent Added thread: " + thread);
|
|
threadArray[index++] = thread;
|
|
}
|
|
|
|
Intent intent = new Intent(AndroidAutoHeardReceiver.HEARD_ACTION);
|
|
intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
|
|
intent.setClass(context, AndroidAutoHeardReceiver.class);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
intent.putExtra(AndroidAutoHeardReceiver.THREAD_IDS_EXTRA, threadArray);
|
|
intent.putExtra(AndroidAutoHeardReceiver.NOTIFICATION_ID_EXTRA, notificationId);
|
|
intent.setPackage(context.getPackageName());
|
|
|
|
return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
public PendingIntent getQuickReplyIntent(Context context, Recipient recipient) {
|
|
if (threads.size() != 1) throw new AssertionError("We only support replies to single thread notifications! " + threads.size());
|
|
|
|
Intent intent = new Intent(context, ConversationPopupActivity.class);
|
|
intent.putExtra(ConversationActivity.ADDRESS_EXTRA, recipient.getAddress());
|
|
intent.putExtra(ConversationActivity.THREAD_ID_EXTRA, (long)threads.toArray()[0]);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
|
|
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
public PendingIntent getDeleteIntent(Context context) {
|
|
int index = 0;
|
|
long[] ids = new long[notifications.size()];
|
|
boolean[] mms = new boolean[ids.length];
|
|
|
|
for (NotificationItem notificationItem : notifications) {
|
|
ids[index] = notificationItem.getId();
|
|
mms[index++] = notificationItem.isMms();
|
|
}
|
|
|
|
Intent intent = new Intent(context, DeleteNotificationReceiver.class);
|
|
intent.setAction(DeleteNotificationReceiver.DELETE_NOTIFICATION_ACTION);
|
|
intent.putExtra(DeleteNotificationReceiver.EXTRA_IDS, ids);
|
|
intent.putExtra(DeleteNotificationReceiver.EXTRA_MMS, mms);
|
|
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
|
|
|
return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
}
|
|
|
|
|
|
}
|