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;
|
|
|
|
|
2014-07-30 09:49:39 +02:00
|
|
|
import android.animation.Animator;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.content.pm.ApplicationInfo;
|
|
|
|
import android.content.pm.PackageManager;
|
2014-03-22 23:31:55 +01:00
|
|
|
import android.content.res.Configuration;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Rect;
|
2014-06-14 10:36:01 +02:00
|
|
|
import android.graphics.drawable.Drawable;
|
2014-09-28 15:37:26 +02:00
|
|
|
import android.media.MediaMetadataRetriever;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.media.MediaPlayer;
|
|
|
|
import android.media.ThumbnailUtils;
|
|
|
|
import android.net.Uri;
|
2014-09-24 04:17:27 +02:00
|
|
|
import android.os.Build;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.provider.MediaStore;
|
|
|
|
import android.text.Html;
|
2014-06-04 01:31:48 +02:00
|
|
|
import android.text.TextUtils;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.util.TypedValue;
|
2014-06-04 01:31:48 +02:00
|
|
|
import android.view.Gravity;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.view.LayoutInflater;
|
2014-07-10 02:15:58 +02:00
|
|
|
import android.view.MotionEvent;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.ViewParent;
|
|
|
|
import android.view.ViewTreeObserver;
|
2013-12-26 12:43:37 +01:00
|
|
|
import android.webkit.MimeTypeMap;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.widget.AbsListView;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.FrameLayout;
|
|
|
|
import android.widget.ImageView;
|
2014-06-04 01:31:48 +02:00
|
|
|
import android.widget.LinearLayout;
|
2013-10-25 17:19:00 +02:00
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
import android.widget.TextView;
|
2014-06-14 10:36:01 +02:00
|
|
|
import android.widget.Toast;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
import org.telegram.android.AndroidUtilities;
|
2013-10-25 17:19:00 +02:00
|
|
|
import org.telegram.PhoneFormat.PhoneFormat;
|
2014-08-22 16:24:33 +02:00
|
|
|
import org.telegram.android.ImageLoader;
|
2014-07-03 00:39:05 +02:00
|
|
|
import org.telegram.android.LocaleController;
|
|
|
|
import org.telegram.android.MediaController;
|
|
|
|
import org.telegram.android.MessagesStorage;
|
2014-07-10 02:15:58 +02:00
|
|
|
import org.telegram.android.NotificationsController;
|
2014-08-22 16:24:33 +02:00
|
|
|
import org.telegram.android.SendMessagesHelper;
|
2014-09-14 01:40:36 +02:00
|
|
|
import org.telegram.messenger.FileLoader;
|
2014-02-28 23:28:25 +01:00
|
|
|
import org.telegram.messenger.TLRPC;
|
2014-07-03 00:39:05 +02:00
|
|
|
import org.telegram.android.ContactsController;
|
2013-12-20 20:25:49 +01:00
|
|
|
import org.telegram.messenger.FileLog;
|
2014-08-22 16:24:33 +02:00
|
|
|
import org.telegram.android.MessageObject;
|
|
|
|
import org.telegram.android.PhotoObject;
|
2013-10-25 17:19:00 +02:00
|
|
|
import org.telegram.messenger.ConnectionsManager;
|
2014-07-03 00:39:05 +02:00
|
|
|
import org.telegram.android.MessagesController;
|
2014-08-22 16:24:33 +02:00
|
|
|
import org.telegram.android.NotificationCenter;
|
2013-10-25 17:19:00 +02:00
|
|
|
import org.telegram.messenger.R;
|
|
|
|
import org.telegram.messenger.UserConfig;
|
|
|
|
import org.telegram.messenger.Utilities;
|
2014-06-20 02:18:13 +02:00
|
|
|
import org.telegram.ui.Adapters.BaseFragmentAdapter;
|
2014-02-28 23:28:25 +01:00
|
|
|
import org.telegram.ui.Cells.ChatAudioCell;
|
|
|
|
import org.telegram.ui.Cells.ChatBaseCell;
|
2014-03-31 16:14:49 +02:00
|
|
|
import org.telegram.ui.Cells.ChatMediaCell;
|
2014-02-28 23:28:25 +01:00
|
|
|
import org.telegram.ui.Cells.ChatMessageCell;
|
2014-06-04 01:31:48 +02:00
|
|
|
import org.telegram.ui.Views.ActionBar.ActionBarLayer;
|
|
|
|
import org.telegram.ui.Views.ActionBar.ActionBarMenu;
|
|
|
|
import org.telegram.ui.Views.ActionBar.ActionBarMenuItem;
|
2013-10-25 17:19:00 +02:00
|
|
|
import org.telegram.ui.Views.BackupImageView;
|
2014-06-04 01:31:48 +02:00
|
|
|
import org.telegram.ui.Views.ActionBar.BaseFragment;
|
2014-07-03 00:39:05 +02:00
|
|
|
import org.telegram.ui.Views.ChatActivityEnterView;
|
2014-08-22 16:24:33 +02:00
|
|
|
import org.telegram.android.ImageReceiver;
|
2013-10-25 17:19:00 +02:00
|
|
|
import org.telegram.ui.Views.LayoutListView;
|
|
|
|
import org.telegram.ui.Views.MessageActionLayout;
|
|
|
|
import org.telegram.ui.Views.SizeNotifierRelativeLayout;
|
2014-03-10 10:27:49 +01:00
|
|
|
import org.telegram.ui.Views.TimerButton;
|
2014-09-24 04:17:27 +02:00
|
|
|
import org.telegram.ui.Views.TypingDotsDrawable;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.HashMap;
|
2014-03-26 21:16:28 +01:00
|
|
|
import java.util.concurrent.Semaphore;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
public class ChatActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, MessagesActivity.MessagesActivityDelegate,
|
2014-07-20 01:31:49 +02:00
|
|
|
DocumentSelectActivity.DocumentSelectActivityDelegate, PhotoViewer.PhotoViewerProvider, PhotoPickerActivity.PhotoPickerActivityDelegate,
|
2014-08-22 16:24:33 +02:00
|
|
|
VideoEditorActivity.VideoEditorActivityDelegate, LocationActivity.LocationActivityDelegate {
|
2014-06-04 01:31:48 +02:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private TLRPC.Chat currentChat;
|
|
|
|
private TLRPC.User currentUser;
|
|
|
|
private TLRPC.EncryptedChat currentEncryptedChat;
|
2014-08-22 16:24:33 +02:00
|
|
|
private boolean userBlocked = false;
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private View topPanel;
|
|
|
|
private View progressView;
|
|
|
|
private View bottomOverlay;
|
2014-08-22 16:24:33 +02:00
|
|
|
private ChatAdapter chatAdapter;
|
|
|
|
private ChatActivityEnterView chatActivityEnterView;
|
|
|
|
private View timeItem;
|
|
|
|
private View menuItem;
|
|
|
|
private LayoutListView chatListView;
|
|
|
|
private BackupImageView avatarImageView;
|
|
|
|
private TextView bottomOverlayChatText;
|
|
|
|
private View bottomOverlayChat;
|
2014-09-24 04:17:27 +02:00
|
|
|
private TypingDotsDrawable typingDotsDrawable;
|
2014-09-30 00:48:11 +02:00
|
|
|
private View emptyViewContainer;
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private TextView bottomOverlayText;
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private MessageObject selectedObject;
|
|
|
|
private MessageObject forwaringMessage;
|
|
|
|
private TextView secretViewStatusTextView;
|
2014-03-10 10:27:49 +01:00
|
|
|
private TimerButton timerButton;
|
2014-06-04 01:31:48 +02:00
|
|
|
private TextView selectedMessagesCountTextView;
|
2013-10-25 17:19:00 +02:00
|
|
|
private boolean paused = true;
|
|
|
|
private boolean readWhenResume = false;
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
private int readWithDate = 0;
|
|
|
|
private int readWithMid = 0;
|
2014-06-04 01:31:48 +02:00
|
|
|
private boolean scrollToTopOnResume = false;
|
2013-12-20 20:25:49 +01:00
|
|
|
private boolean scrollToTopUnReadOnResume = false;
|
2013-10-25 17:19:00 +02:00
|
|
|
private boolean isCustomTheme = false;
|
|
|
|
private ImageView topPlaneClose;
|
2013-12-20 20:25:49 +01:00
|
|
|
private View pagedownButton;
|
2013-10-25 17:19:00 +02:00
|
|
|
private TextView topPanelText;
|
|
|
|
private long dialog_id;
|
2014-07-27 12:53:00 +02:00
|
|
|
private boolean isBraodcast = false;
|
2013-10-25 17:19:00 +02:00
|
|
|
private HashMap<Integer, MessageObject> selectedMessagesIds = new HashMap<Integer, MessageObject>();
|
|
|
|
private HashMap<Integer, MessageObject> selectedMessagesCanCopyIds = new HashMap<Integer, MessageObject>();
|
|
|
|
|
|
|
|
private HashMap<Integer, MessageObject> messagesDict = new HashMap<Integer, MessageObject>();
|
|
|
|
private HashMap<String, ArrayList<MessageObject>> messagesByDays = new HashMap<String, ArrayList<MessageObject>>();
|
|
|
|
private ArrayList<MessageObject> messages = new ArrayList<MessageObject>();
|
|
|
|
private int maxMessageId = Integer.MAX_VALUE;
|
2013-12-20 20:25:49 +01:00
|
|
|
private int minMessageId = Integer.MIN_VALUE;
|
2013-10-25 17:19:00 +02:00
|
|
|
private int maxDate = Integer.MIN_VALUE;
|
|
|
|
private boolean endReached = false;
|
|
|
|
private boolean loading = false;
|
|
|
|
private boolean cacheEndReaced = false;
|
2014-08-02 01:31:15 +02:00
|
|
|
private boolean firstLoading = true;
|
2014-09-24 04:17:27 +02:00
|
|
|
private int loadsCount = 0;
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private int minDate = 0;
|
2014-08-02 01:31:15 +02:00
|
|
|
private boolean first = true;
|
2013-12-20 20:25:49 +01:00
|
|
|
private int unread_to_load = 0;
|
|
|
|
private int first_unread_id = 0;
|
|
|
|
private int last_unread_id = 0;
|
2014-08-02 01:31:15 +02:00
|
|
|
private boolean unread_end_reached = true;
|
2013-12-20 20:25:49 +01:00
|
|
|
private boolean loadingForward = false;
|
|
|
|
private MessageObject unreadMessageObject = null;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
private String currentPicturePath;
|
|
|
|
|
|
|
|
private TLRPC.ChatParticipants info = null;
|
|
|
|
private int onlineCount = -1;
|
|
|
|
|
2014-02-04 19:36:55 +01:00
|
|
|
private CharSequence lastPrintString;
|
|
|
|
|
2014-04-04 19:58:33 +02:00
|
|
|
private long chatEnterTime = 0;
|
|
|
|
private long chatLeaveTime = 0;
|
|
|
|
|
2014-10-01 00:36:18 +02:00
|
|
|
private String startVideoEdit = null;
|
|
|
|
|
2014-04-02 19:36:57 +02:00
|
|
|
private final static int copy = 1;
|
|
|
|
private final static int forward = 2;
|
|
|
|
private final static int delete = 3;
|
|
|
|
private final static int chat_enc_timer = 4;
|
|
|
|
private final static int chat_menu_attach = 5;
|
|
|
|
private final static int attach_photo = 6;
|
|
|
|
private final static int attach_gallery = 7;
|
|
|
|
private final static int attach_video = 8;
|
|
|
|
private final static int attach_document = 9;
|
|
|
|
private final static int attach_location = 10;
|
|
|
|
private final static int chat_menu_avatar = 11;
|
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
public ChatActivity(Bundle args) {
|
|
|
|
super(args);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onFragmentCreate() {
|
2014-06-04 01:31:48 +02:00
|
|
|
final int chatId = arguments.getInt("chat_id", 0);
|
|
|
|
final int userId = arguments.getInt("user_id", 0);
|
|
|
|
final int encId = arguments.getInt("enc_id", 0);
|
|
|
|
scrollToTopOnResume = arguments.getBoolean("scrollToTopOnResume", false);
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
if (chatId != 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
currentChat = MessagesController.getInstance().getChat(chatId);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentChat == null) {
|
2014-03-26 21:16:28 +01:00
|
|
|
final Semaphore semaphore = new Semaphore(0);
|
|
|
|
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
currentChat = MessagesStorage.getInstance().getChat(chatId);
|
|
|
|
semaphore.release();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
semaphore.acquire();
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
if (currentChat != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
MessagesController.getInstance().putChat(currentChat, true);
|
2014-03-26 21:16:28 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-07-27 00:28:33 +02:00
|
|
|
if (chatId > 0) {
|
|
|
|
dialog_id = -chatId;
|
|
|
|
} else {
|
2014-07-27 12:53:00 +02:00
|
|
|
isBraodcast = true;
|
|
|
|
dialog_id = AndroidUtilities.makeBroadcastId(chatId);
|
2014-07-27 00:28:33 +02:00
|
|
|
}
|
2014-08-08 12:17:06 +02:00
|
|
|
Semaphore semaphore = null;
|
|
|
|
if (isBraodcast) {
|
|
|
|
semaphore = new Semaphore(0);
|
|
|
|
}
|
|
|
|
MessagesController.getInstance().loadChatInfo(currentChat.id, semaphore);
|
|
|
|
if (isBraodcast) {
|
|
|
|
try {
|
|
|
|
semaphore.acquire();
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (userId != 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
currentUser = MessagesController.getInstance().getUser(userId);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentUser == null) {
|
2014-03-26 21:16:28 +01:00
|
|
|
final Semaphore semaphore = new Semaphore(0);
|
|
|
|
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
currentUser = MessagesStorage.getInstance().getUser(userId);
|
|
|
|
semaphore.release();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
semaphore.acquire();
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
if (currentUser != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
MessagesController.getInstance().putUser(currentUser, true);
|
2014-03-26 21:16:28 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
dialog_id = userId;
|
|
|
|
} else if (encId != 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
currentEncryptedChat = MessagesController.getInstance().getEncryptedChat(encId);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentEncryptedChat == null) {
|
2014-03-26 21:16:28 +01:00
|
|
|
final Semaphore semaphore = new Semaphore(0);
|
|
|
|
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
currentEncryptedChat = MessagesStorage.getInstance().getEncryptedChat(encId);
|
|
|
|
semaphore.release();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
semaphore.acquire();
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
if (currentEncryptedChat != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
MessagesController.getInstance().putEncryptedChat(currentEncryptedChat, true);
|
2014-03-26 21:16:28 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
currentUser = MessagesController.getInstance().getUser(currentEncryptedChat.user_id);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentUser == null) {
|
2014-03-26 21:16:28 +01:00
|
|
|
final Semaphore semaphore = new Semaphore(0);
|
|
|
|
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
currentUser = MessagesStorage.getInstance().getUser(currentEncryptedChat.user_id);
|
|
|
|
semaphore.release();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
semaphore.acquire();
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
if (currentUser != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
MessagesController.getInstance().putUser(currentUser, true);
|
2014-03-26 21:16:28 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
dialog_id = ((long)encId) << 32;
|
2014-03-22 23:31:55 +01:00
|
|
|
maxMessageId = Integer.MIN_VALUE;
|
2013-12-20 20:25:49 +01:00
|
|
|
minMessageId = Integer.MAX_VALUE;
|
2014-04-04 19:58:33 +02:00
|
|
|
MediaController.getInstance().startMediaObserver();
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView = new ChatActivityEnterView();
|
|
|
|
chatActivityEnterView.setDialogId(dialog_id);
|
|
|
|
chatActivityEnterView.setDelegate(new ChatActivityEnterView.ChatActivityEnterViewDelegate() {
|
|
|
|
@Override
|
|
|
|
public void onMessageSend() {
|
|
|
|
chatListView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void needSendTyping() {
|
|
|
|
MessagesController.getInstance().sendTyping(dialog_id, classGuid);
|
|
|
|
}
|
|
|
|
});
|
2014-08-22 16:24:33 +02:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messagesDidLoaded);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.emojiDidLoaded);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.didReceivedNewMessages);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.closeChats);
|
2014-09-14 01:40:36 +02:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messagesRead);
|
2014-08-22 16:24:33 +02:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messagesDeleted);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageReceivedByServer);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageReceivedByAck);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageSendError);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.chatInfoDidLoaded);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.contactsDidLoaded);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.encryptedChatUpdated);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messagesReadedEncrypted);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.removeAllMessagesFromDialog);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.audioProgressDidChanged);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.audioDidReset);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.screenshotTook);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.blockedUsersDidLoaded);
|
2014-09-30 00:48:11 +02:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.FileNewChunkAvailable);
|
2014-03-22 23:31:55 +01:00
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
super.onFragmentCreate();
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
loading = true;
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 30, 0, true, 0, classGuid, true, false);
|
2014-08-22 16:24:33 +02:00
|
|
|
if (currentUser != null) {
|
|
|
|
userBlocked = MessagesController.getInstance().blockedUsers.contains(currentUser.id);
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2014-09-24 04:17:27 +02:00
|
|
|
if (AndroidUtilities.isTablet()) {
|
2014-09-30 00:48:11 +02:00
|
|
|
NotificationCenter.getInstance().postNotificationName(NotificationCenter.openedChatChanged, dialog_id, false);
|
2014-09-24 04:17:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
typingDotsDrawable = new TypingDotsDrawable();
|
|
|
|
typingDotsDrawable.setIsChat(currentChat != null);
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFragmentDestroy() {
|
|
|
|
super.onFragmentDestroy();
|
2014-07-03 00:39:05 +02:00
|
|
|
if (chatActivityEnterView != null) {
|
|
|
|
chatActivityEnterView.onDestroy();
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messagesDidLoaded);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.emojiDidLoaded);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.didReceivedNewMessages);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.closeChats);
|
2014-09-14 01:40:36 +02:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messagesRead);
|
2014-08-22 16:24:33 +02:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messagesDeleted);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageReceivedByServer);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageReceivedByAck);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageSendError);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.chatInfoDidLoaded);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.encryptedChatUpdated);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messagesReadedEncrypted);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.removeAllMessagesFromDialog);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.contactsDidLoaded);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.audioProgressDidChanged);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.audioDidReset);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.screenshotTook);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.blockedUsersDidLoaded);
|
2014-09-30 00:48:11 +02:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.FileNewChunkAvailable);
|
2014-09-24 04:17:27 +02:00
|
|
|
if (AndroidUtilities.isTablet()) {
|
2014-09-30 00:48:11 +02:00
|
|
|
NotificationCenter.getInstance().postNotificationName(NotificationCenter.openedChatChanged, dialog_id, true);
|
2014-09-24 04:17:27 +02:00
|
|
|
}
|
2014-04-04 19:58:33 +02:00
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
MediaController.getInstance().stopMediaObserver();
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
AndroidUtilities.unlockOrientation(getParentActivity());
|
2014-03-22 23:31:55 +01:00
|
|
|
MediaController.getInstance().stopAudio();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
public View createView(LayoutInflater inflater, ViewGroup container) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (fragmentView == null) {
|
2014-06-12 03:13:15 +02:00
|
|
|
actionBarLayer.setDisplayHomeAsUpEnabled(true, R.drawable.ic_ab_back);
|
2014-09-24 04:17:27 +02:00
|
|
|
if (AndroidUtilities.isTablet()) {
|
|
|
|
actionBarLayer.setExtraLeftMargin(4);
|
|
|
|
}
|
2014-06-12 17:53:20 +02:00
|
|
|
actionBarLayer.setBackOverlay(R.layout.updating_state_layout);
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setActionBarMenuOnItemClick(new ActionBarLayer.ActionBarMenuOnItemClick() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(int id) {
|
|
|
|
if (id == -1) {
|
|
|
|
finishFragment();
|
|
|
|
} else if (id == -2) {
|
|
|
|
selectedMessagesIds.clear();
|
|
|
|
selectedMessagesCanCopyIds.clear();
|
|
|
|
actionBarLayer.hideActionMode();
|
|
|
|
updateVisibleRows();
|
|
|
|
} else if (id == attach_photo) {
|
|
|
|
try {
|
|
|
|
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
|
|
|
|
File image = Utilities.generatePicturePath();
|
|
|
|
if (image != null) {
|
|
|
|
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(image));
|
|
|
|
currentPicturePath = image.getAbsolutePath();
|
|
|
|
}
|
2014-10-01 00:36:18 +02:00
|
|
|
startActivityForResult(takePictureIntent, 0);
|
2014-06-04 01:31:48 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
} else if (id == attach_gallery) {
|
2014-06-12 03:13:15 +02:00
|
|
|
PhotoPickerActivity fragment = new PhotoPickerActivity();
|
|
|
|
fragment.setDelegate(ChatActivity.this);
|
|
|
|
presentFragment(fragment);
|
2014-06-04 01:31:48 +02:00
|
|
|
} else if (id == attach_video) {
|
|
|
|
try {
|
|
|
|
Intent pickIntent = new Intent();
|
|
|
|
pickIntent.setType("video/*");
|
|
|
|
pickIntent.setAction(Intent.ACTION_GET_CONTENT);
|
2014-06-12 21:55:13 +02:00
|
|
|
pickIntent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, (long) (1024 * 1024 * 1000));
|
2014-06-04 01:31:48 +02:00
|
|
|
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
|
|
|
|
File video = Utilities.generateVideoPath();
|
|
|
|
if (video != null) {
|
2014-10-01 00:36:18 +02:00
|
|
|
if (Build.VERSION.SDK_INT >= 18) {
|
2014-06-04 01:31:48 +02:00
|
|
|
takeVideoIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(video));
|
|
|
|
}
|
2014-06-12 21:55:13 +02:00
|
|
|
takeVideoIntent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, (long) (1024 * 1024 * 1000));
|
2014-06-04 01:31:48 +02:00
|
|
|
currentPicturePath = video.getAbsolutePath();
|
|
|
|
}
|
|
|
|
Intent chooserIntent = Intent.createChooser(pickIntent, "");
|
2014-06-12 21:55:13 +02:00
|
|
|
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[]{takeVideoIntent});
|
2014-06-04 01:31:48 +02:00
|
|
|
|
2014-10-01 00:36:18 +02:00
|
|
|
startActivityForResult(chooserIntent, 2);
|
2014-06-04 01:31:48 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
} else if (id == attach_location) {
|
|
|
|
if (!isGoogleMapsInstalled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LocationActivity fragment = new LocationActivity();
|
2014-08-22 16:24:33 +02:00
|
|
|
fragment.setDelegate(ChatActivity.this);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(fragment);
|
|
|
|
} else if (id == attach_document) {
|
|
|
|
DocumentSelectActivity fragment = new DocumentSelectActivity();
|
|
|
|
fragment.setDelegate(ChatActivity.this);
|
|
|
|
presentFragment(fragment);
|
|
|
|
} else if (id == chat_menu_avatar) {
|
|
|
|
if (currentUser != null) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", currentUser.id);
|
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
args.putLong("dialog_id", dialog_id);
|
|
|
|
}
|
|
|
|
presentFragment(new UserProfileActivity(args));
|
|
|
|
} else if (currentChat != null) {
|
2014-06-11 01:05:54 +02:00
|
|
|
if (info != null && info instanceof TLRPC.TL_chatParticipantsForbidden) {
|
|
|
|
return;
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
2014-07-31 02:50:12 +02:00
|
|
|
int count = currentChat.participants_count;
|
|
|
|
if (info != null) {
|
|
|
|
count = info.participants.size();
|
|
|
|
}
|
|
|
|
if (count == 0 || currentChat.left || currentChat instanceof TLRPC.TL_chatForbidden) {
|
2014-06-04 01:31:48 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("chat_id", currentChat.id);
|
2014-06-11 01:05:54 +02:00
|
|
|
ChatProfileActivity fragment = new ChatProfileActivity(args);
|
|
|
|
fragment.setChatInfo(info);
|
|
|
|
presentFragment(fragment);
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
} else if (id == copy) {
|
|
|
|
String str = "";
|
|
|
|
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesCanCopyIds.keySet());
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
Collections.sort(ids);
|
|
|
|
} else {
|
|
|
|
Collections.sort(ids, Collections.reverseOrder());
|
|
|
|
}
|
|
|
|
for (Integer messageId : ids) {
|
|
|
|
MessageObject messageObject = selectedMessagesCanCopyIds.get(messageId);
|
|
|
|
if (str.length() != 0) {
|
|
|
|
str += "\n";
|
|
|
|
}
|
2014-06-22 11:36:52 +02:00
|
|
|
if (messageObject.messageOwner.message != null) {
|
|
|
|
str += messageObject.messageOwner.message;
|
|
|
|
} else {
|
|
|
|
str += messageObject.messageText;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
if (str.length() != 0) {
|
2014-10-01 00:36:18 +02:00
|
|
|
if (Build.VERSION.SDK_INT < 11) {
|
2014-06-12 21:55:13 +02:00
|
|
|
android.text.ClipboardManager clipboard = (android.text.ClipboardManager) ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
2014-06-04 01:31:48 +02:00
|
|
|
clipboard.setText(str);
|
|
|
|
} else {
|
2014-06-12 21:55:13 +02:00
|
|
|
android.content.ClipboardManager clipboard = (android.content.ClipboardManager) ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
2014-06-04 01:31:48 +02:00
|
|
|
android.content.ClipData clip = android.content.ClipData.newPlainText("label", str);
|
|
|
|
clipboard.setPrimaryClip(clip);
|
|
|
|
}
|
|
|
|
}
|
2014-06-07 01:35:21 +02:00
|
|
|
selectedMessagesIds.clear();
|
|
|
|
selectedMessagesCanCopyIds.clear();
|
2014-06-04 20:57:11 +02:00
|
|
|
actionBarLayer.hideActionMode();
|
2014-06-07 01:35:21 +02:00
|
|
|
updateVisibleRows();
|
2014-06-04 01:31:48 +02:00
|
|
|
} else if (id == delete) {
|
|
|
|
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesIds.keySet());
|
|
|
|
ArrayList<Long> random_ids = null;
|
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
random_ids = new ArrayList<Long>();
|
|
|
|
for (HashMap.Entry<Integer, MessageObject> entry : selectedMessagesIds.entrySet()) {
|
|
|
|
MessageObject msg = entry.getValue();
|
|
|
|
if (msg.messageOwner.random_id != 0 && msg.type != 10) {
|
|
|
|
random_ids.add(msg.messageOwner.random_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MessagesController.getInstance().deleteMessages(ids, random_ids, currentEncryptedChat);
|
2014-06-04 20:57:11 +02:00
|
|
|
actionBarLayer.hideActionMode();
|
2014-06-04 01:31:48 +02:00
|
|
|
} else if (id == forward) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putBoolean("onlySelect", true);
|
|
|
|
args.putBoolean("serverOnly", true);
|
|
|
|
args.putString("selectAlertString", LocaleController.getString("ForwardMessagesTo", R.string.ForwardMessagesTo));
|
|
|
|
MessagesActivity fragment = new MessagesActivity(args);
|
|
|
|
fragment.setDelegate(ChatActivity.this);
|
|
|
|
presentFragment(fragment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-06-12 17:53:20 +02:00
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
updateSubtitle();
|
|
|
|
|
|
|
|
if (currentEncryptedChat != null) {
|
2014-07-03 00:39:05 +02:00
|
|
|
actionBarLayer.setTitleIcon(R.drawable.ic_lock_white, AndroidUtilities.dp(4));
|
2014-07-27 00:28:33 +02:00
|
|
|
} else if (currentChat != null && currentChat.id < 0) {
|
|
|
|
actionBarLayer.setTitleIcon(R.drawable.broadcast2, AndroidUtilities.dp(4));
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ActionBarMenu menu = actionBarLayer.createMenu();
|
|
|
|
|
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
timeItem = menu.addItemResource(chat_enc_timer, R.layout.chat_header_enc_layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
ActionBarMenuItem item = menu.addItem(chat_menu_attach, R.drawable.ic_ab_attach);
|
|
|
|
item.addSubItem(attach_photo, LocaleController.getString("ChatTakePhoto", R.string.ChatTakePhoto), R.drawable.ic_attach_photo);
|
|
|
|
item.addSubItem(attach_gallery, LocaleController.getString("ChatGallery", R.string.ChatGallery), R.drawable.ic_attach_gallery);
|
|
|
|
item.addSubItem(attach_video, LocaleController.getString("ChatVideo", R.string.ChatVideo), R.drawable.ic_attach_video);
|
|
|
|
item.addSubItem(attach_document, LocaleController.getString("ChatDocument", R.string.ChatDocument), R.drawable.ic_ab_doc);
|
|
|
|
item.addSubItem(attach_location, LocaleController.getString("ChatLocation", R.string.ChatLocation), R.drawable.ic_attach_location);
|
|
|
|
menuItem = item;
|
|
|
|
|
|
|
|
ActionBarMenu actionMode = actionBarLayer.createActionMode();
|
2014-09-24 04:17:27 +02:00
|
|
|
actionMode.addItem(-2, R.drawable.ic_ab_done_gray, R.drawable.bar_selector_mode);
|
2014-06-04 01:31:48 +02:00
|
|
|
|
|
|
|
FrameLayout layout = new FrameLayout(actionMode.getContext());
|
|
|
|
layout.setBackgroundColor(0xffe5e5e5);
|
|
|
|
actionMode.addView(layout);
|
|
|
|
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams)layout.getLayoutParams();
|
2014-07-03 00:39:05 +02:00
|
|
|
layoutParams.width = AndroidUtilities.dp(1);
|
2014-06-04 01:31:48 +02:00
|
|
|
layoutParams.height = LinearLayout.LayoutParams.MATCH_PARENT;
|
2014-07-03 00:39:05 +02:00
|
|
|
layoutParams.topMargin = AndroidUtilities.dp(12);
|
|
|
|
layoutParams.bottomMargin = AndroidUtilities.dp(12);
|
2014-06-04 01:31:48 +02:00
|
|
|
layoutParams.gravity = Gravity.CENTER_VERTICAL;
|
|
|
|
layout.setLayoutParams(layoutParams);
|
|
|
|
|
|
|
|
selectedMessagesCountTextView = new TextView(actionMode.getContext());
|
|
|
|
selectedMessagesCountTextView.setTextSize(18);
|
|
|
|
selectedMessagesCountTextView.setTextColor(0xff000000);
|
|
|
|
selectedMessagesCountTextView.setSingleLine(true);
|
|
|
|
selectedMessagesCountTextView.setLines(1);
|
|
|
|
selectedMessagesCountTextView.setEllipsize(TextUtils.TruncateAt.END);
|
2014-09-24 04:17:27 +02:00
|
|
|
selectedMessagesCountTextView.setPadding(AndroidUtilities.dp(11), 0, 0, 0);
|
2014-06-04 01:31:48 +02:00
|
|
|
selectedMessagesCountTextView.setGravity(Gravity.CENTER_VERTICAL);
|
2014-07-10 02:15:58 +02:00
|
|
|
selectedMessagesCountTextView.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2014-06-04 01:31:48 +02:00
|
|
|
actionMode.addView(selectedMessagesCountTextView);
|
|
|
|
layoutParams = (LinearLayout.LayoutParams)selectedMessagesCountTextView.getLayoutParams();
|
|
|
|
layoutParams.weight = 1;
|
|
|
|
layoutParams.width = 0;
|
|
|
|
layoutParams.height = LinearLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
selectedMessagesCountTextView.setLayoutParams(layoutParams);
|
|
|
|
|
|
|
|
if (currentEncryptedChat == null) {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionMode.addItem(copy, R.drawable.ic_ab_fwd_copy, R.drawable.bar_selector_mode);
|
|
|
|
actionMode.addItem(forward, R.drawable.ic_ab_fwd_forward, R.drawable.bar_selector_mode);
|
|
|
|
actionMode.addItem(delete, R.drawable.ic_ab_fwd_delete, R.drawable.bar_selector_mode);
|
2014-06-04 01:31:48 +02:00
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionMode.addItem(copy, R.drawable.ic_ab_fwd_copy, R.drawable.bar_selector_mode);
|
|
|
|
actionMode.addItem(delete, R.drawable.ic_ab_fwd_delete, R.drawable.bar_selector_mode);
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
actionMode.getItem(copy).setVisibility(selectedMessagesCanCopyIds.size() != 0 ? View.VISIBLE : View.GONE);
|
|
|
|
|
|
|
|
View avatarLayout = menu.addItemResource(chat_menu_avatar, R.layout.chat_header_layout);
|
|
|
|
avatarImageView = (BackupImageView)avatarLayout.findViewById(R.id.chat_avatar_image);
|
|
|
|
avatarImageView.processDetach = false;
|
|
|
|
checkActionBarMenu();
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
fragmentView = inflater.inflate(R.layout.chat_layout, container, false);
|
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
View contentView = fragmentView.findViewById(R.id.chat_layout);
|
2014-09-30 00:48:11 +02:00
|
|
|
TextView emptyView = (TextView) fragmentView.findViewById(R.id.searchEmptyView);
|
|
|
|
emptyViewContainer = fragmentView.findViewById(R.id.empty_view);
|
|
|
|
emptyViewContainer.setVisibility(View.GONE);
|
|
|
|
emptyViewContainer.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2014-03-22 23:31:55 +01:00
|
|
|
emptyView.setText(LocaleController.getString("NoMessages", R.string.NoMessages));
|
2013-10-25 17:19:00 +02:00
|
|
|
chatListView = (LayoutListView)fragmentView.findViewById(R.id.chat_list_view);
|
2014-06-04 01:31:48 +02:00
|
|
|
chatListView.setAdapter(chatAdapter = new ChatAdapter(getParentActivity()));
|
2013-10-25 17:19:00 +02:00
|
|
|
topPanel = fragmentView.findViewById(R.id.top_panel);
|
|
|
|
topPlaneClose = (ImageView)fragmentView.findViewById(R.id.top_plane_close);
|
|
|
|
topPanelText = (TextView)fragmentView.findViewById(R.id.top_panel_text);
|
|
|
|
bottomOverlay = fragmentView.findViewById(R.id.bottom_overlay);
|
|
|
|
bottomOverlayText = (TextView)fragmentView.findViewById(R.id.bottom_overlay_text);
|
2014-08-22 16:24:33 +02:00
|
|
|
bottomOverlayChat = fragmentView.findViewById(R.id.bottom_overlay_chat);
|
2013-12-20 20:25:49 +01:00
|
|
|
progressView = fragmentView.findViewById(R.id.progressLayout);
|
|
|
|
pagedownButton = fragmentView.findViewById(R.id.pagedown_button);
|
2014-07-30 09:49:39 +02:00
|
|
|
pagedownButton.setVisibility(View.GONE);
|
2014-07-03 00:39:05 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
View progressViewInner = progressView.findViewById(R.id.progressLayoutInner);
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
updateContactStatus();
|
|
|
|
|
2014-02-04 19:36:55 +01:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
|
2013-12-20 20:25:49 +01:00
|
|
|
int selectedBackground = preferences.getInt("selectedBackground", 1000001);
|
|
|
|
int selectedColor = preferences.getInt("selectedColor", 0);
|
|
|
|
if (selectedColor != 0) {
|
2014-06-14 10:36:01 +02:00
|
|
|
contentView.setBackgroundColor(selectedColor);
|
2013-12-20 20:25:49 +01:00
|
|
|
chatListView.setCacheColorHint(selectedColor);
|
|
|
|
} else {
|
|
|
|
chatListView.setCacheColorHint(0);
|
2014-06-14 10:36:01 +02:00
|
|
|
try {
|
|
|
|
if (selectedBackground == 1000001) {
|
|
|
|
((SizeNotifierRelativeLayout) contentView).setBackgroundImage(R.drawable.background_hd);
|
|
|
|
} else {
|
|
|
|
File toFile = new File(ApplicationLoader.applicationContext.getFilesDir(), "wallpaper.jpg");
|
|
|
|
if (toFile.exists()) {
|
|
|
|
if (ApplicationLoader.cachedWallpaper != null) {
|
|
|
|
((SizeNotifierRelativeLayout) contentView).setBackgroundImage(ApplicationLoader.cachedWallpaper);
|
|
|
|
} else {
|
|
|
|
Drawable drawable = Drawable.createFromPath(toFile.getAbsolutePath());
|
|
|
|
if (drawable != null) {
|
|
|
|
((SizeNotifierRelativeLayout) contentView).setBackgroundImage(drawable);
|
|
|
|
ApplicationLoader.cachedWallpaper = drawable;
|
|
|
|
} else {
|
|
|
|
contentView.setBackgroundColor(-2693905);
|
|
|
|
chatListView.setCacheColorHint(-2693905);
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2014-06-14 10:36:01 +02:00
|
|
|
isCustomTheme = true;
|
|
|
|
} else {
|
|
|
|
((SizeNotifierRelativeLayout) contentView).setBackgroundImage(R.drawable.background_hd);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-14 10:36:01 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
contentView.setBackgroundColor(-2693905);
|
|
|
|
chatListView.setCacheColorHint(-2693905);
|
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (currentEncryptedChat != null) {
|
2014-09-30 00:48:11 +02:00
|
|
|
emptyView.setVisibility(View.GONE);
|
|
|
|
View secretChatPlaceholder = contentView.findViewById(R.id.secret_placeholder);
|
|
|
|
secretChatPlaceholder.setVisibility(View.VISIBLE);
|
2013-12-20 20:25:49 +01:00
|
|
|
if (isCustomTheme) {
|
|
|
|
secretChatPlaceholder.setBackgroundResource(R.drawable.system_black);
|
|
|
|
} else {
|
|
|
|
secretChatPlaceholder.setBackgroundResource(R.drawable.system_blue);
|
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
secretViewStatusTextView = (TextView) contentView.findViewById(R.id.invite_text);
|
|
|
|
secretChatPlaceholder.setPadding(AndroidUtilities.dp(16), AndroidUtilities.dp(12), AndroidUtilities.dp(16), AndroidUtilities.dp(12));
|
2013-12-20 20:25:49 +01:00
|
|
|
|
|
|
|
View v = contentView.findViewById(R.id.secret_placeholder);
|
|
|
|
v.setVisibility(View.VISIBLE);
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-06-13 12:42:21 +02:00
|
|
|
if (currentEncryptedChat.admin_id == UserConfig.getClientUserId()) {
|
2013-12-26 12:43:37 +01:00
|
|
|
if (currentUser.first_name.length() > 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleOutgoing", R.string.EncryptedPlaceholderTitleOutgoing, currentUser.first_name));
|
2013-12-26 12:43:37 +01:00
|
|
|
} else {
|
2014-03-22 23:31:55 +01:00
|
|
|
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleOutgoing", R.string.EncryptedPlaceholderTitleOutgoing, currentUser.last_name));
|
2013-12-26 12:43:37 +01:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2013-12-26 12:43:37 +01:00
|
|
|
if (currentUser.first_name.length() > 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleIncoming", R.string.EncryptedPlaceholderTitleIncoming, currentUser.first_name));
|
2013-12-26 12:43:37 +01:00
|
|
|
} else {
|
2014-03-22 23:31:55 +01:00
|
|
|
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleIncoming", R.string.EncryptedPlaceholderTitleIncoming, currentUser.last_name));
|
2013-12-26 12:43:37 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
updateSecretStatus();
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (isCustomTheme) {
|
2013-12-20 20:25:49 +01:00
|
|
|
progressViewInner.setBackgroundResource(R.drawable.system_loader2);
|
|
|
|
emptyView.setBackgroundResource(R.drawable.system_black);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
progressViewInner.setBackgroundResource(R.drawable.system_loader1);
|
|
|
|
emptyView.setBackgroundResource(R.drawable.system_blue);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
emptyView.setPadding(AndroidUtilities.dp(7), AndroidUtilities.dp(1), AndroidUtilities.dp(7), AndroidUtilities.dp(1));
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-08-29 23:06:04 +02:00
|
|
|
if (currentUser != null && (currentUser.id / 1000 == 333 || currentUser.id % 1000 == 0)) {
|
2014-03-22 23:31:55 +01:00
|
|
|
emptyView.setText(LocaleController.getString("GotAQuestion", R.string.GotAQuestion));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
chatListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onItemLongClick(AdapterView<?> adapter, View view, int position, long id) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (!actionBarLayer.isActionModeShowed()) {
|
2014-02-11 15:32:09 +01:00
|
|
|
createMenu(view, false);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-02-28 23:28:25 +01:00
|
|
|
final Rect scrollRect = new Rect();
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
chatListView.setOnScrollListener(new AbsListView.OnScrollListener() {
|
|
|
|
@Override
|
|
|
|
public void onScrollStateChanged(AbsListView absListView, int i) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onScroll(AbsListView absListView, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
|
|
|
|
if (visibleItemCount > 0) {
|
|
|
|
if (firstVisibleItem <= 4) {
|
|
|
|
if (!endReached && !loading) {
|
|
|
|
if (messagesByDays.size() != 0) {
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 20, maxMessageId, !cacheEndReaced, minDate, classGuid, false, false);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 20, 0, !cacheEndReaced, minDate, classGuid, false, false);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
loading = true;
|
|
|
|
}
|
|
|
|
}
|
2014-02-04 19:36:55 +01:00
|
|
|
if (firstVisibleItem + visibleItemCount >= totalItemCount - 6) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (!unread_end_reached && !loadingForward) {
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 20, minMessageId, true, maxDate, classGuid, false, true);
|
2013-12-20 20:25:49 +01:00
|
|
|
loadingForward = true;
|
|
|
|
}
|
|
|
|
}
|
2014-02-04 19:36:55 +01:00
|
|
|
if (firstVisibleItem + visibleItemCount == totalItemCount && unread_end_reached) {
|
2013-12-20 20:25:49 +01:00
|
|
|
showPagedownButton(false, true);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
for (int a = 0; a < visibleItemCount; a++) {
|
|
|
|
View view = absListView.getChildAt(a);
|
|
|
|
if (view instanceof ChatMessageCell) {
|
|
|
|
ChatMessageCell messageCell = (ChatMessageCell)view;
|
|
|
|
messageCell.getLocalVisibleRect(scrollRect);
|
|
|
|
messageCell.setVisiblePart(scrollRect.top, scrollRect.bottom - scrollRect.top);
|
|
|
|
}
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-22 16:24:33 +02:00
|
|
|
bottomOverlayChatText = (TextView)fragmentView.findViewById(R.id.bottom_overlay_chat_text);
|
|
|
|
TextView textView = (TextView)fragmentView.findViewById(R.id.secret_title);
|
2014-03-22 23:31:55 +01:00
|
|
|
textView.setText(LocaleController.getString("EncryptedDescriptionTitle", R.string.EncryptedDescriptionTitle));
|
|
|
|
textView = (TextView)fragmentView.findViewById(R.id.secret_description1);
|
|
|
|
textView.setText(LocaleController.getString("EncryptedDescription1", R.string.EncryptedDescription1));
|
|
|
|
textView = (TextView)fragmentView.findViewById(R.id.secret_description2);
|
|
|
|
textView.setText(LocaleController.getString("EncryptedDescription2", R.string.EncryptedDescription2));
|
|
|
|
textView = (TextView)fragmentView.findViewById(R.id.secret_description3);
|
|
|
|
textView.setText(LocaleController.getString("EncryptedDescription3", R.string.EncryptedDescription3));
|
|
|
|
textView = (TextView)fragmentView.findViewById(R.id.secret_description4);
|
|
|
|
textView.setText(LocaleController.getString("EncryptedDescription4", R.string.EncryptedDescription4));
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (loading && messages.isEmpty()) {
|
|
|
|
progressView.setVisibility(View.VISIBLE);
|
|
|
|
chatListView.setEmptyView(null);
|
|
|
|
} else {
|
|
|
|
progressView.setVisibility(View.GONE);
|
2014-09-30 00:48:11 +02:00
|
|
|
chatListView.setEmptyView(emptyViewContainer);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
pagedownButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-03-22 23:31:55 +01:00
|
|
|
scrollToLastMessage();
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
bottomOverlayChat.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2014-05-17 01:05:49 +02:00
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
2014-08-22 16:24:33 +02:00
|
|
|
if (currentUser != null && userBlocked) {
|
|
|
|
builder.setMessage(LocaleController.getString("AreYouSureUnblockContact", R.string.AreYouSureUnblockContact));
|
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
MessagesController.getInstance().unblockUser(currentUser.id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
builder.setMessage(LocaleController.getString("AreYouSureDeleteThisChat", R.string.AreYouSureDeleteThisChat));
|
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
MessagesController.getInstance().deleteDialog(dialog_id, 0, false);
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-05-17 01:05:49 +02:00
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
chatListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
processRowSelect(view);
|
|
|
|
return;
|
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
createMenu(view, true);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-22 16:24:33 +02:00
|
|
|
updateBottomOverlay();
|
2014-07-03 00:39:05 +02:00
|
|
|
|
|
|
|
chatActivityEnterView.setContainerView(getParentActivity(), fragmentView);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
2014-03-22 23:31:55 +01:00
|
|
|
private void scrollToLastMessage() {
|
|
|
|
if (unread_end_reached || first_unread_id == 0) {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
} else {
|
|
|
|
messages.clear();
|
|
|
|
messagesByDays.clear();
|
|
|
|
messagesDict.clear();
|
|
|
|
progressView.setVisibility(View.VISIBLE);
|
|
|
|
chatListView.setEmptyView(null);
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
maxMessageId = Integer.MAX_VALUE;
|
|
|
|
minMessageId = Integer.MIN_VALUE;
|
|
|
|
} else {
|
|
|
|
maxMessageId = Integer.MIN_VALUE;
|
|
|
|
minMessageId = Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
maxDate = Integer.MIN_VALUE;
|
|
|
|
minDate = 0;
|
|
|
|
unread_end_reached = true;
|
|
|
|
loading = true;
|
|
|
|
chatAdapter.notifyDataSetChanged();
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 30, 0, true, 0, classGuid, true, false);
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
private void showPagedownButton(boolean show, boolean animated) {
|
|
|
|
if (pagedownButton == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (show) {
|
|
|
|
if (pagedownButton.getVisibility() == View.GONE) {
|
2014-10-01 00:36:18 +02:00
|
|
|
if (Build.VERSION.SDK_INT > 13 && animated) {
|
2013-12-20 20:25:49 +01:00
|
|
|
pagedownButton.setVisibility(View.VISIBLE);
|
|
|
|
pagedownButton.setAlpha(0);
|
2014-08-22 16:24:33 +02:00
|
|
|
pagedownButton.animate().alpha(1).setDuration(200).setListener(null).start();
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
|
|
|
pagedownButton.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (pagedownButton.getVisibility() == View.VISIBLE) {
|
2014-10-01 00:36:18 +02:00
|
|
|
if (Build.VERSION.SDK_INT > 13 && animated) {
|
2014-07-30 09:49:39 +02:00
|
|
|
pagedownButton.animate().alpha(0).setDuration(200).setListener(new Animator.AnimatorListener() {
|
2013-12-20 20:25:49 +01:00
|
|
|
@Override
|
2014-07-30 09:49:39 +02:00
|
|
|
public void onAnimationStart(Animator animation) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAnimationEnd(Animator animation) {
|
2013-12-20 20:25:49 +01:00
|
|
|
pagedownButton.setVisibility(View.GONE);
|
|
|
|
}
|
2014-07-30 09:49:39 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAnimationCancel(Animator animation) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAnimationRepeat(Animator animation) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}).start();
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
|
|
|
pagedownButton.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private void updateSecretStatus() {
|
|
|
|
if (bottomOverlay == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (currentEncryptedChat == null || secretViewStatusTextView == null) {
|
|
|
|
bottomOverlay.setVisibility(View.GONE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
boolean hideKeyboard = false;
|
|
|
|
if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatRequested) {
|
2014-03-22 23:31:55 +01:00
|
|
|
bottomOverlayText.setText(LocaleController.getString("EncryptionProcessing", R.string.EncryptionProcessing));
|
2013-10-25 17:19:00 +02:00
|
|
|
bottomOverlay.setVisibility(View.VISIBLE);
|
|
|
|
hideKeyboard = true;
|
|
|
|
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatWaiting) {
|
2014-03-22 23:31:55 +01:00
|
|
|
bottomOverlayText.setText(Html.fromHtml(LocaleController.formatString("AwaitingEncryption", R.string.AwaitingEncryption, "<b>" + currentUser.first_name + "</b>")));
|
2013-10-25 17:19:00 +02:00
|
|
|
bottomOverlay.setVisibility(View.VISIBLE);
|
|
|
|
hideKeyboard = true;
|
|
|
|
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatDiscarded) {
|
2014-03-22 23:31:55 +01:00
|
|
|
bottomOverlayText.setText(LocaleController.getString("EncryptionRejected", R.string.EncryptionRejected));
|
2013-10-25 17:19:00 +02:00
|
|
|
bottomOverlay.setVisibility(View.VISIBLE);
|
|
|
|
hideKeyboard = true;
|
|
|
|
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChat) {
|
|
|
|
bottomOverlay.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if (hideKeyboard) {
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView.hideEmojiPopup();
|
|
|
|
AndroidUtilities.hideKeyboard(getParentActivity().getCurrentFocus());
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
checkActionBarMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void checkActionBarMenu() {
|
|
|
|
if (currentEncryptedChat != null && !(currentEncryptedChat instanceof TLRPC.TL_encryptedChat) ||
|
|
|
|
currentChat != null && (currentChat instanceof TLRPC.TL_chatForbidden || currentChat.left) ||
|
|
|
|
currentUser != null && (currentUser instanceof TLRPC.TL_userDeleted || currentUser instanceof TLRPC.TL_userEmpty)) {
|
|
|
|
|
|
|
|
if (menuItem != null) {
|
|
|
|
menuItem.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timeItem != null) {
|
|
|
|
timeItem.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (menuItem != null) {
|
|
|
|
menuItem.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timeItem != null) {
|
|
|
|
timeItem.setVisibility(View.VISIBLE);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
|
|
|
|
if (timeItem != null) {
|
|
|
|
timerButton = (TimerButton)timeItem.findViewById(R.id.chat_timer);
|
|
|
|
timerButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("MessageLifetime", R.string.MessageLifetime));
|
|
|
|
builder.setItems(new CharSequence[]{
|
|
|
|
LocaleController.getString("ShortMessageLifetimeForever", R.string.ShortMessageLifetimeForever),
|
|
|
|
LocaleController.getString("ShortMessageLifetime2s", R.string.ShortMessageLifetime2s),
|
|
|
|
LocaleController.getString("ShortMessageLifetime5s", R.string.ShortMessageLifetime5s),
|
|
|
|
LocaleController.getString("ShortMessageLifetime1m", R.string.ShortMessageLifetime1m),
|
|
|
|
LocaleController.getString("ShortMessageLifetime1h", R.string.ShortMessageLifetime1h),
|
|
|
|
LocaleController.getString("ShortMessageLifetime1d", R.string.ShortMessageLifetime1d),
|
|
|
|
LocaleController.getString("ShortMessageLifetime1w", R.string.ShortMessageLifetime1w)
|
|
|
|
|
|
|
|
}, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
int oldValue = currentEncryptedChat.ttl;
|
|
|
|
if (which == 0) {
|
|
|
|
currentEncryptedChat.ttl = 0;
|
|
|
|
} else if (which == 1) {
|
|
|
|
currentEncryptedChat.ttl = 2;
|
|
|
|
} else if (which == 2) {
|
|
|
|
currentEncryptedChat.ttl = 5;
|
|
|
|
} else if (which == 3) {
|
|
|
|
currentEncryptedChat.ttl = 60;
|
|
|
|
} else if (which == 4) {
|
|
|
|
currentEncryptedChat.ttl = 60 * 60;
|
|
|
|
} else if (which == 5) {
|
|
|
|
currentEncryptedChat.ttl = 60 * 60 * 24;
|
|
|
|
} else if (which == 6) {
|
|
|
|
currentEncryptedChat.ttl = 60 * 60 * 24 * 7;
|
|
|
|
}
|
|
|
|
if (oldValue != currentEncryptedChat.ttl) {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().sendTTLMessage(currentEncryptedChat);
|
2014-06-04 01:31:48 +02:00
|
|
|
MessagesStorage.getInstance().updateEncryptedChat(currentEncryptedChat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
timerButton.setTime(currentEncryptedChat.ttl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (avatarImageView != null) {
|
|
|
|
TLRPC.FileLocation photo = null;
|
|
|
|
int placeHolderId = 0;
|
|
|
|
if (currentUser != null) {
|
|
|
|
if (currentUser.photo != null) {
|
|
|
|
photo = currentUser.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
placeHolderId = AndroidUtilities.getUserAvatarForId(currentUser.id);
|
2014-06-04 01:31:48 +02:00
|
|
|
} else if (currentChat != null) {
|
|
|
|
if (currentChat.photo != null) {
|
|
|
|
photo = currentChat.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
if (isBraodcast) {
|
|
|
|
placeHolderId = AndroidUtilities.getBroadcastAvatarForId(currentChat.id);
|
|
|
|
} else {
|
|
|
|
placeHolderId = AndroidUtilities.getGroupAvatarForId(currentChat.id);
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
avatarImageView.setImage(photo, "50_50", placeHolderId);
|
2013-11-04 13:31:01 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateOnlineCount() {
|
|
|
|
if (info == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onlineCount = 0;
|
2014-03-22 23:31:55 +01:00
|
|
|
int currentTime = ConnectionsManager.getInstance().getCurrentTime();
|
2013-10-25 17:19:00 +02:00
|
|
|
for (TLRPC.TL_chatParticipant participant : info.participants) {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(participant.user_id);
|
2014-06-13 12:42:21 +02:00
|
|
|
if (user != null && user.status != null && (user.status.expires > currentTime || user.id == UserConfig.getClientUserId()) && user.status.expires > 10000) {
|
2013-10-25 17:19:00 +02:00
|
|
|
onlineCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateSubtitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getMessageType(MessageObject messageObject) {
|
|
|
|
if (currentEncryptedChat == null) {
|
2014-09-28 15:37:26 +02:00
|
|
|
boolean isBroadcastError = isBraodcast && messageObject.messageOwner.id <= 0 && messageObject.isSendError();
|
2014-07-27 12:53:00 +02:00
|
|
|
if (!isBraodcast && messageObject.messageOwner.id <= 0 && messageObject.isOut() || isBroadcastError) {
|
2014-09-28 15:37:26 +02:00
|
|
|
if (messageObject.isSendError()) {
|
2014-07-15 21:57:09 +02:00
|
|
|
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 6;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
2014-08-29 23:06:04 +02:00
|
|
|
if (messageObject.type == 6) {
|
2013-12-20 20:25:49 +01:00
|
|
|
return -1;
|
|
|
|
} else if (messageObject.type == 10 || messageObject.type == 11) {
|
|
|
|
if (messageObject.messageOwner.id == 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
|
2014-03-31 16:14:49 +02:00
|
|
|
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaVideo ||
|
|
|
|
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto ||
|
|
|
|
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
|
|
|
|
boolean canSave = false;
|
|
|
|
if (messageObject.messageOwner.attachPath != null && messageObject.messageOwner.attachPath.length() != 0) {
|
|
|
|
File f = new File(messageObject.messageOwner.attachPath);
|
|
|
|
if (f.exists()) {
|
|
|
|
canSave = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!canSave) {
|
2014-09-25 05:54:35 +02:00
|
|
|
File f = FileLoader.getPathToMessage(messageObject.messageOwner);
|
2014-03-31 16:14:49 +02:00
|
|
|
if (f.exists()) {
|
|
|
|
canSave = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (canSave) {
|
|
|
|
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
|
|
|
|
String mime = messageObject.messageOwner.media.document.mime_type;
|
2014-04-04 19:58:33 +02:00
|
|
|
if (mime != null && mime.endsWith("/xml")) {
|
2014-04-02 19:36:57 +02:00
|
|
|
return 5;
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
return 2;
|
|
|
|
} else {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-08-29 23:06:04 +02:00
|
|
|
if (messageObject.type == 6) {
|
2013-12-20 20:25:49 +01:00
|
|
|
return -1;
|
2014-09-28 15:37:26 +02:00
|
|
|
} else if (messageObject.isSendError()) {
|
2014-07-15 21:57:09 +02:00
|
|
|
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 6;
|
|
|
|
}
|
2014-09-28 15:37:26 +02:00
|
|
|
} else if (messageObject.type == 10 || messageObject.type == 11 || messageObject.isSending()) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (messageObject.messageOwner.id == 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
|
2014-03-31 16:14:49 +02:00
|
|
|
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaVideo ||
|
|
|
|
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto ||
|
|
|
|
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
|
|
|
|
boolean canSave = false;
|
|
|
|
if (messageObject.messageOwner.attachPath != null && messageObject.messageOwner.attachPath.length() != 0) {
|
|
|
|
File f = new File(messageObject.messageOwner.attachPath);
|
|
|
|
if (f.exists()) {
|
|
|
|
canSave = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!canSave) {
|
2014-09-25 05:54:35 +02:00
|
|
|
File f = FileLoader.getPathToMessage(messageObject.messageOwner);
|
2014-03-31 16:14:49 +02:00
|
|
|
if (f.exists()) {
|
|
|
|
canSave = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (canSave) {
|
|
|
|
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
|
|
|
|
String mime = messageObject.messageOwner.media.document.mime_type;
|
2014-04-04 19:58:33 +02:00
|
|
|
if (mime != null && mime.endsWith("text/xml")) {
|
2014-04-02 19:36:57 +02:00
|
|
|
return 5;
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//return 4;
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
return 2;
|
|
|
|
} else {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addToSelectedMessages(MessageObject messageObject) {
|
|
|
|
if (selectedMessagesIds.containsKey(messageObject.messageOwner.id)) {
|
|
|
|
selectedMessagesIds.remove(messageObject.messageOwner.id);
|
2014-03-31 16:14:49 +02:00
|
|
|
if (messageObject.type == 0) {
|
2013-10-25 17:19:00 +02:00
|
|
|
selectedMessagesCanCopyIds.remove(messageObject.messageOwner.id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
selectedMessagesIds.put(messageObject.messageOwner.id, messageObject);
|
2014-03-31 16:14:49 +02:00
|
|
|
if (messageObject.type == 0) {
|
2013-10-25 17:19:00 +02:00
|
|
|
selectedMessagesCanCopyIds.put(messageObject.messageOwner.id, messageObject);
|
|
|
|
}
|
2014-03-04 20:29:32 +01:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
|
|
|
if (selectedMessagesIds.isEmpty()) {
|
|
|
|
actionBarLayer.hideActionMode();
|
|
|
|
}
|
|
|
|
actionBarLayer.createActionMode().getItem(copy).setVisibility(selectedMessagesCanCopyIds.size() != 0 ? View.VISIBLE : View.GONE);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processRowSelect(View view) {
|
|
|
|
View parentView = getRowParentView(view);
|
|
|
|
if (parentView == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
MessageObject message = null;
|
|
|
|
if (view instanceof ChatBaseCell) {
|
|
|
|
message = ((ChatBaseCell)view).getMessageObject();
|
|
|
|
} else {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx)parentView.getTag();
|
|
|
|
message = holder.message;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-07-15 21:57:09 +02:00
|
|
|
int type = getMessageType(message);
|
|
|
|
|
|
|
|
if (type < 2 || type == 6) {
|
2013-10-25 17:19:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
addToSelectedMessages(message);
|
|
|
|
updateActionModeTitle();
|
|
|
|
updateVisibleRows();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateActionModeTitle() {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (!actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
if (!selectedMessagesIds.isEmpty()) {
|
|
|
|
selectedMessagesCountTextView.setText(LocaleController.formatString("Selected", R.string.Selected, selectedMessagesIds.size()));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateSubtitle() {
|
|
|
|
if (currentChat != null) {
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setTitle(currentChat.title);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (currentUser != null) {
|
2014-06-22 11:49:25 +02:00
|
|
|
if (currentUser.id / 1000 != 777 && currentUser.id / 1000 != 333 && ContactsController.getInstance().contactsDict.get(currentUser.id) == null && (ContactsController.getInstance().contactsDict.size() != 0 || !ContactsController.getInstance().isLoadingContacts())) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentUser.phone != null && currentUser.phone.length() != 0) {
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setTitle(PhoneFormat.getInstance().format("+" + currentUser.phone));
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionBarLayer.setTitle(ContactsController.formatName(currentUser.first_name, currentUser.last_name));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionBarLayer.setTitle(ContactsController.formatName(currentUser.first_name, currentUser.last_name));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 23:31:55 +01:00
|
|
|
CharSequence printString = MessagesController.getInstance().printingStrings.get(dialog_id);
|
2014-09-28 15:37:26 +02:00
|
|
|
if (printString != null) {
|
|
|
|
printString = TextUtils.replace(printString, new String[]{"..."}, new String[]{""});
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
if (printString == null || printString.length() == 0) {
|
2014-02-04 19:36:55 +01:00
|
|
|
lastPrintString = null;
|
2013-10-25 17:19:00 +02:00
|
|
|
setTypingAnimation(false);
|
|
|
|
if (currentChat != null) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (currentChat instanceof TLRPC.TL_chatForbidden) {
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setSubtitle(LocaleController.getString("YouWereKicked", R.string.YouWereKicked));
|
2013-12-20 20:25:49 +01:00
|
|
|
} else if (currentChat.left) {
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setSubtitle(LocaleController.getString("YouLeft", R.string.YouLeft));
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-07-31 02:50:12 +02:00
|
|
|
int count = currentChat.participants_count;
|
|
|
|
if (info != null) {
|
|
|
|
count = info.participants.size();
|
|
|
|
}
|
|
|
|
if (onlineCount > 0 && count != 0) {
|
|
|
|
actionBarLayer.setSubtitle(String.format("%s, %d %s", LocaleController.formatPluralString("Members", count), onlineCount, LocaleController.getString("Online", R.string.Online)));
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2014-07-31 02:50:12 +02:00
|
|
|
actionBarLayer.setSubtitle(LocaleController.formatPluralString("Members", count));
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else if (currentUser != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(currentUser.id);
|
2014-05-17 01:05:49 +02:00
|
|
|
if (user != null) {
|
|
|
|
currentUser = user;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setSubtitle(LocaleController.formatUserStatus(currentUser));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else {
|
2014-02-04 19:36:55 +01:00
|
|
|
lastPrintString = printString;
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.setSubtitle(printString);
|
2013-10-25 17:19:00 +02:00
|
|
|
setTypingAnimation(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void checkAndUpdateAvatar() {
|
|
|
|
TLRPC.FileLocation newPhoto = null;
|
|
|
|
int placeHolderId = 0;
|
|
|
|
if (currentUser != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(currentUser.id);
|
2014-04-05 07:55:51 +02:00
|
|
|
if (user == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
currentUser = user;
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentUser.photo != null) {
|
|
|
|
newPhoto = currentUser.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
placeHolderId = AndroidUtilities.getUserAvatarForId(currentUser.id);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (currentChat != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.Chat chat = MessagesController.getInstance().getChat(currentChat.id);
|
2014-04-05 07:55:51 +02:00
|
|
|
if (chat == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
currentChat = chat;
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentChat.photo != null) {
|
|
|
|
newPhoto = currentChat.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
if (isBraodcast) {
|
|
|
|
placeHolderId = AndroidUtilities.getBroadcastAvatarForId(currentChat.id);
|
|
|
|
} else {
|
|
|
|
placeHolderId = AndroidUtilities.getGroupAvatarForId(currentChat.id);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
if (avatarImageView != null) {
|
|
|
|
avatarImageView.setImage(newPhoto, "50_50", placeHolderId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-03-26 21:16:28 +01:00
|
|
|
public void onActivityResultFragment(int requestCode, int resultCode, Intent data) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (resultCode == Activity.RESULT_OK) {
|
|
|
|
if (requestCode == 0) {
|
|
|
|
Utilities.addMediaToGallery(currentPicturePath);
|
2014-03-04 20:29:32 +01:00
|
|
|
processSendingPhoto(currentPicturePath, null);
|
2013-10-25 17:19:00 +02:00
|
|
|
currentPicturePath = null;
|
|
|
|
} else if (requestCode == 1) {
|
2014-04-03 23:56:42 +02:00
|
|
|
if (data == null || data.getData() == null) {
|
2014-06-14 10:36:01 +02:00
|
|
|
showAttachmentError();
|
2014-02-04 19:36:55 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
processSendingPhoto(null, data.getData());
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (requestCode == 2) {
|
|
|
|
String videoPath = null;
|
|
|
|
if (data != null) {
|
|
|
|
Uri uri = data.getData();
|
|
|
|
boolean fromCamera = false;
|
|
|
|
if (uri != null && uri.getScheme() != null) {
|
|
|
|
fromCamera = uri.getScheme().contains("file");
|
|
|
|
} else if (uri == null) {
|
|
|
|
fromCamera = true;
|
|
|
|
}
|
|
|
|
if (fromCamera) {
|
|
|
|
if (uri != null) {
|
|
|
|
videoPath = uri.getPath();
|
|
|
|
} else {
|
|
|
|
videoPath = currentPicturePath;
|
|
|
|
}
|
|
|
|
Utilities.addMediaToGallery(currentPicturePath);
|
|
|
|
currentPicturePath = null;
|
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
try {
|
2014-02-11 15:32:09 +01:00
|
|
|
videoPath = Utilities.getPath(uri);
|
2013-12-20 20:25:49 +01:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (videoPath == null && currentPicturePath != null) {
|
|
|
|
File f = new File(currentPicturePath);
|
|
|
|
if (f.exists()) {
|
|
|
|
videoPath = currentPicturePath;
|
|
|
|
}
|
|
|
|
currentPicturePath = null;
|
|
|
|
}
|
2014-10-01 00:36:18 +02:00
|
|
|
if(Build.VERSION.SDK_INT >= 16) {
|
|
|
|
if (paused) {
|
|
|
|
startVideoEdit = videoPath;
|
|
|
|
} else {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putString("videoPath", videoPath);
|
|
|
|
VideoEditorActivity fragment = new VideoEditorActivity(args);
|
|
|
|
fragment.setDelegate(this);
|
|
|
|
if (!presentFragment(fragment, false, true)) {
|
|
|
|
processSendingVideo(videoPath, 0, 0, 0, 0, null);
|
|
|
|
}
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
} else {
|
2014-09-28 15:37:26 +02:00
|
|
|
processSendingVideo(videoPath, 0, 0, 0, 0, null);
|
2014-09-24 04:17:27 +02:00
|
|
|
}
|
2014-06-14 10:36:01 +02:00
|
|
|
} else if (requestCode == 21) {
|
|
|
|
if (data == null || data.getData() == null) {
|
|
|
|
showAttachmentError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String tempPath = Utilities.getPath(data.getData());
|
2014-06-20 02:18:13 +02:00
|
|
|
String originalPath = tempPath;
|
2014-06-14 10:36:01 +02:00
|
|
|
if (tempPath == null) {
|
2014-06-16 14:36:54 +02:00
|
|
|
originalPath = data.toString();
|
2014-06-14 10:36:01 +02:00
|
|
|
tempPath = MediaController.copyDocumentToCache(data.getData(), "file");
|
|
|
|
}
|
|
|
|
if (tempPath == null) {
|
|
|
|
showAttachmentError();
|
|
|
|
return;
|
|
|
|
}
|
2014-06-16 14:36:54 +02:00
|
|
|
processSendingDocument(tempPath, originalPath);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 01:31:49 +02:00
|
|
|
@Override
|
2014-09-28 15:37:26 +02:00
|
|
|
public void didFinishEditVideo(String videoPath, long startTime, long endTime, int resultWidth, int resultHeight, int rotationValue, int originalWidth, int originalHeight, int bitrate, long estimatedSize, long estimatedDuration) {
|
|
|
|
TLRPC.VideoEditedInfo videoEditedInfo = new TLRPC.VideoEditedInfo();
|
|
|
|
videoEditedInfo.startTime = startTime;
|
|
|
|
videoEditedInfo.endTime = endTime;
|
|
|
|
videoEditedInfo.rotationValue = rotationValue;
|
|
|
|
videoEditedInfo.originalWidth = originalWidth;
|
|
|
|
videoEditedInfo.originalHeight = originalHeight;
|
|
|
|
videoEditedInfo.bitrate = bitrate;
|
|
|
|
videoEditedInfo.resultWidth = resultWidth;
|
|
|
|
videoEditedInfo.resultHeight = resultHeight;
|
|
|
|
videoEditedInfo.originalPath = videoPath;
|
|
|
|
processSendingVideo(videoPath, estimatedSize, estimatedDuration, resultWidth, resultHeight, videoEditedInfo);
|
2014-07-20 01:31:49 +02:00
|
|
|
}
|
|
|
|
|
2014-06-14 10:36:01 +02:00
|
|
|
private void showAttachmentError() {
|
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Toast toast = Toast.makeText(getParentActivity(), LocaleController.getString("UnsupportedAttachment", R.string.UnsupportedAttachment), Toast.LENGTH_SHORT);
|
|
|
|
toast.show();
|
|
|
|
}
|
|
|
|
|
2014-03-26 21:16:28 +01:00
|
|
|
@Override
|
|
|
|
public void saveSelfArgs(Bundle args) {
|
|
|
|
if (currentPicturePath != null) {
|
|
|
|
args.putString("path", currentPicturePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void restoreSelfArgs(Bundle args) {
|
|
|
|
currentPicturePath = args.getString("path");
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
public boolean processSendingText(String text) {
|
2014-07-03 00:39:05 +02:00
|
|
|
return chatActivityEnterView.processSendingText(text);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-03-04 20:29:32 +01:00
|
|
|
public void processSendingPhoto(String imageFilePath, Uri imageUri) {
|
2014-06-20 02:18:13 +02:00
|
|
|
ArrayList<String> paths = null;
|
|
|
|
ArrayList<Uri> uris = null;
|
|
|
|
if (imageFilePath != null && imageFilePath.length() != 0) {
|
|
|
|
paths = new ArrayList<String>();
|
|
|
|
paths.add(imageFilePath);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
if (imageUri != null) {
|
|
|
|
uris = new ArrayList<Uri>();
|
|
|
|
uris.add(imageUri);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
processSendingPhotos(paths, uris);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-12 21:55:13 +02:00
|
|
|
public void processSendingPhotos(ArrayList<String> paths, ArrayList<Uri> uris) {
|
|
|
|
if (paths == null && uris == null || paths != null && paths.isEmpty() || uris != null && uris.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final ArrayList<String> pathsCopy = new ArrayList<String>();
|
|
|
|
final ArrayList<Uri> urisCopy = new ArrayList<Uri>();
|
|
|
|
if (paths != null) {
|
|
|
|
pathsCopy.addAll(paths);
|
|
|
|
}
|
|
|
|
if (uris != null) {
|
|
|
|
urisCopy.addAll(uris);
|
|
|
|
}
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-06-20 02:18:13 +02:00
|
|
|
ArrayList<String> sendAsDocuments = null;
|
|
|
|
ArrayList<String> sendAsDocumentsOriginal = null;
|
2014-06-12 21:55:13 +02:00
|
|
|
int count = !pathsCopy.isEmpty() ? pathsCopy.size() : urisCopy.size();
|
|
|
|
String path = null;
|
|
|
|
Uri uri = null;
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
if (!pathsCopy.isEmpty()) {
|
|
|
|
path = pathsCopy.get(a);
|
|
|
|
} else if (!urisCopy.isEmpty()) {
|
|
|
|
uri = urisCopy.get(a);
|
|
|
|
}
|
2014-06-14 10:36:01 +02:00
|
|
|
|
2014-06-20 02:18:13 +02:00
|
|
|
String originalPath = path;
|
|
|
|
String tempPath = path;
|
|
|
|
if (tempPath == null && uri != null) {
|
|
|
|
tempPath = Utilities.getPath(uri);
|
|
|
|
originalPath = uri.toString();
|
|
|
|
}
|
|
|
|
|
2014-06-14 10:36:01 +02:00
|
|
|
boolean isGif = false;
|
2014-06-20 02:18:13 +02:00
|
|
|
if (tempPath != null && tempPath.endsWith(".gif")) {
|
|
|
|
isGif = true;
|
|
|
|
} else if (tempPath == null && uri != null) {
|
|
|
|
isGif = MediaController.isGif(uri);
|
|
|
|
if (isGif) {
|
2014-06-16 14:36:54 +02:00
|
|
|
originalPath = uri.toString();
|
2014-06-20 02:18:13 +02:00
|
|
|
tempPath = MediaController.copyDocumentToCache(uri, "gif");
|
2014-06-16 14:36:54 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isGif) {
|
|
|
|
if (sendAsDocuments == null) {
|
|
|
|
sendAsDocuments = new ArrayList<String>();
|
|
|
|
sendAsDocumentsOriginal = new ArrayList<String>();
|
|
|
|
}
|
|
|
|
sendAsDocuments.add(tempPath);
|
|
|
|
sendAsDocumentsOriginal.add(originalPath);
|
|
|
|
} else {
|
2014-07-04 00:41:59 +02:00
|
|
|
if (tempPath != null) {
|
|
|
|
File temp = new File(tempPath);
|
|
|
|
originalPath += temp.length() + "_" + temp.lastModified();
|
2014-08-02 01:31:15 +02:00
|
|
|
} else {
|
|
|
|
originalPath = null;
|
2014-07-04 00:41:59 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
TLRPC.TL_photo photo = (TLRPC.TL_photo)MessagesStorage.getInstance().getSentFile(originalPath, currentEncryptedChat == null ? 0 : 3);
|
|
|
|
if (photo == null && uri != null) {
|
|
|
|
photo = (TLRPC.TL_photo)MessagesStorage.getInstance().getSentFile(Utilities.getPath(uri), currentEncryptedChat == null ? 0 : 3);
|
|
|
|
}
|
|
|
|
if (photo == null) {
|
2014-09-30 00:48:11 +02:00
|
|
|
photo = SendMessagesHelper.getInstance().generatePhotoSizes(path, uri);
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
if (photo != null) {
|
|
|
|
final String originalPathFinal = originalPath;
|
|
|
|
final TLRPC.TL_photo photoFinal = photo;
|
2014-08-22 16:24:33 +02:00
|
|
|
AndroidUtilities.RunOnUIThread(new Runnable() {
|
2014-06-20 02:18:13 +02:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(photoFinal, originalPathFinal, dialog_id);
|
2014-06-14 10:36:01 +02:00
|
|
|
if (chatListView != null) {
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2014-06-14 10:36:01 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
}
|
2014-06-12 21:55:13 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sendAsDocuments != null && !sendAsDocuments.isEmpty()) {
|
|
|
|
for (int a = 0; a < sendAsDocuments.size(); a++) {
|
|
|
|
processSendingDocumentInternal(sendAsDocuments.get(a), sendAsDocumentsOriginal.get(a));
|
2014-06-14 10:36:01 +02:00
|
|
|
}
|
2014-06-12 21:55:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}
|
|
|
|
|
2014-09-28 15:37:26 +02:00
|
|
|
private void processSendingDocumentInternal(final String path, String originalPath) {
|
2014-06-20 02:18:13 +02:00
|
|
|
if (path == null || path.length() == 0) {
|
2014-02-28 23:28:25 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
final File f = new File(path);
|
2014-02-28 23:28:25 +01:00
|
|
|
if (!f.exists() || f.length() == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
|
2014-02-28 23:28:25 +01:00
|
|
|
String name = f.getName();
|
|
|
|
if (name == null) {
|
|
|
|
name = "noname";
|
|
|
|
}
|
|
|
|
String ext = "";
|
2014-06-20 02:18:13 +02:00
|
|
|
int idx = path.lastIndexOf(".");
|
2014-02-28 23:28:25 +01:00
|
|
|
if (idx != -1) {
|
2014-06-20 02:18:13 +02:00
|
|
|
ext = path.substring(idx + 1);
|
|
|
|
}
|
|
|
|
if (originalPath != null) {
|
|
|
|
originalPath += "" + f.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
TLRPC.TL_document document = (TLRPC.TL_document)MessagesStorage.getInstance().getSentFile(originalPath, currentEncryptedChat == null ? 1 : 4);
|
|
|
|
if (document == null && !path.equals(originalPath)) {
|
|
|
|
document = (TLRPC.TL_document)MessagesStorage.getInstance().getSentFile(path + f.length(), currentEncryptedChat == null ? 1 : 4);
|
|
|
|
}
|
|
|
|
if (document == null) {
|
|
|
|
document = new TLRPC.TL_document();
|
|
|
|
document.id = 0;
|
|
|
|
document.user_id = UserConfig.getClientUserId();
|
|
|
|
document.date = ConnectionsManager.getInstance().getCurrentTime();
|
|
|
|
document.file_name = name;
|
|
|
|
document.size = (int)f.length();
|
|
|
|
document.dc_id = 0;
|
|
|
|
if (ext.length() != 0) {
|
|
|
|
MimeTypeMap myMime = MimeTypeMap.getSingleton();
|
|
|
|
String mimeType = myMime.getMimeTypeFromExtension(ext.toLowerCase());
|
|
|
|
if (mimeType != null) {
|
|
|
|
document.mime_type = mimeType;
|
|
|
|
} else {
|
|
|
|
document.mime_type = "application/octet-stream";
|
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
} else {
|
|
|
|
document.mime_type = "application/octet-stream";
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
if (document.mime_type.equals("image/gif")) {
|
|
|
|
try {
|
2014-08-22 16:24:33 +02:00
|
|
|
Bitmap bitmap = ImageLoader.loadBitmap(f.getAbsolutePath(), null, 90, 90);
|
2014-06-20 02:18:13 +02:00
|
|
|
if (bitmap != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
document.thumb = ImageLoader.scaleAndSaveImage(bitmap, 90, 90, 55, currentEncryptedChat != null);
|
2014-06-20 02:18:13 +02:00
|
|
|
document.thumb.type = "s";
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
if (document.thumb == null) {
|
|
|
|
document.thumb = new TLRPC.TL_photoSizeEmpty();
|
|
|
|
document.thumb.type = "s";
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
|
|
|
|
final TLRPC.TL_document documentFinal = document;
|
|
|
|
final String originalPathFinal = originalPath;
|
2014-08-22 16:24:33 +02:00
|
|
|
AndroidUtilities.RunOnUIThread(new Runnable() {
|
2014-06-20 02:18:13 +02:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-09-28 15:37:26 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(documentFinal, originalPathFinal, path, dialog_id);
|
2014-06-20 02:18:13 +02:00
|
|
|
if (chatListView != null) {
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-02-28 23:28:25 +01:00
|
|
|
}
|
|
|
|
|
2014-06-20 02:18:13 +02:00
|
|
|
public void processSendingDocument(String path, String originalPath) {
|
|
|
|
if (path == null || originalPath == null) {
|
2013-10-25 17:19:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
ArrayList<String> paths = new ArrayList<String>();
|
|
|
|
ArrayList<String> originalPaths = new ArrayList<String>();
|
|
|
|
paths.add(path);
|
|
|
|
originalPaths.add(originalPath);
|
|
|
|
processSendingDocuments(paths, originalPaths);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void processSendingDocuments(final ArrayList<String> paths, final ArrayList<String> originalPaths) {
|
|
|
|
if (paths == null && originalPaths == null || paths != null && originalPaths != null && paths.size() != originalPaths.size()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
new Thread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
for (int a = 0; a < paths.size(); a++) {
|
|
|
|
processSendingDocumentInternal(paths.get(a), originalPaths.get(a));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}
|
|
|
|
|
2014-09-28 15:37:26 +02:00
|
|
|
public void processSendingVideo(final String videoPath, final long estimatedSize, final long duration, final int width, final int height, final TLRPC.VideoEditedInfo videoEditedInfo) {
|
2014-06-20 02:18:13 +02:00
|
|
|
if (videoPath == null || videoPath.length() == 0) {
|
2013-12-20 20:25:49 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
new Thread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-09-28 15:37:26 +02:00
|
|
|
String path = videoPath;
|
|
|
|
String originalPath = videoPath;
|
2014-07-04 00:41:59 +02:00
|
|
|
File temp = new File(originalPath);
|
|
|
|
originalPath += temp.length() + "_" + temp.lastModified();
|
2014-09-28 15:37:26 +02:00
|
|
|
if (videoEditedInfo != null) {
|
|
|
|
originalPath += duration + "_" + videoEditedInfo.startTime + "_" + videoEditedInfo.endTime;
|
|
|
|
}
|
|
|
|
TLRPC.TL_video video = (TLRPC.TL_video)MessagesStorage.getInstance().getSentFile(originalPath, currentEncryptedChat == null ? 2 : 5);
|
2014-06-20 02:18:13 +02:00
|
|
|
if (video == null) {
|
2014-09-28 15:37:26 +02:00
|
|
|
Bitmap thumb = ThumbnailUtils.createVideoThumbnail(videoPath, MediaStore.Video.Thumbnails.MINI_KIND);
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.PhotoSize size = ImageLoader.scaleAndSaveImage(thumb, 90, 90, 55, currentEncryptedChat != null);
|
2014-06-20 02:18:13 +02:00
|
|
|
video = new TLRPC.TL_video();
|
|
|
|
video.thumb = size;
|
2014-10-01 00:36:18 +02:00
|
|
|
if (video.thumb == null) {
|
|
|
|
video.thumb = new TLRPC.TL_photoSizeEmpty();
|
|
|
|
} else {
|
|
|
|
video.thumb.type = "s";
|
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
video.caption = "";
|
2014-07-03 00:39:05 +02:00
|
|
|
video.mime_type = "video/mp4";
|
2014-06-20 02:18:13 +02:00
|
|
|
video.id = 0;
|
2014-09-28 15:37:26 +02:00
|
|
|
UserConfig.saveConfig(false);
|
|
|
|
|
|
|
|
if (videoEditedInfo != null) {
|
|
|
|
video.duration = (int)(duration / 1000);
|
|
|
|
if (videoEditedInfo.rotationValue == 90 || videoEditedInfo.rotationValue == 270) {
|
|
|
|
video.w = height;
|
|
|
|
video.h = width;
|
|
|
|
} else {
|
|
|
|
video.w = width;
|
|
|
|
video.h = height;
|
|
|
|
}
|
2014-09-14 01:40:36 +02:00
|
|
|
video.size = (int)estimatedSize;
|
2014-09-28 15:37:26 +02:00
|
|
|
video.videoEditedInfo = videoEditedInfo;
|
|
|
|
String fileName = Integer.MIN_VALUE + "_" + UserConfig.lastLocalId + ".mp4";
|
|
|
|
UserConfig.lastLocalId--;
|
|
|
|
File cacheFile = new File(FileLoader.getInstance().getDirectory(FileLoader.MEDIA_DIR_CACHE), fileName);
|
|
|
|
UserConfig.saveConfig(false);
|
|
|
|
path = cacheFile.getAbsolutePath();
|
2014-09-14 01:40:36 +02:00
|
|
|
} else {
|
|
|
|
if (temp != null && temp.exists()) {
|
|
|
|
video.size = (int) temp.length();
|
|
|
|
}
|
2014-10-01 00:36:18 +02:00
|
|
|
if (Build.VERSION.SDK_INT >= 14) {
|
2014-09-28 15:37:26 +02:00
|
|
|
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
|
|
|
|
mediaMetadataRetriever.setDataSource(videoPath);
|
|
|
|
String width = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH);
|
|
|
|
if (width != null) {
|
|
|
|
video.w = Integer.parseInt(width);
|
|
|
|
}
|
|
|
|
String height = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT);
|
|
|
|
if (height != null) {
|
|
|
|
video.h = Integer.parseInt(height);
|
|
|
|
}
|
|
|
|
String duration = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
|
|
|
|
if (duration != null) {
|
|
|
|
video.duration = (int) Math.ceil(Long.parseLong(duration) / 1000.0f);
|
|
|
|
}
|
|
|
|
mediaMetadataRetriever.release();
|
|
|
|
} else {
|
|
|
|
MediaPlayer mp = MediaPlayer.create(ApplicationLoader.applicationContext, Uri.fromFile(new File(videoPath)));
|
|
|
|
if (mp == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
video.duration = (int) Math.ceil(mp.getDuration() / 1000.0f);
|
|
|
|
video.w = mp.getVideoWidth();
|
|
|
|
video.h = mp.getVideoHeight();
|
|
|
|
mp.release();
|
2014-09-14 01:40:36 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final TLRPC.TL_video videoFinal = video;
|
2014-07-04 00:41:59 +02:00
|
|
|
final String originalPathFinal = originalPath;
|
2014-09-28 15:37:26 +02:00
|
|
|
final String finalPath = path;
|
2014-08-22 16:24:33 +02:00
|
|
|
AndroidUtilities.RunOnUIThread(new Runnable() {
|
2014-06-20 02:18:13 +02:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-09-28 15:37:26 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(videoFinal, originalPathFinal, finalPath, dialog_id);
|
2014-06-20 02:18:13 +02:00
|
|
|
if (chatListView != null) {
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2014-06-20 02:18:13 +02:00
|
|
|
}
|
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).start();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
private void removeUnreadPlane(boolean reload) {
|
|
|
|
if (unreadMessageObject != null) {
|
|
|
|
messages.remove(unreadMessageObject);
|
|
|
|
unread_end_reached = true;
|
|
|
|
first_unread_id = 0;
|
|
|
|
last_unread_id = 0;
|
|
|
|
unread_to_load = 0;
|
|
|
|
unreadMessageObject = null;
|
|
|
|
if (reload) {
|
|
|
|
chatAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@Override
|
|
|
|
public void didReceivedNotification(int id, final Object... args) {
|
2014-08-22 16:24:33 +02:00
|
|
|
if (id == NotificationCenter.messagesDidLoaded) {
|
2013-10-25 17:19:00 +02:00
|
|
|
long did = (Long)args[0];
|
|
|
|
if (did == dialog_id) {
|
2014-09-24 04:17:27 +02:00
|
|
|
loadsCount++;
|
2014-08-02 01:31:15 +02:00
|
|
|
int count = (Integer)args[1];
|
|
|
|
boolean isCache = (Boolean)args[3];
|
|
|
|
int fnid = (Integer)args[4];
|
|
|
|
int last_unread_date = (Integer)args[7];
|
|
|
|
boolean forwardLoad = (Boolean)args[8];
|
2013-10-25 17:19:00 +02:00
|
|
|
boolean wasUnread = false;
|
2013-12-20 20:25:49 +01:00
|
|
|
boolean positionToUnread = false;
|
|
|
|
if (fnid != 0) {
|
2014-08-02 01:31:15 +02:00
|
|
|
first_unread_id = fnid;
|
|
|
|
last_unread_id = (Integer)args[5];
|
|
|
|
unread_to_load = (Integer)args[6];
|
2013-12-20 20:25:49 +01:00
|
|
|
positionToUnread = true;
|
|
|
|
}
|
2014-08-02 01:31:15 +02:00
|
|
|
ArrayList<MessageObject> messArr = (ArrayList<MessageObject>)args[2];
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
int newRowsCount = 0;
|
2013-12-20 20:25:49 +01:00
|
|
|
unread_end_reached = last_unread_id == 0;
|
2014-08-02 01:31:15 +02:00
|
|
|
|
2014-09-24 04:17:27 +02:00
|
|
|
if (loadsCount == 1 && messArr.size() > 20) {
|
|
|
|
loadsCount++;
|
|
|
|
}
|
|
|
|
|
2014-08-02 01:31:15 +02:00
|
|
|
if (firstLoading) {
|
|
|
|
if (!unread_end_reached) {
|
|
|
|
messages.clear();
|
|
|
|
messagesByDays.clear();
|
|
|
|
messagesDict.clear();
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
maxMessageId = Integer.MAX_VALUE;
|
|
|
|
minMessageId = Integer.MIN_VALUE;
|
|
|
|
} else {
|
|
|
|
maxMessageId = Integer.MIN_VALUE;
|
|
|
|
minMessageId = Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
maxDate = Integer.MIN_VALUE;
|
|
|
|
minDate = 0;
|
|
|
|
}
|
|
|
|
firstLoading = false;
|
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
for (int a = 0; a < messArr.size(); a++) {
|
|
|
|
MessageObject obj = messArr.get(a);
|
|
|
|
if (messagesDict.containsKey(obj.messageOwner.id)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (obj.messageOwner.id > 0) {
|
|
|
|
maxMessageId = Math.min(obj.messageOwner.id, maxMessageId);
|
2013-12-20 20:25:49 +01:00
|
|
|
minMessageId = Math.max(obj.messageOwner.id, minMessageId);
|
|
|
|
} else if (currentEncryptedChat != null) {
|
2014-03-22 23:31:55 +01:00
|
|
|
maxMessageId = Math.max(obj.messageOwner.id, maxMessageId);
|
2013-12-20 20:25:49 +01:00
|
|
|
minMessageId = Math.min(obj.messageOwner.id, minMessageId);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
maxDate = Math.max(maxDate, obj.messageOwner.date);
|
|
|
|
if (minDate == 0 || obj.messageOwner.date < minDate) {
|
|
|
|
minDate = obj.messageOwner.date;
|
|
|
|
}
|
2014-09-14 01:40:36 +02:00
|
|
|
if (!obj.isOut() && obj.isUnread()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
wasUnread = true;
|
|
|
|
}
|
|
|
|
messagesDict.put(obj.messageOwner.id, obj);
|
|
|
|
ArrayList<MessageObject> dayArray = messagesByDays.get(obj.dateKey);
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (dayArray == null) {
|
|
|
|
dayArray = new ArrayList<MessageObject>();
|
|
|
|
messagesByDays.put(obj.dateKey, dayArray);
|
|
|
|
|
|
|
|
TLRPC.Message dateMsg = new TLRPC.Message();
|
2014-03-25 01:25:32 +01:00
|
|
|
dateMsg.message = LocaleController.formatDateChat(obj.messageOwner.date);
|
2013-10-25 17:19:00 +02:00
|
|
|
dateMsg.id = 0;
|
|
|
|
MessageObject dateObj = new MessageObject(dateMsg, null);
|
2014-08-29 23:06:04 +02:00
|
|
|
dateObj.type = 10;
|
|
|
|
dateObj.contentType = 7;
|
2013-12-20 20:25:49 +01:00
|
|
|
if (forwardLoad) {
|
|
|
|
messages.add(0, dateObj);
|
|
|
|
} else {
|
|
|
|
messages.add(dateObj);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
newRowsCount++;
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
newRowsCount++;
|
|
|
|
dayArray.add(obj);
|
2013-12-20 20:25:49 +01:00
|
|
|
if (forwardLoad) {
|
|
|
|
messages.add(0, obj);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
messages.add(messages.size() - 1, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!forwardLoad) {
|
|
|
|
if (obj.messageOwner.id == first_unread_id) {
|
|
|
|
TLRPC.Message dateMsg = new TLRPC.Message();
|
|
|
|
dateMsg.message = "";
|
|
|
|
dateMsg.id = 0;
|
|
|
|
MessageObject dateObj = new MessageObject(dateMsg, null);
|
2014-08-29 23:06:04 +02:00
|
|
|
dateObj.contentType = dateObj.type = 6;
|
2013-12-20 20:25:49 +01:00
|
|
|
boolean dateAdded = true;
|
|
|
|
if (a != messArr.size() - 1) {
|
|
|
|
MessageObject next = messArr.get(a + 1);
|
|
|
|
dateAdded = !next.dateKey.equals(obj.dateKey);
|
|
|
|
}
|
|
|
|
messages.add(messages.size() - (dateAdded ? 0 : 1), dateObj);
|
|
|
|
unreadMessageObject = dateObj;
|
|
|
|
newRowsCount++;
|
|
|
|
}
|
|
|
|
if (obj.messageOwner.id == last_unread_id) {
|
|
|
|
unread_end_reached = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (unread_end_reached) {
|
|
|
|
first_unread_id = 0;
|
|
|
|
last_unread_id = 0;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (forwardLoad) {
|
|
|
|
if (messArr.size() != count) {
|
|
|
|
unread_end_reached = true;
|
|
|
|
first_unread_id = 0;
|
|
|
|
last_unread_id = 0;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
chatAdapter.notifyDataSetChanged();
|
|
|
|
loadingForward = false;
|
|
|
|
} else {
|
|
|
|
if (messArr.size() != count) {
|
|
|
|
if (isCache) {
|
|
|
|
cacheEndReaced = true;
|
2014-07-27 12:53:00 +02:00
|
|
|
if (currentEncryptedChat != null || isBraodcast) {
|
2013-12-20 20:25:49 +01:00
|
|
|
endReached = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cacheEndReaced = true;
|
|
|
|
endReached = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
loading = false;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (chatListView != null) {
|
|
|
|
if (first || scrollToTopOnResume) {
|
|
|
|
chatAdapter.notifyDataSetChanged();
|
|
|
|
if (positionToUnread && unreadMessageObject != null) {
|
|
|
|
if (messages.get(messages.size() - 1) == unreadMessageObject) {
|
2014-07-03 00:39:05 +02:00
|
|
|
chatListView.setSelectionFromTop(0, AndroidUtilities.dp(-11));
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2014-07-03 00:39:05 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), AndroidUtilities.dp(-11));
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
ViewTreeObserver obs = chatListView.getViewTreeObserver();
|
|
|
|
obs.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onPreDraw() {
|
2014-07-03 00:39:05 +02:00
|
|
|
if (!messages.isEmpty()) {
|
|
|
|
if (messages.get(messages.size() - 1) == unreadMessageObject) {
|
|
|
|
chatListView.setSelectionFromTop(0, AndroidUtilities.dp(-11));
|
|
|
|
} else {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), AndroidUtilities.dp(-11));
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
chatListView.getViewTreeObserver().removeOnPreDrawListener(this);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
chatListView.invalidate();
|
|
|
|
showPagedownButton(true, true);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
chatListView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-02-28 23:28:25 +01:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int firstVisPos = chatListView.getLastVisiblePosition();
|
|
|
|
View firstVisView = chatListView.getChildAt(chatListView.getChildCount() - 1);
|
|
|
|
int top = ((firstVisView == null) ? 0 : firstVisView.getTop()) - chatListView.getPaddingTop();
|
|
|
|
chatAdapter.notifyDataSetChanged();
|
2014-06-12 03:13:15 +02:00
|
|
|
chatListView.setSelectionFromTop(firstVisPos + newRowsCount - (endReached ? 1 : 0), top);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
if (positionToUnread && unreadMessageObject != null) {
|
|
|
|
scrollToTopUnReadOnResume = true;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
|
|
|
if (first) {
|
|
|
|
if (chatListView.getEmptyView() == null) {
|
2014-09-30 00:48:11 +02:00
|
|
|
chatListView.setEmptyView(emptyViewContainer);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
if (positionToUnread && unreadMessageObject != null) {
|
|
|
|
scrollToTopUnReadOnResume = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (first && messages.size() > 0) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (last_unread_id != 0) {
|
2014-08-08 12:17:06 +02:00
|
|
|
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, last_unread_id, 0, last_unread_date, wasUnread, false);
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2014-08-08 12:17:06 +02:00
|
|
|
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, minMessageId, 0, maxDate, wasUnread, false);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (progressView != null) {
|
|
|
|
progressView.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.emojiDidLoaded) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (chatListView != null) {
|
|
|
|
chatListView.invalidateViews();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.updateInterfaces) {
|
2013-10-25 17:19:00 +02:00
|
|
|
int updateMask = (Integer)args[0];
|
2014-02-11 15:32:09 +01:00
|
|
|
if ((updateMask & MessagesController.UPDATE_MASK_NAME) != 0 || (updateMask & MessagesController.UPDATE_MASK_STATUS) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_NAME) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_MEMBERS) != 0) {
|
2013-10-25 17:19:00 +02:00
|
|
|
updateSubtitle();
|
|
|
|
updateOnlineCount();
|
|
|
|
}
|
2014-02-04 19:36:55 +01:00
|
|
|
if ((updateMask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_AVATAR) != 0 || (updateMask & MessagesController.UPDATE_MASK_NAME) != 0) {
|
2013-10-25 17:19:00 +02:00
|
|
|
checkAndUpdateAvatar();
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-02-04 19:36:55 +01:00
|
|
|
if ((updateMask & MessagesController.UPDATE_MASK_USER_PRINT) != 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
CharSequence printString = MessagesController.getInstance().printingStrings.get(dialog_id);
|
2014-02-04 19:36:55 +01:00
|
|
|
if (lastPrintString != null && printString == null || lastPrintString == null && printString != null || lastPrintString != null && printString != null && !lastPrintString.equals(printString)) {
|
|
|
|
updateSubtitle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((updateMask & MessagesController.UPDATE_MASK_USER_PHONE) != 0) {
|
|
|
|
updateContactStatus();
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.didReceivedNewMessages) {
|
2013-10-25 17:19:00 +02:00
|
|
|
long did = (Long)args[0];
|
|
|
|
if (did == dialog_id) {
|
|
|
|
|
|
|
|
boolean updateChat = false;
|
2013-12-20 20:25:49 +01:00
|
|
|
ArrayList<MessageObject> arr = (ArrayList<MessageObject>)args[1];
|
|
|
|
|
|
|
|
if (!unread_end_reached) {
|
|
|
|
int currentMaxDate = Integer.MIN_VALUE;
|
|
|
|
int currentMinMsgId = Integer.MIN_VALUE;
|
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
currentMinMsgId = Integer.MAX_VALUE;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
boolean currentMarkAsRead = false;
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
for (MessageObject obj : arr) {
|
2014-03-10 10:27:49 +01:00
|
|
|
if (currentEncryptedChat != null && obj.messageOwner.action != null && obj.messageOwner.action instanceof TLRPC.TL_messageActionTTLChange && timerButton != null) {
|
|
|
|
timerButton.setTime(obj.messageOwner.action.ttl);
|
|
|
|
}
|
2014-09-28 15:37:26 +02:00
|
|
|
if (obj.isOut() && obj.isSending()) {
|
2014-03-22 23:31:55 +01:00
|
|
|
scrollToLastMessage();
|
|
|
|
return;
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
if (messagesDict.containsKey(obj.messageOwner.id)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
currentMaxDate = Math.max(currentMaxDate, obj.messageOwner.date);
|
|
|
|
if (obj.messageOwner.id > 0) {
|
|
|
|
currentMinMsgId = Math.max(obj.messageOwner.id, currentMinMsgId);
|
|
|
|
} else if (currentEncryptedChat != null) {
|
|
|
|
currentMinMsgId = Math.min(obj.messageOwner.id, currentMinMsgId);
|
|
|
|
}
|
|
|
|
|
2014-09-14 01:40:36 +02:00
|
|
|
if (!obj.isOut() && obj.isUnread()) {
|
2013-12-20 20:25:49 +01:00
|
|
|
unread_to_load++;
|
|
|
|
currentMarkAsRead = true;
|
|
|
|
}
|
|
|
|
if (obj.type == 10 || obj.type == 11) {
|
|
|
|
updateChat = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (currentMarkAsRead) {
|
|
|
|
if (paused) {
|
|
|
|
readWhenResume = true;
|
|
|
|
readWithDate = currentMaxDate;
|
|
|
|
readWithMid = currentMinMsgId;
|
|
|
|
} else {
|
2014-02-04 19:36:55 +01:00
|
|
|
if (messages.size() > 0) {
|
2014-08-08 12:17:06 +02:00
|
|
|
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, currentMinMsgId, 0, currentMaxDate, true, false);
|
2014-02-04 19:36:55 +01:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
updateVisibleRows();
|
|
|
|
} else {
|
|
|
|
boolean markAsRead = false;
|
|
|
|
int oldCount = messages.size();
|
|
|
|
for (MessageObject obj : arr) {
|
2014-03-10 10:27:49 +01:00
|
|
|
if (currentEncryptedChat != null && obj.messageOwner.action != null && obj.messageOwner.action instanceof TLRPC.TL_messageActionTTLChange && timerButton != null) {
|
|
|
|
timerButton.setTime(obj.messageOwner.action.ttl);
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
if (messagesDict.containsKey(obj.messageOwner.id)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (minDate == 0 || obj.messageOwner.date < minDate) {
|
|
|
|
minDate = obj.messageOwner.date;
|
|
|
|
}
|
|
|
|
|
2014-04-03 23:18:54 +02:00
|
|
|
if (obj.isOut()) {
|
2013-12-20 20:25:49 +01:00
|
|
|
removeUnreadPlane(false);
|
|
|
|
}
|
|
|
|
|
2014-04-03 23:18:54 +02:00
|
|
|
if (!obj.isOut() && unreadMessageObject != null) {
|
2013-12-20 20:25:49 +01:00
|
|
|
unread_to_load++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obj.messageOwner.id > 0) {
|
|
|
|
maxMessageId = Math.min(obj.messageOwner.id, maxMessageId);
|
|
|
|
minMessageId = Math.max(obj.messageOwner.id, minMessageId);
|
|
|
|
} else if (currentEncryptedChat != null) {
|
2014-03-22 23:31:55 +01:00
|
|
|
maxMessageId = Math.max(obj.messageOwner.id, maxMessageId);
|
2013-12-20 20:25:49 +01:00
|
|
|
minMessageId = Math.min(obj.messageOwner.id, minMessageId);
|
|
|
|
}
|
|
|
|
maxDate = Math.max(maxDate, obj.messageOwner.date);
|
|
|
|
messagesDict.put(obj.messageOwner.id, obj);
|
|
|
|
ArrayList<MessageObject> dayArray = messagesByDays.get(obj.dateKey);
|
|
|
|
if (dayArray == null) {
|
|
|
|
dayArray = new ArrayList<MessageObject>();
|
|
|
|
messagesByDays.put(obj.dateKey, dayArray);
|
|
|
|
|
|
|
|
TLRPC.Message dateMsg = new TLRPC.Message();
|
2014-03-25 01:25:32 +01:00
|
|
|
dateMsg.message = LocaleController.formatDateChat(obj.messageOwner.date);
|
2013-12-20 20:25:49 +01:00
|
|
|
dateMsg.id = 0;
|
|
|
|
MessageObject dateObj = new MessageObject(dateMsg, null);
|
2014-08-29 23:06:04 +02:00
|
|
|
dateObj.type = 10;
|
|
|
|
dateObj.contentType = 7;
|
2013-12-20 20:25:49 +01:00
|
|
|
messages.add(0, dateObj);
|
|
|
|
}
|
2014-09-14 01:40:36 +02:00
|
|
|
if (!obj.isOut() && obj.isUnread()) {
|
2014-07-20 23:49:33 +02:00
|
|
|
if (!paused) {
|
|
|
|
obj.messageOwner.unread = false;
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
markAsRead = true;
|
|
|
|
}
|
|
|
|
dayArray.add(0, obj);
|
|
|
|
messages.add(0, obj);
|
|
|
|
if (obj.type == 10 || obj.type == 11) {
|
|
|
|
updateChat = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
if (progressView != null) {
|
|
|
|
progressView.setVisibility(View.GONE);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
if (chatAdapter != null) {
|
|
|
|
chatAdapter.notifyDataSetChanged();
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
scrollToTopOnResume = true;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
|
|
|
|
if (chatListView != null && chatAdapter != null) {
|
|
|
|
int lastVisible = chatListView.getLastVisiblePosition();
|
|
|
|
if (endReached) {
|
|
|
|
lastVisible++;
|
|
|
|
}
|
|
|
|
if (lastVisible == oldCount) {
|
2014-08-02 01:31:15 +02:00
|
|
|
if (!firstLoading) {
|
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
} else {
|
|
|
|
chatListView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
showPagedownButton(true, true);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
}
|
|
|
|
|
2013-12-20 20:25:49 +01:00
|
|
|
if (markAsRead) {
|
|
|
|
if (paused) {
|
|
|
|
readWhenResume = true;
|
|
|
|
readWithDate = maxDate;
|
|
|
|
readWithMid = minMessageId;
|
|
|
|
} else {
|
2014-08-08 12:17:06 +02:00
|
|
|
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, minMessageId, 0, maxDate, true, false);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updateChat) {
|
|
|
|
updateSubtitle();
|
|
|
|
checkAndUpdateAvatar();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.closeChats) {
|
2014-09-30 00:48:11 +02:00
|
|
|
if (args != null && args.length > 0) {
|
|
|
|
long did = (Long)args[0];
|
|
|
|
if (did == dialog_id) {
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
removeSelfFromStack();
|
|
|
|
}
|
2014-09-14 01:40:36 +02:00
|
|
|
} else if (id == NotificationCenter.messagesRead) {
|
2013-10-25 17:19:00 +02:00
|
|
|
ArrayList<Integer> markAsReadMessages = (ArrayList<Integer>)args[0];
|
|
|
|
boolean updated = false;
|
|
|
|
for (Integer ids : markAsReadMessages) {
|
|
|
|
MessageObject obj = messagesDict.get(ids);
|
|
|
|
if (obj != null) {
|
|
|
|
obj.messageOwner.unread = false;
|
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updated) {
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.messagesDeleted) {
|
2013-10-25 17:19:00 +02:00
|
|
|
ArrayList<Integer> markAsDeletedMessages = (ArrayList<Integer>)args[0];
|
|
|
|
boolean updated = false;
|
|
|
|
for (Integer ids : markAsDeletedMessages) {
|
|
|
|
MessageObject obj = messagesDict.get(ids);
|
|
|
|
if (obj != null) {
|
|
|
|
int index = messages.indexOf(obj);
|
2013-12-20 20:25:49 +01:00
|
|
|
if (index != -1) {
|
2013-10-25 17:19:00 +02:00
|
|
|
messages.remove(index);
|
2013-12-20 20:25:49 +01:00
|
|
|
messagesDict.remove(ids);
|
|
|
|
ArrayList<MessageObject> dayArr = messagesByDays.get(obj.dateKey);
|
|
|
|
dayArr.remove(obj);
|
|
|
|
if (dayArr.isEmpty()) {
|
|
|
|
messagesByDays.remove(obj.dateKey);
|
2014-06-15 01:23:36 +02:00
|
|
|
messages.remove(index);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
updated = true;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (messages.isEmpty()) {
|
|
|
|
if (!endReached && !loading) {
|
2014-03-22 23:31:55 +01:00
|
|
|
progressView.setVisibility(View.GONE);
|
2013-12-20 20:25:49 +01:00
|
|
|
chatListView.setEmptyView(null);
|
2014-03-22 23:31:55 +01:00
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
maxMessageId = Integer.MAX_VALUE;
|
|
|
|
minMessageId = Integer.MIN_VALUE;
|
|
|
|
} else {
|
|
|
|
maxMessageId = Integer.MIN_VALUE;
|
|
|
|
minMessageId = Integer.MAX_VALUE;
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
maxDate = Integer.MIN_VALUE;
|
|
|
|
minDate = 0;
|
2014-08-02 01:31:15 +02:00
|
|
|
MessagesController.getInstance().loadMessages(dialog_id, 30, 0, !cacheEndReaced, minDate, classGuid, false, false);
|
2013-12-20 20:25:49 +01:00
|
|
|
loading = true;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updated && chatAdapter != null) {
|
2013-12-20 20:25:49 +01:00
|
|
|
removeUnreadPlane(false);
|
2013-10-25 17:19:00 +02:00
|
|
|
chatAdapter.notifyDataSetChanged();
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.messageReceivedByServer) {
|
2013-10-25 17:19:00 +02:00
|
|
|
Integer msgId = (Integer)args[0];
|
|
|
|
MessageObject obj = messagesDict.get(msgId);
|
|
|
|
if (obj != null) {
|
|
|
|
Integer newMsgId = (Integer)args[1];
|
2014-03-22 23:31:55 +01:00
|
|
|
MessageObject newMsgObj = (MessageObject)args[2];
|
|
|
|
if (newMsgObj != null) {
|
|
|
|
obj.messageOwner.media = newMsgObj.messageOwner.media;
|
2014-08-06 01:17:40 +02:00
|
|
|
obj.generateThumbs(true, 1);
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
messagesDict.remove(msgId);
|
|
|
|
messagesDict.put(newMsgId, obj);
|
|
|
|
obj.messageOwner.id = newMsgId;
|
2014-08-22 16:24:33 +02:00
|
|
|
obj.messageOwner.send_state = MessageObject.MESSAGE_SEND_STATE_SENT;
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.messageReceivedByAck) {
|
2013-10-25 17:19:00 +02:00
|
|
|
Integer msgId = (Integer)args[0];
|
|
|
|
MessageObject obj = messagesDict.get(msgId);
|
|
|
|
if (obj != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
obj.messageOwner.send_state = MessageObject.MESSAGE_SEND_STATE_SENT;
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.messageSendError) {
|
2013-10-25 17:19:00 +02:00
|
|
|
Integer msgId = (Integer)args[0];
|
|
|
|
MessageObject obj = messagesDict.get(msgId);
|
|
|
|
if (obj != null) {
|
2014-08-22 16:24:33 +02:00
|
|
|
obj.messageOwner.send_state = MessageObject.MESSAGE_SEND_STATE_SEND_ERROR;
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.chatInfoDidLoaded) {
|
2013-10-25 17:19:00 +02:00
|
|
|
int chatId = (Integer)args[0];
|
|
|
|
if (currentChat != null && chatId == currentChat.id) {
|
|
|
|
info = (TLRPC.ChatParticipants)args[1];
|
|
|
|
updateOnlineCount();
|
2014-08-22 16:24:33 +02:00
|
|
|
if (isBraodcast) {
|
|
|
|
SendMessagesHelper.getInstance().setCurrentChatInfo(info);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.contactsDidLoaded) {
|
2013-10-25 17:19:00 +02:00
|
|
|
updateContactStatus();
|
2013-12-20 20:25:49 +01:00
|
|
|
updateSubtitle();
|
2014-08-22 16:24:33 +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;
|
2013-12-20 20:25:49 +01:00
|
|
|
updateContactStatus();
|
2013-10-25 17:19:00 +02:00
|
|
|
updateSecretStatus();
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.messagesReadedEncrypted) {
|
2013-10-25 17:19:00 +02:00
|
|
|
int encId = (Integer)args[0];
|
|
|
|
if (currentEncryptedChat != null && currentEncryptedChat.id == encId) {
|
|
|
|
int date = (Integer)args[1];
|
|
|
|
boolean started = false;
|
|
|
|
for (MessageObject obj : messages) {
|
2014-04-03 23:18:54 +02:00
|
|
|
if (!obj.isOut()) {
|
2013-12-20 20:25:49 +01:00
|
|
|
continue;
|
2014-04-03 23:18:54 +02:00
|
|
|
} else if (obj.isOut() && !obj.messageOwner.unread) {
|
2013-12-20 20:25:49 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
if (obj.messageOwner.date <= date) {
|
|
|
|
obj.messageOwner.unread = false;
|
|
|
|
}
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
updateVisibleRows();
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.audioDidReset) {
|
2014-02-28 23:28:25 +01:00
|
|
|
Integer mid = (Integer)args[0];
|
|
|
|
if (chatListView != null) {
|
|
|
|
int count = chatListView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View view = chatListView.getChildAt(a);
|
|
|
|
if (view instanceof ChatAudioCell) {
|
|
|
|
ChatAudioCell cell = (ChatAudioCell)view;
|
|
|
|
if (cell.getMessageObject() != null && cell.getMessageObject().messageOwner.id == mid) {
|
|
|
|
cell.updateButtonState();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.audioProgressDidChanged) {
|
2014-02-28 23:28:25 +01:00
|
|
|
Integer mid = (Integer)args[0];
|
|
|
|
if (chatListView != null) {
|
|
|
|
int count = chatListView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View view = chatListView.getChildAt(a);
|
|
|
|
if (view instanceof ChatAudioCell) {
|
|
|
|
ChatAudioCell cell = (ChatAudioCell)view;
|
|
|
|
if (cell.getMessageObject() != null && cell.getMessageObject().messageOwner.id == mid) {
|
|
|
|
cell.updateProgress();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.removeAllMessagesFromDialog) {
|
2014-03-22 23:31:55 +01:00
|
|
|
messages.clear();
|
|
|
|
messagesByDays.clear();
|
|
|
|
messagesDict.clear();
|
|
|
|
progressView.setVisibility(View.GONE);
|
2014-09-30 00:48:11 +02:00
|
|
|
chatListView.setEmptyView(emptyViewContainer);
|
2014-03-22 23:31:55 +01:00
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
maxMessageId = Integer.MAX_VALUE;
|
|
|
|
minMessageId = Integer.MIN_VALUE;
|
|
|
|
} else {
|
|
|
|
maxMessageId = Integer.MIN_VALUE;
|
|
|
|
minMessageId = Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
maxDate = Integer.MIN_VALUE;
|
|
|
|
minDate = 0;
|
2014-06-04 01:31:48 +02:00
|
|
|
selectedMessagesIds.clear();
|
|
|
|
selectedMessagesCanCopyIds.clear();
|
|
|
|
actionBarLayer.hideActionMode();
|
2014-03-22 23:31:55 +01:00
|
|
|
chatAdapter.notifyDataSetChanged();
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.screenshotTook) {
|
2014-04-04 19:58:33 +02:00
|
|
|
updateInformationForScreenshotDetector();
|
2014-08-22 16:24:33 +02:00
|
|
|
} else if (id == NotificationCenter.blockedUsersDidLoaded) {
|
|
|
|
if (currentUser != null) {
|
|
|
|
boolean oldValue = userBlocked;
|
|
|
|
userBlocked = MessagesController.getInstance().blockedUsers.contains(currentUser.id);
|
|
|
|
if (oldValue != userBlocked) {
|
|
|
|
updateBottomOverlay();
|
|
|
|
}
|
|
|
|
}
|
2014-09-30 00:48:11 +02:00
|
|
|
} else if (id == NotificationCenter.FileNewChunkAvailable) {
|
|
|
|
MessageObject messageObject = (MessageObject)args[0];
|
|
|
|
long finalSize = (Long)args[2];
|
|
|
|
if (finalSize != 0 && dialog_id == messageObject.getDialogId()) {
|
|
|
|
MessageObject currentObject = messagesDict.get(messageObject.messageOwner.id);
|
|
|
|
if (currentObject != null) {
|
|
|
|
currentObject.messageOwner.media.video.size = (int)finalSize;
|
|
|
|
updateVisibleRows();
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateBottomOverlay() {
|
|
|
|
if (currentUser == null) {
|
|
|
|
bottomOverlayChatText.setText(LocaleController.getString("DeleteThisGroup", R.string.DeleteThisGroup));
|
|
|
|
} else {
|
|
|
|
if (userBlocked) {
|
|
|
|
bottomOverlayChatText.setText(LocaleController.getString("Unblock", R.string.Unblock));
|
|
|
|
} else {
|
|
|
|
bottomOverlayChatText.setText(LocaleController.getString("DeleteThisChat", R.string.DeleteThisChat));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (currentChat != null && (currentChat instanceof TLRPC.TL_chatForbidden || currentChat.left) ||
|
|
|
|
currentUser != null && (currentUser instanceof TLRPC.TL_userDeleted || currentUser instanceof TLRPC.TL_userEmpty || userBlocked)) {
|
|
|
|
bottomOverlayChat.setVisibility(View.VISIBLE);
|
|
|
|
chatActivityEnterView.setFieldFocused(false);
|
|
|
|
} else {
|
|
|
|
bottomOverlayChat.setVisibility(View.GONE);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateContactStatus() {
|
|
|
|
if (topPanel == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (currentUser == null) {
|
|
|
|
topPanel.setVisibility(View.GONE);
|
|
|
|
} else {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(currentUser.id);
|
2014-05-17 01:05:49 +02:00
|
|
|
if (user != null) {
|
|
|
|
currentUser = user;
|
|
|
|
}
|
2014-02-04 19:36:55 +01:00
|
|
|
if (currentEncryptedChat != null && !(currentEncryptedChat instanceof TLRPC.TL_encryptedChat)
|
2014-08-29 23:06:04 +02:00
|
|
|
|| currentUser.id / 1000 == 333 || currentUser.id / 1000 == 777
|
2014-05-17 01:05:49 +02:00
|
|
|
|| currentUser instanceof TLRPC.TL_userEmpty || currentUser instanceof TLRPC.TL_userDeleted
|
2014-08-29 23:06:04 +02:00
|
|
|
|| ContactsController.getInstance().isLoadingContacts()
|
|
|
|
|| (currentUser.phone != null && currentUser.phone.length() != 0 && ContactsController.getInstance().contactsDict.get(currentUser.id) != null && (ContactsController.getInstance().contactsDict.size() != 0 || !ContactsController.getInstance().isLoadingContacts()))) {
|
2013-10-25 17:19:00 +02:00
|
|
|
topPanel.setVisibility(View.GONE);
|
|
|
|
} else {
|
|
|
|
topPanel.setVisibility(View.VISIBLE);
|
2014-07-03 00:39:05 +02:00
|
|
|
topPanelText.setShadowLayer(1, 0, AndroidUtilities.dp(1), 0xff8797a3);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (isCustomTheme) {
|
|
|
|
topPlaneClose.setImageResource(R.drawable.ic_msg_btn_cross_custom);
|
|
|
|
topPanel.setBackgroundResource(R.drawable.top_pane_custom);
|
|
|
|
} else {
|
|
|
|
topPlaneClose.setImageResource(R.drawable.ic_msg_btn_cross_custom);
|
|
|
|
topPanel.setBackgroundResource(R.drawable.top_pane);
|
|
|
|
}
|
|
|
|
if (currentUser.phone != null && currentUser.phone.length() != 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
if (MessagesController.getInstance().hidenAddToContacts.get(currentUser.id) != null) {
|
2013-10-25 17:19:00 +02:00
|
|
|
topPanel.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
2014-03-22 23:31:55 +01:00
|
|
|
topPanelText.setText(LocaleController.getString("AddToContacts", R.string.AddToContacts));
|
2013-10-25 17:19:00 +02:00
|
|
|
topPlaneClose.setVisibility(View.VISIBLE);
|
|
|
|
topPlaneClose.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-03-22 23:31:55 +01:00
|
|
|
MessagesController.getInstance().hidenAddToContacts.put(currentUser.id, currentUser);
|
2013-10-25 17:19:00 +02:00
|
|
|
topPanel.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
topPanel.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", currentUser.id);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(new ContactAddActivity(args));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2014-03-22 23:31:55 +01:00
|
|
|
if (MessagesController.getInstance().hidenAddToContacts.get(currentUser.id) != null) {
|
2013-10-25 17:19:00 +02:00
|
|
|
topPanel.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
2014-03-22 23:31:55 +01:00
|
|
|
topPanelText.setText(LocaleController.getString("ShareMyContactInfo", R.string.ShareMyContactInfo));
|
2013-10-25 17:19:00 +02:00
|
|
|
topPlaneClose.setVisibility(View.GONE);
|
|
|
|
topPanel.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 21:27:43 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2014-07-10 23:15:39 +02:00
|
|
|
builder.setMessage(LocaleController.getString("AreYouSureShareMyContactInfo", R.string.AreYouSureShareMyContactInfo));
|
2014-06-04 21:27:43 +02:00
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
|
2013-10-25 17:19:00 +02:00
|
|
|
@Override
|
2014-06-04 21:27:43 +02:00
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
MessagesController.getInstance().hidenAddToContacts.put(currentUser.id, currentUser);
|
|
|
|
topPanel.setVisibility(View.GONE);
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(UserConfig.getCurrentUser(), dialog_id);
|
2014-06-04 21:27:43 +02:00
|
|
|
chatListView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
}
|
|
|
|
});
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
2014-06-04 21:27:43 +02:00
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2014-06-04 18:00:42 +02:00
|
|
|
super.onResume();
|
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
checkActionBarMenu();
|
|
|
|
if (chatAdapter != null) {
|
2013-10-25 17:19:00 +02:00
|
|
|
chatAdapter.notifyDataSetChanged();
|
|
|
|
}
|
2014-07-10 02:15:58 +02:00
|
|
|
NotificationsController.getInstance().setOpennedDialogId(dialog_id);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (scrollToTopOnResume) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (scrollToTopUnReadOnResume && unreadMessageObject != null) {
|
|
|
|
if (chatListView != null) {
|
2014-07-03 00:39:05 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), -chatListView.getPaddingTop() - AndroidUtilities.dp(7));
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (chatListView != null) {
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
scrollToTopUnReadOnResume = false;
|
2013-10-25 17:19:00 +02:00
|
|
|
scrollToTopOnResume = false;
|
|
|
|
}
|
|
|
|
paused = false;
|
|
|
|
if (readWhenResume && !messages.isEmpty()) {
|
2014-07-20 23:49:33 +02:00
|
|
|
for (MessageObject messageObject : messages) {
|
|
|
|
if (!messageObject.isUnread() && !messageObject.isFromMe()) {
|
|
|
|
break;
|
|
|
|
}
|
2014-09-14 01:40:36 +02:00
|
|
|
if (!messageObject.isOut()) {
|
|
|
|
messageObject.messageOwner.unread = false;
|
|
|
|
}
|
2014-07-20 23:49:33 +02:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
readWhenResume = false;
|
2014-08-08 12:17:06 +02:00
|
|
|
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, readWithMid, 0, readWithDate, true, false);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
|
2014-06-20 02:18:13 +02:00
|
|
|
fixLayout(true);
|
2014-02-04 19:36:55 +01:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
|
2013-10-25 17:19:00 +02:00
|
|
|
String lastMessageText = preferences.getString("dialog_" + dialog_id, null);
|
|
|
|
if (lastMessageText != null) {
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.remove("dialog_" + dialog_id);
|
|
|
|
editor.commit();
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView.setFieldText(lastMessageText);
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2014-08-22 16:24:33 +02:00
|
|
|
if (bottomOverlayChat.getVisibility() != View.VISIBLE) {
|
|
|
|
chatActivityEnterView.setFieldFocused(true);
|
|
|
|
}
|
2014-04-04 19:58:33 +02:00
|
|
|
if (currentEncryptedChat != null) {
|
|
|
|
chatEnterTime = System.currentTimeMillis();
|
|
|
|
chatLeaveTime = 0;
|
|
|
|
}
|
2014-10-01 00:36:18 +02:00
|
|
|
|
|
|
|
if (startVideoEdit != null) {
|
|
|
|
AndroidUtilities.RunOnUIThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putString("videoPath", startVideoEdit);
|
|
|
|
VideoEditorActivity fragment = new VideoEditorActivity(args);
|
|
|
|
fragment.setDelegate(ChatActivity.this);
|
|
|
|
if (!presentFragment(fragment, false, true)) {
|
|
|
|
processSendingVideo(startVideoEdit, 0, 0, 0, 0, null);
|
|
|
|
}
|
|
|
|
startVideoEdit = null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-12 03:13:15 +02:00
|
|
|
@Override
|
|
|
|
public void didSelectPhotos(ArrayList<String> photos) {
|
2014-06-12 21:55:13 +02:00
|
|
|
processSendingPhotos(photos, null);
|
2014-06-12 03:13:15 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 16:24:33 +02:00
|
|
|
@Override
|
|
|
|
public void didSelectLocation(double latitude, double longitude) {
|
|
|
|
SendMessagesHelper.getInstance().sendMessage(latitude, longitude, dialog_id);
|
|
|
|
if (chatListView != null) {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
}
|
|
|
|
if (paused) {
|
|
|
|
scrollToTopOnResume = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-12 03:13:15 +02:00
|
|
|
@Override
|
|
|
|
public void startPhotoSelectActivity() {
|
|
|
|
try {
|
|
|
|
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
|
|
|
|
photoPickerIntent.setType("image/*");
|
2014-10-01 00:36:18 +02:00
|
|
|
startActivityForResult(photoPickerIntent, 1);
|
2014-06-12 03:13:15 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
@Override
|
|
|
|
public void onBeginSlide() {
|
2014-06-07 01:35:21 +02:00
|
|
|
super.onBeginSlide();
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView.hideEmojiPopup();
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
private void setTypingAnimation(boolean start) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer == null) {
|
|
|
|
return;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
if (start) {
|
|
|
|
try {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionBarLayer.setSubTitleIcon(0, typingDotsDrawable, AndroidUtilities.dp(4));
|
|
|
|
typingDotsDrawable.start();
|
2014-06-04 01:31:48 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
actionBarLayer.setSubTitleIcon(0, null, 0);
|
2014-09-30 00:48:11 +02:00
|
|
|
if (typingDotsDrawable != null) {
|
|
|
|
typingDotsDrawable.stop();
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause() {
|
2014-06-04 18:00:42 +02:00
|
|
|
super.onPause();
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.hideActionMode();
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView.hideEmojiPopup();
|
2013-10-25 17:19:00 +02:00
|
|
|
paused = true;
|
2014-07-10 02:15:58 +02:00
|
|
|
NotificationsController.getInstance().setOpennedDialogId(0);
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
String text = chatActivityEnterView.getFieldText();
|
|
|
|
if (text != null) {
|
2014-02-04 19:36:55 +01:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
|
2013-10-25 17:19:00 +02:00
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
2014-07-03 00:39:05 +02:00
|
|
|
editor.putString("dialog_" + dialog_id, text);
|
2013-10-25 17:19:00 +02:00
|
|
|
editor.commit();
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
|
2014-07-03 00:39:05 +02:00
|
|
|
chatActivityEnterView.setFieldFocused(false);
|
2014-08-23 01:22:33 +02:00
|
|
|
MessagesController.getInstance().cancelTyping(dialog_id);
|
2014-07-03 00:39:05 +02:00
|
|
|
|
|
|
|
/*if (currentEncryptedChat != null) { disabled
|
2014-04-04 19:58:33 +02:00
|
|
|
chatLeaveTime = System.currentTimeMillis();
|
|
|
|
updateInformationForScreenshotDetector();
|
2014-07-03 00:39:05 +02:00
|
|
|
}*/
|
2014-04-04 19:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateInformationForScreenshotDetector() {
|
|
|
|
ArrayList<Long> visibleMessages = new ArrayList<Long>();
|
|
|
|
if (chatListView != null) {
|
|
|
|
int count = chatListView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View view = chatListView.getChildAt(a);
|
|
|
|
MessageObject object = null;
|
|
|
|
if (view instanceof ChatBaseCell) {
|
|
|
|
ChatBaseCell cell = (ChatBaseCell) view;
|
|
|
|
object = cell.getMessageObject();
|
|
|
|
} else {
|
|
|
|
Object tag = view.getTag();
|
|
|
|
if (tag instanceof ChatListRowHolderEx) {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx) tag;
|
|
|
|
object = holder.message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (object != null && object.messageOwner.id < 0 && object.messageOwner.random_id != 0) {
|
|
|
|
visibleMessages.add(object.messageOwner.random_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MediaController.getInstance().setLastEncryptedChatParams(chatEnterTime, chatLeaveTime, currentEncryptedChat, visibleMessages);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-06-20 02:18:13 +02:00
|
|
|
private void fixLayout(final boolean resume) {
|
2014-06-14 10:36:01 +02:00
|
|
|
final int lastPos = chatListView.getLastVisiblePosition();
|
2014-06-04 01:31:48 +02:00
|
|
|
ViewTreeObserver obs = chatListView.getViewTreeObserver();
|
|
|
|
obs.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
|
2013-10-25 17:19:00 +02:00
|
|
|
@Override
|
2014-06-04 01:31:48 +02:00
|
|
|
public boolean onPreDraw() {
|
2014-06-07 01:35:21 +02:00
|
|
|
if (chatListView != null) {
|
|
|
|
chatListView.getViewTreeObserver().removeOnPreDrawListener(this);
|
|
|
|
}
|
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
int height = AndroidUtilities.dp(48);
|
2014-09-24 04:17:27 +02:00
|
|
|
if (!AndroidUtilities.isTablet() && getParentActivity().getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
|
2014-07-03 00:39:05 +02:00
|
|
|
height = AndroidUtilities.dp(40);
|
2014-06-04 01:31:48 +02:00
|
|
|
selectedMessagesCountTextView.setTextSize(16);
|
|
|
|
} else {
|
|
|
|
selectedMessagesCountTextView.setTextSize(18);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
if (avatarImageView != null) {
|
|
|
|
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) avatarImageView.getLayoutParams();
|
|
|
|
params.width = height;
|
|
|
|
params.height = height;
|
|
|
|
avatarImageView.setLayoutParams(params);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-20 02:18:13 +02:00
|
|
|
if (!resume && lastPos >= messages.size() - 1) {
|
2014-06-14 10:36:01 +02:00
|
|
|
chatListView.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
return false;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
2014-06-04 01:31:48 +02:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
2014-06-04 01:31:48 +02:00
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(android.content.res.Configuration newConfig) {
|
2014-06-20 02:18:13 +02:00
|
|
|
fixLayout(false);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private View getRowParentView(View v) {
|
2014-02-28 23:28:25 +01:00
|
|
|
if (v instanceof ChatBaseCell) {
|
|
|
|
return v;
|
|
|
|
} else {
|
|
|
|
while (!(v.getTag() instanceof ChatListRowHolderEx)) {
|
|
|
|
ViewParent parent = v.getParent();
|
|
|
|
if (!(parent instanceof View)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
v = (View)v.getParent();
|
|
|
|
if (v == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
return v;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void createMenu(View v, boolean single) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
View parentView = getRowParentView(v);
|
|
|
|
if (parentView == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
MessageObject message = null;
|
|
|
|
if (v instanceof ChatBaseCell) {
|
|
|
|
message = ((ChatBaseCell)v).getMessageObject();
|
|
|
|
} else {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx)parentView.getTag();
|
|
|
|
message = holder.message;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
final int type = getMessageType(message);
|
2014-06-13 17:03:06 +02:00
|
|
|
|
|
|
|
selectedObject = null;
|
|
|
|
forwaringMessage = null;
|
|
|
|
selectedMessagesCanCopyIds.clear();
|
|
|
|
selectedMessagesIds.clear();
|
|
|
|
|
2014-07-15 21:57:09 +02:00
|
|
|
if (single || type < 2 || type == 6) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (type >= 0) {
|
|
|
|
selectedObject = message;
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
CharSequence[] items = null;
|
|
|
|
|
2014-07-15 21:57:09 +02:00
|
|
|
if (type == 0) {
|
|
|
|
items = new CharSequence[] {LocaleController.getString("Retry", R.string.Retry), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 1) {
|
|
|
|
items = new CharSequence[] {LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 6) {
|
|
|
|
items = new CharSequence[] {LocaleController.getString("Retry", R.string.Retry), LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Delete", R.string.Delete)};
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-07-15 21:57:09 +02:00
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
if (type == 2) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 3) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 4) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString(selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? "SaveToDownloads" : "SaveToGallery",
|
|
|
|
selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? R.string.SaveToDownloads : R.string.SaveToGallery), LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 5) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("ApplyLocalizationFile", R.string.ApplyLocalizationFile), LocaleController.getString("SaveToDownloads", R.string.SaveToDownloads), LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (type == 2) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 3) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 4) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString(selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? "SaveToDownloads" : "SaveToGallery",
|
|
|
|
selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? R.string.SaveToDownloads : R.string.SaveToGallery), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
} else if (type == 5) {
|
|
|
|
items = new CharSequence[]{LocaleController.getString("ApplyLocalizationFile", R.string.ApplyLocalizationFile), LocaleController.getString("Delete", R.string.Delete)};
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.setItems(items, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
2014-06-13 17:03:06 +02:00
|
|
|
if (selectedObject == null) {
|
|
|
|
return;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
if (type == 0) {
|
|
|
|
if (i == 0) {
|
|
|
|
processSelectedOption(0);
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
} else if (type == 1) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
} else if (type == 2) {
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
if (i == 0) {
|
|
|
|
processSelectedOption(2);
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
} else if (type == 3) {
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
if (i == 0) {
|
|
|
|
processSelectedOption(2);
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(3);
|
|
|
|
} else if (i == 2) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (i == 0) {
|
|
|
|
processSelectedOption(3);
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
} else if (type == 4) {
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
if (i == 0) {
|
2014-07-15 21:57:09 +02:00
|
|
|
processSelectedOption(4);
|
2014-03-22 23:31:55 +01:00
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(2);
|
|
|
|
} else if (i == 2) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (i == 0) {
|
|
|
|
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
|
|
|
}
|
2014-03-31 16:14:49 +02:00
|
|
|
} else if (type == 5) {
|
|
|
|
if (i == 0) {
|
2014-07-15 21:57:09 +02:00
|
|
|
processSelectedOption(5);
|
|
|
|
} else {
|
|
|
|
if (currentEncryptedChat == null) {
|
|
|
|
if (i == 1) {
|
|
|
|
processSelectedOption(4);
|
|
|
|
} else if (i == 2) {
|
|
|
|
processSelectedOption(2);
|
|
|
|
} else if (i == 3) {
|
|
|
|
processSelectedOption(1);
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
2014-07-15 21:57:09 +02:00
|
|
|
} else {
|
|
|
|
if (i == 1) {
|
|
|
|
processSelectedOption(1);
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-15 21:57:09 +02:00
|
|
|
} else if (type == 6) {
|
|
|
|
if (i == 0) {
|
|
|
|
processSelectedOption(0);
|
|
|
|
} else if (i == 1) {
|
|
|
|
processSelectedOption(3);
|
|
|
|
} else if (i == 2) {
|
|
|
|
processSelectedOption(1);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-04-02 19:36:57 +02:00
|
|
|
builder.setTitle(LocaleController.getString("Message", R.string.Message));
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
actionBarLayer.showActionMode();
|
2013-10-25 17:19:00 +02:00
|
|
|
addToSelectedMessages(message);
|
|
|
|
updateActionModeTitle();
|
|
|
|
updateVisibleRows();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processSelectedOption(int option) {
|
2014-07-15 21:57:09 +02:00
|
|
|
if (selectedObject == null) {
|
|
|
|
return;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
if (option == 0) {
|
2014-09-24 04:17:27 +02:00
|
|
|
if (SendMessagesHelper.getInstance().retrySendMessage(selectedObject, false)) {
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else if (option == 1) {
|
2014-07-15 21:57:09 +02:00
|
|
|
ArrayList<Integer> ids = new ArrayList<Integer>();
|
|
|
|
ids.add(selectedObject.messageOwner.id);
|
|
|
|
removeUnreadPlane(true);
|
|
|
|
ArrayList<Long> random_ids = null;
|
|
|
|
if (currentEncryptedChat != null && selectedObject.messageOwner.random_id != 0 && selectedObject.type != 10) {
|
|
|
|
random_ids = new ArrayList<Long>();
|
|
|
|
random_ids.add(selectedObject.messageOwner.random_id);
|
|
|
|
}
|
|
|
|
MessagesController.getInstance().deleteMessages(ids, random_ids, currentEncryptedChat);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (option == 2) {
|
2014-07-15 21:57:09 +02:00
|
|
|
forwaringMessage = selectedObject;
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putBoolean("onlySelect", true);
|
|
|
|
args.putBoolean("serverOnly", true);
|
|
|
|
args.putString("selectAlertString", LocaleController.getString("ForwardMessagesTo", R.string.ForwardMessagesTo));
|
|
|
|
MessagesActivity fragment = new MessagesActivity(args);
|
|
|
|
fragment.setDelegate(this);
|
|
|
|
presentFragment(fragment);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (option == 3) {
|
2014-10-01 00:36:18 +02:00
|
|
|
if(Build.VERSION.SDK_INT < 11) {
|
2014-07-15 21:57:09 +02:00
|
|
|
android.text.ClipboardManager clipboard = (android.text.ClipboardManager)ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
clipboard.setText(selectedObject.messageText);
|
|
|
|
} else {
|
|
|
|
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
android.content.ClipData clip = android.content.ClipData.newPlainText("label", selectedObject.messageText);
|
|
|
|
clipboard.setPrimaryClip(clip);
|
|
|
|
}
|
|
|
|
} else if (option == 4) {
|
|
|
|
String fileName = selectedObject.getFileName();
|
2014-09-30 00:48:11 +02:00
|
|
|
String path = selectedObject.messageOwner.attachPath;
|
|
|
|
if (path == null || path.length() == 0) {
|
|
|
|
path = FileLoader.getPathToMessage(selectedObject.messageOwner).toString();
|
|
|
|
}
|
2014-07-15 21:57:09 +02:00
|
|
|
if (selectedObject.type == 3) {
|
2014-09-30 00:48:11 +02:00
|
|
|
MediaController.saveFile(path, getParentActivity(), 1, null);
|
2014-07-15 21:57:09 +02:00
|
|
|
} else if (selectedObject.type == 1) {
|
2014-09-30 00:48:11 +02:00
|
|
|
MediaController.saveFile(path, getParentActivity(), 0, null);
|
2014-08-31 11:02:28 +02:00
|
|
|
} else if (selectedObject.type == 8 || selectedObject.type == 9) {
|
2014-09-30 00:48:11 +02:00
|
|
|
MediaController.saveFile(path, getParentActivity(), 2, selectedObject.messageOwner.media.document.file_name);
|
2014-07-15 21:57:09 +02:00
|
|
|
}
|
|
|
|
} else if (option == 5) {
|
|
|
|
File locFile = null;
|
|
|
|
if (selectedObject.messageOwner.attachPath != null && selectedObject.messageOwner.attachPath.length() != 0) {
|
|
|
|
File f = new File(selectedObject.messageOwner.attachPath);
|
|
|
|
if (f.exists()) {
|
|
|
|
locFile = f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (locFile == null) {
|
2014-09-25 05:54:35 +02:00
|
|
|
File f = FileLoader.getPathToMessage(selectedObject.messageOwner);
|
2014-07-15 21:57:09 +02:00
|
|
|
if (f.exists()) {
|
|
|
|
locFile = f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (locFile != null) {
|
|
|
|
if (LocaleController.getInstance().applyLanguageFile(locFile)) {
|
|
|
|
presentFragment(new LanguageSelectActivity());
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-07-15 21:57:09 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
builder.setMessage(LocaleController.getString("IncorrectLocalization", R.string.IncorrectLocalization));
|
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null);
|
|
|
|
showAlertDialog(builder);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-15 21:57:09 +02:00
|
|
|
selectedObject = null;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2013-12-26 12:43:37 +01:00
|
|
|
@Override
|
2014-06-16 14:36:54 +02:00
|
|
|
public void didSelectFile(DocumentSelectActivity activity, String path) {
|
2013-12-26 12:43:37 +01:00
|
|
|
activity.finishFragment();
|
2014-06-20 02:18:13 +02:00
|
|
|
processSendingDocument(path, path);
|
2013-12-26 12:43:37 +01:00
|
|
|
}
|
|
|
|
|
2014-06-14 10:36:01 +02:00
|
|
|
@Override
|
|
|
|
public void startDocumentSelectActivity() {
|
|
|
|
try {
|
|
|
|
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
|
|
|
|
photoPickerIntent.setType("*/*");
|
2014-10-01 00:36:18 +02:00
|
|
|
startActivityForResult(photoPickerIntent, 21);
|
2014-06-14 10:36:01 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-13 01:02:21 +02:00
|
|
|
private void forwardSelectedMessages(long did, boolean fromMyName) {
|
|
|
|
if (forwaringMessage != null) {
|
2014-07-27 00:28:33 +02:00
|
|
|
if (!fromMyName) {
|
|
|
|
if (forwaringMessage.messageOwner.id > 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(forwaringMessage, did);
|
2014-07-10 23:15:39 +02:00
|
|
|
}
|
2014-07-27 00:28:33 +02:00
|
|
|
} else {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().processForwardFromMyName(forwaringMessage, did);
|
2014-07-13 01:02:21 +02:00
|
|
|
}
|
|
|
|
forwaringMessage = null;
|
|
|
|
} else {
|
|
|
|
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesIds.keySet());
|
|
|
|
Collections.sort(ids);
|
|
|
|
for (Integer id : ids) {
|
2014-07-27 00:28:33 +02:00
|
|
|
if (!fromMyName) {
|
|
|
|
if (id > 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().sendMessage(selectedMessagesIds.get(id), did);
|
2014-07-10 23:15:39 +02:00
|
|
|
}
|
2014-07-27 00:28:33 +02:00
|
|
|
} else {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().processForwardFromMyName(selectedMessagesIds.get(id), did);
|
2014-07-10 23:15:39 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-13 01:02:21 +02:00
|
|
|
selectedMessagesCanCopyIds.clear();
|
|
|
|
selectedMessagesIds.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didSelectDialog(MessagesActivity activity, long did, boolean param) {
|
|
|
|
if (dialog_id != 0 && (forwaringMessage != null || !selectedMessagesIds.isEmpty())) {
|
2014-07-27 12:53:00 +02:00
|
|
|
if (isBraodcast) {
|
2014-07-27 00:28:33 +02:00
|
|
|
param = true;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
if (did != dialog_id) {
|
|
|
|
int lower_part = (int)did;
|
|
|
|
if (lower_part != 0) {
|
2014-06-04 01:31:48 +02:00
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putBoolean("scrollToTopOnResume", scrollToTopOnResume);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (lower_part > 0) {
|
2014-06-04 01:31:48 +02:00
|
|
|
args.putInt("user_id", lower_part);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else if (lower_part < 0) {
|
2014-06-04 01:31:48 +02:00
|
|
|
args.putInt("chat_id", -lower_part);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-07-13 01:02:21 +02:00
|
|
|
presentFragment(new ChatActivity(args), true);
|
2014-08-02 01:31:15 +02:00
|
|
|
forwardSelectedMessages(did, param);
|
2014-09-30 00:48:11 +02:00
|
|
|
if (!AndroidUtilities.isTablet()) {
|
|
|
|
removeSelfFromStack();
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
activity.finishFragment();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
activity.finishFragment();
|
2014-07-13 01:02:21 +02:00
|
|
|
forwardSelectedMessages(did, param);
|
2014-07-11 23:47:50 +02:00
|
|
|
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
|
2013-10-25 17:19:00 +02:00
|
|
|
scrollToTopOnResume = true;
|
2014-09-30 00:48:11 +02:00
|
|
|
if (AndroidUtilities.isTablet()) {
|
|
|
|
actionBarLayer.hideActionMode();
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onBackPressed() {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
|
|
|
selectedMessagesIds.clear();
|
|
|
|
selectedMessagesCanCopyIds.clear();
|
|
|
|
actionBarLayer.hideActionMode();
|
|
|
|
updateVisibleRows();
|
|
|
|
return false;
|
2014-07-03 00:39:05 +02:00
|
|
|
} else if (chatActivityEnterView.isEmojiPopupShowing()) {
|
|
|
|
chatActivityEnterView.hideEmojiPopup();
|
2013-10-25 17:19:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isGoogleMapsInstalled() {
|
|
|
|
try {
|
2014-06-14 10:36:01 +02:00
|
|
|
ApplicationInfo info = ApplicationLoader.applicationContext.getPackageManager().getApplicationInfo("com.google.android.apps.maps", 0);
|
2013-10-25 17:19:00 +02:00
|
|
|
return true;
|
|
|
|
} catch(PackageManager.NameNotFoundException e) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2013-10-25 17:19:00 +02:00
|
|
|
builder.setMessage("Install Google Maps?");
|
|
|
|
builder.setCancelable(true);
|
2014-03-22 23:31:55 +01:00
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
|
2013-10-25 17:19:00 +02:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.google.android.apps.maps"));
|
2014-06-04 01:31:48 +02:00
|
|
|
getParentActivity().startActivity(intent);
|
2013-10-25 17:19:00 +02:00
|
|
|
} catch (Exception e) {
|
2013-12-20 20:25:49 +01:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.Cancel, null);
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2013-10-25 17:19:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateVisibleRows() {
|
|
|
|
if (chatListView == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int count = chatListView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View view = chatListView.getChildAt(a);
|
|
|
|
Object tag = view.getTag();
|
|
|
|
if (tag instanceof ChatListRowHolderEx) {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx)tag;
|
|
|
|
holder.update();
|
|
|
|
|
|
|
|
boolean disableSelection = false;
|
|
|
|
boolean selected = false;
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (selectedMessagesIds.containsKey(holder.message.messageOwner.id)) {
|
|
|
|
view.setBackgroundColor(0x6633b5e5);
|
|
|
|
selected = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
|
|
|
disableSelection = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
2014-02-11 15:32:09 +01:00
|
|
|
updateRowBackground(holder, disableSelection, selected);
|
2014-02-28 23:28:25 +01:00
|
|
|
} else if (view instanceof ChatBaseCell) {
|
|
|
|
ChatBaseCell cell = (ChatBaseCell)view;
|
|
|
|
|
|
|
|
boolean disableSelection = false;
|
|
|
|
boolean selected = false;
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2014-02-28 23:28:25 +01:00
|
|
|
if (selectedMessagesIds.containsKey(cell.getMessageObject().messageOwner.id)) {
|
|
|
|
view.setBackgroundColor(0x6633b5e5);
|
|
|
|
selected = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
|
|
|
disableSelection = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
|
|
|
|
2014-03-02 10:23:06 +01:00
|
|
|
cell.setMessageObject(cell.getMessageObject());
|
|
|
|
|
2014-02-28 23:28:25 +01:00
|
|
|
cell.setCheckPressed(!disableSelection, disableSelection && selected);
|
2014-02-11 15:32:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateRowBackground(ChatListRowHolderEx holder, boolean disableSelection, boolean selected) {
|
|
|
|
int messageType = holder.message.type;
|
|
|
|
if (!disableSelection) {
|
2014-04-03 23:18:54 +02:00
|
|
|
if (messageType == 12) {
|
2014-02-11 15:32:09 +01:00
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_outgoing_text_states);
|
2014-07-03 00:39:05 +02:00
|
|
|
holder.chatBubbleView.setPadding(AndroidUtilities.dp(6), AndroidUtilities.dp(6), AndroidUtilities.dp(18), 0);
|
2014-02-11 15:32:09 +01:00
|
|
|
} else if (messageType == 13) {
|
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_incoming_text_states);
|
2014-07-03 00:39:05 +02:00
|
|
|
holder.chatBubbleView.setPadding(AndroidUtilities.dp(15), AndroidUtilities.dp(6), AndroidUtilities.dp(9), 0);
|
2014-02-11 15:32:09 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-03 23:18:54 +02:00
|
|
|
if (messageType == 12) {
|
2014-02-11 15:32:09 +01:00
|
|
|
if (selected) {
|
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out_selected);
|
|
|
|
} else {
|
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out);
|
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
holder.chatBubbleView.setPadding(AndroidUtilities.dp(6), AndroidUtilities.dp(6), AndroidUtilities.dp(18), 0);
|
2014-02-11 15:32:09 +01:00
|
|
|
} else if (messageType == 13) {
|
|
|
|
if (selected) {
|
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in_selected);
|
|
|
|
} else {
|
|
|
|
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in);
|
|
|
|
}
|
2014-07-03 00:39:05 +02:00
|
|
|
holder.chatBubbleView.setPadding(AndroidUtilities.dp(15), AndroidUtilities.dp(6), AndroidUtilities.dp(9), 0);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-03 23:18:54 +02:00
|
|
|
private void alertUserOpenError(MessageObject message) {
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2014-04-03 23:18:54 +02:00
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
builder.setPositiveButton(R.string.OK, null);
|
|
|
|
if (message.type == 3) {
|
|
|
|
builder.setMessage(R.string.NoPlayerInstalled);
|
|
|
|
} else {
|
|
|
|
builder.setMessage(LocaleController.formatString("NoHandleAppInstalled", R.string.NoHandleAppInstalled, message.messageOwner.media.document.mime_type));
|
|
|
|
}
|
2014-06-07 01:35:21 +02:00
|
|
|
showAlertDialog(builder);
|
2014-04-03 23:18:54 +02:00
|
|
|
}
|
|
|
|
|
2014-06-11 01:05:54 +02:00
|
|
|
@Override
|
2014-06-12 03:13:15 +02:00
|
|
|
public PhotoViewer.PlaceProviderObject getPlaceForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index) {
|
2014-06-11 01:05:54 +02:00
|
|
|
if (messageObject == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
int count = chatListView.getChildCount();
|
|
|
|
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
MessageObject messageToOpen = null;
|
|
|
|
ImageReceiver imageReceiver = null;
|
|
|
|
View view = chatListView.getChildAt(a);
|
|
|
|
if (view instanceof ChatMediaCell) {
|
|
|
|
ChatMediaCell cell = (ChatMediaCell)view;
|
|
|
|
MessageObject message = cell.getMessageObject();
|
|
|
|
if (message != null && message.messageOwner.id == messageObject.messageOwner.id) {
|
|
|
|
messageToOpen = message;
|
|
|
|
imageReceiver = cell.getPhotoImage();
|
|
|
|
}
|
|
|
|
} else if (view.getTag() != null) {
|
|
|
|
Object tag = view.getTag();
|
|
|
|
if (tag instanceof ChatListRowHolderEx) {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx)tag;
|
|
|
|
if (holder.message != null && holder.message.messageOwner.id == messageObject.messageOwner.id) {
|
|
|
|
messageToOpen = holder.message;
|
|
|
|
imageReceiver = holder.photoImage.imageReceiver;
|
|
|
|
view = holder.photoImage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (messageToOpen != null) {
|
|
|
|
int coords[] = new int[2];
|
|
|
|
view.getLocationInWindow(coords);
|
|
|
|
PhotoViewer.PlaceProviderObject object = new PhotoViewer.PlaceProviderObject();
|
|
|
|
object.viewX = coords[0];
|
2014-07-03 00:39:05 +02:00
|
|
|
object.viewY = coords[1] - AndroidUtilities.statusBarHeight;
|
2014-06-11 01:05:54 +02:00
|
|
|
object.parentView = chatListView;
|
|
|
|
object.imageReceiver = imageReceiver;
|
|
|
|
object.thumb = object.imageReceiver.getBitmap();
|
|
|
|
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) { }
|
|
|
|
|
|
|
|
@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-06-20 02:18:13 +02:00
|
|
|
private class ChatAdapter extends BaseFragmentAdapter {
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public ChatAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areAllItemsEnabled() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEnabled(int i) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
int count = messages.size();
|
2013-12-20 20:25:49 +01:00
|
|
|
if (count != 0) {
|
|
|
|
if (!endReached) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (!unread_end_reached) {
|
|
|
|
count++;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int i) {
|
2013-12-20 20:25:49 +01:00
|
|
|
return null;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds() {
|
2013-12-20 20:25:49 +01:00
|
|
|
return true;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int i, View view, ViewGroup viewGroup) {
|
|
|
|
int offset = 1;
|
2013-12-20 20:25:49 +01:00
|
|
|
if ((!endReached || !unread_end_reached) && messages.size() != 0) {
|
|
|
|
if (!endReached) {
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
if (i == 0 && !endReached || !unread_end_reached && i == (messages.size() + 1 - offset)) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
2013-12-20 20:25:49 +01:00
|
|
|
view = li.inflate(R.layout.chat_loading_layout, viewGroup, false);
|
|
|
|
View progressBar = view.findViewById(R.id.progressLayout);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (isCustomTheme) {
|
2013-12-20 20:25:49 +01:00
|
|
|
progressBar.setBackgroundResource(R.drawable.system_loader2);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
progressBar.setBackgroundResource(R.drawable.system_loader1);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
progressBar.setVisibility(loadsCount > 1 ? View.VISIBLE : View.INVISIBLE);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MessageObject message = messages.get(messages.size() - i - offset);
|
2014-03-31 16:14:49 +02:00
|
|
|
int type = message.contentType;
|
2013-10-25 17:19:00 +02:00
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
if (type == 0) {
|
2014-03-31 16:14:49 +02:00
|
|
|
view = new ChatMessageCell(mContext);
|
2014-04-03 23:18:54 +02:00
|
|
|
} if (type == 1) {
|
2014-03-31 16:14:49 +02:00
|
|
|
view = new ChatMediaCell(mContext);
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 7) {
|
2013-10-25 17:19:00 +02:00
|
|
|
view = li.inflate(R.layout.chat_action_message_layout, viewGroup, false);
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 8) {
|
2013-10-25 17:19:00 +02:00
|
|
|
view = li.inflate(R.layout.chat_action_change_photo_layout, viewGroup, false);
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 3) {
|
2013-10-25 17:19:00 +02:00
|
|
|
view = li.inflate(R.layout.chat_outgoing_contact_layout, viewGroup, false);
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 4) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (currentChat != null) {
|
|
|
|
view = li.inflate(R.layout.chat_group_incoming_contact_layout, viewGroup, false);
|
|
|
|
} else {
|
|
|
|
view = li.inflate(R.layout.chat_incoming_contact_layout, viewGroup, false);
|
|
|
|
}
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 6) {
|
2013-12-20 20:25:49 +01:00
|
|
|
view = li.inflate(R.layout.chat_unread_layout, viewGroup, false);
|
2014-03-31 16:14:49 +02:00
|
|
|
} else if (type == 2) {
|
|
|
|
view = new ChatAudioCell(mContext);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean selected = false;
|
|
|
|
boolean disableSelection = false;
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2014-02-28 23:28:25 +01:00
|
|
|
if (selectedMessagesIds.containsKey(message.messageOwner.id)) {
|
2013-10-25 17:19:00 +02:00
|
|
|
view.setBackgroundColor(0x6633b5e5);
|
|
|
|
selected = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
|
|
|
disableSelection = true;
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(0);
|
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
|
|
|
|
if (view instanceof ChatBaseCell) {
|
2014-03-31 16:14:49 +02:00
|
|
|
((ChatBaseCell)view).delegate = new ChatBaseCell.ChatBaseCellDelegate() {
|
|
|
|
@Override
|
|
|
|
public void didPressedUserAvatar(ChatBaseCell cell, TLRPC.User user) {
|
2014-06-13 12:42:21 +02:00
|
|
|
if (user != null && user.id != UserConfig.getClientUserId()) {
|
2014-03-31 16:14:49 +02:00
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", user.id);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(new UserProfileActivity(args));
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-04-03 23:18:54 +02:00
|
|
|
public void didPressedCancelSendButton(ChatBaseCell cell) {
|
2014-03-31 16:14:49 +02:00
|
|
|
MessageObject message = cell.getMessageObject();
|
|
|
|
if (message.messageOwner.send_state != 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
SendMessagesHelper.getInstance().cancelSendingMessage(message);
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-01 03:00:35 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didLongPressed(ChatBaseCell cell) {
|
|
|
|
createMenu(cell, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canPerformActions() {
|
2014-07-20 23:49:33 +02:00
|
|
|
return actionBarLayer != null && !actionBarLayer.isActionModeShowed();
|
2014-04-01 03:00:35 +02:00
|
|
|
}
|
2014-03-31 16:14:49 +02:00
|
|
|
};
|
|
|
|
if (view instanceof ChatMediaCell) {
|
|
|
|
((ChatMediaCell)view).mediaDelegate = new ChatMediaCell.ChatMediaCellDelegate() {
|
|
|
|
@Override
|
2014-06-11 01:05:54 +02:00
|
|
|
public void didPressedImage(ChatMediaCell cell) {
|
2014-04-03 23:18:54 +02:00
|
|
|
MessageObject message = cell.getMessageObject();
|
2014-09-28 15:37:26 +02:00
|
|
|
if (message.isSendError()) {
|
2014-04-03 23:18:54 +02:00
|
|
|
createMenu(cell, false);
|
|
|
|
return;
|
2014-09-28 15:37:26 +02:00
|
|
|
} else if (message.isSending()) {
|
2014-04-03 23:18:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (message.type == 1) {
|
2014-07-03 16:55:04 +02:00
|
|
|
PhotoViewer.getInstance().setParentActivity(getParentActivity());
|
2014-06-11 01:05:54 +02:00
|
|
|
PhotoViewer.getInstance().openPhoto(message, ChatActivity.this);
|
2014-04-03 23:18:54 +02:00
|
|
|
} else if (message.type == 3) {
|
|
|
|
try {
|
|
|
|
File f = null;
|
|
|
|
if (message.messageOwner.attachPath != null && message.messageOwner.attachPath.length() != 0) {
|
|
|
|
f = new File(message.messageOwner.attachPath);
|
|
|
|
}
|
|
|
|
if (f == null || f != null && !f.exists()) {
|
2014-09-25 05:54:35 +02:00
|
|
|
f = FileLoader.getPathToMessage(message.messageOwner);
|
2014-04-03 23:18:54 +02:00
|
|
|
}
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.setDataAndType(Uri.fromFile(f), "video/mp4");
|
2014-06-04 01:31:48 +02:00
|
|
|
getParentActivity().startActivity(intent);
|
2014-04-03 23:18:54 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
alertUserOpenError(message);
|
|
|
|
}
|
|
|
|
} else if (message.type == 4) {
|
|
|
|
if (!isGoogleMapsInstalled()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-11 01:05:54 +02:00
|
|
|
LocationActivity fragment = new LocationActivity();
|
|
|
|
fragment.setMessageObject(message);
|
|
|
|
presentFragment(fragment);
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (message.type == 9) {
|
|
|
|
File f = null;
|
|
|
|
String fileName = message.getFileName();
|
|
|
|
if (message.messageOwner.attachPath != null && message.messageOwner.attachPath.length() != 0) {
|
|
|
|
f = new File(message.messageOwner.attachPath);
|
|
|
|
}
|
|
|
|
if (f == null || f != null && !f.exists()) {
|
2014-09-25 05:54:35 +02:00
|
|
|
f = FileLoader.getPathToMessage(message.messageOwner);
|
2014-08-29 23:06:04 +02:00
|
|
|
}
|
|
|
|
if (f != null && f.exists()) {
|
|
|
|
String realMimeType = null;
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
if (message.type == 8 || message.type == 9) {
|
|
|
|
MimeTypeMap myMime = MimeTypeMap.getSingleton();
|
|
|
|
int idx = fileName.lastIndexOf(".");
|
|
|
|
if (idx != -1) {
|
|
|
|
String ext = fileName.substring(idx + 1);
|
|
|
|
realMimeType = myMime.getMimeTypeFromExtension(ext.toLowerCase());
|
|
|
|
if (realMimeType != null) {
|
|
|
|
intent.setDataAndType(Uri.fromFile(f), realMimeType);
|
|
|
|
} else {
|
|
|
|
intent.setDataAndType(Uri.fromFile(f), "text/plain");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
intent.setDataAndType(Uri.fromFile(f), "text/plain");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (realMimeType != null) {
|
|
|
|
try {
|
|
|
|
getParentActivity().startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
intent.setDataAndType(Uri.fromFile(f), "text/plain");
|
|
|
|
getParentActivity().startActivity(intent);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
getParentActivity().startActivity(intent);
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
alertUserOpenError(message);
|
|
|
|
}
|
|
|
|
}
|
2014-04-03 23:18:54 +02:00
|
|
|
}
|
2014-03-31 16:14:49 +02:00
|
|
|
}
|
2014-09-25 16:57:17 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didPressedOther(ChatMediaCell cell) {
|
|
|
|
createMenu(cell, true);
|
|
|
|
}
|
2014-03-31 16:14:49 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
((ChatBaseCell)view).isChat = currentChat != null;
|
2014-02-28 23:28:25 +01:00
|
|
|
((ChatBaseCell)view).setMessageObject(message);
|
|
|
|
((ChatBaseCell)view).setCheckPressed(!disableSelection, disableSelection && selected);
|
2014-08-22 16:24:33 +02:00
|
|
|
if (view instanceof ChatAudioCell && MediaController.getInstance().canDownloadMedia(MediaController.AUTODOWNLOAD_MASK_AUDIO)) {
|
2014-08-23 01:22:33 +02:00
|
|
|
((ChatAudioCell)view).downloadAudioIfNeed();
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
2014-02-28 23:28:25 +01:00
|
|
|
} else {
|
|
|
|
ChatListRowHolderEx holder = (ChatListRowHolderEx)view.getTag();
|
|
|
|
if (holder == null) {
|
2014-03-31 16:14:49 +02:00
|
|
|
holder = new ChatListRowHolderEx(view, message.type);
|
2014-02-28 23:28:25 +01:00
|
|
|
view.setTag(holder);
|
|
|
|
}
|
|
|
|
holder.message = message;
|
|
|
|
updateRowBackground(holder, disableSelection, selected);
|
|
|
|
holder.update();
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
|
|
|
int offset = 1;
|
|
|
|
if (!endReached && messages.size() != 0) {
|
|
|
|
offset = 0;
|
|
|
|
if (i == 0) {
|
2014-08-29 23:06:04 +02:00
|
|
|
return 5;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
if (!unread_end_reached && i == (messages.size() + 1 - offset)) {
|
2014-08-29 23:06:04 +02:00
|
|
|
return 5;
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
MessageObject message = messages.get(messages.size() - i - offset);
|
2014-03-31 16:14:49 +02:00
|
|
|
return message.contentType;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
2014-08-29 23:06:04 +02:00
|
|
|
return 9;
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
int count = messages.size();
|
2013-12-20 20:25:49 +01:00
|
|
|
if (count != 0) {
|
|
|
|
if (!endReached) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (!unread_end_reached) {
|
|
|
|
count++;
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
return count == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class ChatListRowHolderEx {
|
|
|
|
public BackupImageView avatarImageView;
|
|
|
|
public TextView nameTextView;
|
|
|
|
public TextView messageTextView;
|
|
|
|
public MessageActionLayout messageLayoutAction;
|
|
|
|
public TextView timeTextView;
|
|
|
|
public BackupImageView photoImage;
|
|
|
|
public ImageView halfCheckImage;
|
|
|
|
public ImageView checkImage;
|
|
|
|
public MessageObject message;
|
|
|
|
public TextView phoneTextView;
|
|
|
|
public BackupImageView contactAvatar;
|
|
|
|
public View contactView;
|
|
|
|
public ImageView addContactButton;
|
|
|
|
public View addContactView;
|
|
|
|
public View chatBubbleView;
|
|
|
|
|
|
|
|
public void update() {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User fromUser = MessagesController.getInstance().getUser(message.messageOwner.from_id);
|
2013-10-25 17:19:00 +02:00
|
|
|
|
|
|
|
int type = message.type;
|
|
|
|
|
|
|
|
if (timeTextView != null) {
|
2014-03-25 01:25:32 +01:00
|
|
|
timeTextView.setText(LocaleController.formatterDay.format((long) (message.messageOwner.date) * 1000));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (avatarImageView != null && fromUser != null) {
|
|
|
|
TLRPC.FileLocation photo = null;
|
|
|
|
if (fromUser.photo != null) {
|
|
|
|
photo = fromUser.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
int placeHolderId = AndroidUtilities.getUserAvatarForId(fromUser.id);
|
2013-10-25 17:19:00 +02:00
|
|
|
avatarImageView.setImage(photo, "50_50", placeHolderId);
|
|
|
|
}
|
|
|
|
|
2014-03-31 16:14:49 +02:00
|
|
|
if (type != 12 && type != 13 && nameTextView != null && fromUser != null && type != 8 && type != 9) {
|
2014-09-24 04:17:27 +02:00
|
|
|
nameTextView.setText(ContactsController.formatName(fromUser.first_name, fromUser.last_name));
|
|
|
|
nameTextView.setTextColor(AndroidUtilities.getColorForId(message.messageOwner.from_id));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-04-03 23:18:54 +02:00
|
|
|
if (type == 11 || type == 10) {
|
2014-09-24 04:17:27 +02:00
|
|
|
int width = 0;
|
|
|
|
if (AndroidUtilities.isTablet()) {
|
2014-09-25 16:57:17 +02:00
|
|
|
width = AndroidUtilities.getMinTabletSide() - AndroidUtilities.dp(30);
|
2014-09-24 04:17:27 +02:00
|
|
|
} else {
|
|
|
|
width = AndroidUtilities.displaySize.x - AndroidUtilities.dp(30);
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
messageTextView.setText(message.messageText);
|
|
|
|
messageTextView.setMaxWidth(width);
|
|
|
|
|
|
|
|
if (type == 11) {
|
2013-12-20 20:25:49 +01:00
|
|
|
if (message.messageOwner.action instanceof TLRPC.TL_messageActionUserUpdatedPhoto) {
|
2014-09-24 04:17:27 +02:00
|
|
|
photoImage.setImage(message.messageOwner.action.newUserPhoto.photo_small, "50_50", AndroidUtilities.getUserAvatarForId(currentUser.id));
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2014-07-03 00:39:05 +02:00
|
|
|
PhotoObject photo = PhotoObject.getClosestImageWithSize(message.photoThumbs, AndroidUtilities.dp(64), AndroidUtilities.dp(64));
|
2014-06-16 14:36:54 +02:00
|
|
|
if (photo != null) {
|
|
|
|
if (photo.image != null) {
|
|
|
|
photoImage.setImageBitmap(photo.image);
|
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
photoImage.setImage(photo.photoOwner.location, "50_50", AndroidUtilities.getGroupAvatarForId(currentChat.id));
|
2014-06-16 14:36:54 +02:00
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
photoImage.setImageResource(AndroidUtilities.getGroupAvatarForId(currentChat.id));
|
2013-12-20 20:25:49 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
2014-06-11 01:05:54 +02:00
|
|
|
photoImage.imageReceiver.setVisible(!PhotoViewer.getInstance().isShowingImage(message), false);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
} else if (type == 12 || type == 13) {
|
2014-08-22 16:24:33 +02:00
|
|
|
TLRPC.User contactUser = MessagesController.getInstance().getUser(message.messageOwner.media.user_id);
|
2013-10-25 17:19:00 +02:00
|
|
|
if (contactUser != null) {
|
2014-09-24 04:17:27 +02:00
|
|
|
nameTextView.setText(ContactsController.formatName(message.messageOwner.media.first_name, message.messageOwner.media.last_name));
|
|
|
|
nameTextView.setTextColor(AndroidUtilities.getColorForId(contactUser.id));
|
2013-10-25 17:19:00 +02:00
|
|
|
String phone = message.messageOwner.media.phone_number;
|
|
|
|
if (phone != null && phone.length() != 0) {
|
|
|
|
if (!phone.startsWith("+")) {
|
|
|
|
phone = "+" + phone;
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
phoneTextView.setText(PhoneFormat.getInstance().format(phone));
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
phoneTextView.setText("Unknown");
|
|
|
|
}
|
|
|
|
TLRPC.FileLocation photo = null;
|
|
|
|
if (contactUser.photo != null) {
|
|
|
|
photo = contactUser.photo.photo_small;
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
int placeHolderId = AndroidUtilities.getUserAvatarForId(contactUser.id);
|
2013-10-25 17:19:00 +02:00
|
|
|
contactAvatar.setImage(photo, "50_50", placeHolderId);
|
2014-06-13 12:42:21 +02:00
|
|
|
if (contactUser.id != UserConfig.getClientUserId() && ContactsController.getInstance().contactsDict.get(contactUser.id) == null) {
|
2013-10-25 17:19:00 +02:00
|
|
|
addContactView.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
addContactView.setVisibility(View.GONE);
|
|
|
|
}
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
2014-09-24 04:17:27 +02:00
|
|
|
nameTextView.setText(ContactsController.formatName(message.messageOwner.media.first_name, message.messageOwner.media.last_name));
|
|
|
|
nameTextView.setTextColor(AndroidUtilities.getColorForId(message.messageOwner.media.user_id));
|
2013-12-20 20:25:49 +01:00
|
|
|
String phone = message.messageOwner.media.phone_number;
|
|
|
|
if (phone != null && phone.length() != 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
if (message.messageOwner.media.user_id != 0 && !phone.startsWith("+")) {
|
2013-12-20 20:25:49 +01:00
|
|
|
phone = "+" + phone;
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
phoneTextView.setText(PhoneFormat.getInstance().format(phone));
|
2013-12-20 20:25:49 +01:00
|
|
|
} else {
|
|
|
|
phoneTextView.setText("Unknown");
|
|
|
|
}
|
2014-09-24 04:17:27 +02:00
|
|
|
contactAvatar.setImageResource(AndroidUtilities.getUserAvatarForId(message.messageOwner.media.user_id));
|
2013-12-20 20:25:49 +01:00
|
|
|
addContactView.setVisibility(View.GONE);
|
|
|
|
}
|
2014-08-29 23:06:04 +02:00
|
|
|
} else if (type == 6) {
|
2014-07-10 02:15:58 +02:00
|
|
|
messageTextView.setTextSize(16);
|
2014-07-03 16:55:04 +02:00
|
|
|
messageTextView.setText(LocaleController.formatPluralString("NewMessages", unread_to_load));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
2014-04-03 23:18:54 +02:00
|
|
|
if (message.isFromMe()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (halfCheckImage != null) {
|
2014-09-28 15:37:26 +02:00
|
|
|
if (message.isSending()) {
|
2013-12-20 20:25:49 +01:00
|
|
|
checkImage.setVisibility(View.INVISIBLE);
|
2014-04-03 23:18:54 +02:00
|
|
|
halfCheckImage.setImageResource(R.drawable.msg_clock);
|
2013-10-25 17:19:00 +02:00
|
|
|
halfCheckImage.setVisibility(View.VISIBLE);
|
2014-09-28 15:37:26 +02:00
|
|
|
} else if (message.isSendError()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
halfCheckImage.setVisibility(View.VISIBLE);
|
|
|
|
halfCheckImage.setImageResource(R.drawable.msg_warning);
|
|
|
|
if (checkImage != null) {
|
|
|
|
checkImage.setVisibility(View.INVISIBLE);
|
|
|
|
}
|
2014-09-28 15:37:26 +02:00
|
|
|
} else if (message.isSent()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
if (!message.messageOwner.unread) {
|
|
|
|
halfCheckImage.setVisibility(View.VISIBLE);
|
2013-12-20 20:25:49 +01:00
|
|
|
checkImage.setVisibility(View.VISIBLE);
|
2014-04-03 23:18:54 +02:00
|
|
|
halfCheckImage.setImageResource(R.drawable.msg_halfcheck);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
|
|
|
halfCheckImage.setVisibility(View.VISIBLE);
|
2013-12-20 20:25:49 +01:00
|
|
|
checkImage.setVisibility(View.INVISIBLE);
|
2014-04-03 23:18:54 +02:00
|
|
|
halfCheckImage.setImageResource(R.drawable.msg_check);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-04 19:36:55 +01:00
|
|
|
public ChatListRowHolderEx(View view, int type) {
|
2013-10-25 17:19:00 +02:00
|
|
|
avatarImageView = (BackupImageView)view.findViewById(R.id.chat_group_avatar_image);
|
|
|
|
nameTextView = (TextView)view.findViewById(R.id.chat_user_group_name);
|
|
|
|
messageLayoutAction = (MessageActionLayout)view.findViewById(R.id.message_action_layout);
|
|
|
|
timeTextView = (TextView)view.findViewById(R.id.chat_time_text);
|
|
|
|
photoImage = (BackupImageView)view.findViewById(R.id.chat_photo_image);
|
|
|
|
halfCheckImage = (ImageView)view.findViewById(R.id.chat_row_halfcheck);
|
|
|
|
checkImage = (ImageView)view.findViewById(R.id.chat_row_check);
|
|
|
|
messageTextView = (TextView)view.findViewById(R.id.chat_message_text);
|
|
|
|
phoneTextView = (TextView)view.findViewById(R.id.phone_text_view);
|
|
|
|
contactAvatar = (BackupImageView)view.findViewById(R.id.contact_avatar);
|
|
|
|
contactView = view.findViewById(R.id.shared_layout);
|
|
|
|
addContactButton = (ImageView)view.findViewById(R.id.add_contact_button);
|
|
|
|
addContactView = view.findViewById(R.id.add_contact_view);
|
|
|
|
chatBubbleView = view.findViewById(R.id.chat_bubble_layout);
|
|
|
|
if (messageTextView != null) {
|
2014-03-22 23:31:55 +01:00
|
|
|
messageTextView.setTextSize(TypedValue.COMPLEX_UNIT_SP, MessagesController.getInstance().fontSize);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (messageLayoutAction != null) {
|
|
|
|
if (isCustomTheme) {
|
2013-12-20 20:25:49 +01:00
|
|
|
messageLayoutAction.setBackgroundResource(R.drawable.system_black);
|
2013-10-25 17:19:00 +02:00
|
|
|
} else {
|
2013-12-20 20:25:49 +01:00
|
|
|
messageLayoutAction.setBackgroundResource(R.drawable.system_blue);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addContactButton != null) {
|
|
|
|
addContactButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
processRowSelect(view);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", message.messageOwner.media.user_id);
|
2013-12-20 20:25:49 +01:00
|
|
|
args.putString("phone", message.messageOwner.media.phone_number);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(new ContactAddActivity(args));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
addContactButton.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
|
|
|
createMenu(v, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contactView != null) {
|
|
|
|
contactView.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-08-29 23:06:04 +02:00
|
|
|
if (message.type == 12 || message.type == 13) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-12-26 12:43:37 +01:00
|
|
|
processRowSelect(view);
|
|
|
|
return;
|
|
|
|
}
|
2014-06-13 12:42:21 +02:00
|
|
|
if (message.messageOwner.media.user_id != UserConfig.getClientUserId()) {
|
2014-03-22 23:31:55 +01:00
|
|
|
TLRPC.User user = null;
|
|
|
|
if (message.messageOwner.media.user_id != 0) {
|
2014-08-22 16:24:33 +02:00
|
|
|
user = MessagesController.getInstance().getUser(message.messageOwner.media.user_id);
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
|
|
|
if (user != null) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", message.messageOwner.media.user_id);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(new UserProfileActivity(args));
|
2014-03-22 23:31:55 +01:00
|
|
|
} else {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (message.messageOwner.media.phone_number == null || message.messageOwner.media.phone_number.length() == 0) {
|
2014-03-22 23:31:55 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-06-14 10:36:01 +02:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-04 01:31:48 +02:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2014-03-22 23:31:55 +01:00
|
|
|
builder.setItems(new CharSequence[] {LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Call", R.string.Call)}, new DialogInterface.OnClickListener() {
|
2014-06-07 01:35:21 +02:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
if (i == 1) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + message.messageOwner.media.phone_number));
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
getParentActivity().startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
} else if (i == 0) {
|
2014-09-24 04:17:27 +02:00
|
|
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
|
2014-06-07 01:35:21 +02:00
|
|
|
android.text.ClipboardManager clipboard = (android.text.ClipboardManager) ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
clipboard.setText(message.messageOwner.media.phone_number);
|
|
|
|
} else {
|
|
|
|
android.content.ClipboardManager clipboard = (android.content.ClipboardManager) ApplicationLoader.applicationContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
android.content.ClipData clip = android.content.ClipData.newPlainText("label", message.messageOwner.media.phone_number);
|
|
|
|
clipboard.setPrimaryClip(clip);
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
|
|
|
}
|
2014-06-07 01:35:21 +02:00
|
|
|
);
|
|
|
|
showAlertDialog(builder);
|
2014-03-22 23:31:55 +01:00
|
|
|
}
|
2013-12-26 12:43:37 +01:00
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
contactView.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
|
|
|
createMenu(v, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-02-28 23:28:25 +01:00
|
|
|
if (contactAvatar != null) {
|
|
|
|
contactAvatar.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-03-31 16:14:49 +02:00
|
|
|
|
2014-02-28 23:28:25 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-25 17:19:00 +02:00
|
|
|
if (avatarImageView != null) {
|
|
|
|
avatarImageView.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-10-25 17:19:00 +02:00
|
|
|
processRowSelect(view);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (message != null) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", message.messageOwner.from_id);
|
2014-06-04 01:31:48 +02:00
|
|
|
presentFragment(new UserProfileActivity(args));
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (photoImage != null) {
|
|
|
|
photoImage.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2013-12-26 12:43:37 +01:00
|
|
|
processOnClick(view);
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
photoImage.setOnLongClickListener(new View.OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
|
|
|
createMenu(v, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2013-12-26 12:43:37 +01:00
|
|
|
|
|
|
|
private void processOnClick(View view) {
|
2014-06-04 01:31:48 +02:00
|
|
|
if (actionBarLayer.isActionModeShowed()) {
|
2013-12-26 12:43:37 +01:00
|
|
|
processRowSelect(view);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (message != null) {
|
2014-04-03 23:18:54 +02:00
|
|
|
if (message.type == 11) {
|
2014-07-03 16:55:04 +02:00
|
|
|
PhotoViewer.getInstance().setParentActivity(getParentActivity());
|
2014-06-11 01:05:54 +02:00
|
|
|
PhotoViewer.getInstance().openPhoto(message, ChatActivity.this);
|
2013-12-26 12:43:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-25 17:19:00 +02:00
|
|
|
}
|
|
|
|
}
|