NekoX/TMessagesProj/src/main/java/org/telegram/ui/ProfileActivity.java

765 lines
36 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2013-12-20 20:25:49 +01:00
* This is the source code of Telegram for Android v. 1.3.2.
2013-10-25 17:19:00 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013.
*/
package org.telegram.ui;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
2014-11-11 23:16:17 +01:00
import android.content.res.Configuration;
2013-10-25 17:19:00 +02:00
import android.net.Uri;
2014-11-10 12:05:22 +01:00
import android.os.Build;
2013-10-25 17:19:00 +02:00
import android.os.Bundle;
2014-11-10 12:05:22 +01:00
import android.util.TypedValue;
import android.view.Gravity;
2013-10-25 17:19:00 +02:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
2014-11-11 23:16:17 +01:00
import android.view.ViewTreeObserver;
2013-10-25 17:19:00 +02:00
import android.widget.AdapterView;
2014-11-10 12:05:22 +01:00
import android.widget.FrameLayout;
import android.widget.ImageView;
2013-10-25 17:19:00 +02:00
import android.widget.ListView;
import android.widget.TextView;
import org.telegram.android.AndroidUtilities;
2013-10-25 17:19:00 +02:00
import org.telegram.PhoneFormat.PhoneFormat;
import org.telegram.android.LocaleController;
import org.telegram.android.SendMessagesHelper;
import org.telegram.messenger.TLRPC;
import org.telegram.android.ContactsController;
2013-12-20 20:25:49 +01:00
import org.telegram.messenger.FileLog;
import org.telegram.android.MessagesController;
import org.telegram.android.NotificationCenter;
2013-10-25 17:19:00 +02:00
import org.telegram.messenger.R;
import org.telegram.android.MessageObject;
import org.telegram.ui.Adapters.BaseFragmentAdapter;
2014-11-10 12:05:22 +01:00
import org.telegram.ui.Cells.DividerCell;
import org.telegram.ui.Cells.EmptyCell;
import org.telegram.ui.Cells.TextCell;
import org.telegram.ui.Cells.TextDetailCell;
2014-11-11 23:16:17 +01:00
import org.telegram.ui.Views.ActionBar.ActionBar;
import org.telegram.ui.Views.ActionBar.ActionBarMenu;
import org.telegram.ui.Views.ActionBar.ActionBarMenuItem;
import org.telegram.ui.Views.AvatarDrawable;
2013-10-25 17:19:00 +02:00
import org.telegram.ui.Views.BackupImageView;
import org.telegram.ui.Views.ActionBar.BaseFragment;
2014-11-10 12:05:22 +01:00
import org.telegram.ui.Views.IdenticonDrawable;
2013-10-25 17:19:00 +02:00
import java.util.ArrayList;
2014-11-10 12:05:22 +01:00
public class ProfileActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, MessagesActivity.MessagesActivityDelegate, PhotoViewer.PhotoViewerProvider {
2013-10-25 17:19:00 +02:00
private ListView listView;
private ListAdapter listAdapter;
2014-11-10 12:05:22 +01:00
private BackupImageView avatarImage;
private TextView nameTextView;
private TextView onlineTextView;
2014-11-11 23:16:17 +01:00
private ImageView writeButton;
2014-11-10 12:05:22 +01:00
2013-10-25 17:19:00 +02:00
private int user_id;
private int totalMediaCount = -1;
private boolean creatingChat = false;
private long dialog_id;
private TLRPC.EncryptedChat currentEncryptedChat;
private boolean userBlocked = false;
2013-10-25 17:19:00 +02:00
private final static int add_contact = 1;
private final static int block_contact = 2;
private final static int share_contact = 3;
private final static int edit_contact = 4;
private final static int delete_contact = 5;
2014-11-10 12:05:22 +01:00
private int emptyRow;
private int phoneRow;
private int usernameRow;
private int settingsTimerRow;
private int settingsKeyRow;
private int settingsNotificationsRow;
private int sharedMediaRow;
2014-11-10 12:05:22 +01:00
private int startSecretChatRow;
private int sectionRow;
private int rowCount = 0;
2014-11-10 12:05:22 +01:00
public ProfileActivity(Bundle args) {
super(args);
}
2013-10-25 17:19:00 +02:00
@Override
public boolean onFragmentCreate() {
user_id = arguments.getInt("user_id", 0);
dialog_id = arguments.getLong("dialog_id", 0);
2013-10-25 17:19:00 +02:00
if (dialog_id != 0) {
currentEncryptedChat = MessagesController.getInstance().getEncryptedChat((int)(dialog_id >> 32));
2013-10-25 17:19:00 +02:00
}
updateRowsIds();
if (MessagesController.getInstance().getUser(user_id) == null) {
return false;
}
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.contactsDidLoaded);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.mediaCountDidLoaded);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.encryptedChatCreated);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.encryptedChatUpdated);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.blockedUsersDidLoaded);
userBlocked = MessagesController.getInstance().blockedUsers.contains(user_id);
MessagesController.getInstance().loadFullUser(MessagesController.getInstance().getUser(user_id), classGuid);
return true;
2013-10-25 17:19:00 +02:00
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.contactsDidLoaded);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.mediaCountDidLoaded);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.encryptedChatCreated);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.encryptedChatUpdated);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.blockedUsersDidLoaded);
MessagesController.getInstance().cancelLoadFullUser(user_id);
2013-10-25 17:19:00 +02:00
}
@Override
public View createView(LayoutInflater inflater, ViewGroup container) {
2013-10-25 17:19:00 +02:00
if (fragmentView == null) {
2014-11-11 23:16:17 +01:00
actionBar.setBackgroundColor(AvatarDrawable.getProfileBackColorForId(user_id));
actionBar.setItemsBackground(AvatarDrawable.getButtonColorForId(user_id));
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
actionBar.setBackOverlay(R.layout.updating_state_layout);
actionBar.setExtraHeight(AndroidUtilities.dp(88));
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(final int id) {
if (id == -1) {
finishFragment();
} else if (id == block_contact) {
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
if (!userBlocked) {
builder.setMessage(LocaleController.getString("AreYouSureBlockContact", R.string.AreYouSureBlockContact));
} else {
builder.setMessage(LocaleController.getString("AreYouSureUnblockContact", R.string.AreYouSureUnblockContact));
}
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (!userBlocked) {
MessagesController.getInstance().blockUser(user_id);
} else {
MessagesController.getInstance().unblockUser(user_id);
}
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
} else if (id == add_contact) {
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
Bundle args = new Bundle();
args.putInt("user_id", user.id);
presentFragment(new ContactAddActivity(args));
} else if (id == share_contact) {
Bundle args = new Bundle();
args.putBoolean("onlySelect", true);
args.putBoolean("serverOnly", true);
MessagesActivity fragment = new MessagesActivity(args);
2014-11-10 12:05:22 +01:00
fragment.setDelegate(ProfileActivity.this);
presentFragment(fragment);
} else if (id == edit_contact) {
Bundle args = new Bundle();
args.putInt("user_id", user_id);
presentFragment(new ContactAddActivity(args));
} else if (id == delete_contact) {
final TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user == null || getParentActivity() == null) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setMessage(LocaleController.getString("AreYouSureDeleteContact", R.string.AreYouSureDeleteContact));
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
ArrayList<TLRPC.User> arrayList = new ArrayList<TLRPC.User>();
arrayList.add(user);
ContactsController.getInstance().deleteContact(arrayList);
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
}
}
});
createActionBarMenu();
listAdapter = new ListAdapter(getParentActivity());
2013-12-20 20:25:49 +01:00
2014-11-10 12:05:22 +01:00
fragmentView = new FrameLayout(getParentActivity());
FrameLayout frameLayout = (FrameLayout) fragmentView;
2014-11-11 23:16:17 +01:00
frameLayout.addView(actionBar);
2014-11-10 12:05:22 +01:00
avatarImage = new BackupImageView(getParentActivity());
avatarImage.imageReceiver.setRoundRadius(AndroidUtilities.dp(30));
avatarImage.processDetach = false;
2014-11-11 23:16:17 +01:00
actionBar.addView(avatarImage);
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) avatarImage.getLayoutParams();
layoutParams.gravity = (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.BOTTOM;
layoutParams.width = AndroidUtilities.dp(60);
layoutParams.height = AndroidUtilities.dp(60);
layoutParams.leftMargin = LocaleController.isRTL ? 0 : AndroidUtilities.dp(17);
layoutParams.rightMargin = LocaleController.isRTL ? AndroidUtilities.dp(17) : 0;
layoutParams.bottomMargin = AndroidUtilities.dp(22);
avatarImage.setLayoutParams(layoutParams);
2014-11-10 12:05:22 +01:00
avatarImage.setOnClickListener(new View.OnClickListener() {
2013-12-20 20:25:49 +01:00
@Override
2014-11-10 12:05:22 +01:00
public void onClick(View v) {
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user.photo != null && user.photo.photo_big != null) {
PhotoViewer.getInstance().setParentActivity(getParentActivity());
PhotoViewer.getInstance().openPhoto(user.photo.photo_big, ProfileActivity.this);
}
2013-12-20 20:25:49 +01:00
}
});
2013-10-25 17:19:00 +02:00
2014-11-10 12:05:22 +01:00
nameTextView = new TextView(getParentActivity());
nameTextView.setTextColor(0xffffffff);
nameTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 20);
nameTextView.setLines(1);
nameTextView.setMaxLines(1);
nameTextView.setSingleLine(true);
nameTextView.setGravity((LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT));
nameTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
2014-11-11 23:16:17 +01:00
actionBar.addView(nameTextView);
layoutParams = (FrameLayout.LayoutParams) nameTextView.getLayoutParams();
layoutParams.width = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.height = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.leftMargin = AndroidUtilities.dp(LocaleController.isRTL ? 16 : 97);
layoutParams.rightMargin = AndroidUtilities.dp(LocaleController.isRTL ? 97 : 16);
layoutParams.bottomMargin = AndroidUtilities.dp(51);
layoutParams.gravity = (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.BOTTOM;
nameTextView.setLayoutParams(layoutParams);
2014-11-10 12:05:22 +01:00
onlineTextView = new TextView(getParentActivity());
2014-11-11 23:16:17 +01:00
onlineTextView.setTextColor(AvatarDrawable.getProfileTextColorForId(user_id));
2014-11-10 12:05:22 +01:00
onlineTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
onlineTextView.setLines(1);
onlineTextView.setMaxLines(1);
onlineTextView.setSingleLine(true);
onlineTextView.setGravity((LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT));
2014-11-11 23:16:17 +01:00
actionBar.addView(onlineTextView);
layoutParams = (FrameLayout.LayoutParams) onlineTextView.getLayoutParams();
layoutParams.width = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.height = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.leftMargin = AndroidUtilities.dp(LocaleController.isRTL ? 16 : 97);
layoutParams.rightMargin = AndroidUtilities.dp(LocaleController.isRTL ? 97 : 16);
layoutParams.bottomMargin = AndroidUtilities.dp(30);
layoutParams.gravity = (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.BOTTOM;
onlineTextView.setLayoutParams(layoutParams);
2014-11-10 12:05:22 +01:00
listView = new ListView(getParentActivity());
listView.setDivider(null);
listView.setDividerHeight(0);
listView.setVerticalScrollBarEnabled(false);
2014-11-11 23:16:17 +01:00
AndroidUtilities.setListViewEdgeEffectColor(listView, AvatarDrawable.getProfileBackColorForId(user_id));
2014-11-10 12:05:22 +01:00
frameLayout.addView(listView);
layoutParams = (FrameLayout.LayoutParams) listView.getLayoutParams();
layoutParams.width = FrameLayout.LayoutParams.MATCH_PARENT;
layoutParams.height = FrameLayout.LayoutParams.MATCH_PARENT;
2014-11-11 23:16:17 +01:00
layoutParams.gravity = Gravity.TOP;
2014-11-10 12:05:22 +01:00
listView.setLayoutParams(layoutParams);
2013-10-25 17:19:00 +02:00
listView.setAdapter(listAdapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, final int i, long l) {
2014-11-10 12:05:22 +01:00
if (getParentActivity() == null) {
return;
}
if (i == sharedMediaRow) {
Bundle args = new Bundle();
2013-10-25 17:19:00 +02:00
if (dialog_id != 0) {
args.putLong("dialog_id", dialog_id);
2013-10-25 17:19:00 +02:00
} else {
args.putLong("dialog_id", user_id);
2013-10-25 17:19:00 +02:00
}
presentFragment(new MediaActivity(args));
} else if (i == settingsKeyRow) {
Bundle args = new Bundle();
args.putInt("chat_id", (int)(dialog_id >> 32));
presentFragment(new IdenticonActivity(args));
} else if (i == settingsTimerRow) {
if (getParentActivity() == null) {
return;
}
2014-10-14 22:36:15 +02:00
showAlertDialog(AndroidUtilities.buildTTLAlert(getParentActivity(), currentEncryptedChat));
} else if (i == settingsNotificationsRow) {
Bundle args = new Bundle();
args.putLong("dialog_id", dialog_id == 0 ? user_id : dialog_id);
presentFragment(new ProfileNotificationsActivity(args));
2014-11-10 12:05:22 +01:00
} else if (i == startSecretChatRow) {
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setMessage(LocaleController.getString("AreYouSureSecretChat", R.string.AreYouSureSecretChat));
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
creatingChat = true;
MessagesController.getInstance().startSecretChat(getParentActivity(), MessagesController.getInstance().getUser(user_id));
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
} else if (i == phoneRow) {
final TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user == null || user.phone == null || user.phone.length() == 0 || getParentActivity() == null) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setItems(new CharSequence[] {LocaleController.getString("Call", R.string.Call), LocaleController.getString("Copy", R.string.Copy)}, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (i == 0) {
try {
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:+" + user.phone));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getParentActivity().startActivity(intent);
} catch (Exception e) {
FileLog.e("tmessages", e);
}
} else if (i == 1) {
if(Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
android.text.ClipboardManager clipboard = (android.text.ClipboardManager)ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
clipboard.setText(user.phone);
} else {
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
android.content.ClipData clip = android.content.ClipData.newPlainText("label", user.phone);
clipboard.setPrimaryClip(clip);
}
}
}
});
showAlertDialog(builder);
2013-10-25 17:19:00 +02:00
}
}
});
if (dialog_id != 0) {
MessagesController.getInstance().getMediaCount(dialog_id, classGuid, true);
2013-10-25 17:19:00 +02:00
} else {
MessagesController.getInstance().getMediaCount(user_id, classGuid, true);
2013-10-25 17:19:00 +02:00
}
2014-11-10 12:05:22 +01:00
2014-11-11 23:16:17 +01:00
writeButton = new ImageView(getParentActivity());
writeButton.setImageResource(R.drawable.floating_user_states);
2014-11-10 12:05:22 +01:00
frameLayout.addView(writeButton);
2014-11-11 23:16:17 +01:00
layoutParams = (FrameLayout.LayoutParams) writeButton.getLayoutParams();
layoutParams.width = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.height = FrameLayout.LayoutParams.WRAP_CONTENT;
layoutParams.leftMargin = AndroidUtilities.dp(LocaleController.isRTL ? 16 : 0);
layoutParams.rightMargin = AndroidUtilities.dp(LocaleController.isRTL ? 0 : 16);
layoutParams.gravity = (LocaleController.isRTL ? Gravity.LEFT : Gravity.RIGHT);
writeButton.setLayoutParams(layoutParams);
2014-11-10 12:05:22 +01:00
writeButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user == null || user instanceof TLRPC.TL_userEmpty) {
return;
}
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats);
Bundle args = new Bundle();
args.putInt("user_id", user_id);
presentFragment(new ChatActivity(args), true);
}
});
updateUserData();
2013-10-25 17:19:00 +02:00
} else {
ViewGroup parent = (ViewGroup)fragmentView.getParent();
if (parent != null) {
parent.removeView(fragmentView);
}
}
return fragmentView;
}
2014-11-11 23:16:17 +01:00
private void fixLayout() {
if (fragmentView == null) {
return;
}
fragmentView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
if (fragmentView != null) {
ViewGroup.MarginLayoutParams layoutParams = (ViewGroup.MarginLayoutParams) listView.getLayoutParams();
layoutParams.topMargin = actionBar.getHeight();
listView.setLayoutParams(layoutParams);
layoutParams = (ViewGroup.MarginLayoutParams) writeButton.getLayoutParams();
layoutParams.topMargin = actionBar.getHeight() - AndroidUtilities.dp(29.5f);
writeButton.setLayoutParams(layoutParams);
fragmentView.getViewTreeObserver().removeOnPreDrawListener(this);
}
return false;
}
});
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
fixLayout();
}
@Override
public boolean needAddActionBar() {
return false;
}
public void didReceivedNotification(int id, final Object... args) {
if (id == NotificationCenter.updateInterfaces) {
int mask = (Integer)args[0];
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0) {
2014-11-10 12:05:22 +01:00
updateUserData();
2013-10-25 17:19:00 +02:00
}
} else if (id == NotificationCenter.contactsDidLoaded) {
createActionBarMenu();
} else if (id == NotificationCenter.mediaCountDidLoaded) {
2013-10-25 17:19:00 +02:00
long uid = (Long)args[0];
if (uid > 0 && user_id == uid && dialog_id == 0 || dialog_id != 0 && dialog_id == uid) {
totalMediaCount = (Integer)args[1];
if (listView != null) {
listView.invalidateViews();
}
}
} else if (id == NotificationCenter.encryptedChatCreated) {
2013-10-25 17:19:00 +02:00
if (creatingChat) {
AndroidUtilities.runOnUIThread(new Runnable() {
@Override
public void run() {
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats);
TLRPC.EncryptedChat encryptedChat = (TLRPC.EncryptedChat) args[0];
Bundle args2 = new Bundle();
args2.putInt("enc_id", encryptedChat.id);
presentFragment(new ChatActivity(args2), true);
}
});
2013-10-25 17:19:00 +02:00
}
} else if (id == NotificationCenter.encryptedChatUpdated) {
2013-10-25 17:19:00 +02:00
TLRPC.EncryptedChat chat = (TLRPC.EncryptedChat)args[0];
if (currentEncryptedChat != null && chat.id == currentEncryptedChat.id) {
currentEncryptedChat = chat;
updateRowsIds();
2013-10-25 17:19:00 +02:00
if (listAdapter != null) {
listAdapter.notifyDataSetChanged();
}
}
} else if (id == NotificationCenter.blockedUsersDidLoaded) {
boolean oldValue = userBlocked;
userBlocked = MessagesController.getInstance().blockedUsers.contains(user_id);
if (oldValue != userBlocked) {
createActionBarMenu();
}
2013-10-25 17:19:00 +02:00
}
}
@Override
public void onResume() {
super.onResume();
if (listAdapter != null) {
2013-10-25 17:19:00 +02:00
listAdapter.notifyDataSetChanged();
}
2014-11-11 23:16:17 +01:00
fixLayout();
2013-10-25 17:19:00 +02:00
}
@Override
2014-06-12 03:13:15 +02:00
public PhotoViewer.PlaceProviderObject getPlaceForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index) {
if (fileLocation == null) {
return null;
}
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user != null && user.photo != null && user.photo.photo_big != null) {
TLRPC.FileLocation photoBig = user.photo.photo_big;
if (photoBig.local_id == fileLocation.local_id && photoBig.volume_id == fileLocation.volume_id && photoBig.dc_id == fileLocation.dc_id) {
2014-11-10 12:05:22 +01:00
int coords[] = new int[2];
avatarImage.getLocationInWindow(coords);
PhotoViewer.PlaceProviderObject object = new PhotoViewer.PlaceProviderObject();
object.viewX = coords[0];
object.viewY = coords[1] - AndroidUtilities.statusBarHeight;
2014-11-11 23:16:17 +01:00
object.parentView = avatarImage;
2014-11-10 12:05:22 +01:00
object.imageReceiver = avatarImage.imageReceiver;
object.user_id = user_id;
object.thumb = object.imageReceiver.getBitmap();
object.size = -1;
return object;
}
}
return null;
}
2014-06-11 02:22:42 +02:00
@Override
2014-06-12 03:13:15 +02:00
public void willSwitchFromPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index) { }
2014-06-11 02:22:42 +02:00
2014-06-12 03:13:15 +02:00
@Override
public void willHidePhotoViewer() { }
@Override
public boolean isPhotoChecked(int index) { return false; }
@Override
public void setPhotoChecked(int index) { }
@Override
public void cancelButtonPressed() { }
@Override
public void sendButtonPressed(int index) { }
@Override
public int getSelectedCount() { return 0; }
2014-06-11 02:22:42 +02:00
2014-11-10 12:05:22 +01:00
private void updateRowsIds() {
rowCount = 0;
emptyRow = rowCount++;
phoneRow = rowCount++;
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user != null && user.username != null && user.username.length() > 0) {
usernameRow = rowCount++;
} else {
usernameRow = -1;
}
sectionRow = rowCount++;
2014-11-11 23:16:17 +01:00
settingsNotificationsRow = rowCount++;
sharedMediaRow = rowCount++;
2014-11-10 12:05:22 +01:00
if (currentEncryptedChat instanceof TLRPC.TL_encryptedChat) {
settingsTimerRow = rowCount++;
settingsKeyRow = rowCount++;
} else {
settingsTimerRow = -1;
settingsKeyRow = -1;
}
if (currentEncryptedChat == null) {
startSecretChatRow = rowCount++;
} else {
startSecretChatRow = -1;
}
}
private void updateUserData() {
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
TLRPC.FileLocation photo = null;
TLRPC.FileLocation photoBig = null;
if (user.photo != null) {
photo = user.photo.photo_small;
photoBig = user.photo.photo_big;
}
avatarImage.setImage(photo, "50_50", new AvatarDrawable(user, true));
avatarImage.imageReceiver.setVisible(!PhotoViewer.getInstance().isShowingImage(photoBig), false);
nameTextView.setText(ContactsController.formatName(user.first_name, user.last_name));
onlineTextView.setText(LocaleController.formatUserStatus(user));
avatarImage.imageReceiver.setVisible(!PhotoViewer.getInstance().isShowingImage(photoBig), false);
}
private void createActionBarMenu() {
2014-11-11 23:16:17 +01:00
ActionBarMenu menu = actionBar.createMenu();
menu.clearItems();
2013-10-25 17:19:00 +02:00
if (ContactsController.getInstance().contactsDict.get(user_id) == null) {
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
if (user == null) {
return;
}
ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_other);
2013-10-25 17:19:00 +02:00
if (user.phone != null && user.phone.length() != 0) {
item.addSubItem(add_contact, LocaleController.getString("AddContact", R.string.AddContact), 0);
item.addSubItem(share_contact, LocaleController.getString("ShareContact", R.string.ShareContact), 0);
item.addSubItem(block_contact, !userBlocked ? LocaleController.getString("BlockContact", R.string.BlockContact) : LocaleController.getString("Unblock", R.string.Unblock), 0);
2013-10-25 17:19:00 +02:00
} else {
item.addSubItem(block_contact, !userBlocked ? LocaleController.getString("BlockContact", R.string.BlockContact) : LocaleController.getString("Unblock", R.string.Unblock), 0);
2013-10-25 17:19:00 +02:00
}
} else {
ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_other);
item.addSubItem(share_contact, LocaleController.getString("ShareContact", R.string.ShareContact), 0);
item.addSubItem(block_contact, !userBlocked ? LocaleController.getString("BlockContact", R.string.BlockContact) : LocaleController.getString("Unblock", R.string.Unblock), 0);
item.addSubItem(edit_contact, LocaleController.getString("EditContact", R.string.EditContact), 0);
item.addSubItem(delete_contact, LocaleController.getString("DeleteContact", R.string.DeleteContact), 0);
2013-10-25 17:19:00 +02:00
}
}
2014-10-14 22:36:15 +02:00
@Override
protected void onDialogDismiss() {
if (listView != null) {
listView.invalidateViews();
}
}
2013-10-25 17:19:00 +02:00
@Override
public void didSelectDialog(MessagesActivity messageFragment, long dialog_id, boolean param) {
2013-10-25 17:19:00 +02:00
if (dialog_id != 0) {
Bundle args = new Bundle();
args.putBoolean("scrollToTopOnResume", true);
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats);
2013-10-25 17:19:00 +02:00
int lower_part = (int)dialog_id;
if (lower_part != 0) {
if (lower_part > 0) {
args.putInt("user_id", lower_part);
2013-10-25 17:19:00 +02:00
} else if (lower_part < 0) {
args.putInt("chat_id", -lower_part);
2013-10-25 17:19:00 +02:00
}
} else {
args.putInt("enc_id", (int)(dialog_id >> 32));
2013-10-25 17:19:00 +02:00
}
presentFragment(new ChatActivity(args), true);
removeSelfFromStack();
TLRPC.User user = MessagesController.getInstance().getUser(user_id);
SendMessagesHelper.getInstance().sendMessage(user, dialog_id);
2013-10-25 17:19:00 +02:00
}
}
private class ListAdapter extends BaseFragmentAdapter {
2013-10-25 17:19:00 +02:00
private Context mContext;
public ListAdapter(Context context) {
mContext = context;
}
@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int i) {
2014-11-10 12:05:22 +01:00
return i == phoneRow || i == settingsTimerRow || i == settingsKeyRow || i == settingsNotificationsRow || i == sharedMediaRow || i == startSecretChatRow;
2013-10-25 17:19:00 +02:00
}
@Override
public int getCount() {
return rowCount;
2013-10-25 17:19:00 +02:00
}
@Override
public Object getItem(int i) {
return null;
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
int type = getItemViewType(i);
if (type == 0) {
if (view == null) {
2014-11-10 12:05:22 +01:00
view = new EmptyCell(mContext, 36);
2013-10-25 17:19:00 +02:00
}
} else if (type == 1) {
if (view == null) {
2014-11-10 12:05:22 +01:00
view = new DividerCell(mContext);
view.setPadding(AndroidUtilities.dp(72), 0, 0, 0);
2013-10-25 17:19:00 +02:00
}
} else if (type == 2) {
final TLRPC.User user = MessagesController.getInstance().getUser(user_id);
2013-10-25 17:19:00 +02:00
if (view == null) {
2014-11-10 12:05:22 +01:00
view = new TextDetailCell(mContext);
}
2014-11-10 12:05:22 +01:00
TextDetailCell textDetailCell = (TextDetailCell) view;
if (i == phoneRow) {
2014-11-10 12:05:22 +01:00
String text;
2013-10-25 17:19:00 +02:00
if (user.phone != null && user.phone.length() != 0) {
2014-11-10 12:05:22 +01:00
text = PhoneFormat.getInstance().format("+" + user.phone);
} else {
text = LocaleController.getString("NumberUnknown", R.string.NumberUnknown);
}
2014-11-11 23:16:17 +01:00
textDetailCell.setTextAndValueAndIcon(text, LocaleController.getString("PhoneMobile", R.string.PhoneMobile), R.drawable.phone_grey);
2014-11-10 12:05:22 +01:00
} else if (i == usernameRow) {
String text;
if (user != null && user.username != null && user.username.length() != 0) {
text = "@" + user.username;
2013-10-25 17:19:00 +02:00
} else {
2014-11-10 12:05:22 +01:00
text = "-";
2013-10-25 17:19:00 +02:00
}
2014-11-10 12:05:22 +01:00
textDetailCell.setTextAndValue(text, LocaleController.getString("Username", R.string.Username));
2013-10-25 17:19:00 +02:00
}
} else if (type == 3) {
if (view == null) {
2014-11-10 12:05:22 +01:00
view = new TextCell(mContext);
2013-10-25 17:19:00 +02:00
}
2014-11-10 12:05:22 +01:00
TextCell textCell = (TextCell) view;
textCell.setTextColor(0xff000000);
2013-12-20 20:25:49 +01:00
if (i == sharedMediaRow) {
2014-11-10 12:05:22 +01:00
String value;
2013-10-25 17:19:00 +02:00
if (totalMediaCount == -1) {
2014-11-10 12:05:22 +01:00
value = LocaleController.getString("Loading", R.string.Loading);
2013-10-25 17:19:00 +02:00
} else {
2014-11-10 12:05:22 +01:00
value = String.format("%d", totalMediaCount);
2013-10-25 17:19:00 +02:00
}
2014-11-10 12:05:22 +01:00
textCell.setTextAndValue(LocaleController.getString("SharedMedia", R.string.SharedMedia), value);
} else if (i == settingsTimerRow) {
TLRPC.EncryptedChat encryptedChat = MessagesController.getInstance().getEncryptedChat((int)(dialog_id >> 32));
2014-11-10 12:05:22 +01:00
String value;
2013-10-25 17:19:00 +02:00
if (encryptedChat.ttl == 0) {
2014-11-10 12:05:22 +01:00
value = LocaleController.getString("ShortMessageLifetimeForever", R.string.ShortMessageLifetimeForever);
} else {
2014-11-10 12:05:22 +01:00
value = AndroidUtilities.formatTTLString(encryptedChat.ttl);
}
2014-11-10 12:05:22 +01:00
textCell.setTextAndValue(LocaleController.getString("MessageLifetime", R.string.MessageLifetime), value);
} else if (i == settingsNotificationsRow) {
2014-11-11 23:16:17 +01:00
textCell.setTextAndIcon(LocaleController.getString("NotificationsAndSounds", R.string.NotificationsAndSounds), R.drawable.profile_list);
2014-11-10 12:05:22 +01:00
} else if (i == startSecretChatRow) {
textCell.setText(LocaleController.getString("StartEncryptedChat", R.string.StartEncryptedChat));
textCell.setTextColor(0xff37a919);
} else if (i == settingsKeyRow) {
IdenticonDrawable identiconDrawable = new IdenticonDrawable();
TLRPC.EncryptedChat encryptedChat = MessagesController.getInstance().getEncryptedChat((int)(dialog_id >> 32));
identiconDrawable.setBytes(encryptedChat.auth_key);
textCell.setTextAndValueDrawable(LocaleController.getString("EncryptionKey", R.string.EncryptionKey), identiconDrawable);
}
}
2013-10-25 17:19:00 +02:00
return view;
}
@Override
public int getItemViewType(int i) {
2014-11-10 12:05:22 +01:00
if (i == emptyRow) {
return 0;
2014-11-10 12:05:22 +01:00
} else if (i == sectionRow) {
return 1;
2014-11-10 12:05:22 +01:00
} else if (i == phoneRow || i == usernameRow) {
return 2;
2014-11-10 12:05:22 +01:00
} else if (i == sharedMediaRow || i == settingsTimerRow || i == settingsNotificationsRow || i == startSecretChatRow || i == settingsKeyRow) {
return 3;
2013-10-25 17:19:00 +02:00
}
return 0;
}
@Override
public int getViewTypeCount() {
2014-11-10 12:05:22 +01:00
return 4;
2013-10-25 17:19:00 +02:00
}
@Override
public boolean isEmpty() {
return false;
}
}
}