mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 09:49:21 +02:00
41 lines
1.3 KiB
Java
41 lines
1.3 KiB
Java
package org.thoughtcrime.securesms.notifications;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.util.Log;
|
|
|
|
import org.thoughtcrime.securesms.connect.DcHelper;
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import chat.delta.rpc.RpcException;
|
|
|
|
public class DeclineCallReceiver extends BroadcastReceiver {
|
|
private static final String TAG = DeclineCallReceiver.class.getSimpleName();
|
|
|
|
public static final String DECLINE_ACTION = "org.thoughtcrime.securesms.notifications.DECLINE_CALL";
|
|
public static final String ACCOUNT_ID_EXTRA = "account_id";
|
|
public static final String CALL_ID_EXTRA = "call_id";
|
|
|
|
@Override
|
|
public void onReceive(final Context context, Intent intent) {
|
|
if (!DECLINE_ACTION.equals(intent.getAction())) {
|
|
return;
|
|
}
|
|
|
|
final int accountId = intent.getIntExtra(ACCOUNT_ID_EXTRA, 0);
|
|
final int callId = intent.getIntExtra(CALL_ID_EXTRA, 0);
|
|
if (accountId == 0) {
|
|
return;
|
|
}
|
|
|
|
Util.runOnAnyBackgroundThread(() -> {
|
|
DcHelper.getNotificationCenter(context).removeCallNotification(accountId, callId);
|
|
try {
|
|
DcHelper.getRpc(context).endCall(accountId, callId);
|
|
} catch (RpcException e) {
|
|
Log.e(TAG, "Error", e);
|
|
}
|
|
});
|
|
}
|
|
}
|