AccountSelectActivity.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.ui.activity;
  19. import java.util.HashMap;
  20. import java.util.LinkedList;
  21. import java.util.List;
  22. import java.util.Map;
  23. import android.accounts.Account;
  24. import android.accounts.AccountManager;
  25. import android.accounts.AccountManagerCallback;
  26. import android.accounts.AccountManagerFuture;
  27. import android.content.Context;
  28. import android.content.Intent;
  29. import android.os.Bundle;
  30. import android.os.Handler;
  31. import android.view.ContextMenu;
  32. import android.view.View;
  33. import android.view.ViewGroup;
  34. import android.view.ContextMenu.ContextMenuInfo;
  35. import android.widget.AdapterView.AdapterContextMenuInfo;
  36. import android.widget.CheckedTextView;
  37. import android.widget.ListView;
  38. import android.widget.SimpleAdapter;
  39. import android.widget.TextView;
  40. import com.actionbarsherlock.app.ActionBar;
  41. import com.actionbarsherlock.app.SherlockListActivity;
  42. import com.actionbarsherlock.view.Menu;
  43. import com.actionbarsherlock.view.MenuInflater;
  44. import com.actionbarsherlock.view.MenuItem;
  45. import com.owncloud.android.authentication.AuthenticatorActivity;
  46. import com.owncloud.android.authentication.AccountUtils;
  47. import com.owncloud.android.oc_framework.accounts.OwnCloudAccount;
  48. import com.owncloud.android.utils.DisplayUtils;
  49. import com.owncloud.android.utils.Log_OC;
  50. import com.owncloud.android.MainApp;
  51. import com.owncloud.android.R;
  52. public class AccountSelectActivity extends SherlockListActivity implements
  53. AccountManagerCallback<Boolean> {
  54. private static final String TAG = "AccountSelectActivity";
  55. private static final String PREVIOUS_ACCOUNT_KEY = "ACCOUNT";
  56. private final Handler mHandler = new Handler();
  57. private Account mPreviousAccount = null;
  58. @Override
  59. protected void onCreate(Bundle savedInstanceState) {
  60. super.onCreate(savedInstanceState);
  61. if (savedInstanceState != null) {
  62. mPreviousAccount = savedInstanceState.getParcelable(PREVIOUS_ACCOUNT_KEY);
  63. } else {
  64. mPreviousAccount = AccountUtils.getCurrentOwnCloudAccount(this);
  65. }
  66. ActionBar actionBar = getSupportActionBar();
  67. actionBar.setIcon(DisplayUtils.getSeasonalIconId());
  68. actionBar.setDisplayShowTitleEnabled(true);
  69. actionBar.setDisplayHomeAsUpEnabled(false);
  70. }
  71. @Override
  72. protected void onResume() {
  73. super.onResume();
  74. populateAccountList();
  75. }
  76. @Override
  77. protected void onPause() {
  78. super.onPause();
  79. if (this.isFinishing()) {
  80. Account current = AccountUtils.getCurrentOwnCloudAccount(this);
  81. if ((mPreviousAccount == null && current != null) ||
  82. (mPreviousAccount != null && !mPreviousAccount.equals(current))) {
  83. /// the account set as default changed since this activity was created
  84. // restart the main activity
  85. Intent i = new Intent(this, FileDisplayActivity.class);
  86. i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  87. startActivity(i);
  88. }
  89. }
  90. }
  91. @Override
  92. public boolean onCreateOptionsMenu(Menu menu) {
  93. // Show Create Account if Multiaccount is enabled
  94. if (getResources().getBoolean(R.bool.multiaccount_support)) {
  95. MenuInflater inflater = getSherlock().getMenuInflater();
  96. inflater.inflate(R.menu.account_picker, menu);
  97. }
  98. return true;
  99. }
  100. @Override
  101. public void onCreateContextMenu(ContextMenu menu, View v,
  102. ContextMenuInfo menuInfo) {
  103. getMenuInflater().inflate(R.menu.account_picker_long_click, menu);
  104. super.onCreateContextMenu(menu, v, menuInfo);
  105. }
  106. @Override
  107. protected void onListItemClick(ListView l, View v, int position, long id) {
  108. String accountName = ((TextView) v.findViewById(android.R.id.text1))
  109. .getText().toString();
  110. AccountUtils.setCurrentOwnCloudAccount(this, accountName);
  111. finish(); // immediate exit
  112. }
  113. @Override
  114. public boolean onMenuItemSelected(int featureId, MenuItem item) {
  115. if (item.getItemId() == R.id.createAccount) {
  116. /*Intent intent = new Intent(
  117. android.provider.Settings.ACTION_ADD_ACCOUNT);
  118. intent.putExtra("authorities",
  119. new String[] { MainApp.getAuthTokenType() });
  120. startActivity(intent);*/
  121. AccountManager am = AccountManager.get(getApplicationContext());
  122. am.addAccount(MainApp.getAccountType(),
  123. null,
  124. null,
  125. null,
  126. this,
  127. null,
  128. null);
  129. return true;
  130. }
  131. return false;
  132. }
  133. /**
  134. * Called when the user clicked on an item into the context menu created at
  135. * {@link #onCreateContextMenu(ContextMenu, View, ContextMenuInfo)} for every
  136. * ownCloud {@link Account} , containing 'secondary actions' for them.
  137. *
  138. * {@inheritDoc}}
  139. */
  140. @SuppressWarnings("unchecked")
  141. @Override
  142. public boolean onContextItemSelected(android.view.MenuItem item) {
  143. AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
  144. int index = info.position;
  145. HashMap<String, String> map = null;
  146. try {
  147. map = (HashMap<String, String>) getListAdapter().getItem(index);
  148. } catch (ClassCastException e) {
  149. Log_OC.wtf(TAG, "getitem(index) from list adapter did not return hashmap, bailing out");
  150. return false;
  151. }
  152. String accountName = map.get("NAME");
  153. AccountManager am = (AccountManager) getSystemService(ACCOUNT_SERVICE);
  154. Account accounts[] = am.getAccountsByType(MainApp.getAccountType());
  155. for (Account a : accounts) {
  156. if (a.name.equals(accountName)) {
  157. if (item.getItemId() == R.id.change_password) {
  158. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  159. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT, a);
  160. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACTION, AuthenticatorActivity.ACTION_UPDATE_TOKEN);
  161. startActivity(updateAccountCredentials);
  162. } else if (item.getItemId() == R.id.delete_account) {
  163. am.removeAccount(a, this, mHandler);
  164. }
  165. }
  166. }
  167. return true;
  168. }
  169. private void populateAccountList() {
  170. AccountManager am = (AccountManager) getSystemService(ACCOUNT_SERVICE);
  171. Account accounts[] = am
  172. .getAccountsByType(MainApp.getAccountType());
  173. if (am.getAccountsByType(MainApp.getAccountType()).length == 0) {
  174. // Show create account screen if there isn't any account
  175. am.addAccount(MainApp.getAccountType(),
  176. null,
  177. null,
  178. null,
  179. this,
  180. null,
  181. null);
  182. }
  183. else {
  184. LinkedList<HashMap<String, String>> ll = new LinkedList<HashMap<String, String>>();
  185. for (Account a : accounts) {
  186. HashMap<String, String> h = new HashMap<String, String>();
  187. h.put("NAME", a.name);
  188. h.put("VER",
  189. "ownCloud version: "
  190. + am.getUserData(a,
  191. OwnCloudAccount.Constants.KEY_OC_VERSION));
  192. ll.add(h);
  193. }
  194. setListAdapter(new AccountCheckedSimpleAdepter(this, ll,
  195. android.R.layout.simple_list_item_single_choice,
  196. new String[] { "NAME" }, new int[] { android.R.id.text1 }));
  197. registerForContextMenu(getListView());
  198. }
  199. }
  200. @Override
  201. public void run(AccountManagerFuture<Boolean> future) {
  202. if (future.isDone()) {
  203. Account a = AccountUtils.getCurrentOwnCloudAccount(this);
  204. String accountName = "";
  205. if (a == null) {
  206. Account[] accounts = AccountManager.get(this)
  207. .getAccountsByType(MainApp.getAccountType());
  208. if (accounts.length != 0)
  209. accountName = accounts[0].name;
  210. AccountUtils.setCurrentOwnCloudAccount(this, accountName);
  211. }
  212. populateAccountList();
  213. }
  214. }
  215. private class AccountCheckedSimpleAdepter extends SimpleAdapter {
  216. private Account mCurrentAccount;
  217. private List<? extends Map<String, ?>> mPrivateData;
  218. public AccountCheckedSimpleAdepter(Context context,
  219. List<? extends Map<String, ?>> data, int resource,
  220. String[] from, int[] to) {
  221. super(context, data, resource, from, to);
  222. mCurrentAccount = AccountUtils
  223. .getCurrentOwnCloudAccount(AccountSelectActivity.this);
  224. mPrivateData = data;
  225. }
  226. @Override
  227. public View getView(int position, View convertView, ViewGroup parent) {
  228. View v = super.getView(position, convertView, parent);
  229. CheckedTextView ctv = (CheckedTextView) v
  230. .findViewById(android.R.id.text1);
  231. if (mPrivateData.get(position).get("NAME")
  232. .equals(mCurrentAccount.name)) {
  233. ctv.setChecked(true);
  234. }
  235. return v;
  236. }
  237. }
  238. }