2014-06-30 18:39:15 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-07-07 07:32:10 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
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-07-02 14:13:25 +00:00
|
|
|
import android.os.Bundle;
|
|
|
|
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-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-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;
|
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-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;
|
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-07-10 11:19:42 +00:00
|
|
|
import eu.siacs.conversations.utils.Validator;
|
2014-07-02 14:13:25 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
public class StartConversationActivity extends XmppActivity {
|
2014-06-30 18:39:15 +00:00
|
|
|
|
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();
|
|
|
|
private List<ListItem> contacts = new ArrayList<ListItem>();
|
|
|
|
private ArrayAdapter<ListItem> mContactsAdapter;
|
|
|
|
|
|
|
|
private MyListFragment mConferenceListFragment = new MyListFragment();
|
|
|
|
private List<ListItem> conferences = new ArrayList<ListItem>();
|
|
|
|
private ArrayAdapter<ListItem> mConferenceAdapter;
|
2014-07-11 21:44:59 +00:00
|
|
|
|
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-07-02 14:13:25 +00:00
|
|
|
|
2014-08-07 22:43:07 +00:00
|
|
|
private Menu mOptionsMenu;
|
2014-07-11 21:44:59 +00:00
|
|
|
private EditText mSearchEditText;
|
2014-07-15 15:11:43 +00:00
|
|
|
|
2014-07-14 09:47:42 +00:00
|
|
|
public int conference_context_id;
|
|
|
|
public int contact_context_id;
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
private TabListener mTabListener = new TabListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
|
2014-07-07 07:32:10 +00:00
|
|
|
return;
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabSelected(Tab tab, FragmentTransaction ft) {
|
|
|
|
mViewPager.setCurrentItem(tab.getPosition());
|
2014-07-07 07:32:10 +00:00
|
|
|
onTabChanged();
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabReselected(Tab tab, FragmentTransaction ft) {
|
2014-07-07 07:32:10 +00:00
|
|
|
return;
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private ViewPager.SimpleOnPageChangeListener mOnPageChangeListener = new ViewPager.SimpleOnPageChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onPageSelected(int position) {
|
|
|
|
getActionBar().setSelectedNavigationItem(position);
|
2014-07-07 07:32:10 +00:00
|
|
|
onTabChanged();
|
|
|
|
}
|
|
|
|
};
|
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;
|
|
|
|
}
|
|
|
|
};
|
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,
|
|
|
|
int after) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before,
|
|
|
|
int count) {
|
|
|
|
}
|
|
|
|
};
|
2014-07-18 13:35:31 +00:00
|
|
|
private OnRosterUpdate onRosterUpdate = new OnRosterUpdate() {
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-07-18 13:35:31 +00:00
|
|
|
@Override
|
|
|
|
public void onRosterUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-07-18 13:35:31 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-07-30 19:26:33 +00:00
|
|
|
if (mSearchEditText != null) {
|
|
|
|
filter(mSearchEditText.getText().toString());
|
|
|
|
}
|
2014-07-18 13:35:31 +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)
|
|
|
|
.setTabListener(mTabListener);
|
|
|
|
mConferencesTab = actionBar.newTab().setText(R.string.conferences)
|
|
|
|
.setTabListener(mTabListener);
|
|
|
|
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-08-21 05:46:55 +00:00
|
|
|
mConferenceAdapter = new ListItemAdapter(getApplicationContext(),
|
|
|
|
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
|
|
|
|
.setOnListItemClickListener(new OnItemClickListener() {
|
2014-07-14 09:47:42 +00:00
|
|
|
|
2014-07-15 15:11:43 +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-08-21 05:46:55 +00:00
|
|
|
mContactsAdapter = new ListItemAdapter(getApplicationContext(),
|
|
|
|
contacts);
|
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
|
|
|
|
.setOnListItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> arg0, View arg1,
|
|
|
|
int position, long arg3) {
|
2014-07-09 23:55:19 +00:00
|
|
|
openConversationForContact(position);
|
2014-07-07 07:32:10 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
2014-08-21 05:46:55 +00:00
|
|
|
|
2014-07-18 13:35:31 +00:00
|
|
|
@Override
|
|
|
|
public void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
xmppConnectionService.removeOnRosterUpdateListener();
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
protected void openConversationForContact(int position) {
|
|
|
|
Contact contact = (Contact) contacts.get(position);
|
|
|
|
Conversation conversation = xmppConnectionService
|
|
|
|
.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);
|
2014-07-15 15:11:43 +00:00
|
|
|
Conversation conversation = xmppConnectionService
|
|
|
|
.findOrCreateConversation(bookmark.getAccount(),
|
|
|
|
bookmark.getJid(), 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);
|
|
|
|
}
|
2014-07-15 12:32:19 +00:00
|
|
|
if (!bookmark.autojoin()) {
|
|
|
|
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-07-14 09:47:42 +00:00
|
|
|
protected void deleteContact() {
|
|
|
|
int position = contact_context_id;
|
2014-07-15 17:41:58 +00:00
|
|
|
final Contact contact = (Contact) contacts.get(position);
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
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,
|
|
|
|
contact.getJid()));
|
|
|
|
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-08-21 05:46:55 +00:00
|
|
|
|
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,
|
|
|
|
bookmark.getJid()));
|
|
|
|
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-07-10 11:19:42 +00:00
|
|
|
protected void showCreateContactDialog() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(R.string.create_contact);
|
2014-07-11 21:44:59 +00:00
|
|
|
View dialogView = getLayoutInflater().inflate(
|
|
|
|
R.layout.create_contact_dialog, null);
|
2014-07-10 11:19:42 +00:00
|
|
|
final Spinner spinner = (Spinner) dialogView.findViewById(R.id.account);
|
2014-07-11 21:44:59 +00:00
|
|
|
final AutoCompleteTextView jid = (AutoCompleteTextView) dialogView
|
|
|
|
.findViewById(R.id.jid);
|
|
|
|
jid.setAdapter(new KnownHostsAdapter(this,
|
|
|
|
android.R.layout.simple_list_item_1, mKnownHosts));
|
2014-07-10 11:19:42 +00:00
|
|
|
populateAccountSpinner(spinner);
|
|
|
|
builder.setView(dialogView);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.create, 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
|
|
|
|
public void onClick(View v) {
|
2014-08-21 05:46:55 +00:00
|
|
|
if (!xmppConnectionServiceBound) {
|
|
|
|
return;
|
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
if (Validator.isValidJid(jid.getText().toString())) {
|
|
|
|
String accountJid = (String) spinner
|
|
|
|
.getSelectedItem();
|
|
|
|
String contactJid = jid.getText().toString();
|
|
|
|
Account account = xmppConnectionService
|
|
|
|
.findAccountByJid(accountJid);
|
|
|
|
Contact contact = account.getRoster().getContact(
|
|
|
|
contactJid);
|
|
|
|
if (contact.showInRoster()) {
|
|
|
|
jid.setError(getString(R.string.contact_already_exists));
|
|
|
|
} else {
|
|
|
|
xmppConnectionService.createContact(contact);
|
|
|
|
switchToConversation(contact);
|
|
|
|
dialog.dismiss();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
jid.setError(getString(R.string.invalid_jid));
|
|
|
|
}
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
});
|
|
|
|
|
2014-07-10 11:19:42 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-07-11 17:48:41 +00:00
|
|
|
protected void showJoinConferenceDialog() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(R.string.join_conference);
|
2014-07-11 21:44:59 +00:00
|
|
|
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-07-11 21:44:59 +00:00
|
|
|
final AutoCompleteTextView jid = (AutoCompleteTextView) dialogView
|
|
|
|
.findViewById(R.id.jid);
|
|
|
|
jid.setAdapter(new KnownHostsAdapter(this,
|
|
|
|
android.R.layout.simple_list_item_1, mKnownConferenceHosts));
|
2014-07-11 17:48:41 +00:00
|
|
|
populateAccountSpinner(spinner);
|
2014-07-15 15:11:43 +00:00
|
|
|
final CheckBox bookmarkCheckBox = (CheckBox) dialogView
|
|
|
|
.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
|
|
|
|
public void onClick(View v) {
|
2014-08-21 05:46:55 +00:00
|
|
|
if (!xmppConnectionServiceBound) {
|
|
|
|
return;
|
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
if (Validator.isValidJid(jid.getText().toString())) {
|
|
|
|
String accountJid = (String) spinner
|
|
|
|
.getSelectedItem();
|
|
|
|
String conferenceJid = jid.getText().toString();
|
|
|
|
Account account = xmppConnectionService
|
|
|
|
.findAccountByJid(accountJid);
|
2014-07-15 12:32:19 +00:00
|
|
|
if (bookmarkCheckBox.isChecked()) {
|
|
|
|
if (account.hasBookmarkFor(conferenceJid)) {
|
|
|
|
jid.setError(getString(R.string.bookmark_already_exists));
|
|
|
|
} else {
|
2014-07-15 15:11:43 +00:00
|
|
|
Bookmark bookmark = new Bookmark(account,
|
|
|
|
conferenceJid);
|
2014-07-15 12:32:19 +00:00
|
|
|
bookmark.setAutojoin(true);
|
|
|
|
account.getBookmarks().add(bookmark);
|
2014-07-15 15:11:43 +00:00
|
|
|
xmppConnectionService
|
|
|
|
.pushBookmarks(account);
|
2014-07-15 12:32:19 +00:00
|
|
|
Conversation conversation = xmppConnectionService
|
|
|
|
.findOrCreateConversation(account,
|
|
|
|
conferenceJid, true);
|
|
|
|
conversation.setBookmark(bookmark);
|
2014-07-15 17:41:58 +00:00
|
|
|
if (!conversation.getMucOptions().online()) {
|
2014-08-21 05:46:55 +00:00
|
|
|
xmppConnectionService
|
|
|
|
.joinMuc(conversation);
|
2014-07-15 17:41:58 +00:00
|
|
|
}
|
2014-07-15 15:11:43 +00:00
|
|
|
switchToConversation(conversation);
|
2014-07-15 12:32:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Conversation conversation = xmppConnectionService
|
2014-07-15 15:11:43 +00:00
|
|
|
.findOrCreateConversation(account,
|
|
|
|
conferenceJid, true);
|
2014-07-15 17:41:58 +00:00
|
|
|
if (!conversation.getMucOptions().online()) {
|
|
|
|
xmppConnectionService.joinMuc(conversation);
|
|
|
|
}
|
2014-07-15 12:32:19 +00:00
|
|
|
switchToConversation(conversation);
|
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
} else {
|
|
|
|
jid.setError(getString(R.string.invalid_jid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-07-11 17:48:41 +00:00
|
|
|
}
|
2014-07-11 21:44:59 +00:00
|
|
|
|
2014-07-10 11:19:42 +00:00
|
|
|
protected void switchToConversation(Contact contact) {
|
2014-07-11 21:44:59 +00:00
|
|
|
Conversation conversation = xmppConnectionService
|
|
|
|
.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
|
|
|
|
2014-07-10 11:19:42 +00:00
|
|
|
private void populateAccountSpinner(Spinner spinner) {
|
2014-07-11 21:44:59 +00:00
|
|
|
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
|
|
|
|
android.R.layout.simple_spinner_item, mActivatedAccounts);
|
2014-07-10 11:19:42 +00:00
|
|
|
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
|
|
|
spinner.setAdapter(adapter);
|
|
|
|
}
|
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);
|
2014-07-07 07:32:10 +00:00
|
|
|
MenuItem menuCreateContact = (MenuItem) menu
|
|
|
|
.findItem(R.id.action_create_contact);
|
|
|
|
MenuItem menuCreateConference = (MenuItem) menu
|
2014-07-11 17:48:41 +00:00
|
|
|
.findItem(R.id.action_join_conference);
|
2014-07-11 21:44:59 +00:00
|
|
|
MenuItem menuSearchView = (MenuItem) menu.findItem(R.id.action_search);
|
|
|
|
menuSearchView.setOnActionExpandListener(mOnActionExpandListener);
|
|
|
|
View mSearchView = menuSearchView.getActionView();
|
|
|
|
mSearchEditText = (EditText) mSearchView
|
|
|
|
.findViewById(R.id.search_field);
|
|
|
|
mSearchEditText.addTextChangedListener(mSearchTextWatcher);
|
2014-07-04 12:22:17 +00:00
|
|
|
if (getActionBar().getSelectedNavigationIndex() == 0) {
|
|
|
|
menuCreateConference.setVisible(false);
|
|
|
|
} else {
|
|
|
|
menuCreateContact.setVisible(false);
|
|
|
|
}
|
2014-07-04 09:36:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2014-07-10 11:19:42 +00:00
|
|
|
case R.id.action_create_contact:
|
|
|
|
showCreateContactDialog();
|
2014-07-04 09:36:02 +00:00
|
|
|
break;
|
2014-07-11 17:48:41 +00:00
|
|
|
case R.id.action_join_conference:
|
|
|
|
showJoinConferenceDialog();
|
|
|
|
break;
|
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-06-30 18:39:15 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
2014-08-21 05:46:55 +00:00
|
|
|
xmppConnectionService.setOnRosterUpdateListener(this.onRosterUpdate);
|
2014-07-11 21:44:59 +00:00
|
|
|
if (mSearchEditText != null) {
|
2014-07-14 09:47:42 +00:00
|
|
|
filter(mSearchEditText.getText().toString());
|
2014-07-11 21:44:59 +00:00
|
|
|
} else {
|
2014-07-14 09:47:42 +00:00
|
|
|
filter(null);
|
2014-07-11 21:44:59 +00:00
|
|
|
}
|
2014-07-10 11:19:42 +00:00
|
|
|
this.mActivatedAccounts.clear();
|
|
|
|
for (Account account : xmppConnectionService.getAccounts()) {
|
|
|
|
if (account.getStatus() != Account.STATUS_DISABLED) {
|
|
|
|
this.mActivatedAccounts.add(account.getJid());
|
|
|
|
}
|
|
|
|
}
|
2014-07-10 17:42:37 +00:00
|
|
|
this.mKnownHosts = xmppConnectionService.getKnownHosts();
|
2014-07-11 21:44:59 +00:00
|
|
|
this.mKnownConferenceHosts = xmppConnectionService
|
|
|
|
.getKnownConferenceHosts();
|
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()) {
|
|
|
|
if (account.getStatus() != Account.STATUS_DISABLED) {
|
|
|
|
for (Contact contact : account.getRoster().getContacts()) {
|
|
|
|
if (contact.showInRoster() && contact.match(needle)) {
|
|
|
|
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()) {
|
|
|
|
if (account.getStatus() != Account.STATUS_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
|
|
|
}
|
|
|
|
|
|
|
|
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-07-14 09:47:42 +00:00
|
|
|
public void setContextMenu(int res) {
|
|
|
|
this.mResContextMenu = res;
|
|
|
|
}
|
2014-07-07 07:32:10 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onListItemClick(ListView l, View v, int position, long id) {
|
|
|
|
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
|
|
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
registerForContextMenu(getListView());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v,
|
|
|
|
ContextMenuInfo menuInfo) {
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
2014-07-16 22:03:37 +00:00
|
|
|
StartConversationActivity activity = (StartConversationActivity) getActivity();
|
2014-07-15 15:11:43 +00:00
|
|
|
activity.getMenuInflater().inflate(mResContextMenu, menu);
|
2014-07-09 23:55:19 +00:00
|
|
|
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;
|
|
|
|
} else {
|
|
|
|
activity.contact_context_id = acmi.position;
|
|
|
|
}
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(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-07-09 23:55:19 +00:00
|
|
|
case R.id.context_start_conversation:
|
2014-07-14 09:47:42 +00:00
|
|
|
activity.openConversationForContact();
|
2014-07-09 23:55:19 +00:00
|
|
|
break;
|
|
|
|
case R.id.context_contact_details:
|
2014-07-14 09:47:42 +00:00
|
|
|
activity.openDetailsForContact();
|
2014-07-09 23:55:19 +00:00
|
|
|
break;
|
|
|
|
case R.id.context_delete_contact:
|
2014-07-14 09:47:42 +00:00
|
|
|
activity.deleteContact();
|
|
|
|
break;
|
|
|
|
case R.id.context_join_conference:
|
|
|
|
activity.openConversationForBookmark();
|
2014-07-09 23:55:19 +00:00
|
|
|
break;
|
2014-07-15 12:32:19 +00:00
|
|
|
case R.id.context_delete_conference:
|
|
|
|
activity.deleteConference();
|
2014-07-09 23:55:19 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-06-30 18:39:15 +00:00
|
|
|
}
|