2014-06-30 18:39:15 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2015-12-06 23:33:50 +00:00
|
|
|
import android.Manifest;
|
2014-09-27 09:46:56 +00:00
|
|
|
import android.annotation.SuppressLint;
|
2014-11-04 16:52:47 +00:00
|
|
|
import android.annotation.TargetApi;
|
2014-07-02 14:13:25 +00:00
|
|
|
import android.app.ActionBar;
|
|
|
|
import android.app.ActionBar.Tab;
|
|
|
|
import android.app.ActionBar.TabListener;
|
2014-07-10 11:19:42 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-07-02 14:13:25 +00:00
|
|
|
import android.app.Fragment;
|
|
|
|
import android.app.FragmentTransaction;
|
|
|
|
import android.app.ListFragment;
|
2014-07-07 07:32:10 +00:00
|
|
|
import android.content.Context;
|
2014-07-15 17:41:58 +00:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-09-27 09:37:02 +00:00
|
|
|
import android.content.Intent;
|
2015-12-06 23:33:50 +00:00
|
|
|
import android.content.pm.PackageManager;
|
2014-09-27 09:37:02 +00:00
|
|
|
import android.net.Uri;
|
2014-11-03 19:00:20 +00:00
|
|
|
import android.nfc.NdefMessage;
|
2014-11-03 22:47:49 +00:00
|
|
|
import android.nfc.NdefRecord;
|
2014-11-03 19:00:20 +00:00
|
|
|
import android.nfc.NfcAdapter;
|
2014-11-04 08:30:03 +00:00
|
|
|
import android.os.Build;
|
2014-07-02 14:13:25 +00:00
|
|
|
import android.os.Bundle;
|
2014-11-03 19:00:20 +00:00
|
|
|
import android.os.Parcelable;
|
2014-07-02 14:13:25 +00:00
|
|
|
import android.support.v13.app.FragmentPagerAdapter;
|
|
|
|
import android.support.v4.view.ViewPager;
|
2014-07-11 21:44:59 +00:00
|
|
|
import android.text.Editable;
|
|
|
|
import android.text.TextWatcher;
|
2014-11-04 12:14:29 +00:00
|
|
|
import android.util.Log;
|
2014-07-09 23:55:19 +00:00
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
2014-08-07 22:43:07 +00:00
|
|
|
import android.view.KeyEvent;
|
2014-07-04 09:36:02 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-07-07 07:32:10 +00:00
|
|
|
import android.view.View;
|
2014-07-11 21:44:59 +00:00
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2014-07-07 07:32:10 +00:00
|
|
|
import android.widget.AdapterView;
|
2014-07-09 23:55:19 +00:00
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
2014-07-07 07:32:10 +00:00
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ArrayAdapter;
|
2014-07-10 17:42:37 +00:00
|
|
|
import android.widget.AutoCompleteTextView;
|
2014-07-15 12:32:19 +00:00
|
|
|
import android.widget.CheckBox;
|
2014-12-23 18:23:13 +00:00
|
|
|
import android.widget.Checkable;
|
2014-07-11 21:44:59 +00:00
|
|
|
import android.widget.EditText;
|
2014-07-07 07:32:10 +00:00
|
|
|
import android.widget.ListView;
|
2014-07-10 11:19:42 +00:00
|
|
|
import android.widget.Spinner;
|
2016-02-24 15:53:19 +00:00
|
|
|
import android.widget.TextView;
|
2015-07-15 15:42:08 +00:00
|
|
|
import android.widget.Toast;
|
2014-11-03 21:47:07 +00:00
|
|
|
|
|
|
|
import com.google.zxing.integration.android.IntentIntegrator;
|
|
|
|
import com.google.zxing.integration.android.IntentResult;
|
|
|
|
|
2014-11-03 22:47:49 +00:00
|
|
|
import java.util.ArrayList;
|
2014-11-04 08:30:03 +00:00
|
|
|
import java.util.Arrays;
|
2014-11-03 22:47:49 +00:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2015-12-06 23:33:50 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicBoolean;
|
2014-11-03 22:47:49 +00:00
|
|
|
|
2014-11-04 12:14:29 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-07-02 14:13:25 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-07-07 07:32:10 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-12-21 20:43:58 +00:00
|
|
|
import eu.siacs.conversations.entities.Blockable;
|
2014-07-14 09:47:42 +00:00
|
|
|
import eu.siacs.conversations.entities.Bookmark;
|
2014-07-07 07:32:10 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.ListItem;
|
2016-01-17 21:28:38 +00:00
|
|
|
import eu.siacs.conversations.entities.Presence;
|
2014-07-18 13:35:31 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnRosterUpdate;
|
2014-07-16 22:03:37 +00:00
|
|
|
import eu.siacs.conversations.ui.adapter.KnownHostsAdapter;
|
|
|
|
import eu.siacs.conversations.ui.adapter.ListItemAdapter;
|
2014-12-21 20:43:58 +00:00
|
|
|
import eu.siacs.conversations.utils.XmppUri;
|
|
|
|
import eu.siacs.conversations.xmpp.OnUpdateBlocklist;
|
2015-05-19 06:31:56 +00:00
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection;
|
2014-11-06 19:45:38 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-07-02 14:13:25 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public class StartConversationActivity extends XmppActivity implements OnRosterUpdate, OnUpdateBlocklist {
|
2014-06-30 18:39:15 +00:00
|
|
|
|
2014-11-11 16:39:28 +00:00
|
|
|
public int conference_context_id;
|
|
|
|
public int contact_context_id;
|
2014-07-02 14:13:25 +00:00
|
|
|
private Tab mContactsTab;
|
|
|
|
private Tab mConferencesTab;
|
|
|
|
private ViewPager mViewPager;
|
2014-07-07 07:32:10 +00:00
|
|
|
private MyListFragment mContactsListFragment = new MyListFragment();
|
2014-11-06 19:45:38 +00:00
|
|
|
private List<ListItem> contacts = new ArrayList<>();
|
2014-07-07 07:32:10 +00:00
|
|
|
private ArrayAdapter<ListItem> mContactsAdapter;
|
|
|
|
private MyListFragment mConferenceListFragment = new MyListFragment();
|
|
|
|
private List<ListItem> conferences = new ArrayList<ListItem>();
|
|
|
|
private ArrayAdapter<ListItem> mConferenceAdapter;
|
2014-07-10 11:19:42 +00:00
|
|
|
private List<String> mActivatedAccounts = new ArrayList<String>();
|
2014-07-10 17:42:37 +00:00
|
|
|
private List<String> mKnownHosts;
|
2014-07-11 17:48:41 +00:00
|
|
|
private List<String> mKnownConferenceHosts;
|
2014-11-03 22:47:49 +00:00
|
|
|
private Invite mPendingInvite = null;
|
2014-08-07 22:43:07 +00:00
|
|
|
private Menu mOptionsMenu;
|
2014-07-11 21:44:59 +00:00
|
|
|
private EditText mSearchEditText;
|
2015-12-06 23:33:50 +00:00
|
|
|
private AtomicBoolean mRequestedContactsPermission = new AtomicBoolean(false);
|
|
|
|
private final int REQUEST_SYNC_CONTACTS = 0x3b28cf;
|
|
|
|
|
2014-07-11 21:44:59 +00:00
|
|
|
private MenuItem.OnActionExpandListener mOnActionExpandListener = new MenuItem.OnActionExpandListener() {
|
2014-07-07 07:32:10 +00:00
|
|
|
|
|
|
|
@Override
|
2014-07-11 21:44:59 +00:00
|
|
|
public boolean onMenuItemActionExpand(MenuItem item) {
|
|
|
|
mSearchEditText.post(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
mSearchEditText.requestFocus();
|
|
|
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
imm.showSoftInput(mSearchEditText,
|
|
|
|
InputMethodManager.SHOW_IMPLICIT);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-07 07:32:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-07-11 21:44:59 +00:00
|
|
|
public boolean onMenuItemActionCollapse(MenuItem item) {
|
|
|
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
imm.hideSoftInputFromWindow(mSearchEditText.getWindowToken(),
|
|
|
|
InputMethodManager.HIDE_IMPLICIT_ONLY);
|
|
|
|
mSearchEditText.setText("");
|
2014-07-14 09:47:42 +00:00
|
|
|
filter(null);
|
2014-07-07 07:32:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2015-01-21 16:24:02 +00:00
|
|
|
private boolean mHideOfflineContacts = false;
|
2014-11-11 16:39:28 +00:00
|
|
|
private TabListener mTabListener = new TabListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabSelected(Tab tab, FragmentTransaction ft) {
|
|
|
|
mViewPager.setCurrentItem(tab.getPosition());
|
|
|
|
onTabChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabReselected(Tab tab, FragmentTransaction ft) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private ViewPager.SimpleOnPageChangeListener mOnPageChangeListener = new ViewPager.SimpleOnPageChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onPageSelected(int position) {
|
2014-12-21 20:43:58 +00:00
|
|
|
if (getActionBar() != null) {
|
|
|
|
getActionBar().setSelectedNavigationItem(position);
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
onTabChanged();
|
|
|
|
}
|
|
|
|
};
|
2014-07-11 21:44:59 +00:00
|
|
|
private TextWatcher mSearchTextWatcher = new TextWatcher() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void afterTextChanged(Editable editable) {
|
2014-07-14 09:47:42 +00:00
|
|
|
filter(editable.toString());
|
2014-07-11 21:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count,
|
2014-12-21 20:43:58 +00:00
|
|
|
int after) {
|
2014-07-11 21:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before,
|
2014-12-21 20:43:58 +00:00
|
|
|
int count) {
|
2014-07-11 21:44:59 +00:00
|
|
|
}
|
|
|
|
};
|
2014-11-11 16:39:28 +00:00
|
|
|
private MenuItem mMenuSearchView;
|
2015-01-02 13:47:08 +00:00
|
|
|
private ListItemAdapter.OnTagClickedListener mOnTagClickedListener = new ListItemAdapter.OnTagClickedListener() {
|
|
|
|
@Override
|
|
|
|
public void onTagClicked(String tag) {
|
|
|
|
if (mMenuSearchView != null) {
|
|
|
|
mMenuSearchView.expandActionView();
|
|
|
|
mSearchEditText.setText("");
|
|
|
|
mSearchEditText.append(tag);
|
|
|
|
filter(tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-01-21 16:24:02 +00:00
|
|
|
private String mInitialJid;
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-11-11 16:39:28 +00:00
|
|
|
@Override
|
|
|
|
public void onRosterUpdate() {
|
2015-02-17 13:18:35 +00:00
|
|
|
this.refreshUi();
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
2014-07-02 14:13:25 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_start_conversation);
|
|
|
|
mViewPager = (ViewPager) findViewById(R.id.start_conversation_view_pager);
|
|
|
|
ActionBar actionBar = getActionBar();
|
|
|
|
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
|
|
|
|
|
|
|
|
mContactsTab = actionBar.newTab().setText(R.string.contacts)
|
2014-12-21 20:43:58 +00:00
|
|
|
.setTabListener(mTabListener);
|
2014-07-02 14:13:25 +00:00
|
|
|
mConferencesTab = actionBar.newTab().setText(R.string.conferences)
|
2014-12-21 20:43:58 +00:00
|
|
|
.setTabListener(mTabListener);
|
2014-07-02 14:13:25 +00:00
|
|
|
actionBar.addTab(mContactsTab);
|
|
|
|
actionBar.addTab(mConferencesTab);
|
|
|
|
|
|
|
|
mViewPager.setOnPageChangeListener(mOnPageChangeListener);
|
|
|
|
mViewPager.setAdapter(new FragmentPagerAdapter(getFragmentManager()) {
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
@Override
|
|
|
|
public Fragment getItem(int position) {
|
2014-07-07 07:32:10 +00:00
|
|
|
if (position == 0) {
|
2014-07-02 14:13:25 +00:00
|
|
|
return mContactsListFragment;
|
|
|
|
} else {
|
|
|
|
return mConferenceListFragment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-09-08 21:58:37 +00:00
|
|
|
mConferenceAdapter = new ListItemAdapter(this, conferences);
|
2014-07-07 07:32:10 +00:00
|
|
|
mConferenceListFragment.setListAdapter(mConferenceAdapter);
|
2014-07-14 09:47:42 +00:00
|
|
|
mConferenceListFragment.setContextMenu(R.menu.conference_context);
|
2014-07-15 15:11:43 +00:00
|
|
|
mConferenceListFragment
|
2014-12-21 20:43:58 +00:00
|
|
|
.setOnListItemClickListener(new OnItemClickListener() {
|
2014-07-14 09:47:42 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> arg0, View arg1,
|
|
|
|
int position, long arg3) {
|
|
|
|
openConversationForBookmark(position);
|
|
|
|
}
|
|
|
|
});
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2014-09-08 21:58:37 +00:00
|
|
|
mContactsAdapter = new ListItemAdapter(this, contacts);
|
2015-01-02 13:47:08 +00:00
|
|
|
((ListItemAdapter) mContactsAdapter).setOnTagClickedListener(this.mOnTagClickedListener);
|
2014-07-07 07:32:10 +00:00
|
|
|
mContactsListFragment.setListAdapter(mContactsAdapter);
|
2014-07-14 09:47:42 +00:00
|
|
|
mContactsListFragment.setContextMenu(R.menu.contact_context);
|
2014-07-07 07:32:10 +00:00
|
|
|
mContactsListFragment
|
2014-12-21 20:43:58 +00:00
|
|
|
.setOnListItemClickListener(new OnItemClickListener() {
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> arg0, View arg1,
|
|
|
|
int position, long arg3) {
|
|
|
|
openConversationForContact(position);
|
|
|
|
}
|
|
|
|
});
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2015-01-21 16:24:02 +00:00
|
|
|
this.mHideOfflineContacts = getPreferences().getBoolean("hide_offline", false);
|
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2015-12-06 23:33:50 +00:00
|
|
|
@Override
|
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
askForContactsPermissions();
|
|
|
|
}
|
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
protected void openConversationForContact(int position) {
|
|
|
|
Contact contact = (Contact) contacts.get(position);
|
|
|
|
Conversation conversation = xmppConnectionService
|
2014-12-21 20:43:58 +00:00
|
|
|
.findOrCreateConversation(contact.getAccount(),
|
|
|
|
contact.getJid(), false);
|
2014-07-14 09:47:42 +00:00
|
|
|
switchToConversation(conversation);
|
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void openConversationForContact() {
|
|
|
|
int position = contact_context_id;
|
|
|
|
openConversationForContact(position);
|
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void openConversationForBookmark() {
|
|
|
|
openConversationForBookmark(conference_context_id);
|
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void openConversationForBookmark(int position) {
|
|
|
|
Bookmark bookmark = (Bookmark) conferences.get(position);
|
2015-07-15 15:42:08 +00:00
|
|
|
Jid jid = bookmark.getJid();
|
|
|
|
if (jid == null) {
|
|
|
|
Toast.makeText(this,R.string.invalid_jid,Toast.LENGTH_SHORT).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Conversation conversation = xmppConnectionService.findOrCreateConversation(bookmark.getAccount(),jid, true);
|
2014-07-14 15:13:59 +00:00
|
|
|
conversation.setBookmark(bookmark);
|
2014-07-15 17:41:58 +00:00
|
|
|
if (!conversation.getMucOptions().online()) {
|
|
|
|
xmppConnectionService.joinMuc(conversation);
|
|
|
|
}
|
2016-02-01 12:54:08 +00:00
|
|
|
if (!bookmark.autojoin() && getPreferences().getBoolean("autojoin", true)) {
|
2014-07-15 12:32:19 +00:00
|
|
|
bookmark.setAutojoin(true);
|
|
|
|
xmppConnectionService.pushBookmarks(bookmark.getAccount());
|
|
|
|
}
|
2014-07-14 09:47:42 +00:00
|
|
|
switchToConversation(conversation);
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void openDetailsForContact() {
|
|
|
|
int position = contact_context_id;
|
2014-07-09 23:55:19 +00:00
|
|
|
Contact contact = (Contact) contacts.get(position);
|
|
|
|
switchToContactDetails(contact);
|
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
protected void toggleContactBlock() {
|
|
|
|
final int position = contact_context_id;
|
2015-08-03 20:58:17 +00:00
|
|
|
BlockContactDialog.show(this, xmppConnectionService, (Contact) contacts.get(position));
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void deleteContact() {
|
2014-12-21 20:43:58 +00:00
|
|
|
final int position = contact_context_id;
|
2014-07-15 17:41:58 +00:00
|
|
|
final Contact contact = (Contact) contacts.get(position);
|
2014-12-21 20:43:58 +00:00
|
|
|
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-07-15 17:41:58 +00:00
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setTitle(R.string.action_delete_contact);
|
2014-08-21 05:46:55 +00:00
|
|
|
builder.setMessage(getString(R.string.remove_contact_text,
|
2015-08-03 20:58:17 +00:00
|
|
|
contact.getJid()));
|
2014-08-21 05:46:55 +00:00
|
|
|
builder.setPositiveButton(R.string.delete, new OnClickListener() {
|
|
|
|
|
2014-07-15 17:41:58 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
xmppConnectionService.deleteContactOnServer(contact);
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-15 12:32:19 +00:00
|
|
|
protected void deleteConference() {
|
2014-07-15 15:19:47 +00:00
|
|
|
int position = conference_context_id;
|
2014-07-15 17:41:58 +00:00
|
|
|
final Bookmark bookmark = (Bookmark) conferences.get(position);
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-07-15 17:41:58 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setTitle(R.string.delete_bookmark);
|
2014-08-21 05:46:55 +00:00
|
|
|
builder.setMessage(getString(R.string.remove_bookmark_text,
|
2015-08-03 20:58:17 +00:00
|
|
|
bookmark.getJid()));
|
2014-08-21 05:46:55 +00:00
|
|
|
builder.setPositiveButton(R.string.delete, new OnClickListener() {
|
|
|
|
|
2014-07-15 17:41:58 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2014-07-15 18:41:10 +00:00
|
|
|
bookmark.unregisterConversation();
|
2014-07-15 17:41:58 +00:00
|
|
|
Account account = bookmark.getAccount();
|
|
|
|
account.getBookmarks().remove(bookmark);
|
|
|
|
xmppConnectionService.pushBookmarks(account);
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-07-15 12:32:19 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-09-27 09:46:56 +00:00
|
|
|
@SuppressLint("InflateParams")
|
2014-11-15 23:20:20 +00:00
|
|
|
protected void showCreateContactDialog(final String prefilledJid, final String fingerprint) {
|
2016-01-04 16:27:51 +00:00
|
|
|
EnterJidDialog dialog = new EnterJidDialog(
|
|
|
|
this, mKnownHosts, mActivatedAccounts,
|
|
|
|
getString(R.string.create_contact), getString(R.string.create),
|
|
|
|
prefilledJid, null, fingerprint == null
|
|
|
|
);
|
|
|
|
|
|
|
|
dialog.setOnEnterJidDialogPositiveListener(new EnterJidDialog.OnEnterJidDialogPositiveListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onEnterJidDialogPositive(Jid accountJid, Jid contactJid) throws EnterJidDialog.JidError {
|
|
|
|
if (!xmppConnectionServiceBound) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
final Account account = xmppConnectionService.findAccountByJid(accountJid);
|
|
|
|
if (account == null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
final Contact contact = account.getRoster().getContact(contactJid);
|
|
|
|
if (contact.showInRoster()) {
|
|
|
|
throw new EnterJidDialog.JidError(getString(R.string.contact_already_exists));
|
|
|
|
} else {
|
|
|
|
contact.addOtrFingerprint(fingerprint);
|
|
|
|
xmppConnectionService.createContact(contact);
|
|
|
|
switchToConversation(contact);
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-15 23:20:20 +00:00
|
|
|
}
|
2016-01-04 16:27:51 +00:00
|
|
|
});
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2016-01-04 16:27:51 +00:00
|
|
|
dialog.show();
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-09-27 09:46:56 +00:00
|
|
|
@SuppressLint("InflateParams")
|
2014-12-23 18:23:13 +00:00
|
|
|
protected void showJoinConferenceDialog(final String prefilledJid) {
|
|
|
|
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-07-11 17:48:41 +00:00
|
|
|
builder.setTitle(R.string.join_conference);
|
2014-12-23 18:23:13 +00:00
|
|
|
final View dialogView = getLayoutInflater().inflate(R.layout.join_conference_dialog, null);
|
2014-07-11 17:48:41 +00:00
|
|
|
final Spinner spinner = (Spinner) dialogView.findViewById(R.id.account);
|
2014-12-17 20:04:54 +00:00
|
|
|
final AutoCompleteTextView jid = (AutoCompleteTextView) dialogView.findViewById(R.id.jid);
|
2016-02-24 15:53:19 +00:00
|
|
|
final boolean lock = Config.LOCK_DOMAINS_IN_CONVERSATIONS && Config.CONFERENCE_DOMAIN_LOCK != null;
|
|
|
|
final TextView jabberIdDesc = (TextView) dialogView.findViewById(R.id.jabber_id);
|
|
|
|
jabberIdDesc.setText(lock ? R.string.conference_name : R.string.conference_address);
|
|
|
|
jid.setHint(lock ? R.string.conference_name : R.string.conference_address_example);
|
|
|
|
if (!lock) {
|
|
|
|
jid.setAdapter(new KnownHostsAdapter(this, android.R.layout.simple_list_item_1, mKnownConferenceHosts));
|
|
|
|
}
|
2014-11-03 19:00:20 +00:00
|
|
|
if (prefilledJid != null) {
|
|
|
|
jid.append(prefilledJid);
|
|
|
|
}
|
2016-01-22 10:14:56 +00:00
|
|
|
populateAccountSpinner(this, mActivatedAccounts, spinner);
|
2014-12-23 18:23:13 +00:00
|
|
|
final Checkable bookmarkCheckBox = (CheckBox) dialogView
|
2014-12-21 20:43:58 +00:00
|
|
|
.findViewById(R.id.bookmark);
|
2014-07-11 17:48:41 +00:00
|
|
|
builder.setView(dialogView);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.join, null);
|
|
|
|
final AlertDialog dialog = builder.create();
|
|
|
|
dialog.show();
|
2014-07-11 21:44:59 +00:00
|
|
|
dialog.getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(
|
|
|
|
new View.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-12-23 18:23:13 +00:00
|
|
|
public void onClick(final View v) {
|
2014-08-21 05:46:55 +00:00
|
|
|
if (!xmppConnectionServiceBound) {
|
|
|
|
return;
|
|
|
|
}
|
2016-01-21 16:57:24 +00:00
|
|
|
final Account account = getSelectedAccount(spinner);
|
|
|
|
if (account == null) {
|
2014-12-23 18:23:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
final Jid conferenceJid;
|
|
|
|
try {
|
2016-02-24 15:53:19 +00:00
|
|
|
if (lock) {
|
|
|
|
conferenceJid = Jid.fromParts(jid.getText().toString(),Config.CONFERENCE_DOMAIN_LOCK, null);
|
|
|
|
} else {
|
|
|
|
conferenceJid = Jid.fromString(jid.getText().toString());
|
|
|
|
}
|
2014-12-23 18:23:13 +00:00
|
|
|
} catch (final InvalidJidException e) {
|
2016-02-24 15:53:19 +00:00
|
|
|
jid.setError(getString(lock ? R.string.invalid_conference_name : R.string.invalid_jid));
|
2014-12-23 18:23:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 16:57:24 +00:00
|
|
|
|
2014-12-23 18:23:13 +00:00
|
|
|
if (bookmarkCheckBox.isChecked()) {
|
|
|
|
if (account.hasBookmarkFor(conferenceJid)) {
|
|
|
|
jid.setError(getString(R.string.bookmark_already_exists));
|
2014-07-15 12:32:19 +00:00
|
|
|
} else {
|
2015-12-06 23:33:50 +00:00
|
|
|
final Bookmark bookmark = new Bookmark(account, conferenceJid.toBareJid());
|
2016-02-01 13:22:52 +00:00
|
|
|
bookmark.setAutojoin(getPreferences().getBoolean("autojoin", true));
|
2015-10-19 21:20:00 +00:00
|
|
|
String nick = conferenceJid.getResourcepart();
|
|
|
|
if (nick != null && !nick.isEmpty()) {
|
|
|
|
bookmark.setNick(nick);
|
|
|
|
}
|
2014-12-23 18:23:13 +00:00
|
|
|
account.getBookmarks().add(bookmark);
|
2015-10-19 21:20:00 +00:00
|
|
|
xmppConnectionService.pushBookmarks(account);
|
2014-12-23 18:23:13 +00:00
|
|
|
final Conversation conversation = xmppConnectionService
|
2015-12-06 23:33:50 +00:00
|
|
|
.findOrCreateConversation(account,
|
|
|
|
conferenceJid, true);
|
2014-12-23 18:23:13 +00:00
|
|
|
conversation.setBookmark(bookmark);
|
2014-07-15 17:41:58 +00:00
|
|
|
if (!conversation.getMucOptions().online()) {
|
2015-10-19 21:20:00 +00:00
|
|
|
xmppConnectionService.joinMuc(conversation);
|
2014-07-15 17:41:58 +00:00
|
|
|
}
|
2014-10-04 16:32:05 +00:00
|
|
|
dialog.dismiss();
|
2014-07-15 12:32:19 +00:00
|
|
|
switchToConversation(conversation);
|
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
} else {
|
2014-12-23 18:23:13 +00:00
|
|
|
final Conversation conversation = xmppConnectionService
|
2015-12-06 23:33:50 +00:00
|
|
|
.findOrCreateConversation(account,
|
|
|
|
conferenceJid, true);
|
2014-12-23 18:23:13 +00:00
|
|
|
if (!conversation.getMucOptions().online()) {
|
|
|
|
xmppConnectionService.joinMuc(conversation);
|
|
|
|
}
|
|
|
|
dialog.dismiss();
|
|
|
|
switchToConversation(conversation);
|
2014-07-11 21:44:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-07-11 17:48:41 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2016-01-21 16:57:24 +00:00
|
|
|
private Account getSelectedAccount(Spinner spinner) {
|
2016-01-22 10:14:56 +00:00
|
|
|
if (!spinner.isEnabled()) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-01-21 16:57:24 +00:00
|
|
|
Jid jid;
|
|
|
|
try {
|
|
|
|
if (Config.DOMAIN_LOCK != null) {
|
|
|
|
jid = Jid.fromParts((String) spinner.getSelectedItem(), Config.DOMAIN_LOCK, null);
|
|
|
|
} else {
|
|
|
|
jid = Jid.fromString((String) spinner.getSelectedItem());
|
|
|
|
}
|
|
|
|
} catch (final InvalidJidException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return xmppConnectionService.findAccountByJid(jid);
|
|
|
|
}
|
|
|
|
|
2014-07-10 11:19:42 +00:00
|
|
|
protected void switchToConversation(Contact contact) {
|
2014-07-11 21:44:59 +00:00
|
|
|
Conversation conversation = xmppConnectionService
|
2014-12-21 20:43:58 +00:00
|
|
|
.findOrCreateConversation(contact.getAccount(),
|
|
|
|
contact.getJid(), false);
|
2014-07-11 17:48:41 +00:00
|
|
|
switchToConversation(conversation);
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2016-01-22 10:14:56 +00:00
|
|
|
public static void populateAccountSpinner(Context context, List<String> accounts, Spinner spinner) {
|
|
|
|
if (accounts.size() > 0) {
|
|
|
|
ArrayAdapter<String> adapter = new ArrayAdapter<>(context,
|
|
|
|
android.R.layout.simple_spinner_item, accounts);
|
|
|
|
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
|
|
|
spinner.setAdapter(adapter);
|
|
|
|
spinner.setEnabled(true);
|
|
|
|
} else {
|
|
|
|
ArrayAdapter<String> adapter = new ArrayAdapter<>(context,
|
|
|
|
android.R.layout.simple_spinner_item,
|
|
|
|
Arrays.asList(new String[]{context.getString(R.string.no_accounts)}));
|
|
|
|
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
|
|
|
spinner.setAdapter(adapter);
|
|
|
|
spinner.setEnabled(false);
|
|
|
|
}
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
2014-07-09 23:55:19 +00:00
|
|
|
|
2014-07-04 09:36:02 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
2014-08-07 22:43:07 +00:00
|
|
|
this.mOptionsMenu = menu;
|
2014-07-04 09:36:02 +00:00
|
|
|
getMenuInflater().inflate(R.menu.start_conversation, menu);
|
2015-01-21 16:24:02 +00:00
|
|
|
MenuItem menuCreateContact = menu.findItem(R.id.action_create_contact);
|
|
|
|
MenuItem menuCreateConference = menu.findItem(R.id.action_join_conference);
|
|
|
|
MenuItem menuHideOffline = menu.findItem(R.id.action_hide_offline);
|
|
|
|
menuHideOffline.setChecked(this.mHideOfflineContacts);
|
2014-10-26 17:54:10 +00:00
|
|
|
mMenuSearchView = menu.findItem(R.id.action_search);
|
2014-09-27 09:37:02 +00:00
|
|
|
mMenuSearchView.setOnActionExpandListener(mOnActionExpandListener);
|
|
|
|
View mSearchView = mMenuSearchView.getActionView();
|
2014-07-11 21:44:59 +00:00
|
|
|
mSearchEditText = (EditText) mSearchView
|
2014-12-21 20:43:58 +00:00
|
|
|
.findViewById(R.id.search_field);
|
2014-07-11 21:44:59 +00:00
|
|
|
mSearchEditText.addTextChangedListener(mSearchTextWatcher);
|
2014-07-04 12:22:17 +00:00
|
|
|
if (getActionBar().getSelectedNavigationIndex() == 0) {
|
|
|
|
menuCreateConference.setVisible(false);
|
|
|
|
} else {
|
|
|
|
menuCreateContact.setVisible(false);
|
|
|
|
}
|
2014-09-27 09:37:02 +00:00
|
|
|
if (mInitialJid != null) {
|
|
|
|
mMenuSearchView.expandActionView();
|
|
|
|
mSearchEditText.append(mInitialJid);
|
|
|
|
filter(mInitialJid);
|
|
|
|
}
|
2016-02-27 09:25:31 +00:00
|
|
|
return super.onCreateOptionsMenu(menu);
|
2014-07-04 09:36:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2014-11-03 22:47:49 +00:00
|
|
|
case R.id.action_create_contact:
|
2014-11-15 23:20:20 +00:00
|
|
|
showCreateContactDialog(null,null);
|
2014-11-03 22:47:49 +00:00
|
|
|
return true;
|
|
|
|
case R.id.action_join_conference:
|
|
|
|
showJoinConferenceDialog(null);
|
|
|
|
return true;
|
|
|
|
case R.id.action_scan_qr_code:
|
|
|
|
new IntentIntegrator(this).initiateScan();
|
|
|
|
return true;
|
2015-01-21 16:24:02 +00:00
|
|
|
case R.id.action_hide_offline:
|
|
|
|
mHideOfflineContacts = !item.isChecked();
|
|
|
|
getPreferences().edit().putBoolean("hide_offline", mHideOfflineContacts).commit();
|
|
|
|
if (mSearchEditText != null) {
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
}
|
|
|
|
invalidateOptionsMenu();
|
2014-07-04 09:36:02 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-08-07 22:43:07 +00:00
|
|
|
@Override
|
2014-08-21 05:46:55 +00:00
|
|
|
public boolean onKeyUp(int keyCode, KeyEvent event) {
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_SEARCH && !event.isLongPress()) {
|
2014-08-07 22:43:07 +00:00
|
|
|
mOptionsMenu.findItem(R.id.action_search).expandActionView();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return super.onKeyUp(keyCode, event);
|
|
|
|
}
|
2014-07-02 14:13:25 +00:00
|
|
|
|
2014-11-03 21:47:07 +00:00
|
|
|
@Override
|
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
|
|
|
|
if ((requestCode & 0xFFFF) == IntentIntegrator.REQUEST_CODE) {
|
|
|
|
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
|
|
|
|
if (scanResult != null && scanResult.getFormatName() != null) {
|
|
|
|
String data = scanResult.getContents();
|
2014-11-04 08:35:36 +00:00
|
|
|
Invite invite = new Invite(data);
|
2014-11-03 22:47:49 +00:00
|
|
|
if (xmppConnectionServiceBound) {
|
2014-11-04 08:35:36 +00:00
|
|
|
invite.invite();
|
2014-11-16 21:23:42 +00:00
|
|
|
} else if (invite.getJid() != null) {
|
2014-11-03 22:47:49 +00:00
|
|
|
this.mPendingInvite = invite;
|
|
|
|
} else {
|
|
|
|
this.mPendingInvite = null;
|
|
|
|
}
|
2014-11-03 21:47:07 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
super.onActivityResult(requestCode, requestCode, intent);
|
2014-11-03 21:47:07 +00:00
|
|
|
}
|
|
|
|
|
2015-12-06 23:33:50 +00:00
|
|
|
private void askForContactsPermissions() {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
if (checkSelfPermission(Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
if (mRequestedContactsPermission.compareAndSet(false, true)) {
|
|
|
|
if (shouldShowRequestPermissionRationale(Manifest.permission.READ_CONTACTS)) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(R.string.sync_with_contacts);
|
|
|
|
builder.setMessage(R.string.sync_with_contacts_long);
|
2015-12-07 12:17:06 +00:00
|
|
|
builder.setPositiveButton(R.string.next, new OnClickListener() {
|
2015-12-06 23:33:50 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
requestPermissions(new String[]{Manifest.permission.READ_CONTACTS}, REQUEST_SYNC_CONTACTS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
} else {
|
|
|
|
requestPermissions(new String[]{Manifest.permission.READ_CONTACTS}, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
|
|
|
|
if (grantResults.length > 0)
|
|
|
|
if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
|
|
|
if (requestCode == REQUEST_SYNC_CONTACTS && xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.loadPhoneContacts();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-30 18:39:15 +00:00
|
|
|
@Override
|
2014-09-27 09:37:02 +00:00
|
|
|
protected void onBackendConnected() {
|
2014-07-10 11:19:42 +00:00
|
|
|
this.mActivatedAccounts.clear();
|
|
|
|
for (Account account : xmppConnectionService.getAccounts()) {
|
2014-11-15 16:09:02 +00:00
|
|
|
if (account.getStatus() != Account.State.DISABLED) {
|
2015-08-03 20:58:17 +00:00
|
|
|
if (Config.DOMAIN_LOCK != null) {
|
|
|
|
this.mActivatedAccounts.add(account.getJid().getLocalpart());
|
|
|
|
} else {
|
|
|
|
this.mActivatedAccounts.add(account.getJid().toBareJid().toString());
|
|
|
|
}
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-22 12:24:29 +00:00
|
|
|
final Intent intent = getIntent();
|
|
|
|
final ActionBar ab = getActionBar();
|
|
|
|
if (intent != null && intent.getBooleanExtra("init",false) && ab != null) {
|
|
|
|
ab.setDisplayShowHomeEnabled(false);
|
|
|
|
ab.setDisplayHomeAsUpEnabled(false);
|
|
|
|
ab.setHomeButtonEnabled(false);
|
|
|
|
}
|
2014-07-10 17:42:37 +00:00
|
|
|
this.mKnownHosts = xmppConnectionService.getKnownHosts();
|
2015-02-22 12:24:29 +00:00
|
|
|
this.mKnownConferenceHosts = xmppConnectionService.getKnownConferenceHosts();
|
2014-11-03 22:47:49 +00:00
|
|
|
if (this.mPendingInvite != null) {
|
2014-11-04 08:35:36 +00:00
|
|
|
mPendingInvite.invite();
|
2014-11-03 22:47:49 +00:00
|
|
|
this.mPendingInvite = null;
|
|
|
|
} else if (!handleIntent(getIntent())) {
|
2014-09-27 09:37:02 +00:00
|
|
|
if (mSearchEditText != null) {
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
} else {
|
|
|
|
filter(null);
|
|
|
|
}
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
setIntent(null);
|
2014-09-27 09:37:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 19:02:33 +00:00
|
|
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
|
|
|
Invite getInviteJellyBean(NdefRecord record) {
|
|
|
|
return new Invite(record.toUri());
|
|
|
|
}
|
|
|
|
|
2014-11-03 19:00:20 +00:00
|
|
|
protected boolean handleIntent(Intent intent) {
|
2014-11-03 22:47:49 +00:00
|
|
|
if (intent == null || intent.getAction() == null) {
|
2014-11-03 19:00:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
switch (intent.getAction()) {
|
2014-11-03 19:00:20 +00:00
|
|
|
case Intent.ACTION_SENDTO:
|
|
|
|
case Intent.ACTION_VIEW:
|
2014-11-04 12:27:54 +00:00
|
|
|
Log.d(Config.LOGTAG, "received uri=" + intent.getData());
|
|
|
|
return new Invite(intent.getData()).invite();
|
2014-11-03 19:00:20 +00:00
|
|
|
case NfcAdapter.ACTION_NDEF_DISCOVERED:
|
2014-11-04 12:14:29 +00:00
|
|
|
for (Parcelable message : getIntent().getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES)) {
|
|
|
|
if (message instanceof NdefMessage) {
|
|
|
|
Log.d(Config.LOGTAG, "received message=" + message);
|
2014-11-11 16:39:28 +00:00
|
|
|
for (NdefRecord record : ((NdefMessage) message).getRecords()) {
|
2014-11-04 12:14:29 +00:00
|
|
|
switch (record.getTnf()) {
|
2014-11-11 16:39:28 +00:00
|
|
|
case NdefRecord.TNF_WELL_KNOWN:
|
|
|
|
if (Arrays.equals(record.getType(), NdefRecord.RTD_URI)) {
|
|
|
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
|
|
|
return getInviteJellyBean(record).invite();
|
|
|
|
} else {
|
|
|
|
byte[] payload = record.getPayload();
|
|
|
|
if (payload[0] == 0) {
|
|
|
|
return new Invite(Uri.parse(new String(Arrays.copyOfRange(
|
2014-12-21 20:43:58 +00:00
|
|
|
payload, 1, payload.length)))).invite();
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
2014-11-04 12:14:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-04 08:30:03 +00:00
|
|
|
}
|
2014-11-03 19:00:20 +00:00
|
|
|
}
|
2014-09-27 09:37:02 +00:00
|
|
|
}
|
2014-11-04 12:27:54 +00:00
|
|
|
return false;
|
2014-09-27 09:37:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 23:20:20 +00:00
|
|
|
private boolean handleJid(Invite invite) {
|
2014-11-17 19:02:46 +00:00
|
|
|
List<Contact> contacts = xmppConnectionService.findContacts(invite.getJid());
|
2014-09-27 09:37:02 +00:00
|
|
|
if (contacts.size() == 0) {
|
2014-11-16 21:23:42 +00:00
|
|
|
showCreateContactDialog(invite.getJid().toString(),invite.getFingerprint());
|
2014-09-27 09:37:02 +00:00
|
|
|
return false;
|
|
|
|
} else if (contacts.size() == 1) {
|
2014-11-15 23:20:20 +00:00
|
|
|
Contact contact = contacts.get(0);
|
2014-11-16 21:23:42 +00:00
|
|
|
if (invite.getFingerprint() != null) {
|
|
|
|
if (contact.addOtrFingerprint(invite.getFingerprint())) {
|
2014-11-15 23:20:20 +00:00
|
|
|
Log.d(Config.LOGTAG,"added new fingerprint");
|
|
|
|
xmppConnectionService.syncRosterToDisk(contact.getAccount());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switchToConversation(contact);
|
2014-09-27 09:37:02 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if (mMenuSearchView != null) {
|
|
|
|
mMenuSearchView.expandActionView();
|
2014-11-03 22:47:49 +00:00
|
|
|
mSearchEditText.setText("");
|
2014-11-16 21:23:42 +00:00
|
|
|
mSearchEditText.append(invite.getJid().toString());
|
|
|
|
filter(invite.getJid().toString());
|
2014-09-27 09:37:02 +00:00
|
|
|
} else {
|
2014-11-16 21:23:42 +00:00
|
|
|
mInitialJid = invite.getJid().toString();
|
2014-09-27 09:37:02 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void filter(String needle) {
|
2014-07-26 13:44:13 +00:00
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
this.filterContacts(needle);
|
|
|
|
this.filterConferences(needle);
|
|
|
|
}
|
2014-07-14 09:47:42 +00:00
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
|
|
|
protected void filterContacts(String needle) {
|
|
|
|
this.contacts.clear();
|
|
|
|
for (Account account : xmppConnectionService.getAccounts()) {
|
2014-11-15 16:09:02 +00:00
|
|
|
if (account.getStatus() != Account.State.DISABLED) {
|
2014-07-07 07:32:10 +00:00
|
|
|
for (Contact contact : account.getRoster().getContacts()) {
|
2016-01-17 21:28:38 +00:00
|
|
|
Presence p = contact.getPresences().getMostAvailablePresence();
|
|
|
|
Presence.Status s = p == null ? Presence.Status.OFFLINE : p.getStatus();
|
2015-01-21 16:24:02 +00:00
|
|
|
if (contact.showInRoster() && contact.match(needle)
|
|
|
|
&& (!this.mHideOfflineContacts
|
2016-01-17 21:28:38 +00:00
|
|
|
|| s.compareTo(Presence.Status.OFFLINE) < 0)) {
|
2014-07-07 07:32:10 +00:00
|
|
|
this.contacts.add(contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Collections.sort(this.contacts);
|
|
|
|
mContactsAdapter.notifyDataSetChanged();
|
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
protected void filterConferences(String needle) {
|
|
|
|
this.conferences.clear();
|
|
|
|
for (Account account : xmppConnectionService.getAccounts()) {
|
2014-11-15 16:09:02 +00:00
|
|
|
if (account.getStatus() != Account.State.DISABLED) {
|
2014-07-15 15:11:43 +00:00
|
|
|
for (Bookmark bookmark : account.getBookmarks()) {
|
2014-07-14 09:47:42 +00:00
|
|
|
if (bookmark.match(needle)) {
|
|
|
|
this.conferences.add(bookmark);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Collections.sort(this.conferences);
|
|
|
|
mConferenceAdapter.notifyDataSetChanged();
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
|
|
|
private void onTabChanged() {
|
2014-07-09 21:13:23 +00:00
|
|
|
invalidateOptionsMenu();
|
2014-07-07 07:32:10 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public void OnUpdateBlocklist(final Status status) {
|
2015-02-17 13:18:35 +00:00
|
|
|
refreshUi();
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
|
2015-02-17 13:18:35 +00:00
|
|
|
@Override
|
|
|
|
protected void refreshUiReal() {
|
|
|
|
if (mSearchEditText != null) {
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
|
|
|
|
2014-07-07 07:32:10 +00:00
|
|
|
public static class MyListFragment extends ListFragment {
|
|
|
|
private AdapterView.OnItemClickListener mOnItemClickListener;
|
2014-07-14 09:47:42 +00:00
|
|
|
private int mResContextMenu;
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public void setContextMenu(final int res) {
|
2014-07-14 09:47:42 +00:00
|
|
|
this.mResContextMenu = res;
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
|
|
|
@Override
|
2014-12-21 20:43:58 +00:00
|
|
|
public void onListItemClick(final ListView l, final View v, final int position, final long id) {
|
2014-07-07 07:32:10 +00:00
|
|
|
if (mOnItemClickListener != null) {
|
|
|
|
mOnItemClickListener.onItemClick(l, v, position, id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOnListItemClickListener(AdapterView.OnItemClickListener l) {
|
|
|
|
this.mOnItemClickListener = l;
|
|
|
|
}
|
2014-06-30 18:39:15 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
@Override
|
2014-12-21 20:43:58 +00:00
|
|
|
public void onViewCreated(final View view, final Bundle savedInstanceState) {
|
2014-07-09 23:55:19 +00:00
|
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
registerForContextMenu(getListView());
|
2014-09-20 22:45:07 +00:00
|
|
|
getListView().setFastScrollEnabled(true);
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-21 20:43:58 +00:00
|
|
|
public void onCreateContextMenu(final ContextMenu menu, final View v,
|
|
|
|
final ContextMenuInfo menuInfo) {
|
2014-07-09 23:55:19 +00:00
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
2014-12-21 20:43:58 +00:00
|
|
|
final StartConversationActivity activity = (StartConversationActivity) getActivity();
|
2014-07-15 15:11:43 +00:00
|
|
|
activity.getMenuInflater().inflate(mResContextMenu, menu);
|
2014-12-21 20:43:58 +00:00
|
|
|
final AdapterView.AdapterContextMenuInfo acmi = (AdapterContextMenuInfo) menuInfo;
|
2014-07-14 09:47:42 +00:00
|
|
|
if (mResContextMenu == R.menu.conference_context) {
|
|
|
|
activity.conference_context_id = acmi.position;
|
2016-02-01 11:23:30 +00:00
|
|
|
} else if (mResContextMenu == R.menu.contact_context){
|
2014-07-14 09:47:42 +00:00
|
|
|
activity.contact_context_id = acmi.position;
|
2014-12-21 20:43:58 +00:00
|
|
|
final Blockable contact = (Contact) activity.contacts.get(acmi.position);
|
|
|
|
final MenuItem blockUnblockItem = menu.findItem(R.id.context_contact_block_unblock);
|
2015-05-19 06:31:56 +00:00
|
|
|
XmppConnection xmpp = contact.getAccount().getXmppConnection();
|
|
|
|
if (xmpp != null && xmpp.getFeatures().blocking()) {
|
2014-12-21 20:43:58 +00:00
|
|
|
if (contact.isBlocked()) {
|
|
|
|
blockUnblockItem.setTitle(R.string.unblock_contact);
|
|
|
|
} else {
|
|
|
|
blockUnblockItem.setTitle(R.string.block_contact);
|
|
|
|
}
|
2015-05-19 06:31:56 +00:00
|
|
|
} else {
|
|
|
|
blockUnblockItem.setVisible(false);
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
2014-07-14 09:47:42 +00:00
|
|
|
}
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-21 20:43:58 +00:00
|
|
|
public boolean onContextItemSelected(final MenuItem item) {
|
2014-07-16 22:03:37 +00:00
|
|
|
StartConversationActivity activity = (StartConversationActivity) getActivity();
|
2014-07-11 21:44:59 +00:00
|
|
|
switch (item.getItemId()) {
|
2014-11-03 22:47:49 +00:00
|
|
|
case R.id.context_start_conversation:
|
|
|
|
activity.openConversationForContact();
|
|
|
|
break;
|
|
|
|
case R.id.context_contact_details:
|
|
|
|
activity.openDetailsForContact();
|
|
|
|
break;
|
2014-12-21 20:43:58 +00:00
|
|
|
case R.id.context_contact_block_unblock:
|
|
|
|
activity.toggleContactBlock();
|
|
|
|
break;
|
2014-11-03 22:47:49 +00:00
|
|
|
case R.id.context_delete_contact:
|
|
|
|
activity.deleteContact();
|
|
|
|
break;
|
|
|
|
case R.id.context_join_conference:
|
|
|
|
activity.openConversationForBookmark();
|
|
|
|
break;
|
|
|
|
case R.id.context_delete_conference:
|
|
|
|
activity.deleteConference();
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
|
2014-11-16 01:10:29 +00:00
|
|
|
private class Invite extends XmppUri {
|
2014-11-04 08:35:36 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public Invite(final Uri uri) {
|
2014-11-16 01:10:29 +00:00
|
|
|
super(uri);
|
2014-11-04 08:35:36 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
public Invite(final String uri) {
|
2014-11-16 01:10:29 +00:00
|
|
|
super(uri);
|
2014-11-04 08:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
boolean invite() {
|
|
|
|
if (jid != null) {
|
|
|
|
if (muc) {
|
|
|
|
showJoinConferenceDialog(jid);
|
|
|
|
} else {
|
2014-11-15 23:20:20 +00:00
|
|
|
return handleJid(this);
|
2014-11-04 08:35:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
}
|
2014-06-30 18:39:15 +00:00
|
|
|
}
|