2015-05-04 11:36:18 -07:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2015-06-29 15:33:36 -07:00
|
|
|
import android.content.res.TypedArray;
|
2018-09-25 00:13:16 -07:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Color;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.graphics.Outline;
|
2018-09-25 00:13:16 -07:00
|
|
|
import android.graphics.Paint;
|
2019-09-06 14:08:46 +10:00
|
|
|
import android.graphics.drawable.Drawable;
|
2015-05-04 11:36:18 -07:00
|
|
|
import android.provider.ContactsContract;
|
2017-10-16 13:11:42 -07:00
|
|
|
import android.support.annotation.NonNull;
|
2015-05-14 08:53:35 -07:00
|
|
|
import android.support.annotation.Nullable;
|
2017-10-16 13:11:42 -07:00
|
|
|
import android.support.v7.widget.AppCompatImageView;
|
2015-05-04 11:36:18 -07:00
|
|
|
import android.util.AttributeSet;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewOutlineProvider;
|
2017-10-16 13:11:42 -07:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
|
|
|
|
2019-09-06 14:08:46 +10:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ContactColors;
|
2019-11-27 08:53:57 +11:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ContactPhoto;
|
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ResourceContactPhoto;
|
2019-10-10 13:53:02 +11:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
2019-11-27 08:53:57 +11:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideApp;
|
2017-10-16 13:11:42 -07:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideRequests;
|
2015-05-04 11:36:18 -07:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2019-03-11 16:40:26 -03:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientExporter;
|
2018-09-25 00:13:16 -07:00
|
|
|
import org.thoughtcrime.securesms.util.ThemeUtil;
|
2019-11-27 08:53:57 +11:00
|
|
|
|
|
|
|
import java.util.Objects;
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2019-09-10 13:50:59 +10:00
|
|
|
import network.loki.messenger.R;
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public class AvatarImageView extends AppCompatImageView {
|
2017-10-04 14:47:29 -07:00
|
|
|
|
|
|
|
private static final String TAG = AvatarImageView.class.getSimpleName();
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2018-09-25 00:13:16 -07:00
|
|
|
private static final Paint LIGHT_THEME_OUTLINE_PAINT = new Paint();
|
|
|
|
private static final Paint DARK_THEME_OUTLINE_PAINT = new Paint();
|
|
|
|
|
|
|
|
static {
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setColor(Color.argb((int) (255 * 0.2), 0, 0, 0));
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setStyle(Paint.Style.STROKE);
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setStrokeWidth(1f);
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setAntiAlias(true);
|
|
|
|
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setColor(Color.argb((int) (255 * 0.2), 255, 255, 255));
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setStyle(Paint.Style.STROKE);
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setStrokeWidth(1f);
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setAntiAlias(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean inverted;
|
|
|
|
private Paint outlinePaint;
|
|
|
|
private OnClickListener listener;
|
2019-11-27 08:53:57 +11:00
|
|
|
|
|
|
|
private @Nullable RecipientContactPhoto recipientContactPhoto;
|
|
|
|
private @NonNull Drawable unknownRecipientDrawable;
|
2015-06-29 15:33:36 -07:00
|
|
|
|
2015-05-04 11:36:18 -07:00
|
|
|
public AvatarImageView(Context context) {
|
|
|
|
super(context);
|
2018-09-25 00:13:16 -07:00
|
|
|
initialize(context, null);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public AvatarImageView(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
2018-09-25 00:13:16 -07:00
|
|
|
initialize(context, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initialize(@NonNull Context context, @Nullable AttributeSet attrs) {
|
2015-05-15 17:14:20 -07:00
|
|
|
setScaleType(ScaleType.CENTER_CROP);
|
2015-06-29 15:33:36 -07:00
|
|
|
|
|
|
|
if (attrs != null) {
|
|
|
|
TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.AvatarImageView, 0, 0);
|
|
|
|
inverted = typedArray.getBoolean(0, false);
|
|
|
|
typedArray.recycle();
|
|
|
|
}
|
2018-09-25 00:13:16 -07:00
|
|
|
|
|
|
|
outlinePaint = ThemeUtil.isDarkTheme(getContext()) ? DARK_THEME_OUTLINE_PAINT : LIGHT_THEME_OUTLINE_PAINT;
|
2019-07-22 12:13:53 +10:00
|
|
|
setOutlineProvider(new ViewOutlineProvider() {
|
|
|
|
@Override
|
|
|
|
public void getOutline(View view, Outline outline) {
|
|
|
|
outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
setClipToOutline(true);
|
2019-11-27 08:53:57 +11:00
|
|
|
|
|
|
|
unknownRecipientDrawable = new ResourceContactPhoto(R.drawable.ic_profile_default).asDrawable(getContext(), ContactColors.UNKNOWN_COLOR.toConversationColor(getContext()), inverted);
|
2018-09-25 00:13:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-11-27 08:53:57 +11:00
|
|
|
protected void onDraw(Canvas canvas) {
|
|
|
|
super.onDraw(canvas);
|
2018-09-25 00:13:16 -07:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
float width = getWidth() - getPaddingRight() - getPaddingLeft();
|
|
|
|
float height = getHeight() - getPaddingBottom() - getPaddingTop();
|
|
|
|
float cx = width / 2f;
|
|
|
|
float cy = height / 2f;
|
|
|
|
float radius = Math.min(cx, cy) - (outlinePaint.getStrokeWidth() / 2f);
|
|
|
|
|
|
|
|
canvas.translate(getPaddingLeft(), getPaddingTop());
|
2018-09-25 00:13:16 -07:00
|
|
|
canvas.drawCircle(cx, cy, radius, outlinePaint);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
2017-10-04 14:04:04 -07:00
|
|
|
@Override
|
|
|
|
public void setOnClickListener(OnClickListener listener) {
|
|
|
|
this.listener = listener;
|
|
|
|
super.setOnClickListener(listener);
|
|
|
|
}
|
|
|
|
|
2019-10-10 13:53:02 +11:00
|
|
|
public void update(String hexEncodedPublicKey) {
|
2019-11-18 13:02:19 +11:00
|
|
|
Address address = Address.fromSerialized(hexEncodedPublicKey);
|
2019-11-27 08:53:57 +11:00
|
|
|
Recipient recipient = Recipient.from(getContext(), address, false);
|
|
|
|
updateAvatar(recipient);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateAvatar(Recipient recipient) {
|
|
|
|
setAvatar(GlideApp.with(getContext()), recipient, false);
|
2019-10-10 13:53:02 +11:00
|
|
|
}
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public void setAvatar(@NonNull GlideRequests requestManager, @Nullable Recipient recipient, boolean quickContactEnabled) {
|
2017-08-01 08:56:00 -07:00
|
|
|
if (recipient != null) {
|
2019-11-28 12:49:33 +11:00
|
|
|
if (recipient.isLocalNumber()) {
|
|
|
|
setImageDrawable(new ResourceContactPhoto(R.drawable.ic_note_to_self).asDrawable(getContext(), recipient.getColor().toAvatarColor(getContext()), inverted));
|
|
|
|
} else {
|
|
|
|
RecipientContactPhoto photo = new RecipientContactPhoto(recipient);
|
|
|
|
if (!photo.equals(recipientContactPhoto)) {
|
|
|
|
requestManager.clear(this);
|
|
|
|
recipientContactPhoto = photo;
|
|
|
|
|
|
|
|
Drawable fallbackContactPhotoDrawable = photo.recipient.getFallbackContactPhotoDrawable(getContext(), inverted);
|
|
|
|
|
|
|
|
if (photo.contactPhoto != null) {
|
|
|
|
requestManager.load(photo.contactPhoto)
|
|
|
|
.fallback(fallbackContactPhotoDrawable)
|
|
|
|
.error(fallbackContactPhotoDrawable)
|
|
|
|
.diskCacheStrategy(DiskCacheStrategy.ALL)
|
|
|
|
.circleCrop()
|
|
|
|
.into(this);
|
|
|
|
} else {
|
|
|
|
setImageDrawable(fallbackContactPhotoDrawable);
|
|
|
|
}
|
2019-11-27 08:53:57 +11:00
|
|
|
}
|
|
|
|
}
|
2015-05-14 08:53:35 -07:00
|
|
|
} else {
|
2019-11-27 08:53:57 +11:00
|
|
|
recipientContactPhoto = null;
|
|
|
|
requestManager.clear(this);
|
|
|
|
setImageDrawable(unknownRecipientDrawable);
|
2017-10-04 14:04:04 -07:00
|
|
|
super.setOnClickListener(listener);
|
2015-05-14 08:53:35 -07:00
|
|
|
}
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public void clear(@NonNull GlideRequests glideRequests) {
|
|
|
|
glideRequests.clear(this);
|
|
|
|
}
|
|
|
|
|
2017-08-01 08:56:00 -07:00
|
|
|
private void setAvatarClickHandler(final Recipient recipient, boolean quickContactEnabled) {
|
|
|
|
if (!recipient.isGroupRecipient() && quickContactEnabled) {
|
2017-10-13 09:51:37 -07:00
|
|
|
super.setOnClickListener(v -> {
|
|
|
|
if (recipient.getContactUri() != null) {
|
|
|
|
ContactsContract.QuickContact.showQuickContact(getContext(), AvatarImageView.this, recipient.getContactUri(), ContactsContract.QuickContact.MODE_LARGE, null);
|
|
|
|
} else {
|
2019-03-11 16:40:26 -03:00
|
|
|
getContext().startActivity(RecipientExporter.export(recipient).asAddContactIntent());
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2017-10-04 14:04:04 -07:00
|
|
|
super.setOnClickListener(listener);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
}
|
2017-10-16 13:11:42 -07:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
private static class RecipientContactPhoto {
|
2019-11-18 13:02:19 +11:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
private final @NonNull Recipient recipient;
|
|
|
|
private final @Nullable ContactPhoto contactPhoto;
|
|
|
|
private final boolean ready;
|
2019-11-18 13:02:19 +11:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
RecipientContactPhoto(@NonNull Recipient recipient) {
|
|
|
|
this.recipient = recipient;
|
|
|
|
this.ready = !recipient.isResolving();
|
|
|
|
this.contactPhoto = recipient.getContactPhoto();
|
|
|
|
}
|
2019-11-18 13:02:19 +11:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
public boolean equals(@Nullable RecipientContactPhoto other) {
|
|
|
|
if (other == null) return false;
|
2019-11-18 13:02:19 +11:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
return other.recipient.equals(recipient) &&
|
|
|
|
other.recipient.getColor().equals(recipient.getColor()) &&
|
|
|
|
other.ready == ready &&
|
|
|
|
Objects.equals(other.contactPhoto, contactPhoto);
|
2019-11-18 13:02:19 +11:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|