mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-12 01:51:58 +01:00
Huami: move notification code from AmazfitBipSupport to HuamiSupport
probably fix notifications on GTS
This commit is contained in:
parent
602d1d88a6
commit
a3cd99a4a3
@ -22,6 +22,8 @@ import android.bluetooth.BluetoothGatt;
|
|||||||
import android.bluetooth.BluetoothGattCharacteristic;
|
import android.bluetooth.BluetoothGattCharacteristic;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.pm.ApplicationInfo;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.text.format.DateFormat;
|
import android.text.format.DateFormat;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
@ -112,6 +114,8 @@ import nodomain.freeyourgadget.gadgetbridge.service.btle.actions.ConditionalWrit
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.actions.SetDeviceStateAction;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.actions.SetDeviceStateAction;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.IntentListener;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.IntentListener;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.alertnotification.AlertCategory;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.alertnotification.AlertCategory;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.alertnotification.AlertNotificationProfile;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.alertnotification.NewAlert;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.deviceinfo.DeviceInfoProfile;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.profiles.deviceinfo.DeviceInfoProfile;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.common.SimpleNotification;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.common.SimpleNotification;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.actions.StopNotificationAction;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.actions.StopNotificationAction;
|
||||||
@ -128,6 +132,7 @@ import nodomain.freeyourgadget.gadgetbridge.util.DeviceHelper;
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.util.NotificationUtils;
|
import nodomain.freeyourgadget.gadgetbridge.util.NotificationUtils;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.util.StringUtils;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.util.Version;
|
import nodomain.freeyourgadget.gadgetbridge.util.Version;
|
||||||
|
|
||||||
import static nodomain.freeyourgadget.gadgetbridge.devices.miband.MiBandConst.DEFAULT_VALUE_VIBRATION_COUNT;
|
import static nodomain.freeyourgadget.gadgetbridge.devices.miband.MiBandConst.DEFAULT_VALUE_VIBRATION_COUNT;
|
||||||
@ -585,6 +590,104 @@ public class HuamiSupport extends AbstractBTLEDeviceSupport {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
This works on all Huami devices except Mi Band 2
|
||||||
|
*/
|
||||||
|
protected void sendNotificationNew(NotificationSpec notificationSpec, boolean hasExtraHeader) {
|
||||||
|
if (notificationSpec.type == NotificationType.GENERIC_ALARM_CLOCK) {
|
||||||
|
onAlarmClock(notificationSpec);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String senderOrTitle = StringUtils.getFirstOf(notificationSpec.sender, notificationSpec.title);
|
||||||
|
|
||||||
|
String message = StringUtils.truncate(senderOrTitle, 32) + "\0";
|
||||||
|
if (notificationSpec.subject != null) {
|
||||||
|
message += StringUtils.truncate(notificationSpec.subject, 128) + "\n\n";
|
||||||
|
}
|
||||||
|
if (notificationSpec.body != null) {
|
||||||
|
message += StringUtils.truncate(notificationSpec.body, 128);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
TransactionBuilder builder = performInitialized("new notification");
|
||||||
|
|
||||||
|
byte customIconId = HuamiIcon.mapToIconId(notificationSpec.type);
|
||||||
|
AlertCategory alertCategory = AlertCategory.CustomHuami;
|
||||||
|
|
||||||
|
// The SMS icon for AlertCategory.SMS is unique and not available as iconId
|
||||||
|
if (notificationSpec.type == NotificationType.GENERIC_SMS) {
|
||||||
|
alertCategory = AlertCategory.SMS;
|
||||||
|
}
|
||||||
|
// EMAIL icon does not work in FW 0.0.8.74, it did in 0.0.7.90
|
||||||
|
else if (customIconId == HuamiIcon.EMAIL) {
|
||||||
|
alertCategory = AlertCategory.Email;
|
||||||
|
}
|
||||||
|
|
||||||
|
int maxLength = 230;
|
||||||
|
if (characteristicChunked != null) {
|
||||||
|
int prefixlength = 2;
|
||||||
|
|
||||||
|
// We also need a (fake) source name for Mi Band 3 for SMS/EMAIL, else the message is not displayed
|
||||||
|
byte[] appSuffix = "\0 \0".getBytes();
|
||||||
|
int suffixlength = appSuffix.length;
|
||||||
|
|
||||||
|
if (alertCategory == AlertCategory.CustomHuami) {
|
||||||
|
String appName;
|
||||||
|
prefixlength = 3;
|
||||||
|
final PackageManager pm = getContext().getPackageManager();
|
||||||
|
ApplicationInfo ai = null;
|
||||||
|
try {
|
||||||
|
ai = pm.getApplicationInfo(notificationSpec.sourceAppId, 0);
|
||||||
|
} catch (PackageManager.NameNotFoundException ignored) {
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ai != null) {
|
||||||
|
appName = "\0" + pm.getApplicationLabel(ai) + "\0";
|
||||||
|
} else {
|
||||||
|
appName = "\0" + "UNKNOWN" + "\0";
|
||||||
|
}
|
||||||
|
appSuffix = appName.getBytes();
|
||||||
|
suffixlength = appSuffix.length;
|
||||||
|
}
|
||||||
|
if (hasExtraHeader) {
|
||||||
|
prefixlength += 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
byte[] rawmessage = message.getBytes();
|
||||||
|
int length = Math.min(rawmessage.length, maxLength - prefixlength);
|
||||||
|
|
||||||
|
byte[] command = new byte[length + prefixlength + suffixlength];
|
||||||
|
int pos = 0;
|
||||||
|
command[pos++] = (byte) alertCategory.getId();
|
||||||
|
if (hasExtraHeader) {
|
||||||
|
command[pos++] = 0; // TODO
|
||||||
|
command[pos++] = 0;
|
||||||
|
command[pos++] = 0;
|
||||||
|
command[pos++] = 0;
|
||||||
|
}
|
||||||
|
command[pos++] = 1;
|
||||||
|
if (alertCategory == AlertCategory.CustomHuami) {
|
||||||
|
command[pos] = customIconId;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.arraycopy(rawmessage, 0, command, prefixlength, length);
|
||||||
|
System.arraycopy(appSuffix, 0, command, prefixlength + length, appSuffix.length);
|
||||||
|
|
||||||
|
writeToChunked(builder, 0, command);
|
||||||
|
} else {
|
||||||
|
AlertNotificationProfile<?> profile = new AlertNotificationProfile(this);
|
||||||
|
NewAlert alert = new NewAlert(alertCategory, 1, message, customIconId);
|
||||||
|
profile.setMaxLength(maxLength);
|
||||||
|
profile.newAlert(builder, alert);
|
||||||
|
}
|
||||||
|
builder.queue(getQueue());
|
||||||
|
} catch (IOException ex) {
|
||||||
|
LOG.error("Unable to send notification to device", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onNotification(NotificationSpec notificationSpec) {
|
public void onNotification(NotificationSpec notificationSpec) {
|
||||||
if (notificationSpec.type == NotificationType.GENERIC_ALARM_CLOCK) {
|
if (notificationSpec.type == NotificationType.GENERIC_ALARM_CLOCK) {
|
||||||
|
@ -68,97 +68,7 @@ public class AmazfitBipSupport extends HuamiSupport {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onNotification(NotificationSpec notificationSpec) {
|
public void onNotification(NotificationSpec notificationSpec) {
|
||||||
if (notificationSpec.type == NotificationType.GENERIC_ALARM_CLOCK) {
|
super.sendNotificationNew(notificationSpec, false);
|
||||||
onAlarmClock(notificationSpec);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
String senderOrTitle = StringUtils.getFirstOf(notificationSpec.sender, notificationSpec.title);
|
|
||||||
|
|
||||||
String message = StringUtils.truncate(senderOrTitle, 32) + "\0";
|
|
||||||
if (notificationSpec.subject != null) {
|
|
||||||
message += StringUtils.truncate(notificationSpec.subject, 128) + "\n\n";
|
|
||||||
}
|
|
||||||
if (notificationSpec.body != null) {
|
|
||||||
message += StringUtils.truncate(notificationSpec.body, 128);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
TransactionBuilder builder = performInitialized("new notification");
|
|
||||||
|
|
||||||
byte customIconId = HuamiIcon.mapToIconId(notificationSpec.type);
|
|
||||||
AlertCategory alertCategory = AlertCategory.CustomHuami;
|
|
||||||
|
|
||||||
// The SMS icon for AlertCategory.SMS is unique and not available as iconId
|
|
||||||
if (notificationSpec.type == NotificationType.GENERIC_SMS) {
|
|
||||||
alertCategory = AlertCategory.SMS;
|
|
||||||
}
|
|
||||||
// EMAIL icon does not work in FW 0.0.8.74, it did in 0.0.7.90
|
|
||||||
else if (customIconId == HuamiIcon.EMAIL) {
|
|
||||||
alertCategory = AlertCategory.Email;
|
|
||||||
}
|
|
||||||
|
|
||||||
int maxLength = 230;
|
|
||||||
if (characteristicChunked != null) {
|
|
||||||
int prefixlength = 2;
|
|
||||||
|
|
||||||
// We also need a (fake) source name for Mi Band 3 for SMS/EMAIL, else the message is not displayed
|
|
||||||
byte[] appSuffix = "\0 \0".getBytes();
|
|
||||||
int suffixlength = appSuffix.length;
|
|
||||||
|
|
||||||
if (alertCategory == AlertCategory.CustomHuami) {
|
|
||||||
String appName;
|
|
||||||
prefixlength = 3;
|
|
||||||
final PackageManager pm = getContext().getPackageManager();
|
|
||||||
ApplicationInfo ai = null;
|
|
||||||
try {
|
|
||||||
ai = pm.getApplicationInfo(notificationSpec.sourceAppId, 0);
|
|
||||||
} catch (PackageManager.NameNotFoundException ignored) {
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ai != null) {
|
|
||||||
appName = "\0" + pm.getApplicationLabel(ai) + "\0";
|
|
||||||
} else {
|
|
||||||
appName = "\0" + "UNKNOWN" + "\0";
|
|
||||||
}
|
|
||||||
appSuffix = appName.getBytes();
|
|
||||||
suffixlength = appSuffix.length;
|
|
||||||
}
|
|
||||||
if (gbDevice.getType() == DeviceType.MIBAND4 || gbDevice.getType() == DeviceType.AMAZFITGTR) {
|
|
||||||
prefixlength += 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] rawmessage = message.getBytes();
|
|
||||||
int length = Math.min(rawmessage.length, maxLength - prefixlength);
|
|
||||||
|
|
||||||
byte[] command = new byte[length + prefixlength + suffixlength];
|
|
||||||
int pos = 0;
|
|
||||||
command[pos++] = (byte) alertCategory.getId();
|
|
||||||
if (gbDevice.getType() == DeviceType.MIBAND4 || gbDevice.getType() == DeviceType.AMAZFITGTR) {
|
|
||||||
command[pos++] = 0; // TODO
|
|
||||||
command[pos++] = 0;
|
|
||||||
command[pos++] = 0;
|
|
||||||
command[pos++] = 0;
|
|
||||||
}
|
|
||||||
command[pos++] = 1;
|
|
||||||
if (alertCategory == AlertCategory.CustomHuami) {
|
|
||||||
command[pos] = customIconId;
|
|
||||||
}
|
|
||||||
|
|
||||||
System.arraycopy(rawmessage, 0, command, prefixlength, length);
|
|
||||||
System.arraycopy(appSuffix, 0, command, prefixlength + length, appSuffix.length);
|
|
||||||
|
|
||||||
writeToChunked(builder, 0, command);
|
|
||||||
} else {
|
|
||||||
AlertNotificationProfile<?> profile = new AlertNotificationProfile(this);
|
|
||||||
NewAlert alert = new NewAlert(alertCategory, 1, message, customIconId);
|
|
||||||
profile.setMaxLength(maxLength);
|
|
||||||
profile.newAlert(builder, alert);
|
|
||||||
}
|
|
||||||
builder.queue(getQueue());
|
|
||||||
} catch (IOException ex) {
|
|
||||||
LOG.error("Unable to send notification to Amazfit Bip", ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -24,6 +24,7 @@ import java.io.IOException;
|
|||||||
|
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiFWHelper;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiFWHelper;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.amazfitgtr.AmazfitGTRFWHelper;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.amazfitgtr.AmazfitGTRFWHelper;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbip.AmazfitBipSupport;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbip.AmazfitBipSupport;
|
||||||
|
|
||||||
@ -39,6 +40,11 @@ public class AmazfitGTRSupport extends AmazfitBipSupport {
|
|||||||
return 0x00;
|
return 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNotification(NotificationSpec notificationSpec) {
|
||||||
|
super.sendNotificationNew(notificationSpec, true);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public HuamiFWHelper createFWHelper(Uri uri, Context context) throws IOException {
|
public HuamiFWHelper createFWHelper(Uri uri, Context context) throws IOException {
|
||||||
return new AmazfitGTRFWHelper(uri, context);
|
return new AmazfitGTRFWHelper(uri, context);
|
||||||
|
@ -1,11 +1,23 @@
|
|||||||
package nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitgts;
|
package nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitgts;
|
||||||
|
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.miband3.MiBand3Support;
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbip.AmazfitBipSupport;
|
||||||
|
|
||||||
|
public class AmazfitGTSSupport extends AmazfitBipSupport {
|
||||||
|
|
||||||
public class AmazfitGTSSupport extends MiBand3Support {
|
|
||||||
@Override
|
@Override
|
||||||
public byte getCryptFlags() {
|
public byte getCryptFlags() {
|
||||||
return (byte) 0x80;
|
return (byte) 0x80;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected byte getAuthFlags() {
|
||||||
|
return 0x00;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNotification(NotificationSpec notificationSpec) {
|
||||||
|
super.sendNotificationNew(notificationSpec, true);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband3.MiBand3Coordin
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband3.MiBand3FWHelper;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband3.MiBand3FWHelper;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband3.MiBand3Service;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband3.MiBand3Service;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.miband.MiBandConst;
|
import nodomain.freeyourgadget.gadgetbridge.devices.miband.MiBandConst;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
|
import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbip.AmazfitBipSupport;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbip.AmazfitBipSupport;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
||||||
|
@ -23,6 +23,8 @@ import java.io.IOException;
|
|||||||
|
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiFWHelper;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiFWHelper;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband4.MiBand4FWHelper;
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.miband4.MiBand4FWHelper;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.HuamiSupport;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.miband3.MiBand3Support;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.miband3.MiBand3Support;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.operations.UpdateFirmwareOperationNew;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.operations.UpdateFirmwareOperationNew;
|
||||||
|
|
||||||
@ -33,6 +35,11 @@ public class MiBand4Support extends MiBand3Support {
|
|||||||
return (byte) 0x80;
|
return (byte) 0x80;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNotification(NotificationSpec notificationSpec) {
|
||||||
|
super.sendNotificationNew(notificationSpec, true);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public HuamiFWHelper createFWHelper(Uri uri, Context context) throws IOException {
|
public HuamiFWHelper createFWHelper(Uri uri, Context context) throws IOException {
|
||||||
return new MiBand4FWHelper(uri, context);
|
return new MiBand4FWHelper(uri, context);
|
||||||
|
Loading…
Reference in New Issue
Block a user