mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-09-01 06:35:09 +00:00
Split notifications plugin in two: send and receive.
This commit is contained in:
@@ -19,6 +19,8 @@
|
|||||||
<string name="pref_plugin_ping_desc">Send and receive pings</string>
|
<string name="pref_plugin_ping_desc">Send and receive pings</string>
|
||||||
<string name="pref_plugin_notifications">Notification sync</string>
|
<string name="pref_plugin_notifications">Notification sync</string>
|
||||||
<string name="pref_plugin_notifications_desc">Access your notifications from other devices</string>
|
<string name="pref_plugin_notifications_desc">Access your notifications from other devices</string>
|
||||||
|
<string name="pref_plugin_receive_notifications">Receive notifications</string>
|
||||||
|
<string name="pref_plugin_receive_notifications_desc">Receive notifications from other devices</string>
|
||||||
<string name="pref_plugin_sharereceiver">Share and receive</string>
|
<string name="pref_plugin_sharereceiver">Share and receive</string>
|
||||||
<string name="pref_plugin_sharereceiver_desc">Share files and URLs between devices</string>
|
<string name="pref_plugin_sharereceiver_desc">Share files and URLs between devices</string>
|
||||||
<string name="plugin_not_available">This feature is not available in your Android version</string>
|
<string name="plugin_not_available">This feature is not available in your Android version</string>
|
||||||
|
@@ -24,19 +24,12 @@ import android.annotation.TargetApi;
|
|||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationManager;
|
|
||||||
import android.app.PendingIntent;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.graphics.Bitmap;
|
|
||||||
import android.graphics.BitmapFactory;
|
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
import android.service.notification.StatusBarNotification;
|
import android.service.notification.StatusBarNotification;
|
||||||
import android.support.v4.app.NotificationCompat;
|
|
||||||
import android.support.v4.app.TaskStackBuilder;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import org.kde.kdeconnect.Helpers.AppsHelper;
|
import org.kde.kdeconnect.Helpers.AppsHelper;
|
||||||
@@ -46,8 +39,6 @@ import org.kde.kdeconnect.UserInterface.MaterialActivity;
|
|||||||
import org.kde.kdeconnect.UserInterface.SettingsActivity;
|
import org.kde.kdeconnect.UserInterface.SettingsActivity;
|
||||||
import org.kde.kdeconnect_tp.R;
|
import org.kde.kdeconnect_tp.R;
|
||||||
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
|
||||||
public class NotificationsPlugin extends Plugin implements NotificationReceiver.NotificationListener {
|
public class NotificationsPlugin extends Plugin implements NotificationReceiver.NotificationListener {
|
||||||
|
|
||||||
@@ -111,11 +102,6 @@ public class NotificationsPlugin extends Plugin implements NotificationReceiver.
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// request all existing notifications
|
|
||||||
NetworkPackage np = new NetworkPackage(PACKAGE_TYPE_NOTIFICATION_REQUEST);
|
|
||||||
np.set("request", true);
|
|
||||||
device.sendPackage(np);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -324,58 +310,6 @@ public class NotificationsPlugin extends Plugin implements NotificationReceiver.
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
} else {
|
|
||||||
if (!np.has("ticker") || !np.has("appName") || !np.has("id")) {
|
|
||||||
Log.e("NotificationsPlugin", "Received notification package lacks properties");
|
|
||||||
} else {
|
|
||||||
TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
|
|
||||||
stackBuilder.addParentStack(MaterialActivity.class);
|
|
||||||
stackBuilder.addNextIntent(new Intent(context, MaterialActivity.class));
|
|
||||||
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(
|
|
||||||
0,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
);
|
|
||||||
|
|
||||||
Bitmap largeIcon = null;
|
|
||||||
if (np.hasPayload()) {
|
|
||||||
int width = 64; // default icon dimensions
|
|
||||||
int height = 64;
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
|
||||||
width = context.getResources().getDimensionPixelSize(android.R.dimen.notification_large_icon_width);
|
|
||||||
height = context.getResources().getDimensionPixelSize(android.R.dimen.notification_large_icon_height);
|
|
||||||
}
|
|
||||||
final InputStream input = np.getPayload();
|
|
||||||
largeIcon = BitmapFactory.decodeStream(np.getPayload());
|
|
||||||
try { input.close(); } catch (Exception e) { }
|
|
||||||
if (largeIcon != null) {
|
|
||||||
//Log.i("NotificationsPlugin", "hasPayload: size=" + largeIcon.getWidth() + "/" + largeIcon.getHeight() + " opti=" + width + "/" + height);
|
|
||||||
if (largeIcon.getWidth() > width || largeIcon.getHeight() > height) {
|
|
||||||
// older API levels don't scale notification icons automatically, therefore:
|
|
||||||
largeIcon = Bitmap.createScaledBitmap(largeIcon, width, height, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Notification noti = new NotificationCompat.Builder(context)
|
|
||||||
.setContentTitle(np.getString("appName"))
|
|
||||||
.setContentText(np.getString("ticker"))
|
|
||||||
.setContentIntent(resultPendingIntent)
|
|
||||||
.setTicker(np.getString("ticker"))
|
|
||||||
.setSmallIcon(R.drawable.ic_notification)
|
|
||||||
.setLargeIcon(largeIcon)
|
|
||||||
.setAutoCancel(true)
|
|
||||||
.setLocalOnly(true) // to avoid bouncing the notification back to other kdeconnect nodes
|
|
||||||
.setDefaults(Notification.DEFAULT_ALL)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
|
|
||||||
try {
|
|
||||||
// tag all incoming notifications
|
|
||||||
notificationManager.notify("kdeconnectId:" + np.getString("id", "0"), np.getInt("id", 0), noti);
|
|
||||||
} catch (Exception e) {
|
|
||||||
//4.1 will throw an exception about not having the VIBRATE permission, ignore it.
|
|
||||||
//https://android.googlesource.com/platform/frameworks/base/+/android-4.2.1_r1.2%5E%5E!/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@@ -419,12 +353,12 @@ public class NotificationsPlugin extends Plugin implements NotificationReceiver.
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String[] getSupportedPackageTypes() {
|
public String[] getSupportedPackageTypes() {
|
||||||
return new String[]{PACKAGE_TYPE_NOTIFICATION, PACKAGE_TYPE_NOTIFICATION_REQUEST};
|
return new String[]{PACKAGE_TYPE_NOTIFICATION_REQUEST};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String[] getOutgoingPackageTypes() {
|
public String[] getOutgoingPackageTypes() {
|
||||||
return new String[]{PACKAGE_TYPE_NOTIFICATION, PACKAGE_TYPE_NOTIFICATION_REQUEST};
|
return new String[]{PACKAGE_TYPE_NOTIFICATION};
|
||||||
}
|
}
|
||||||
|
|
||||||
//For compat with API<21, because lollipop changed the way to cancel notifications
|
//For compat with API<21, because lollipop changed the way to cancel notifications
|
||||||
|
@@ -32,6 +32,7 @@ import org.kde.kdeconnect.Plugins.MousePadPlugin.MousePadPlugin;
|
|||||||
import org.kde.kdeconnect.Plugins.MprisPlugin.MprisPlugin;
|
import org.kde.kdeconnect.Plugins.MprisPlugin.MprisPlugin;
|
||||||
import org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationsPlugin;
|
import org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationsPlugin;
|
||||||
import org.kde.kdeconnect.Plugins.PingPlugin.PingPlugin;
|
import org.kde.kdeconnect.Plugins.PingPlugin.PingPlugin;
|
||||||
|
import org.kde.kdeconnect.Plugins.ReceiveNotificationsPlugin.ReceiveNotificationsPlugin;
|
||||||
import org.kde.kdeconnect.Plugins.RunCommandPlugin.RunCommandPlugin;
|
import org.kde.kdeconnect.Plugins.RunCommandPlugin.RunCommandPlugin;
|
||||||
import org.kde.kdeconnect.Plugins.SftpPlugin.SftpPlugin;
|
import org.kde.kdeconnect.Plugins.SftpPlugin.SftpPlugin;
|
||||||
import org.kde.kdeconnect.Plugins.SharePlugin.SharePlugin;
|
import org.kde.kdeconnect.Plugins.SharePlugin.SharePlugin;
|
||||||
@@ -117,6 +118,7 @@ public class PluginFactory {
|
|||||||
PluginFactory.registerPlugin(BatteryPlugin.class);
|
PluginFactory.registerPlugin(BatteryPlugin.class);
|
||||||
PluginFactory.registerPlugin(SftpPlugin.class);
|
PluginFactory.registerPlugin(SftpPlugin.class);
|
||||||
PluginFactory.registerPlugin(NotificationsPlugin.class);
|
PluginFactory.registerPlugin(NotificationsPlugin.class);
|
||||||
|
PluginFactory.registerPlugin(ReceiveNotificationsPlugin.class);
|
||||||
PluginFactory.registerPlugin(MousePadPlugin.class);
|
PluginFactory.registerPlugin(MousePadPlugin.class);
|
||||||
PluginFactory.registerPlugin(SharePlugin.class);
|
PluginFactory.registerPlugin(SharePlugin.class);
|
||||||
//PluginFactory.registerPlugin(TelepathyPlugin.class);
|
//PluginFactory.registerPlugin(TelepathyPlugin.class);
|
||||||
|
@@ -0,0 +1,139 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2014 Albert Vaca Cintora <albertvaka@gmail.com>
|
||||||
|
*
|
||||||
|
* 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 2 of
|
||||||
|
* the License or (at your option) version 3 or any later version
|
||||||
|
* accepted by the membership of KDE e.V. (or its successor approved
|
||||||
|
* by the membership of KDE e.V.), which shall act as a proxy
|
||||||
|
* defined in Section 14 of version 3 of the license.
|
||||||
|
*
|
||||||
|
* 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.kde.kdeconnect.Plugins.ReceiveNotificationsPlugin;
|
||||||
|
|
||||||
|
import android.app.Notification;
|
||||||
|
import android.app.NotificationManager;
|
||||||
|
import android.app.PendingIntent;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.BitmapFactory;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.support.v4.app.NotificationCompat;
|
||||||
|
import android.support.v4.app.TaskStackBuilder;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
import org.kde.kdeconnect.NetworkPackage;
|
||||||
|
import org.kde.kdeconnect.Plugins.Plugin;
|
||||||
|
import org.kde.kdeconnect.UserInterface.MaterialActivity;
|
||||||
|
import org.kde.kdeconnect_tp.R;
|
||||||
|
|
||||||
|
import java.io.InputStream;
|
||||||
|
|
||||||
|
public class ReceiveNotificationsPlugin extends Plugin {
|
||||||
|
|
||||||
|
public final static String PACKAGE_TYPE_NOTIFICATION = "kdeconnect.notification";
|
||||||
|
public final static String PACKAGE_TYPE_NOTIFICATION_REQUEST = "kdeconnect.notification.request";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getDisplayName() {
|
||||||
|
return context.getResources().getString(R.string.pref_plugin_receive_notifications);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getDescription() {
|
||||||
|
return context.getResources().getString(R.string.pref_plugin_receive_notifications_desc);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isEnabledByDefault() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onCreate() {
|
||||||
|
// request all existing notifications
|
||||||
|
NetworkPackage np = new NetworkPackage(PACKAGE_TYPE_NOTIFICATION_REQUEST);
|
||||||
|
np.set("request", true);
|
||||||
|
device.sendPackage(np);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onPackageReceived(final NetworkPackage np) {
|
||||||
|
|
||||||
|
if (!np.has("ticker") || !np.has("appName") || !np.has("id")) {
|
||||||
|
Log.e("NotificationsPlugin", "Received notification package lacks properties");
|
||||||
|
} else {
|
||||||
|
TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
|
||||||
|
stackBuilder.addParentStack(MaterialActivity.class);
|
||||||
|
stackBuilder.addNextIntent(new Intent(context, MaterialActivity.class));
|
||||||
|
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(
|
||||||
|
0,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
);
|
||||||
|
|
||||||
|
Bitmap largeIcon = null;
|
||||||
|
if (np.hasPayload()) {
|
||||||
|
int width = 64; // default icon dimensions
|
||||||
|
int height = 64;
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
||||||
|
width = context.getResources().getDimensionPixelSize(android.R.dimen.notification_large_icon_width);
|
||||||
|
height = context.getResources().getDimensionPixelSize(android.R.dimen.notification_large_icon_height);
|
||||||
|
}
|
||||||
|
final InputStream input = np.getPayload();
|
||||||
|
largeIcon = BitmapFactory.decodeStream(np.getPayload());
|
||||||
|
try { input.close(); } catch (Exception e) { }
|
||||||
|
if (largeIcon != null) {
|
||||||
|
//Log.i("NotificationsPlugin", "hasPayload: size=" + largeIcon.getWidth() + "/" + largeIcon.getHeight() + " opti=" + width + "/" + height);
|
||||||
|
if (largeIcon.getWidth() > width || largeIcon.getHeight() > height) {
|
||||||
|
// older API levels don't scale notification icons automatically, therefore:
|
||||||
|
largeIcon = Bitmap.createScaledBitmap(largeIcon, width, height, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Notification noti = new NotificationCompat.Builder(context)
|
||||||
|
.setContentTitle(np.getString("appName"))
|
||||||
|
.setContentText(np.getString("ticker"))
|
||||||
|
.setContentIntent(resultPendingIntent)
|
||||||
|
.setTicker(np.getString("ticker"))
|
||||||
|
.setSmallIcon(R.drawable.ic_notification)
|
||||||
|
.setLargeIcon(largeIcon)
|
||||||
|
.setAutoCancel(true)
|
||||||
|
.setLocalOnly(true) // to avoid bouncing the notification back to other kdeconnect nodes
|
||||||
|
.setDefaults(Notification.DEFAULT_ALL)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
try {
|
||||||
|
// tag all incoming notifications
|
||||||
|
notificationManager.notify("kdeconnectId:" + np.getString("id", "0"), np.getInt("id", 0), noti);
|
||||||
|
} catch (Exception e) {
|
||||||
|
//4.1 will throw an exception about not having the VIBRATE permission, ignore it.
|
||||||
|
//https://android.googlesource.com/platform/frameworks/base/+/android-4.2.1_r1.2%5E%5E!/
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String[] getSupportedPackageTypes() {
|
||||||
|
return new String[]{PACKAGE_TYPE_NOTIFICATION};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String[] getOutgoingPackageTypes() {
|
||||||
|
return new String[]{PACKAGE_TYPE_NOTIFICATION_REQUEST};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user