2013-10-25 15:19:00 +00:00
|
|
|
/*
|
2013-12-20 19:25:49 +00:00
|
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
2013-10-25 15:19:00 +00:00
|
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
|
|
*
|
|
|
|
* Copyright Nikolai Kudashov, 2013.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.telegram.ui;
|
|
|
|
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import org.telegram.PhoneFormat.PhoneFormat;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.LocaleController;
|
2014-02-28 22:28:25 +00:00
|
|
|
import org.telegram.messenger.TLObject;
|
|
|
|
import org.telegram.messenger.TLRPC;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.messenger.ConnectionsManager;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.MessagesController;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.messenger.NotificationCenter;
|
|
|
|
import org.telegram.messenger.R;
|
|
|
|
import org.telegram.messenger.RPCRequest;
|
|
|
|
import org.telegram.messenger.Utilities;
|
2014-06-20 00:18:13 +00:00
|
|
|
import org.telegram.ui.Adapters.BaseFragmentAdapter;
|
2014-02-04 18:36:55 +00:00
|
|
|
import org.telegram.ui.Cells.ChatOrUserCell;
|
2014-06-03 23:31:48 +00:00
|
|
|
import org.telegram.ui.Views.ActionBar.ActionBarLayer;
|
|
|
|
import org.telegram.ui.Views.ActionBar.ActionBarMenu;
|
|
|
|
import org.telegram.ui.Views.ActionBar.BaseFragment;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
2014-07-19 23:31:49 +00:00
|
|
|
public class SettingsBlockedUsersActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, ContactsActivity.ContactsActivityDelegate {
|
2013-10-25 15:19:00 +00:00
|
|
|
private ListView listView;
|
|
|
|
private ListAdapter listViewAdapter;
|
|
|
|
private boolean loading;
|
|
|
|
private View progressView;
|
2014-03-22 22:31:55 +00:00
|
|
|
private TextView emptyView;
|
2013-10-25 15:19:00 +00:00
|
|
|
private ArrayList<TLRPC.TL_contactBlocked> blockedContacts = new ArrayList<TLRPC.TL_contactBlocked>();
|
|
|
|
private HashMap<Integer, TLRPC.TL_contactBlocked> blockedContactsDict = new HashMap<Integer, TLRPC.TL_contactBlocked>();
|
|
|
|
private int selectedUserId;
|
|
|
|
|
2014-04-02 17:36:57 +00:00
|
|
|
private final static int block_user = 1;
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public boolean onFragmentCreate() {
|
|
|
|
super.onFragmentCreate();
|
2014-03-22 22:31:55 +00:00
|
|
|
NotificationCenter.getInstance().addObserver(this, MessagesController.updateInterfaces);
|
2013-10-25 15:19:00 +00:00
|
|
|
loadBlockedContacts(0, 200);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFragmentDestroy() {
|
|
|
|
super.onFragmentDestroy();
|
2014-03-22 22:31:55 +00:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, MessagesController.updateInterfaces);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-03 23:31:48 +00:00
|
|
|
public View createView(LayoutInflater inflater, ViewGroup container) {
|
2013-10-25 15:19:00 +00:00
|
|
|
if (fragmentView == null) {
|
2014-06-12 01:13:15 +00:00
|
|
|
actionBarLayer.setDisplayHomeAsUpEnabled(true, R.drawable.ic_ab_back);
|
2014-06-12 15:53:20 +00:00
|
|
|
actionBarLayer.setBackOverlay(R.layout.updating_state_layout);
|
2014-06-03 23:31:48 +00:00
|
|
|
actionBarLayer.setTitle(LocaleController.getString("BlockedUsers", R.string.BlockedUsers));
|
|
|
|
actionBarLayer.setActionBarMenuOnItemClick(new ActionBarLayer.ActionBarMenuOnItemClick() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(int id) {
|
|
|
|
if (id == -1) {
|
|
|
|
finishFragment();
|
|
|
|
} else if (id == block_user) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putBoolean("onlyUsers", true);
|
|
|
|
args.putBoolean("destroyAfterSelect", true);
|
|
|
|
args.putBoolean("usersAsSections", true);
|
|
|
|
args.putBoolean("returnAsResult", true);
|
|
|
|
ContactsActivity fragment = new ContactsActivity(args);
|
2014-07-19 23:31:49 +00:00
|
|
|
fragment.setDelegate(SettingsBlockedUsersActivity.this);
|
2014-06-03 23:31:48 +00:00
|
|
|
presentFragment(fragment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ActionBarMenu menu = actionBarLayer.createMenu();
|
|
|
|
menu.addItem(block_user, R.drawable.plus);
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
fragmentView = inflater.inflate(R.layout.settings_blocked_users_layout, container, false);
|
2014-06-03 23:31:48 +00:00
|
|
|
listViewAdapter = new ListAdapter(getParentActivity());
|
2013-10-25 15:19:00 +00:00
|
|
|
listView = (ListView)fragmentView.findViewById(R.id.listView);
|
|
|
|
progressView = fragmentView.findViewById(R.id.progressLayout);
|
2014-03-22 22:31:55 +00:00
|
|
|
emptyView = (TextView)fragmentView.findViewById(R.id.searchEmptyView);
|
|
|
|
emptyView.setText(LocaleController.getString("NoBlocked", R.string.NoBlocked));
|
2013-10-25 15:19:00 +00:00
|
|
|
if (loading) {
|
|
|
|
progressView.setVisibility(View.VISIBLE);
|
|
|
|
emptyView.setVisibility(View.GONE);
|
|
|
|
listView.setEmptyView(null);
|
|
|
|
} else {
|
|
|
|
progressView.setVisibility(View.GONE);
|
|
|
|
listView.setEmptyView(emptyView);
|
|
|
|
}
|
|
|
|
listView.setAdapter(listViewAdapter);
|
|
|
|
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
|
|
|
|
if (i < blockedContacts.size()) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", blockedContacts.get(i).user_id);
|
2014-06-03 23:31:48 +00:00
|
|
|
presentFragment(new UserProfileActivity(args));
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int i, long l) {
|
2014-06-14 08:36:01 +00:00
|
|
|
if (i >= blockedContacts.size() || getParentActivity() == null) {
|
2013-10-25 15:19:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
selectedUserId = blockedContacts.get(i).user_id;
|
|
|
|
|
2014-06-03 23:31:48 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-03-22 22:31:55 +00:00
|
|
|
CharSequence[] items = new CharSequence[] {LocaleController.getString("Unblock", R.string.Unblock)};
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
builder.setItems(items, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
if (i == 0) {
|
|
|
|
TLRPC.TL_contacts_unblock req = new TLRPC.TL_contacts_unblock();
|
2014-03-22 22:31:55 +00:00
|
|
|
TLRPC.User user = MessagesController.getInstance().users.get(selectedUserId);
|
2014-02-04 18:36:55 +00:00
|
|
|
if (user == null) {
|
|
|
|
return;
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-02-04 18:36:55 +00:00
|
|
|
req.id = MessagesController.getInputUser(user);
|
2013-10-25 15:19:00 +00:00
|
|
|
TLRPC.TL_contactBlocked blocked = blockedContactsDict.get(selectedUserId);
|
|
|
|
blockedContactsDict.remove(selectedUserId);
|
|
|
|
blockedContacts.remove(blocked);
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
2014-03-22 22:31:55 +00:00
|
|
|
ConnectionsManager.getInstance().performRpc(req, new RPCRequest.RPCRequestDelegate() {
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public void run(TLObject response, TLRPC.TL_error error) {
|
|
|
|
|
|
|
|
}
|
2014-07-02 22:39:05 +00:00
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-06-06 23:35:21 +00:00
|
|
|
showAlertDialog(builder);
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void loadBlockedContacts(int offset, int count) {
|
|
|
|
if (loading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
loading = true;
|
|
|
|
TLRPC.TL_contacts_getBlocked req = new TLRPC.TL_contacts_getBlocked();
|
|
|
|
req.offset = offset;
|
|
|
|
req.limit = count;
|
2014-03-22 22:31:55 +00:00
|
|
|
long requestId = ConnectionsManager.getInstance().performRpc(req, new RPCRequest.RPCRequestDelegate() {
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public void run(TLObject response, TLRPC.TL_error error) {
|
|
|
|
if (error != null) {
|
|
|
|
Utilities.RunOnUIThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
loading = false;
|
|
|
|
if (progressView != null) {
|
|
|
|
progressView.setVisibility(View.GONE);
|
|
|
|
}
|
2014-06-10 23:05:54 +00:00
|
|
|
if (listView != null && listView.getEmptyView() == null) {
|
|
|
|
listView.setEmptyView(emptyView);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
if (listViewAdapter != null) {
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
final TLRPC.contacts_Blocked res = (TLRPC.contacts_Blocked)response;
|
|
|
|
Utilities.RunOnUIThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
loading = false;
|
|
|
|
for (TLRPC.User user : res.users) {
|
2014-03-22 22:31:55 +00:00
|
|
|
MessagesController.getInstance().users.put(user.id, user);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
for (TLRPC.TL_contactBlocked blocked : res.blocked) {
|
|
|
|
if (!blockedContactsDict.containsKey(blocked.user_id)) {
|
|
|
|
blockedContacts.add(blocked);
|
|
|
|
blockedContactsDict.put(blocked.user_id, blocked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (progressView != null) {
|
|
|
|
progressView.setVisibility(View.GONE);
|
|
|
|
}
|
2014-06-10 23:05:54 +00:00
|
|
|
if (listView != null && listView.getEmptyView() == null) {
|
|
|
|
listView.setEmptyView(emptyView);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
if (listViewAdapter != null) {
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-07-02 22:39:05 +00:00
|
|
|
});
|
2014-03-22 22:31:55 +00:00
|
|
|
ConnectionsManager.getInstance().bindRequestToGuid(requestId, classGuid);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didReceivedNotification(int id, Object... args) {
|
|
|
|
if (id == MessagesController.updateInterfaces) {
|
2014-02-04 18:36:55 +00:00
|
|
|
int mask = (Integer)args[0];
|
|
|
|
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0) {
|
|
|
|
updateVisibleRows(mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateVisibleRows(int mask) {
|
|
|
|
if (listView == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int count = listView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View child = listView.getChildAt(a);
|
|
|
|
if (child instanceof ChatOrUserCell) {
|
|
|
|
((ChatOrUserCell) child).update(mask);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2014-06-04 16:00:42 +00:00
|
|
|
super.onResume();
|
2014-06-03 23:31:48 +00:00
|
|
|
if (listViewAdapter != null) {
|
2013-10-25 15:19:00 +00:00
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-10 21:15:39 +00:00
|
|
|
public void didSelectContact(TLRPC.User user, String param) {
|
2014-02-04 18:36:55 +00:00
|
|
|
if (user == null || blockedContactsDict.containsKey(user.id)) {
|
2013-10-25 15:19:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
TLRPC.TL_contacts_block req = new TLRPC.TL_contacts_block();
|
2014-02-04 18:36:55 +00:00
|
|
|
req.id = MessagesController.getInputUser(user);
|
2013-10-25 15:19:00 +00:00
|
|
|
TLRPC.TL_contactBlocked blocked = new TLRPC.TL_contactBlocked();
|
2014-02-04 18:36:55 +00:00
|
|
|
blocked.user_id = user.id;
|
2013-10-25 15:19:00 +00:00
|
|
|
blocked.date = (int)(System.currentTimeMillis() / 1000);
|
|
|
|
blockedContactsDict.put(blocked.user_id, blocked);
|
|
|
|
blockedContacts.add(blocked);
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
2014-03-22 22:31:55 +00:00
|
|
|
ConnectionsManager.getInstance().performRpc(req, new RPCRequest.RPCRequestDelegate() {
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public void run(TLObject response, TLRPC.TL_error error) {
|
|
|
|
|
|
|
|
}
|
2014-07-02 22:39:05 +00:00
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
private class ListAdapter extends BaseFragmentAdapter {
|
2013-10-25 15:19:00 +00:00
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public ListAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areAllItemsEnabled() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEnabled(int i) {
|
|
|
|
return i != blockedContacts.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
if (blockedContacts.isEmpty()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return blockedContacts.size() + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int i) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int i, View view, ViewGroup viewGroup) {
|
|
|
|
int type = getItemViewType(i);
|
|
|
|
if (type == 0) {
|
|
|
|
if (view == null) {
|
2014-02-04 18:36:55 +00:00
|
|
|
view = new ChatOrUserCell(mContext);
|
|
|
|
((ChatOrUserCell)view).usePadding = false;
|
|
|
|
((ChatOrUserCell)view).useSeparator = true;
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-03-22 22:31:55 +00:00
|
|
|
TLRPC.User user = MessagesController.getInstance().users.get(blockedContacts.get(i).user_id);
|
|
|
|
((ChatOrUserCell)view).setData(user, null, null, null, user.phone != null && user.phone.length() != 0 ? PhoneFormat.getInstance().format("+" + user.phone) : "Unknown");
|
2013-10-25 15:19:00 +00:00
|
|
|
} else if (type == 1) {
|
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = li.inflate(R.layout.settings_unblock_info_row_layout, viewGroup, false);
|
2014-03-22 22:31:55 +00:00
|
|
|
TextView textView = (TextView)view.findViewById(R.id.info_text_view);
|
|
|
|
textView.setText(LocaleController.getString("UnblockText", R.string.UnblockText));
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
|
|
|
if(i == blockedContacts.size()) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return blockedContacts.isEmpty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|