2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-02-04 20:44:16 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-02-04 21:26:46 +00:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-01-28 18:21:54 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
2015-10-09 11:37:08 +00:00
|
|
|
import android.security.KeyChain;
|
|
|
|
import android.security.KeyChainAliasCallback;
|
|
|
|
import android.util.Log;
|
2014-08-20 09:32:49 +00:00
|
|
|
import android.view.ContextMenu;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
2014-01-28 18:21:54 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.AdapterView;
|
2014-08-20 09:32:49 +00:00
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
2014-01-28 18:21:54 +00:00
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ListView;
|
2015-10-09 11:37:08 +00:00
|
|
|
import android.widget.Toast;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2015-07-20 12:26:29 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-08-05 16:52:34 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2015-10-09 11:37:08 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
|
|
|
|
import eu.siacs.conversations.ui.adapter.AccountAdapter;
|
|
|
|
|
2015-10-09 11:37:08 +00:00
|
|
|
public class ManageAccountActivity extends XmppActivity implements OnAccountUpdate, KeyChainAliasCallback, XmppConnectionService.OnAccountCreated {
|
2014-07-12 11:42:17 +00:00
|
|
|
|
2014-08-20 09:32:49 +00:00
|
|
|
protected Account selectedAccount = null;
|
2014-07-12 11:42:17 +00:00
|
|
|
|
2015-01-03 12:36:48 +00:00
|
|
|
protected final List<Account> accountList = new ArrayList<>();
|
2014-01-28 18:21:54 +00:00
|
|
|
protected ListView accountListView;
|
2014-07-31 13:09:34 +00:00
|
|
|
protected AccountAdapter mAccountAdapter;
|
2015-01-03 12:36:48 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountUpdate() {
|
2015-02-17 13:18:35 +00:00
|
|
|
refreshUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void refreshUiReal() {
|
2015-01-03 12:36:48 +00:00
|
|
|
synchronized (this.accountList) {
|
2014-02-04 14:09:50 +00:00
|
|
|
accountList.clear();
|
|
|
|
accountList.addAll(xmppConnectionService.getAccounts());
|
|
|
|
}
|
2015-02-17 13:18:35 +00:00
|
|
|
invalidateOptionsMenu();
|
|
|
|
mAccountAdapter.notifyDataSetChanged();
|
2015-01-03 12:36:48 +00:00
|
|
|
}
|
2014-07-12 11:42:17 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
setContentView(R.layout.manage_accounts);
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
accountListView = (ListView) findViewById(R.id.account_list);
|
2014-07-31 13:09:34 +00:00
|
|
|
this.mAccountAdapter = new AccountAdapter(this, accountList);
|
|
|
|
accountListView.setAdapter(this.mAccountAdapter);
|
2014-01-28 18:21:54 +00:00
|
|
|
accountListView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-02-04 14:09:50 +00:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View view,
|
2015-10-09 11:37:08 +00:00
|
|
|
int position, long arg3) {
|
2014-09-20 14:02:49 +00:00
|
|
|
switchToAccount(accountList.get(position));
|
2014-02-04 20:44:16 +00:00
|
|
|
}
|
|
|
|
});
|
2014-08-20 09:32:49 +00:00
|
|
|
registerForContextMenu(accountListView);
|
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
|
2014-08-20 09:32:49 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v,
|
|
|
|
ContextMenuInfo menuInfo) {
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
2014-10-15 17:32:12 +00:00
|
|
|
ManageAccountActivity.this.getMenuInflater().inflate(
|
|
|
|
R.menu.manageaccounts_context, menu);
|
2014-08-20 09:32:49 +00:00
|
|
|
AdapterView.AdapterContextMenuInfo acmi = (AdapterContextMenuInfo) menuInfo;
|
|
|
|
this.selectedAccount = accountList.get(acmi.position);
|
|
|
|
if (this.selectedAccount.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
menu.findItem(R.id.mgmt_account_disable).setVisible(false);
|
|
|
|
menu.findItem(R.id.mgmt_account_announce_pgp).setVisible(false);
|
|
|
|
menu.findItem(R.id.mgmt_account_publish_avatar).setVisible(false);
|
|
|
|
} else {
|
|
|
|
menu.findItem(R.id.mgmt_account_enable).setVisible(false);
|
2015-08-05 16:52:34 +00:00
|
|
|
menu.findItem(R.id.mgmt_account_announce_pgp).setVisible(!Config.HIDE_PGP_IN_UI);
|
2014-08-20 09:32:49 +00:00
|
|
|
}
|
2014-11-09 15:57:22 +00:00
|
|
|
menu.setHeaderTitle(this.selectedAccount.getJid().toBareJid().toString());
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-07-12 11:42:17 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
this.accountList.clear();
|
|
|
|
this.accountList.addAll(xmppConnectionService.getAccounts());
|
2014-07-31 13:09:34 +00:00
|
|
|
mAccountAdapter.notifyDataSetChanged();
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.manageaccounts, menu);
|
2015-01-03 12:36:48 +00:00
|
|
|
MenuItem enableAll = menu.findItem(R.id.action_enable_all);
|
|
|
|
if (!accountsLeftToEnable()) {
|
|
|
|
enableAll.setVisible(false);
|
|
|
|
}
|
|
|
|
MenuItem disableAll = menu.findItem(R.id.action_disable_all);
|
|
|
|
if (!accountsLeftToDisable()) {
|
|
|
|
disableAll.setVisible(false);
|
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
|
2014-08-20 09:32:49 +00:00
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.mgmt_account_publish_avatar:
|
|
|
|
publishAvatar(selectedAccount);
|
|
|
|
return true;
|
|
|
|
case R.id.mgmt_account_disable:
|
|
|
|
disableAccount(selectedAccount);
|
|
|
|
return true;
|
|
|
|
case R.id.mgmt_account_enable:
|
|
|
|
enableAccount(selectedAccount);
|
|
|
|
return true;
|
|
|
|
case R.id.mgmt_account_delete:
|
|
|
|
deleteAccount(selectedAccount);
|
|
|
|
return true;
|
|
|
|
case R.id.mgmt_account_announce_pgp:
|
|
|
|
publishOpenPGPPublicKey(selectedAccount);
|
2014-10-26 17:30:58 +00:00
|
|
|
return true;
|
2014-08-20 09:32:49 +00:00
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2015-01-03 12:36:48 +00:00
|
|
|
case R.id.action_add_account:
|
|
|
|
startActivity(new Intent(getApplicationContext(),
|
|
|
|
EditAccountActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_disable_all:
|
|
|
|
disableAllAccounts();
|
|
|
|
break;
|
|
|
|
case R.id.action_enable_all:
|
|
|
|
enableAllAccounts();
|
|
|
|
break;
|
2015-10-09 11:37:08 +00:00
|
|
|
case R.id.action_add_account_from_key:
|
|
|
|
addAccountFromKey();
|
|
|
|
break;
|
2015-01-03 12:36:48 +00:00
|
|
|
default:
|
|
|
|
break;
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-01-28 22:15:30 +00:00
|
|
|
|
2014-05-31 15:50:09 +00:00
|
|
|
@Override
|
|
|
|
public boolean onNavigateUp() {
|
|
|
|
if (xmppConnectionService.getConversations().size() == 0) {
|
2014-07-31 13:09:34 +00:00
|
|
|
Intent contactsIntent = new Intent(this,
|
|
|
|
StartConversationActivity.class);
|
2014-05-31 16:53:23 +00:00
|
|
|
contactsIntent.setFlags(
|
2014-07-12 11:42:17 +00:00
|
|
|
// if activity exists in stack, pop the stack and go back to it
|
2014-05-31 16:53:23 +00:00
|
|
|
Intent.FLAG_ACTIVITY_CLEAR_TOP |
|
|
|
|
// otherwise, make a new task for it
|
2014-07-12 11:42:17 +00:00
|
|
|
Intent.FLAG_ACTIVITY_NEW_TASK |
|
|
|
|
// don't use the new activity animation; finish
|
|
|
|
// animation runs instead
|
|
|
|
Intent.FLAG_ACTIVITY_NO_ANIMATION);
|
2014-05-31 16:53:23 +00:00
|
|
|
startActivity(contactsIntent);
|
2014-05-31 15:50:09 +00:00
|
|
|
finish();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return super.onNavigateUp();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 16:19:40 +00:00
|
|
|
public void onClickTglAccountState(Account account, boolean enable) {
|
|
|
|
if (enable) {
|
2015-04-01 10:14:05 +00:00
|
|
|
enableAccount(account);
|
|
|
|
} else {
|
|
|
|
disableAccount(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-09 11:37:08 +00:00
|
|
|
private void addAccountFromKey() {
|
|
|
|
KeyChain.choosePrivateKeyAlias(this, this, null, null, null, -1, null);
|
|
|
|
}
|
|
|
|
|
2014-08-20 09:32:49 +00:00
|
|
|
private void publishAvatar(Account account) {
|
|
|
|
Intent intent = new Intent(getApplicationContext(),
|
|
|
|
PublishProfilePictureActivity.class);
|
2014-11-06 19:45:38 +00:00
|
|
|
intent.putExtra("account", account.getJid().toString());
|
2014-08-20 09:32:49 +00:00
|
|
|
startActivity(intent);
|
2014-02-04 20:44:16 +00:00
|
|
|
}
|
2014-07-12 11:42:17 +00:00
|
|
|
|
2015-01-03 12:36:48 +00:00
|
|
|
private void disableAllAccounts() {
|
|
|
|
List<Account> list = new ArrayList<>();
|
|
|
|
synchronized (this.accountList) {
|
|
|
|
for (Account account : this.accountList) {
|
|
|
|
if (!account.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
list.add(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(Account account : list) {
|
|
|
|
disableAccount(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean accountsLeftToDisable() {
|
|
|
|
synchronized (this.accountList) {
|
|
|
|
for (Account account : this.accountList) {
|
|
|
|
if (!account.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean accountsLeftToEnable() {
|
|
|
|
synchronized (this.accountList) {
|
|
|
|
for (Account account : this.accountList) {
|
|
|
|
if (account.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void enableAllAccounts() {
|
|
|
|
List<Account> list = new ArrayList<>();
|
|
|
|
synchronized (this.accountList) {
|
|
|
|
for (Account account : this.accountList) {
|
|
|
|
if (account.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
list.add(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(Account account : list) {
|
|
|
|
enableAccount(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-20 09:32:49 +00:00
|
|
|
private void disableAccount(Account account) {
|
|
|
|
account.setOption(Account.OPTION_DISABLED, true);
|
|
|
|
xmppConnectionService.updateAccount(account);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void enableAccount(Account account) {
|
|
|
|
account.setOption(Account.OPTION_DISABLED, false);
|
|
|
|
xmppConnectionService.updateAccount(account);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void publishOpenPGPPublicKey(Account account) {
|
2014-10-08 14:37:43 +00:00
|
|
|
if (ManageAccountActivity.this.hasPgp()) {
|
2014-08-20 09:32:49 +00:00
|
|
|
announcePgp(account, null);
|
|
|
|
} else {
|
|
|
|
this.showInstallPgpDialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void deleteAccount(final Account account) {
|
2014-10-15 17:32:12 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(
|
|
|
|
ManageAccountActivity.this);
|
2014-08-20 09:32:49 +00:00
|
|
|
builder.setTitle(getString(R.string.mgmt_account_are_you_sure));
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setMessage(getString(R.string.mgmt_account_delete_confirm_text));
|
|
|
|
builder.setPositiveButton(getString(R.string.delete),
|
|
|
|
new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
xmppConnectionService.deleteAccount(account);
|
|
|
|
selectedAccount = null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.create().show();
|
2014-02-04 20:44:16 +00:00
|
|
|
}
|
2014-07-12 11:42:17 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (resultCode == RESULT_OK) {
|
2014-02-27 23:22:56 +00:00
|
|
|
if (requestCode == REQUEST_ANNOUNCE_PGP) {
|
2014-08-20 09:32:49 +00:00
|
|
|
announcePgp(selectedAccount, null);
|
2014-05-08 14:52:19 +00:00
|
|
|
}
|
2014-07-12 11:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-09 11:37:08 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void alias(String alias) {
|
|
|
|
if (alias != null) {
|
|
|
|
xmppConnectionService.createAccountFromKey(alias, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountCreated(Account account) {
|
|
|
|
switchToAccount(account, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void informUser(final int r) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(ManageAccountActivity.this,r,Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|