2018-02-26 14:27:32 +01:00
|
|
|
/* Copyright (C) 2017-2018 Andreas Shimokawa, Carsten Pfeiffer, Daniele
|
|
|
|
Gobbetti, Lukas Veneziano
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2017-03-02 00:27:54 +01:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.util;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
import androidx.annotation.NonNull;
|
2017-03-11 22:15:44 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
2017-03-02 00:27:54 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
|
|
|
|
|
|
|
public class NotificationUtils {
|
|
|
|
@NonNull
|
|
|
|
public static String getPreferredTextFor(NotificationSpec notificationSpec, int lengthBody, int lengthSubject, Context context) {
|
|
|
|
switch (notificationSpec.type) {
|
|
|
|
case GENERIC_ALARM_CLOCK:
|
|
|
|
return StringUtils.getFirstOf(notificationSpec.title, notificationSpec.subject);
|
|
|
|
case GENERIC_SMS:
|
|
|
|
case GENERIC_EMAIL:
|
|
|
|
return formatText(notificationSpec.sender, notificationSpec.subject, notificationSpec.body, lengthBody, lengthSubject, context);
|
|
|
|
case GENERIC_NAVIGATION:
|
|
|
|
return StringUtils.getFirstOf(notificationSpec.title, notificationSpec.body);
|
2017-10-22 00:02:36 +02:00
|
|
|
case CONVERSATIONS:
|
|
|
|
case FACEBOOK_MESSENGER:
|
|
|
|
case GOOGLE_MESSENGER:
|
|
|
|
case GOOGLE_HANGOUTS:
|
|
|
|
case HIPCHAT:
|
|
|
|
case KAKAO_TALK:
|
|
|
|
case LINE:
|
2017-03-02 00:27:54 +01:00
|
|
|
case RIOT:
|
|
|
|
case SIGNAL:
|
2017-10-22 00:02:36 +02:00
|
|
|
case SKYPE:
|
|
|
|
case SNAPCHAT:
|
2017-03-02 00:27:54 +01:00
|
|
|
case TELEGRAM:
|
2017-12-27 08:59:09 +01:00
|
|
|
case THREEMA:
|
2018-02-17 17:33:34 +01:00
|
|
|
case KONTALK:
|
2018-02-17 17:39:15 +01:00
|
|
|
case ANTOX:
|
2017-03-02 00:27:54 +01:00
|
|
|
case TWITTER:
|
|
|
|
case WHATSAPP:
|
2017-10-22 00:02:36 +02:00
|
|
|
case VIBER:
|
|
|
|
case WECHAT:
|
2017-03-18 11:41:47 +01:00
|
|
|
return StringUtils.ensureNotNull(notificationSpec.body);
|
2017-03-02 00:27:54 +01:00
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-03-11 22:15:44 +01:00
|
|
|
@NonNull
|
|
|
|
public static String formatSender(String sender, Context context) {
|
|
|
|
if (sender == null || sender.length() == 0) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return context.getString(R.string.StringUtils_sender, sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-02 00:27:54 +01:00
|
|
|
@NonNull
|
|
|
|
public static String formatText(String sender, String subject, String body, int lengthBody, int lengthSubject, Context context) {
|
2017-03-11 22:15:44 +01:00
|
|
|
String fBody = StringUtils.truncate(body, lengthBody);
|
|
|
|
String fSubject = StringUtils.truncate(subject, lengthSubject);
|
|
|
|
String fSender = formatSender(sender, context);
|
2017-03-02 00:27:54 +01:00
|
|
|
|
2017-03-11 22:15:44 +01:00
|
|
|
StringBuilder builder = StringUtils.join(" ", fBody, fSubject, fSender);
|
|
|
|
return builder.toString().trim();
|
2017-03-02 00:27:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPreferredTextFor(CallSpec callSpec) {
|
|
|
|
return StringUtils.getFirstOf(callSpec.name, callSpec.number);
|
|
|
|
}
|
|
|
|
}
|