UserInfoActivity.java 19 KB

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