last part. update notification if user reads them
This commit is contained in:
parent
83c5fdaf0e
commit
aa31732ea3
|
@ -164,10 +164,7 @@ public class XmppConnectionService extends Service {
|
||||||
if (convChangedListener != null) {
|
if (convChangedListener != null) {
|
||||||
convChangedListener.onConversationListChanged();
|
convChangedListener.onConversationListChanged();
|
||||||
} else {
|
} else {
|
||||||
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
UIHelper.updateNotification(getApplicationContext(), getConversations(), notify);
|
||||||
mNotificationManager.notify(2342, UIHelper
|
|
||||||
.getNotification(
|
|
||||||
getApplicationContext(),getConversations(),notify));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -232,6 +232,7 @@ public class ConversationActivity extends XmppActivity {
|
||||||
invalidateOptionsMenu();
|
invalidateOptionsMenu();
|
||||||
if (!getSelectedConversation().isRead()) {
|
if (!getSelectedConversation().isRead()) {
|
||||||
getSelectedConversation().markRead();
|
getSelectedConversation().markRead();
|
||||||
|
UIHelper.updateNotification(getApplicationContext(), getConversationList(), false);
|
||||||
updateConversationList();
|
updateConversationList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -400,8 +401,6 @@ public class ConversationActivity extends XmppActivity {
|
||||||
|
|
||||||
public void onStart() {
|
public void onStart() {
|
||||||
super.onStart();
|
super.onStart();
|
||||||
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
|
||||||
nm.cancelAll();
|
|
||||||
if (conversationList.size()>=1) {
|
if (conversationList.size()>=1) {
|
||||||
onConvChanged.onConversationListChanged();
|
onConvChanged.onConversationListChanged();
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,8 @@ import eu.siacs.conversations.utils.PhoneHelper;
|
||||||
import eu.siacs.conversations.utils.UIHelper;
|
import eu.siacs.conversations.utils.UIHelper;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.app.Fragment;
|
import android.app.Fragment;
|
||||||
|
import android.app.NotificationManager;
|
||||||
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.IntentSender;
|
import android.content.IntentSender;
|
||||||
|
@ -346,10 +348,6 @@ public class ConversationFragment extends Fragment {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!conversation.isRead()) {
|
|
||||||
conversation.markRead();
|
|
||||||
activity.updateConversationList();
|
|
||||||
}
|
|
||||||
if (queuedPqpMessage != null) {
|
if (queuedPqpMessage != null) {
|
||||||
this.conversation.nextMessageEncryption = Message.ENCRYPTION_PGP;
|
this.conversation.nextMessageEncryption = Message.ENCRYPTION_PGP;
|
||||||
Message message = new Message(conversation, queuedPqpMessage,
|
Message message = new Message(conversation, queuedPqpMessage,
|
||||||
|
@ -421,6 +419,8 @@ public class ConversationFragment extends Fragment {
|
||||||
messagesView.setSelection(size - 1);
|
messagesView.setSelection(size - 1);
|
||||||
if (!activity.shouldPaneBeOpen()) {
|
if (!activity.shouldPaneBeOpen()) {
|
||||||
conversation.markRead();
|
conversation.markRead();
|
||||||
|
//TODO update notifications
|
||||||
|
UIHelper.updateNotification(getActivity(), activity.getConversationList(), false);
|
||||||
activity.updateConversationList();
|
activity.updateConversationList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@ import eu.siacs.conversations.ui.ConversationActivity;
|
||||||
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.app.PendingIntent;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
|
@ -86,7 +87,7 @@ public class UIHelper {
|
||||||
|
|
||||||
return bitmap;
|
return bitmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getErrorPicture(int size) {
|
public static Bitmap getErrorPicture(int size) {
|
||||||
Bitmap bitmap = Bitmap
|
Bitmap bitmap = Bitmap
|
||||||
.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
||||||
|
@ -101,23 +102,26 @@ public class UIHelper {
|
||||||
Rect rect = new Rect();
|
Rect rect = new Rect();
|
||||||
paint.getTextBounds("!", 0, 1, rect);
|
paint.getTextBounds("!", 0, 1, rect);
|
||||||
float width = paint.measureText("!");
|
float width = paint.measureText("!");
|
||||||
canvas.drawText("!", (size / 2) - (width / 2), (size / 2)
|
canvas.drawText("!", (size / 2) - (width / 2),
|
||||||
+ (rect.height() / 2), paint);
|
(size / 2) + (rect.height() / 2), paint);
|
||||||
|
|
||||||
return bitmap;
|
return bitmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Notification getNotification(Context context,
|
public static void updateNotification(Context context,
|
||||||
List<Conversation> conversations, boolean notify) {
|
List<Conversation> conversations, boolean notify) {
|
||||||
|
|
||||||
|
NotificationManager mNotificationManager = (NotificationManager) context
|
||||||
|
.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
|
||||||
String targetUuid = "";
|
String targetUuid = "";
|
||||||
List<Conversation> unread = new ArrayList<Conversation>();
|
List<Conversation> unread = new ArrayList<Conversation>();
|
||||||
for(Conversation conversation : conversations) {
|
for (Conversation conversation : conversations) {
|
||||||
if (!conversation.isRead()) {
|
if (!conversation.isRead()) {
|
||||||
unread.add(conversation);
|
unread.add(conversation);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SharedPreferences sharedPref = PreferenceManager
|
SharedPreferences sharedPref = PreferenceManager
|
||||||
.getDefaultSharedPreferences(context);
|
.getDefaultSharedPreferences(context);
|
||||||
String ringtone = sharedPref.getString("notification_ringtone", null);
|
String ringtone = sharedPref.getString("notification_ringtone", null);
|
||||||
|
@ -125,112 +129,128 @@ public class UIHelper {
|
||||||
Resources res = context.getResources();
|
Resources res = context.getResources();
|
||||||
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
|
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
|
||||||
context);
|
context);
|
||||||
if (unread.size() == 1) {
|
if (unread.size() == 0) {
|
||||||
|
mNotificationManager.cancelAll();
|
||||||
|
} else if (unread.size() == 1) {
|
||||||
Conversation conversation = unread.get(0);
|
Conversation conversation = unread.get(0);
|
||||||
targetUuid = conversation.getUuid();
|
targetUuid = conversation.getUuid();
|
||||||
mBuilder.setLargeIcon(UIHelper.getUnknownContactPicture(conversation
|
mBuilder.setLargeIcon(UIHelper.getUnknownContactPicture(
|
||||||
.getName(), (int) res
|
conversation.getName(),
|
||||||
.getDimension(android.R.dimen.notification_large_icon_width)));
|
(int) res
|
||||||
|
.getDimension(android.R.dimen.notification_large_icon_width)));
|
||||||
mBuilder.setContentTitle(conversation.getName());
|
mBuilder.setContentTitle(conversation.getName());
|
||||||
mBuilder.setTicker(conversation.getLatestMessage().getBody().trim());
|
if (notify) {
|
||||||
|
mBuilder.setTicker(conversation.getLatestMessage().getBody().trim());
|
||||||
|
}
|
||||||
StringBuilder bigText = new StringBuilder();
|
StringBuilder bigText = new StringBuilder();
|
||||||
List<Message> messages = conversation.getMessages();
|
List<Message> messages = conversation.getMessages();
|
||||||
String firstLine = "";
|
String firstLine = "";
|
||||||
for(int i = messages.size() -1; i >= 0; --i) {
|
for (int i = messages.size() - 1; i >= 0; --i) {
|
||||||
if (!messages.get(i).isRead()) {
|
if (!messages.get(i).isRead()) {
|
||||||
if (i == messages.size() -1 ) {
|
if (i == messages.size() - 1) {
|
||||||
firstLine = messages.get(i).getBody().trim();
|
firstLine = messages.get(i).getBody().trim();
|
||||||
bigText.append(firstLine);
|
bigText.append(firstLine);
|
||||||
} else {
|
} else {
|
||||||
firstLine = messages.get(i).getBody().trim();
|
firstLine = messages.get(i).getBody().trim();
|
||||||
bigText.insert(0, firstLine+"\n");
|
bigText.insert(0, firstLine + "\n");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mBuilder.setContentText(firstLine);
|
mBuilder.setContentText(firstLine);
|
||||||
mBuilder.setStyle(new NotificationCompat.BigTextStyle().bigText(bigText.toString()));
|
mBuilder.setStyle(new NotificationCompat.BigTextStyle()
|
||||||
|
.bigText(bigText.toString()));
|
||||||
} else {
|
} else {
|
||||||
NotificationCompat.InboxStyle style = new NotificationCompat.InboxStyle();
|
NotificationCompat.InboxStyle style = new NotificationCompat.InboxStyle();
|
||||||
style.setBigContentTitle(unread.size()+" unread Conversations");
|
style.setBigContentTitle(unread.size() + " unread Conversations");
|
||||||
StringBuilder names = new StringBuilder();
|
StringBuilder names = new StringBuilder();
|
||||||
for(int i = 0; i < unread.size(); ++i) {
|
for (int i = 0; i < unread.size(); ++i) {
|
||||||
targetUuid = conversations.get(0).getUuid();
|
targetUuid = conversations.get(0).getUuid();
|
||||||
if (i< unread.size()-1) {
|
if (i < unread.size() - 1) {
|
||||||
names.append(unread.get(i).getName()+", ");
|
names.append(unread.get(i).getName() + ", ");
|
||||||
} else {
|
} else {
|
||||||
names.append(unread.get(i).getName());
|
names.append(unread.get(i).getName());
|
||||||
}
|
}
|
||||||
style.addLine(Html.fromHtml("<b>"+unread.get(i).getName()+"</b> "+unread.get(i).getLatestMessage().getBody()));
|
style.addLine(Html.fromHtml("<b>" + unread.get(i).getName()
|
||||||
|
+ "</b> " + unread.get(i).getLatestMessage().getBody().trim()));
|
||||||
}
|
}
|
||||||
mBuilder.setContentTitle(unread.size()+" unread Conversations");
|
mBuilder.setContentTitle(unread.size() + " unread Conversations");
|
||||||
mBuilder.setContentText(names.toString());
|
mBuilder.setContentText(names.toString());
|
||||||
mBuilder.setStyle(style);
|
mBuilder.setStyle(style);
|
||||||
}
|
}
|
||||||
mBuilder.setSmallIcon(R.drawable.notification);
|
if (unread.size() != 0) {
|
||||||
if (notify) {
|
mBuilder.setSmallIcon(R.drawable.notification);
|
||||||
mBuilder.setLights(0xffffffff, 2000, 4000);
|
if (notify) {
|
||||||
if (ringtone != null) {
|
mBuilder.setLights(0xffffffff, 2000, 4000);
|
||||||
mBuilder.setSound(Uri.parse(ringtone));
|
if (ringtone != null) {
|
||||||
|
mBuilder.setSound(Uri.parse(ringtone));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
|
||||||
|
stackBuilder.addParentStack(ConversationActivity.class);
|
||||||
|
|
||||||
|
Intent viewConversationIntent = new Intent(context,
|
||||||
|
ConversationActivity.class);
|
||||||
|
viewConversationIntent.setAction(Intent.ACTION_VIEW);
|
||||||
|
viewConversationIntent.putExtra(ConversationActivity.CONVERSATION,
|
||||||
|
targetUuid);
|
||||||
|
viewConversationIntent
|
||||||
|
.setType(ConversationActivity.VIEW_CONVERSATION);
|
||||||
|
|
||||||
|
stackBuilder.addNextIntent(viewConversationIntent);
|
||||||
|
|
||||||
|
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(
|
||||||
|
0, PendingIntent.FLAG_UPDATE_CURRENT);
|
||||||
|
|
||||||
|
mBuilder.setContentIntent(resultPendingIntent);
|
||||||
|
mNotificationManager.notify(2342, mBuilder.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
|
|
||||||
stackBuilder.addParentStack(ConversationActivity.class);
|
|
||||||
|
|
||||||
Intent viewConversationIntent = new Intent(context,
|
|
||||||
ConversationActivity.class);
|
|
||||||
viewConversationIntent.setAction(Intent.ACTION_VIEW);
|
|
||||||
viewConversationIntent.putExtra(ConversationActivity.CONVERSATION,
|
|
||||||
targetUuid);
|
|
||||||
viewConversationIntent.setType(ConversationActivity.VIEW_CONVERSATION);
|
|
||||||
|
|
||||||
stackBuilder.addNextIntent(viewConversationIntent);
|
|
||||||
|
|
||||||
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT);
|
|
||||||
|
|
||||||
mBuilder.setContentIntent(resultPendingIntent);
|
|
||||||
return mBuilder.build();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void prepareContactBadge(final Activity activity,
|
public static void prepareContactBadge(final Activity activity,
|
||||||
QuickContactBadge badge, final Contact contact) {
|
QuickContactBadge badge, final Contact contact) {
|
||||||
if (contact.getSystemAccount()!=null) {
|
if (contact.getSystemAccount() != null) {
|
||||||
String[] systemAccount = contact.getSystemAccount().split("#");
|
String[] systemAccount = contact.getSystemAccount().split("#");
|
||||||
long id = Long.parseLong(systemAccount[0]);
|
long id = Long.parseLong(systemAccount[0]);
|
||||||
badge.assignContactUri(Contacts.getLookupUri(id, systemAccount[1]));
|
badge.assignContactUri(Contacts.getLookupUri(id, systemAccount[1]));
|
||||||
|
|
||||||
if (contact.getProfilePhoto() != null) {
|
if (contact.getProfilePhoto() != null) {
|
||||||
badge.setImageURI(Uri.parse(contact.getProfilePhoto()));
|
badge.setImageURI(Uri.parse(contact.getProfilePhoto()));
|
||||||
} else {
|
} else {
|
||||||
badge.setImageBitmap(UIHelper.getUnknownContactPicture(contact.getDisplayName(), 400));
|
badge.setImageBitmap(UIHelper.getUnknownContactPicture(
|
||||||
|
contact.getDisplayName(), 400));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
badge.setImageBitmap(UIHelper.getUnknownContactPicture(contact.getDisplayName(), 400));
|
badge.setImageBitmap(UIHelper.getUnknownContactPicture(
|
||||||
|
contact.getDisplayName(), 400));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AlertDialog getVerifyFingerprintDialog(final ConversationActivity activity,final Conversation conversation, final LinearLayout msg) {
|
public static AlertDialog getVerifyFingerprintDialog(
|
||||||
|
final ConversationActivity activity,
|
||||||
|
final Conversation conversation, final LinearLayout msg) {
|
||||||
final Contact contact = conversation.getContact();
|
final Contact contact = conversation.getContact();
|
||||||
final Account account = conversation.getAccount();
|
final Account account = conversation.getAccount();
|
||||||
|
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
||||||
builder.setTitle("Verify fingerprint");
|
builder.setTitle("Verify fingerprint");
|
||||||
LayoutInflater inflater = activity.getLayoutInflater();
|
LayoutInflater inflater = activity.getLayoutInflater();
|
||||||
View view = inflater.inflate(R.layout.dialog_verify_otr, null);
|
View view = inflater.inflate(R.layout.dialog_verify_otr, null);
|
||||||
TextView jid = (TextView) view.findViewById(R.id.verify_otr_jid);
|
TextView jid = (TextView) view.findViewById(R.id.verify_otr_jid);
|
||||||
TextView fingerprint = (TextView) view.findViewById(R.id.verify_otr_fingerprint);
|
TextView fingerprint = (TextView) view
|
||||||
TextView yourprint = (TextView) view.findViewById(R.id.verify_otr_yourprint);
|
.findViewById(R.id.verify_otr_fingerprint);
|
||||||
|
TextView yourprint = (TextView) view
|
||||||
|
.findViewById(R.id.verify_otr_yourprint);
|
||||||
|
|
||||||
jid.setText(contact.getJid());
|
jid.setText(contact.getJid());
|
||||||
fingerprint.setText(conversation.getOtrFingerprint());
|
fingerprint.setText(conversation.getOtrFingerprint());
|
||||||
yourprint.setText(account.getOtrFingerprint());
|
yourprint.setText(account.getOtrFingerprint());
|
||||||
builder.setNegativeButton("Cancel", null);
|
builder.setNegativeButton("Cancel", null);
|
||||||
builder.setPositiveButton("Verify", new OnClickListener() {
|
builder.setPositiveButton("Verify", new OnClickListener() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
contact.addOtrFingerprint(conversation.getOtrFingerprint());
|
contact.addOtrFingerprint(conversation.getOtrFingerprint());
|
||||||
|
|
Loading…
Reference in a new issue