2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-23 18:37:23 +00:00

152 lines
5.9 KiB
Java
Raw Normal View History

package org.kde.kdeconnect.Plugins.RunCommandPlugin;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
2020-07-09 17:31:44 +05:30
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;
import org.kde.kdeconnect.BackgroundService;
import org.kde.kdeconnect.Device;
import org.kde.kdeconnect_tp.R;
public class RunCommandWidget extends AppWidgetProvider {
public static final String RUN_COMMAND_ACTION = "RUN_COMMAND_ACTION";
public static final String TARGET_COMMAND = "TARGET_COMMAND";
public static final String TARGET_DEVICE = "TARGET_DEVICE";
2018-10-26 23:53:58 +02:00
private static final String SET_CURRENT_DEVICE = "SET_CURRENT_DEVICE";
private static String currentDeviceId;
@Override
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
if (intent != null && intent.getAction() != null && intent.getAction().equals(RUN_COMMAND_ACTION)) {
final String targetCommand = intent.getStringExtra(TARGET_COMMAND);
final String targetDevice = intent.getStringExtra(TARGET_DEVICE);
BackgroundService.RunCommand(context, service -> {
RunCommandPlugin plugin = service.getDevice(targetDevice).getPlugin(RunCommandPlugin.class);
if (plugin != null) {
try {
plugin.runCommand(targetCommand);
} catch (Exception ex) {
Log.e("RunCommandWidget", "Error running command", ex);
}
}
});
2020-07-09 17:31:44 +05:30
} else if (intent != null && TextUtils.equals(intent.getAction(), SET_CURRENT_DEVICE)) {
setCurrentDevice(context);
}
final Intent newIntent = new Intent(context, RunCommandWidgetDataProviderService.class);
context.startService(newIntent);
updateWidget(context);
}
private void setCurrentDevice(final Context context) {
Intent popup = new Intent(context, RunCommandWidgetDeviceSelector.class);
popup.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
context.startActivity(popup);
}
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
updateWidget(context);
}
private void updateWidget(final Context context) {
if (getCurrentDevice() == null || !getCurrentDevice().isReachable()) {
BackgroundService.RunCommand(context, service -> {
if (service.getDevices().size() > 0)
currentDeviceId = service.getDevices().elements().nextElement().getDeviceId();
updateWidgetImpl(context);
});
}
updateWidgetImpl(context);
}
private void updateWidgetImpl(Context context) {
try {
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
int[] appWidgetIds = appWidgetManager.getAppWidgetIds(new ComponentName(context, RunCommandWidget.class));
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_remotecommandplugin);
PendingIntent pendingIntent;
Intent intent;
intent = new Intent(context, RunCommandWidget.class);
intent.setAction(SET_CURRENT_DEVICE);
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
views.setOnClickPendingIntent(R.id.runcommandWidgetTitleHeader, pendingIntent);
if (getCurrentDevice() == null || !getCurrentDevice().isReachable()) {
views.setTextViewText(R.id.runcommandWidgetTitle, context.getString(R.string.pref_plugin_runcommand));
views.setViewVisibility(R.id.runcommandslist, View.GONE);
views.setViewVisibility(R.id.not_reachable_message, View.VISIBLE);
} else {
views.setTextViewText(R.id.runcommandWidgetTitle, getCurrentDevice().getName());
views.setViewVisibility(R.id.runcommandslist, View.VISIBLE);
views.setViewVisibility(R.id.not_reachable_message, View.GONE);
}
for (int appWidgetId : appWidgetIds) {
intent = new Intent(context, RunCommandWidgetDataProviderService.class);
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
views.setRemoteAdapter(R.id.runcommandslist, intent);
intent = new Intent(context, RunCommandWidget.class);
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
views.setPendingIntentTemplate(R.id.runcommandslist, pendingIntent);
AppWidgetManager.getInstance(context).updateAppWidget(appWidgetId, views);
AppWidgetManager.getInstance(context).notifyAppWidgetViewDataChanged(appWidgetId, R.id.runcommandslist);
}
} catch (Exception ex) {
Log.e("RunCommandWidget", "Error updating widget", ex);
}
if (BackgroundService.getInstance() != null) {
BackgroundService.getInstance().addDeviceListChangedCallback("RunCommandWidget", () -> {
Intent updateWidget = new Intent(context, RunCommandWidget.class);
context.sendBroadcast(updateWidget);
});
}
}
public static Device getCurrentDevice() {
try {
return BackgroundService.getInstance().getDevice(currentDeviceId);
} catch (Exception ex) {
return null;
}
}
public static void setCurrentDevice(final String DeviceId) {
currentDeviceId = DeviceId;
}
}