UserInfoActivity.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. /**
  2. * Nextcloud Android client application
  3. *
  4. * @author Mario Danic
  5. * @author Andy Scherzinger
  6. * Copyright (C) 2017 Mario Danic
  7. * Copyright (C) 2017 Andy Scherzinger
  8. * Copyright (C) 2017 Nextcloud GmbH.
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. package com.owncloud.android.ui.activity;
  24. import android.accounts.Account;
  25. import android.accounts.AccountManager;
  26. import android.app.AlertDialog;
  27. import android.app.Dialog;
  28. import android.app.DialogFragment;
  29. import android.app.FragmentManager;
  30. import android.content.ContentResolver;
  31. import android.content.DialogInterface;
  32. import android.content.Intent;
  33. import android.graphics.Color;
  34. import android.graphics.PorterDuff;
  35. import android.graphics.drawable.Drawable;
  36. import android.os.Build;
  37. import android.os.Bundle;
  38. import android.support.annotation.ColorInt;
  39. import android.support.annotation.NonNull;
  40. import android.support.annotation.Nullable;
  41. import android.support.design.widget.AppBarLayout;
  42. import android.support.v4.graphics.drawable.DrawableCompat;
  43. import android.text.TextUtils;
  44. import android.view.Menu;
  45. import android.view.MenuInflater;
  46. import android.view.MenuItem;
  47. import android.view.View;
  48. import android.webkit.URLUtil;
  49. import android.widget.ImageView;
  50. import android.widget.LinearLayout;
  51. import android.widget.ProgressBar;
  52. import android.widget.TextView;
  53. import com.bumptech.glide.Glide;
  54. import com.bumptech.glide.request.animation.GlideAnimation;
  55. import com.bumptech.glide.request.target.SimpleTarget;
  56. import com.google.gson.Gson;
  57. import com.owncloud.android.R;
  58. import com.owncloud.android.authentication.AccountUtils;
  59. import com.owncloud.android.authentication.AuthenticatorActivity;
  60. import com.owncloud.android.datamodel.ArbitraryDataProvider;
  61. import com.owncloud.android.datamodel.PushConfigurationState;
  62. import com.owncloud.android.datamodel.SyncedFolderProvider;
  63. import com.owncloud.android.datamodel.UploadsStorageManager;
  64. import com.owncloud.android.lib.common.UserInfo;
  65. import com.owncloud.android.lib.common.operations.RemoteOperation;
  66. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  67. import com.owncloud.android.lib.common.utils.Log_OC;
  68. import com.owncloud.android.lib.resources.users.GetRemoteUserInfoOperation;
  69. import com.owncloud.android.ui.events.TokenPushEvent;
  70. import com.owncloud.android.utils.DisplayUtils;
  71. import com.owncloud.android.utils.PushUtils;
  72. import com.owncloud.android.utils.ThemeUtils;
  73. import org.greenrobot.eventbus.EventBus;
  74. import org.greenrobot.eventbus.Subscribe;
  75. import org.greenrobot.eventbus.ThreadMode;
  76. import org.parceler.Parcels;
  77. import butterknife.BindString;
  78. import butterknife.BindView;
  79. import butterknife.ButterKnife;
  80. import butterknife.Unbinder;
  81. /**
  82. * This Activity presents the user information.
  83. */
  84. public class UserInfoActivity extends FileActivity {
  85. private static final String TAG = UserInfoActivity.class.getSimpleName();
  86. private static final String KEY_USER_DATA = "USER_DATA";
  87. private static final String KEY_ACCOUNT = "ACCOUNT";
  88. private static final String KEY_DIRECT_REMOVE = "DIRECT_REMOVE";
  89. private static final int KEY_DELETE_CODE = 101;
  90. @BindView(R.id.empty_list_view)
  91. public LinearLayout emptyContentContainer;
  92. @BindView(R.id.empty_list_view_text)
  93. public TextView emptyContentMessage;
  94. @BindView(R.id.empty_list_view_headline)
  95. public TextView emptyContentHeadline;
  96. @BindView(R.id.empty_list_icon)
  97. public ImageView emptyContentIcon;
  98. @BindView(R.id.user_info_view)
  99. public LinearLayout userInfoView;
  100. @BindView(R.id.user_icon)
  101. public ImageView avatar;
  102. @BindView(R.id.drawer_username)
  103. public TextView userName;
  104. @BindView(R.id.drawer_username_full)
  105. public TextView fullName;
  106. @BindView(R.id.phone_container)
  107. public View mPhoneNumberContainer;
  108. @BindView(R.id.phone_number)
  109. public TextView mPhoneNumberTextView;
  110. @BindView(R.id.phone_icon)
  111. public ImageView mPhoneNumberIcon;
  112. @BindView(R.id.email_container)
  113. public View mEmailContainer;
  114. @BindView(R.id.email_address)
  115. public TextView mEmailAddressTextView;
  116. @BindView(R.id.email_icon)
  117. public ImageView mEmailIcon;
  118. @BindView(R.id.address_container)
  119. public View mAddressContainer;
  120. @BindView(R.id.address)
  121. public TextView mAddressTextView;
  122. @BindView(R.id.address_icon)
  123. public ImageView mAddressIcon;
  124. @BindView(R.id.website_container)
  125. public View mWebsiteContainer;
  126. @BindView(R.id.website_address)
  127. public TextView mWebsiteTextView;
  128. @BindView(R.id.website_icon)
  129. public ImageView mWebsiteIcon;
  130. @BindView(R.id.twitter_container)
  131. public View mTwitterContainer;
  132. @BindView(R.id.twitter_handle)
  133. public TextView mTwitterHandleTextView;
  134. @BindView(R.id.twitter_icon)
  135. public ImageView mTwitterIcon;
  136. @BindView(R.id.empty_list_progress)
  137. public ProgressBar multiListProgressBar;
  138. @BindString(R.string.preview_sorry)
  139. public String sorryMessage;
  140. private float mCurrentAccountAvatarRadiusDimension;
  141. private Unbinder unbinder;
  142. private UserInfo userInfo;
  143. private Account account;
  144. @Override
  145. public void onCreate(Bundle savedInstanceState) {
  146. Log_OC.v(TAG, "onCreate() start");
  147. super.onCreate(savedInstanceState);
  148. Bundle bundle = getIntent().getExtras();
  149. account = Parcels.unwrap(bundle.getParcelable(KEY_ACCOUNT));
  150. if (savedInstanceState != null && savedInstanceState.containsKey(KEY_USER_DATA)) {
  151. userInfo = Parcels.unwrap(savedInstanceState.getParcelable(KEY_USER_DATA));
  152. }
  153. mCurrentAccountAvatarRadiusDimension = getResources().getDimension(R.dimen.nav_drawer_header_avatar_radius);
  154. setContentView(R.layout.user_info_layout);
  155. unbinder = ButterKnife.bind(this);
  156. setAccount(AccountUtils.getCurrentOwnCloudAccount(this));
  157. onAccountSet(false);
  158. boolean useBackgroundImage = URLUtil.isValidUrl(
  159. getStorageManager().getCapability(account.name).getServerBackground());
  160. setupToolbar(useBackgroundImage);
  161. updateActionBarTitleAndHomeButtonByString("");
  162. if (userInfo != null) {
  163. populateUserInfoUi(userInfo);
  164. emptyContentContainer.setVisibility(View.GONE);
  165. userInfoView.setVisibility(View.VISIBLE);
  166. } else {
  167. setMultiListLoadingMessage();
  168. fetchAndSetData();
  169. }
  170. setHeaderImage();
  171. }
  172. @Override
  173. public boolean onCreateOptionsMenu(Menu menu) {
  174. MenuInflater inflater = getMenuInflater();
  175. inflater.inflate(R.menu.user_info_menu, menu);
  176. return true;
  177. }
  178. @Override
  179. public boolean onOptionsItemSelected(MenuItem item) {
  180. boolean retval = true;
  181. switch (item.getItemId()) {
  182. case android.R.id.home:
  183. onBackPressed();
  184. break;
  185. case R.id.change_password:
  186. changeAccountPassword(account);
  187. break;
  188. case R.id.delete_account:
  189. openAccountRemovalConfirmationDialog(account, getFragmentManager(), false);
  190. break;
  191. default:
  192. retval = super.onOptionsItemSelected(item);
  193. break;
  194. }
  195. return retval;
  196. }
  197. public void onDestroy() {
  198. super.onDestroy();
  199. unbinder.unbind();
  200. }
  201. private void setMultiListLoadingMessage() {
  202. if (emptyContentContainer != null) {
  203. emptyContentHeadline.setText(R.string.file_list_loading);
  204. emptyContentMessage.setText("");
  205. emptyContentIcon.setVisibility(View.GONE);
  206. multiListProgressBar.getIndeterminateDrawable().setColorFilter(ThemeUtils.primaryColor(),
  207. PorterDuff.Mode.SRC_IN);
  208. multiListProgressBar.setVisibility(View.VISIBLE);
  209. }
  210. }
  211. private void setMessageForMultiList(String headline, String message) {
  212. if (emptyContentContainer != null && emptyContentMessage != null) {
  213. emptyContentHeadline.setText(headline);
  214. emptyContentMessage.setText(message);
  215. multiListProgressBar.setVisibility(View.GONE);
  216. }
  217. }
  218. private void setHeaderImage() {
  219. if (getStorageManager().getCapability(account.name).getServerBackground() != null) {
  220. final AppBarLayout appBar = (AppBarLayout) findViewById(R.id.appbar);
  221. if (appBar != null) {
  222. String background = getStorageManager().getCapability(account.name).getServerBackground();
  223. if (URLUtil.isValidUrl(background)) {
  224. // background image
  225. SimpleTarget target = new SimpleTarget<Drawable>() {
  226. @Override
  227. public void onResourceReady(Drawable resource, GlideAnimation glideAnimation) {
  228. if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
  229. appBar.setBackgroundDrawable(resource);
  230. } else {
  231. appBar.setBackground(resource);
  232. }
  233. }
  234. };
  235. Glide.with(this)
  236. .load(background)
  237. .centerCrop()
  238. .placeholder(R.drawable.background)
  239. .error(R.drawable.background)
  240. .crossFade()
  241. .into(target);
  242. } else {
  243. // plain color
  244. int color = Color.parseColor(background);
  245. appBar.setBackgroundColor(color);
  246. }
  247. }
  248. }
  249. }
  250. private void populateUserInfoUi(UserInfo userInfo) {
  251. userName.setText(account.name);
  252. DisplayUtils.setAvatar(account, UserInfoActivity.this,
  253. mCurrentAccountAvatarRadiusDimension, getResources(), getStorageManager(), avatar);
  254. int tint = Color.parseColor(getStorageManager().getCapability(account.name).getServerColor());
  255. if (userInfo != null) {
  256. if (!TextUtils.isEmpty(userInfo.getDisplayName())) {
  257. fullName.setText(userInfo.getDisplayName());
  258. }
  259. populateUserInfoElement(mPhoneNumberContainer, mPhoneNumberTextView, userInfo.getPhone(),
  260. mPhoneNumberIcon, tint);
  261. populateUserInfoElement(mEmailContainer, mEmailAddressTextView, userInfo.getEmail(), mEmailIcon, tint);
  262. populateUserInfoElement(mAddressContainer, mAddressTextView, userInfo.getAddress(), mAddressIcon, tint);
  263. populateUserInfoElement(
  264. mWebsiteContainer,
  265. mWebsiteTextView,
  266. DisplayUtils.beautifyURL(userInfo.getWebpage()),
  267. mWebsiteIcon,
  268. tint);
  269. populateUserInfoElement(
  270. mTwitterContainer,
  271. mTwitterHandleTextView,
  272. DisplayUtils.beautifyTwitterHandle(userInfo.getTwitter()),
  273. mTwitterIcon,
  274. tint);
  275. }
  276. }
  277. private void populateUserInfoElement(View container, TextView textView, String text, ImageView icon, @ColorInt int
  278. tint) {
  279. if (!TextUtils.isEmpty(text)) {
  280. textView.setText(text);
  281. DrawableCompat.setTint(icon.getDrawable(), tint);
  282. } else {
  283. container.setVisibility(View.GONE);
  284. }
  285. }
  286. private void changeAccountPassword(Account account) {
  287. // let the user update credentials with one click
  288. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  289. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT, account);
  290. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACTION,
  291. AuthenticatorActivity.ACTION_UPDATE_TOKEN);
  292. startActivity(updateAccountCredentials);
  293. }
  294. public static void openAccountRemovalConfirmationDialog(Account account, FragmentManager fragmentManager,
  295. boolean removeDirectly) {
  296. UserInfoActivity.AccountRemovalConfirmationDialog dialog =
  297. UserInfoActivity.AccountRemovalConfirmationDialog.newInstance(account, removeDirectly);
  298. dialog.show(fragmentManager, "dialog");
  299. }
  300. public static class AccountRemovalConfirmationDialog extends DialogFragment {
  301. private Account account;
  302. public static UserInfoActivity.AccountRemovalConfirmationDialog newInstance(Account account,
  303. boolean removeDirectly) {
  304. Bundle bundle = new Bundle();
  305. bundle.putParcelable(KEY_ACCOUNT, account);
  306. bundle.putBoolean(KEY_DIRECT_REMOVE, removeDirectly);
  307. UserInfoActivity.AccountRemovalConfirmationDialog dialog = new
  308. UserInfoActivity.AccountRemovalConfirmationDialog();
  309. dialog.setArguments(bundle);
  310. return dialog;
  311. }
  312. @Override
  313. public void onCreate(@Nullable Bundle savedInstanceState) {
  314. super.onCreate(savedInstanceState);
  315. account = getArguments().getParcelable(KEY_ACCOUNT);
  316. }
  317. @NonNull
  318. @Override
  319. public Dialog onCreateDialog(Bundle savedInstanceState) {
  320. final boolean removeDirectly = getArguments().getBoolean(KEY_DIRECT_REMOVE);
  321. return new AlertDialog.Builder(getActivity(), R.style.Theme_ownCloud_Dialog)
  322. .setTitle(R.string.delete_account)
  323. .setMessage(getResources().getString(R.string.delete_account_warning, account.name))
  324. .setIcon(R.drawable.ic_warning)
  325. .setPositiveButton(R.string.common_ok,
  326. new DialogInterface.OnClickListener() {
  327. @Override
  328. public void onClick(DialogInterface dialogInterface, int i) {
  329. // remove contact backup job
  330. ContactsPreferenceActivity.cancelContactBackupJobForAccount(getActivity(), account);
  331. ContentResolver contentResolver = getActivity().getContentResolver();
  332. // delete all synced folder for an account
  333. SyncedFolderProvider syncedFolderProvider = new SyncedFolderProvider(
  334. contentResolver);
  335. syncedFolderProvider.deleteSyncFoldersForAccount(account);
  336. UploadsStorageManager uploadsStorageManager = new UploadsStorageManager(
  337. contentResolver, getActivity());
  338. uploadsStorageManager.cancelPendingAutoUploadJobsForAccount(account);
  339. uploadsStorageManager.removeAccountUploads(account);
  340. // disable daily backup
  341. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(
  342. contentResolver);
  343. arbitraryDataProvider.storeOrUpdateKeyValue(account,
  344. ContactsPreferenceActivity.PREFERENCE_CONTACTS_AUTOMATIC_BACKUP,
  345. "false");
  346. String arbitraryDataPushString;
  347. if (!TextUtils.isEmpty(arbitraryDataPushString = arbitraryDataProvider.getValue(
  348. account, PushUtils.KEY_PUSH)) &&
  349. !TextUtils.isEmpty(getResources().getString(R.string.push_server_url))) {
  350. Gson gson = new Gson();
  351. PushConfigurationState pushArbitraryData = gson.fromJson(arbitraryDataPushString,
  352. PushConfigurationState.class);
  353. pushArbitraryData.setShouldBeDeleted(true);
  354. arbitraryDataProvider.storeOrUpdateKeyValue(account, PushUtils.KEY_PUSH,
  355. gson.toJson(pushArbitraryData));
  356. EventBus.getDefault().post(new TokenPushEvent());
  357. }
  358. if (getActivity() != null && !removeDirectly) {
  359. Bundle bundle = new Bundle();
  360. bundle.putParcelable(KEY_ACCOUNT, Parcels.wrap(account));
  361. Intent intent = new Intent();
  362. intent.putExtras(bundle);
  363. getActivity().setResult(KEY_DELETE_CODE, intent);
  364. getActivity().finish();
  365. } else {
  366. AccountManager am = (AccountManager) getActivity()
  367. .getSystemService(ACCOUNT_SERVICE);
  368. am.removeAccount(account, null, null);
  369. Intent start = new Intent(getActivity(), FileDisplayActivity.class);
  370. start.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  371. startActivity(start);
  372. }
  373. }
  374. })
  375. .setNegativeButton(R.string.common_cancel, null)
  376. .create();
  377. }
  378. }
  379. private void fetchAndSetData() {
  380. Thread t = new Thread(new Runnable() {
  381. public void run() {
  382. RemoteOperation getRemoteUserInfoOperation = new GetRemoteUserInfoOperation();
  383. RemoteOperationResult result = getRemoteUserInfoOperation.execute(account, UserInfoActivity.this);
  384. if (result.isSuccess() && result.getData() != null) {
  385. userInfo = (UserInfo) result.getData().get(0);
  386. runOnUiThread(new Runnable() {
  387. @Override
  388. public void run() {
  389. populateUserInfoUi(userInfo);
  390. emptyContentContainer.setVisibility(View.GONE);
  391. userInfoView.setVisibility(View.VISIBLE);
  392. }
  393. });
  394. } else {
  395. // show error
  396. setMessageForMultiList(result.getLogMessage(), sorryMessage);
  397. Log_OC.d(TAG, result.getLogMessage());
  398. }
  399. }
  400. });
  401. t.start();
  402. }
  403. @Override
  404. protected void onSaveInstanceState(Bundle outState) {
  405. super.onSaveInstanceState(outState);
  406. if (userInfo != null) {
  407. outState.putParcelable(KEY_USER_DATA, Parcels.wrap(userInfo));
  408. }
  409. }
  410. @Subscribe(threadMode = ThreadMode.BACKGROUND)
  411. public void onMessageEvent(TokenPushEvent event) {
  412. PushUtils.pushRegistrationToServer();
  413. }
  414. }