mirror of
https://github.com/oxen-io/session-android.git
synced 2025-01-01 04:37:44 +00:00
79 lines
2.9 KiB
Java
79 lines
2.9 KiB
Java
/*
|
|
* Copyright (C) 2011 Whisper Systems
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.notifications;
|
|
|
|
import android.annotation.SuppressLint;
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.AsyncTask;
|
|
import androidx.core.app.NotificationManagerCompat;
|
|
|
|
import org.thoughtcrime.securesms.ApplicationContext;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.MessagingDatabase.MarkedMessageInfo;
|
|
import org.whispersystems.libsignal.logging.Log;
|
|
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Marks an Android Auto as read after the driver have listened to it
|
|
*/
|
|
public class AndroidAutoHeardReceiver extends BroadcastReceiver {
|
|
|
|
public static final String TAG = AndroidAutoHeardReceiver.class.getSimpleName();
|
|
public static final String HEARD_ACTION = "network.loki.securesms.notifications.ANDROID_AUTO_HEARD";
|
|
public static final String THREAD_IDS_EXTRA = "car_heard_thread_ids";
|
|
public static final String NOTIFICATION_ID_EXTRA = "car_notification_id";
|
|
|
|
@SuppressLint("StaticFieldLeak")
|
|
@Override
|
|
public void onReceive(final Context context, Intent intent)
|
|
{
|
|
if (!HEARD_ACTION.equals(intent.getAction()))
|
|
return;
|
|
|
|
final long[] threadIds = intent.getLongArrayExtra(THREAD_IDS_EXTRA);
|
|
|
|
if (threadIds != null) {
|
|
int notificationId = intent.getIntExtra(NOTIFICATION_ID_EXTRA, -1);
|
|
NotificationManagerCompat.from(context).cancel(notificationId);
|
|
|
|
new AsyncTask<Void, Void, Void>() {
|
|
@Override
|
|
protected Void doInBackground(Void... params) {
|
|
List<MarkedMessageInfo> messageIdsCollection = new LinkedList<>();
|
|
|
|
for (long threadId : threadIds) {
|
|
Log.i(TAG, "Marking meassage as read: " + threadId);
|
|
List<MarkedMessageInfo> messageIds = DatabaseFactory.getThreadDatabase(context).setRead(threadId, true);
|
|
|
|
messageIdsCollection.addAll(messageIds);
|
|
}
|
|
|
|
ApplicationContext.getInstance(context).messageNotifier.updateNotification(context);
|
|
MarkReadReceiver.process(context, messageIdsCollection);
|
|
|
|
return null;
|
|
}
|
|
}.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
|
}
|
|
}
|
|
}
|