mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-01 14:32:54 +01:00
Intent API: Add allow_debug_commands option and receivers for SEND, INCOMING_CALL
This commit is contained in:
parent
7e15462593
commit
2659a23421
@ -24,20 +24,29 @@ import android.content.IntentFilter;
|
|||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.BuildConfig;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.database.PeriodicExporter;
|
import nodomain.freeyourgadget.gadgetbridge.database.PeriodicExporter;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationType;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.model.RecordedDataTypes;
|
import nodomain.freeyourgadget.gadgetbridge.model.RecordedDataTypes;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
||||||
|
|
||||||
public class IntentApiReceiver extends BroadcastReceiver {
|
public class IntentApiReceiver extends BroadcastReceiver {
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(IntentApiReceiver.class);
|
private static final Logger LOG = LoggerFactory.getLogger(IntentApiReceiver.class);
|
||||||
|
|
||||||
|
private static final String msgDebugNotAllowed = "Intent API Allow Debug Commands not allowed";
|
||||||
|
|
||||||
public static final String COMMAND_ACTIVITY_SYNC = "nodomain.freeyourgadget.gadgetbridge.command.ACTIVITY_SYNC";
|
public static final String COMMAND_ACTIVITY_SYNC = "nodomain.freeyourgadget.gadgetbridge.command.ACTIVITY_SYNC";
|
||||||
public static final String COMMAND_TRIGGER_EXPORT = "nodomain.freeyourgadget.gadgetbridge.command.TRIGGER_EXPORT";
|
public static final String COMMAND_TRIGGER_EXPORT = "nodomain.freeyourgadget.gadgetbridge.command.TRIGGER_EXPORT";
|
||||||
|
public static final String COMMAND_DEBUG_SEND = "nodomain.freeyourgadget.gadgetbridge.command.DEBUG_SEND";
|
||||||
|
public static final String COMMAND_DEBUG_INCOMING_CALL = "nodomain.freeyourgadget.gadgetbridge.command.DEBUG_INCOMING_CALL";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onReceive(final Context context, final Intent intent) {
|
public void onReceive(final Context context, final Intent intent) {
|
||||||
@ -72,6 +81,7 @@ public class IntentApiReceiver extends BroadcastReceiver {
|
|||||||
|
|
||||||
GBApplication.deviceService().onFetchRecordedData(dataTypes);
|
GBApplication.deviceService().onFetchRecordedData(dataTypes);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case COMMAND_TRIGGER_EXPORT:
|
case COMMAND_TRIGGER_EXPORT:
|
||||||
if (!prefs.getBoolean("intent_api_allow_trigger_export", false)) {
|
if (!prefs.getBoolean("intent_api_allow_trigger_export", false)) {
|
||||||
LOG.warn("Intent API export trigger not allowed");
|
LOG.warn("Intent API export trigger not allowed");
|
||||||
@ -83,6 +93,70 @@ public class IntentApiReceiver extends BroadcastReceiver {
|
|||||||
final Intent exportIntent = new Intent(context, PeriodicExporter.class);
|
final Intent exportIntent = new Intent(context, PeriodicExporter.class);
|
||||||
context.sendBroadcast(exportIntent);
|
context.sendBroadcast(exportIntent);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case COMMAND_DEBUG_SEND:
|
||||||
|
if (!prefs.getBoolean("intent_api_allow_debug_commands", false)) {
|
||||||
|
LOG.warn(msgDebugNotAllowed);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LOG.info("Triggering Debug Send notification message");
|
||||||
|
NotificationSpec notificationSpec = new NotificationSpec();
|
||||||
|
notificationSpec.sender = intent.getStringExtra("sender");
|
||||||
|
if (notificationSpec.sender == null) {
|
||||||
|
notificationSpec.sender = "DEBUG_SEND";
|
||||||
|
}
|
||||||
|
notificationSpec.phoneNumber = intent.getStringExtra("phoneNumber");
|
||||||
|
if (notificationSpec.phoneNumber == null) {
|
||||||
|
notificationSpec.phoneNumber = "DEBUG_SEND";
|
||||||
|
}
|
||||||
|
notificationSpec.subject = intent.getStringExtra("subject");
|
||||||
|
if (notificationSpec.subject == null) {
|
||||||
|
notificationSpec.subject = "DEBUG_SEND";
|
||||||
|
}
|
||||||
|
notificationSpec.body = intent.getStringExtra("body");
|
||||||
|
if (notificationSpec.body == null) {
|
||||||
|
notificationSpec.body = "DEBUG_SEND";
|
||||||
|
}
|
||||||
|
notificationSpec.type = NotificationType.GENERIC_SMS;
|
||||||
|
if (intent.getStringExtra("type") != null) {
|
||||||
|
try {
|
||||||
|
notificationSpec.type = NotificationType.valueOf(intent.getStringExtra("type"));
|
||||||
|
} catch(IllegalArgumentException e) {}
|
||||||
|
}
|
||||||
|
if (notificationSpec.type != NotificationType.GENERIC_SMS) {
|
||||||
|
// SMS notifications don't have a source app ID when sent by the SMSReceiver,
|
||||||
|
// so let's not set it here as well for consistency
|
||||||
|
notificationSpec.sourceAppId = BuildConfig.APPLICATION_ID;
|
||||||
|
}
|
||||||
|
notificationSpec.sourceName = context.getApplicationInfo()
|
||||||
|
.loadLabel(context.getPackageManager())
|
||||||
|
.toString();
|
||||||
|
notificationSpec.pebbleColor = notificationSpec.type.color;
|
||||||
|
notificationSpec.attachedActions = new ArrayList<>();
|
||||||
|
if (notificationSpec.type == NotificationType.GENERIC_SMS) {
|
||||||
|
// REPLY action
|
||||||
|
NotificationSpec.Action replyAction = new NotificationSpec.Action();
|
||||||
|
replyAction.title = "Reply";
|
||||||
|
replyAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_REPLY_PHONENR;
|
||||||
|
notificationSpec.attachedActions.add(replyAction);
|
||||||
|
}
|
||||||
|
GBApplication.deviceService().onNotification(notificationSpec);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case COMMAND_DEBUG_INCOMING_CALL:
|
||||||
|
if (!prefs.getBoolean("intent_api_allow_debug_commands", false)) {
|
||||||
|
LOG.warn(msgDebugNotAllowed);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LOG.info("Triggering Debug Incoming Call");
|
||||||
|
CallSpec callSpec = new CallSpec();
|
||||||
|
callSpec.command = CallSpec.CALL_INCOMING;
|
||||||
|
callSpec.number = intent.getStringExtra("caller");
|
||||||
|
if (callSpec.number == null) {
|
||||||
|
callSpec.number = "DEBUG_INCOMING_CALL";
|
||||||
|
}
|
||||||
|
GBApplication.deviceService().onSetCallState(callSpec);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -90,6 +164,8 @@ public class IntentApiReceiver extends BroadcastReceiver {
|
|||||||
final IntentFilter intentFilter = new IntentFilter();
|
final IntentFilter intentFilter = new IntentFilter();
|
||||||
intentFilter.addAction(COMMAND_ACTIVITY_SYNC);
|
intentFilter.addAction(COMMAND_ACTIVITY_SYNC);
|
||||||
intentFilter.addAction(COMMAND_TRIGGER_EXPORT);
|
intentFilter.addAction(COMMAND_TRIGGER_EXPORT);
|
||||||
|
intentFilter.addAction(COMMAND_DEBUG_SEND);
|
||||||
|
intentFilter.addAction(COMMAND_DEBUG_INCOMING_CALL);
|
||||||
return intentFilter;
|
return intentFilter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2079,6 +2079,8 @@
|
|||||||
<string name="intent_api_allow_trigger_export_summary">Allow triggering database export via Intent API</string>
|
<string name="intent_api_allow_trigger_export_summary">Allow triggering database export via Intent API</string>
|
||||||
<string name="intent_api_broadcast_export_title">Broadcast on database export</string>
|
<string name="intent_api_broadcast_export_title">Broadcast on database export</string>
|
||||||
<string name="intent_api_broadcast_export_summary">Broadcast an intent when database export finishes</string>
|
<string name="intent_api_broadcast_export_summary">Broadcast an intent when database export finishes</string>
|
||||||
|
<string name="intent_api_allow_debug_commands_title">Allow Debug Commands</string>
|
||||||
|
<string name="intent_api_allow_debug_commands_summary">Allow triggering debug menu commands via Intent API</string>
|
||||||
<string name="devicetype_super_cars">Shell Racing</string>
|
<string name="devicetype_super_cars">Shell Racing</string>
|
||||||
<string name="supercars_turbo_speed_label">Turbo Speed</string>
|
<string name="supercars_turbo_speed_label">Turbo Speed</string>
|
||||||
<string name="supercars_lights_label">Lights</string>
|
<string name="supercars_lights_label">Lights</string>
|
||||||
|
@ -423,5 +423,10 @@
|
|||||||
android:key="intent_api_broadcast_export"
|
android:key="intent_api_broadcast_export"
|
||||||
android:title="@string/intent_api_broadcast_export_title"
|
android:title="@string/intent_api_broadcast_export_title"
|
||||||
android:summary="@string/intent_api_broadcast_export_summary" />
|
android:summary="@string/intent_api_broadcast_export_summary" />
|
||||||
|
|
||||||
|
<CheckBoxPreference
|
||||||
|
android:key="intent_api_allow_debug_commands"
|
||||||
|
android:title="@string/intent_api_allow_debug_commands_title"
|
||||||
|
android:summary="@string/intent_api_allow_debug_commands_summary" />
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
Loading…
Reference in New Issue
Block a user