mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-14 22:19:29 +01:00
93 lines
3.8 KiB
Java
93 lines
3.8 KiB
Java
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
|
|
|
import android.app.NotificationManager;
|
|
import android.app.NotificationManager.Policy;
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.telephony.TelephonyManager;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
|
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
|
|
|
|
|
public class PhoneCallReceiver extends BroadcastReceiver {
|
|
|
|
private static int mLastState = TelephonyManager.CALL_STATE_IDLE;
|
|
private static String mSavedNumber;
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (intent.getAction().equals("android.intent.action.NEW_OUTGOING_CALL")) {
|
|
mSavedNumber = intent.getExtras().getString("android.intent.extra.PHONE_NUMBER");
|
|
} else {
|
|
String stateStr = intent.getExtras().getString(TelephonyManager.EXTRA_STATE);
|
|
String number = intent.getExtras().getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
|
|
int state = 0;
|
|
if (TelephonyManager.EXTRA_STATE_IDLE.equals(stateStr)) {
|
|
state = TelephonyManager.CALL_STATE_IDLE;
|
|
} else if (TelephonyManager.EXTRA_STATE_OFFHOOK.equals(stateStr)) {
|
|
state = TelephonyManager.CALL_STATE_OFFHOOK;
|
|
} else if (TelephonyManager.EXTRA_STATE_RINGING.equals(stateStr)) {
|
|
state = TelephonyManager.CALL_STATE_RINGING;
|
|
}
|
|
onCallStateChanged(context, state, number);
|
|
}
|
|
}
|
|
|
|
public void onCallStateChanged(Context context, int state, String number) {
|
|
if (mLastState == state) {
|
|
return;
|
|
}
|
|
|
|
int callCommand = CallSpec.CALL_UNDEFINED;
|
|
switch (state) {
|
|
case TelephonyManager.CALL_STATE_RINGING:
|
|
mSavedNumber = number;
|
|
callCommand = CallSpec.CALL_INCOMING;
|
|
break;
|
|
case TelephonyManager.CALL_STATE_OFFHOOK:
|
|
if (mLastState == TelephonyManager.CALL_STATE_RINGING) {
|
|
callCommand = CallSpec.CALL_START;
|
|
} else {
|
|
callCommand = CallSpec.CALL_OUTGOING;
|
|
mSavedNumber = number;
|
|
}
|
|
break;
|
|
case TelephonyManager.CALL_STATE_IDLE:
|
|
if (mLastState == TelephonyManager.CALL_STATE_RINGING) {
|
|
//missed call would be correct here
|
|
callCommand = CallSpec.CALL_END;
|
|
} else {
|
|
callCommand = CallSpec.CALL_END;
|
|
}
|
|
break;
|
|
}
|
|
if (callCommand != CallSpec.CALL_UNDEFINED) {
|
|
Prefs prefs = GBApplication.getPrefs();
|
|
if ("never".equals(prefs.getString("notification_mode_calls", "always"))) {
|
|
return;
|
|
}
|
|
switch (GBApplication.getGrantedInterruptionFilter()) {
|
|
case NotificationManager.INTERRUPTION_FILTER_ALL:
|
|
break;
|
|
case NotificationManager.INTERRUPTION_FILTER_ALARMS:
|
|
case NotificationManager.INTERRUPTION_FILTER_NONE:
|
|
return;
|
|
case NotificationManager.INTERRUPTION_FILTER_PRIORITY:
|
|
if (GBApplication.isPriorityNumber(Policy.PRIORITY_CATEGORY_CALLS, mSavedNumber)) {
|
|
break;
|
|
}
|
|
// FIXME: Handle Repeat callers if it is enabled in Do Not Disturb
|
|
return;
|
|
}
|
|
CallSpec callSpec = new CallSpec();
|
|
callSpec.number = mSavedNumber;
|
|
callSpec.command = callCommand;
|
|
GBApplication.deviceService().onSetCallState(callSpec);
|
|
}
|
|
mLastState = state;
|
|
}
|
|
}
|