mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-05 02:29:24 +02:00
145 lines
4.8 KiB
Java
145 lines
4.8 KiB
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.graphics.Color;
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.appcompat.widget.AppCompatImageView;
|
|
import android.util.AttributeSet;
|
|
|
|
import com.b44t.messenger.DcChat;
|
|
import com.b44t.messenger.DcMsg;
|
|
|
|
import org.json.JSONObject;
|
|
import org.thoughtcrime.securesms.components.DeliveryStatusView;
|
|
import org.thoughtcrime.securesms.mms.GlideRequests;
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
import org.thoughtcrime.securesms.util.JsonUtils;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.util.Set;
|
|
|
|
public class ConversationUpdateItem extends BaseConversationItem
|
|
{
|
|
private DeliveryStatusView deliveryStatusView;
|
|
private AppCompatImageView appIcon;
|
|
private AppCompatImageView verifiedIcon;
|
|
private int textColor;
|
|
|
|
public ConversationUpdateItem(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public ConversationUpdateItem(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
@Override
|
|
public void onFinishInflate() {
|
|
super.onFinishInflate();
|
|
|
|
initializeAttributes();
|
|
|
|
bodyText = findViewById(R.id.conversation_update_body);
|
|
deliveryStatusView = new DeliveryStatusView(findViewById(R.id.delivery_indicator));
|
|
appIcon = findViewById(R.id.app_icon);
|
|
verifiedIcon = findViewById(R.id.verified_icon);
|
|
|
|
|
|
bodyText.setOnLongClickListener(passthroughClickListener);
|
|
bodyText.setOnClickListener(passthroughClickListener);
|
|
|
|
// info messages do not contain links but domains (eg. invalid_unencrypted_tap_to_learn_more),
|
|
// however, they should not be linkified to not disturb eg. "Tap to learn more".
|
|
bodyText.setAutoLinkMask(0);
|
|
}
|
|
|
|
@Override
|
|
public void bind(@NonNull DcMsg messageRecord,
|
|
@NonNull DcChat dcChat,
|
|
@NonNull GlideRequests glideRequests,
|
|
@NonNull Set<DcMsg> batchSelected,
|
|
@NonNull Recipient conversationRecipient,
|
|
boolean pulseUpdate)
|
|
{
|
|
bind(messageRecord, dcChat, batchSelected, pulseUpdate, conversationRecipient);
|
|
setGenericInfoRecord(messageRecord);
|
|
}
|
|
|
|
private void initializeAttributes() {
|
|
final int[] attributes = new int[] {
|
|
R.attr.conversation_item_update_text_color,
|
|
};
|
|
final TypedArray attrs = context.obtainStyledAttributes(attributes);
|
|
|
|
textColor = attrs.getColor(0, Color.WHITE);
|
|
attrs.recycle();
|
|
}
|
|
|
|
@Override
|
|
public void setEventListener(@Nullable EventListener listener) {
|
|
// No events to report yet
|
|
}
|
|
|
|
@Override
|
|
public DcMsg getMessageRecord() {
|
|
return messageRecord;
|
|
}
|
|
|
|
private void setGenericInfoRecord(DcMsg messageRecord) {
|
|
int infoType = messageRecord.getInfoType();
|
|
|
|
if (infoType == DcMsg.DC_INFO_WEBXDC_INFO_MESSAGE) {
|
|
DcMsg parentMsg = messageRecord.getParent();
|
|
|
|
// It is possible that we only received an update without the webxdc itself.
|
|
// In this case parentMsg is null and we display update message without the icon.
|
|
if (parentMsg != null) {
|
|
JSONObject info = parentMsg.getWebxdcInfo();
|
|
byte[] blob = parentMsg.getWebxdcBlob(JsonUtils.optString(info, "icon"));
|
|
if (blob != null) {
|
|
ByteArrayInputStream is = new ByteArrayInputStream(blob);
|
|
Drawable drawable = Drawable.createFromStream(is, "icon");
|
|
appIcon.setImageDrawable(drawable);
|
|
appIcon.setVisibility(VISIBLE);
|
|
} else {
|
|
appIcon.setVisibility(GONE);
|
|
}
|
|
}
|
|
} else {
|
|
appIcon.setVisibility(GONE);
|
|
}
|
|
|
|
if (infoType == DcMsg.DC_INFO_PROTECTION_ENABLED) {
|
|
verifiedIcon.setVisibility(VISIBLE);
|
|
verifiedIcon.setImageResource(R.drawable.ic_verified);
|
|
} else if (infoType == DcMsg.DC_INFO_PROTECTION_DISABLED) {
|
|
verifiedIcon.setVisibility(VISIBLE);
|
|
verifiedIcon.setImageResource(R.drawable.ic_verified_broken);
|
|
} else {
|
|
verifiedIcon.setVisibility(GONE);
|
|
}
|
|
|
|
bodyText.setText(messageRecord.getDisplayBody());
|
|
bodyText.setVisibility(VISIBLE);
|
|
|
|
if (messageRecord.isFailed()) deliveryStatusView.setFailed();
|
|
else if (!messageRecord.isOutgoing()) deliveryStatusView.setNone();
|
|
else if (messageRecord.isPreparing()) deliveryStatusView.setPreparing();
|
|
else if (messageRecord.isPending()) deliveryStatusView.setPending();
|
|
else deliveryStatusView.setNone();
|
|
|
|
if (messageRecord.isFailed()) {
|
|
deliveryStatusView.setTint(Color.RED);
|
|
} else {
|
|
deliveryStatusView.setTint(textColor);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void unbind() {
|
|
}
|
|
}
|