2017-09-21 10:03:05 -07:00
|
|
|
package org.thoughtcrime.securesms.preferences.widgets;
|
2017-08-16 12:01:26 -07:00
|
|
|
|
|
|
|
|
2019-08-07 12:40:33 +10:00
|
|
|
import android.content.ClipData;
|
|
|
|
import android.content.ClipboardManager;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.content.Context;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.graphics.Outline;
|
2019-11-27 08:53:57 +11:00
|
|
|
import android.graphics.drawable.Drawable;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.os.Build;
|
|
|
|
import android.support.annotation.RequiresApi;
|
2017-09-20 18:10:44 -07:00
|
|
|
import android.support.v7.preference.Preference;
|
|
|
|
import android.support.v7.preference.PreferenceViewHolder;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.util.AttributeSet;
|
2019-07-17 09:45:20 +10:00
|
|
|
import android.view.View;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.view.ViewOutlineProvider;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
2019-08-07 12:40:33 +10:00
|
|
|
import android.widget.Toast;
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2019-11-27 08:53:57 +11:00
|
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
|
|
|
|
2019-11-28 09:25:00 +11:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ContactPhoto;
|
2019-11-27 08:53:57 +11:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ProfileContactPhoto;
|
2017-08-16 12:01:26 -07:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
2019-11-20 15:21:54 +11:00
|
|
|
import org.thoughtcrime.securesms.loki.MnemonicUtilities;
|
2019-11-27 08:53:57 +11:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideApp;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2017-08-16 12:01:26 -07:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2019-11-20 15:21:54 +11:00
|
|
|
import org.whispersystems.signalservice.loki.crypto.MnemonicCodec;
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2019-08-07 12:40:33 +10:00
|
|
|
import network.loki.messenger.R;
|
|
|
|
|
2017-08-16 12:01:26 -07:00
|
|
|
public class ProfilePreference extends Preference {
|
|
|
|
|
2019-08-07 12:40:33 +10:00
|
|
|
private View containerView;
|
2017-08-24 17:40:35 -07:00
|
|
|
private ImageView avatarView;
|
|
|
|
private TextView profileNameView;
|
|
|
|
private TextView profileNumberView;
|
2019-10-24 13:35:14 +11:00
|
|
|
private TextView profileTagView;
|
2019-11-20 15:21:54 +11:00
|
|
|
private String ourDeviceWords;
|
2017-08-24 17:40:35 -07:00
|
|
|
|
2017-08-16 12:01:26 -07:00
|
|
|
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
|
|
|
super(context, attrs, defStyleAttr, defStyleRes);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
|
|
super(context, attrs, defStyleAttr);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context) {
|
|
|
|
super(context);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initialize() {
|
|
|
|
setLayoutResource(R.layout.profile_preference_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-09-20 18:10:44 -07:00
|
|
|
public void onBindViewHolder(PreferenceViewHolder viewHolder) {
|
|
|
|
super.onBindViewHolder(viewHolder);
|
2019-08-07 12:40:33 +10:00
|
|
|
|
|
|
|
containerView = viewHolder.itemView;
|
2017-09-20 18:10:44 -07:00
|
|
|
avatarView = (ImageView)viewHolder.findViewById(R.id.avatar);
|
|
|
|
profileNameView = (TextView)viewHolder.findViewById(R.id.profile_name);
|
|
|
|
profileNumberView = (TextView)viewHolder.findViewById(R.id.number);
|
2019-10-24 13:35:14 +11:00
|
|
|
profileTagView = (TextView)viewHolder.findViewById(R.id.tag);
|
2017-08-24 17:40:35 -07:00
|
|
|
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
|
|
|
if (profileNumberView == null) return;
|
|
|
|
|
2019-11-28 09:25:00 +11:00
|
|
|
Context context = getContext();
|
|
|
|
String userHexEncodedPublicKey = TextSecurePreferences.getLocalNumber(context);
|
|
|
|
String primaryDevicePublicKey = TextSecurePreferences.getMasterHexEncodedPublicKey(context);
|
2019-10-24 13:35:14 +11:00
|
|
|
String publicKey = primaryDevicePublicKey != null ? primaryDevicePublicKey : userHexEncodedPublicKey;
|
|
|
|
final Address localAddress = Address.fromSerialized(publicKey);
|
2019-11-28 09:25:00 +11:00
|
|
|
final Recipient recipient = Recipient.from(context, localAddress, false);
|
|
|
|
final String profileName = TextSecurePreferences.getProfileName(context);
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2019-08-07 12:40:33 +10:00
|
|
|
containerView.setOnLongClickListener(v -> {
|
|
|
|
ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
2019-10-24 13:35:14 +11:00
|
|
|
ClipData clip = ClipData.newPlainText("Public Key", publicKey);
|
2019-08-07 12:40:33 +10:00
|
|
|
clipboard.setPrimaryClip(clip);
|
|
|
|
Toast.makeText(context, R.string.activity_settings_public_key_copied_message, Toast.LENGTH_SHORT).show();
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
avatarView.setOutlineProvider(new ViewOutlineProvider() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void getOutline(View view, Outline outline) {
|
|
|
|
outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
avatarView.setClipToOutline(true);
|
|
|
|
|
2019-11-28 09:25:00 +11:00
|
|
|
Drawable fallback = recipient.getFallbackContactPhotoDrawable(context, false);
|
2017-10-16 13:11:42 -07:00
|
|
|
GlideApp.with(getContext().getApplicationContext())
|
2019-11-28 09:25:00 +11:00
|
|
|
.load(recipient.getContactPhoto())
|
2019-11-27 08:53:57 +11:00
|
|
|
.fallback(fallback)
|
|
|
|
.error(fallback)
|
2017-10-16 13:11:42 -07:00
|
|
|
.circleCrop()
|
|
|
|
.diskCacheStrategy(DiskCacheStrategy.ALL)
|
|
|
|
.into(avatarView);
|
2019-11-27 08:53:57 +11:00
|
|
|
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2017-08-24 17:40:35 -07:00
|
|
|
if (!TextUtils.isEmpty(profileName)) {
|
|
|
|
profileNameView.setText(profileName);
|
2017-08-16 12:01:26 -07:00
|
|
|
}
|
|
|
|
|
2019-07-17 09:45:20 +10:00
|
|
|
profileNameView.setVisibility(TextUtils.isEmpty(profileName) ? View.GONE : View.VISIBLE);
|
2017-08-24 17:40:35 -07:00
|
|
|
profileNumberView.setText(localAddress.toPhoneString());
|
2019-10-24 13:35:14 +11:00
|
|
|
|
|
|
|
profileTagView.setVisibility(primaryDevicePublicKey == null ? View.GONE : View.VISIBLE);
|
2019-11-20 15:21:54 +11:00
|
|
|
if (primaryDevicePublicKey != null && ourDeviceWords == null) {
|
|
|
|
MnemonicCodec codec = new MnemonicCodec(MnemonicUtilities.getLanguageFileDirectory(context));
|
|
|
|
ourDeviceWords = MnemonicUtilities.getFirst3Words(codec, userHexEncodedPublicKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
String tag = context.getResources().getString(R.string.activity_settings_linked_device_tag);
|
|
|
|
profileTagView.setText(String.format(tag, ourDeviceWords != null ? ourDeviceWords : "-"));
|
2017-08-16 12:01:26 -07:00
|
|
|
}
|
|
|
|
}
|