UserInfoActivity.java 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  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. setAccount(AccountUtils.getCurrentOwnCloudAccount(this));
  155. onAccountSet(false);
  156. boolean useBackgroundImage = URLUtil.isValidUrl(
  157. getStorageManager().getCapability(account.name).getServerBackground());
  158. setupToolbar(useBackgroundImage);
  159. updateActionBarTitleAndHomeButtonByString("");
  160. if (userInfo != null) {
  161. populateUserInfoUi(userInfo);
  162. emptyContentContainer.setVisibility(View.GONE);
  163. userInfoView.setVisibility(View.VISIBLE);
  164. } else {
  165. setMultiListLoadingMessage();
  166. fetchAndSetData();
  167. }
  168. setHeaderImage();
  169. }
  170. @Override
  171. public boolean onCreateOptionsMenu(Menu menu) {
  172. MenuInflater inflater = getMenuInflater();
  173. inflater.inflate(R.menu.user_info_menu, menu);
  174. return true;
  175. }
  176. @Override
  177. public boolean onOptionsItemSelected(MenuItem item) {
  178. boolean retval = true;
  179. switch (item.getItemId()) {
  180. case android.R.id.home:
  181. onBackPressed();
  182. break;
  183. case R.id.change_password:
  184. changeAccountPassword(account);
  185. break;
  186. case R.id.delete_account:
  187. openAccountRemovalConfirmationDialog(account, getFragmentManager(), false);
  188. break;
  189. default:
  190. retval = super.onOptionsItemSelected(item);
  191. break;
  192. }
  193. return retval;
  194. }
  195. public void onDestroy() {
  196. super.onDestroy();
  197. unbinder.unbind();
  198. }
  199. private void setMultiListLoadingMessage() {
  200. if (emptyContentContainer != null) {
  201. emptyContentHeadline.setText(R.string.file_list_loading);
  202. emptyContentMessage.setText("");
  203. emptyContentIcon.setVisibility(View.GONE);
  204. multiListProgressBar.setVisibility(View.VISIBLE);
  205. }
  206. }
  207. private void setMessageForMultiList(String headline, String message) {
  208. if (emptyContentContainer != null && emptyContentMessage != null) {
  209. emptyContentHeadline.setText(headline);
  210. emptyContentMessage.setText(message);
  211. multiListProgressBar.setVisibility(View.GONE);
  212. }
  213. }
  214. private void setHeaderImage() {
  215. if (getStorageManager().getCapability(account.name).getServerBackground() != null) {
  216. final AppBarLayout appBar = (AppBarLayout) findViewById(R.id.appbar);
  217. if (appBar != null) {
  218. String background = getStorageManager().getCapability(account.name).getServerBackground();
  219. if (URLUtil.isValidUrl(background)) {
  220. // background image
  221. SimpleTarget target = new SimpleTarget<Drawable>() {
  222. @Override
  223. public void onResourceReady(Drawable resource, GlideAnimation glideAnimation) {
  224. if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
  225. appBar.setBackgroundDrawable(resource);
  226. } else {
  227. appBar.setBackground(resource);
  228. }
  229. }
  230. };
  231. Glide.with(this)
  232. .load(background)
  233. .centerCrop()
  234. .placeholder(R.drawable.background)
  235. .error(R.drawable.background)
  236. .crossFade()
  237. .into(target);
  238. } else {
  239. // plain color
  240. int color = Color.parseColor(background);
  241. appBar.setBackgroundColor(color);
  242. }
  243. }
  244. }
  245. }
  246. private void populateUserInfoUi(UserInfo userInfo) {
  247. userName.setText(account.name);
  248. DisplayUtils.setAvatar(account, UserInfoActivity.this,
  249. mCurrentAccountAvatarRadiusDimension, getResources(), getStorageManager(), avatar);
  250. int tint = Color.parseColor(getStorageManager().getCapability(account.name).getServerColor());
  251. if (userInfo != null) {
  252. if (!TextUtils.isEmpty(userInfo.getDisplayName())) {
  253. fullName.setText(userInfo.getDisplayName());
  254. }
  255. populateUserInfoElement(mPhoneNumberContainer, mPhoneNumberTextView, userInfo.getPhone(),
  256. mPhoneNumberIcon, tint);
  257. populateUserInfoElement(mEmailContainer, mEmailAddressTextView, userInfo.getEmail(), mEmailIcon, tint);
  258. populateUserInfoElement(mAddressContainer, mAddressTextView, userInfo.getAddress(), mAddressIcon, tint);
  259. populateUserInfoElement(
  260. mWebsiteContainer,
  261. mWebsiteTextView,
  262. DisplayUtils.beautifyURL(userInfo.getWebpage()),
  263. mWebsiteIcon,
  264. tint);
  265. populateUserInfoElement(
  266. mTwitterContainer,
  267. mTwitterHandleTextView,
  268. DisplayUtils.beautifyTwitterHandle(userInfo.getTwitter()),
  269. mTwitterIcon,
  270. tint);
  271. }
  272. }
  273. private void populateUserInfoElement(View container, TextView textView, String text, ImageView icon, @ColorInt int
  274. tint) {
  275. if (!TextUtils.isEmpty(text)) {
  276. textView.setText(text);
  277. DrawableCompat.setTint(icon.getDrawable(), tint);
  278. } else {
  279. container.setVisibility(View.GONE);
  280. }
  281. }
  282. private void changeAccountPassword(Account account) {
  283. // let the user update credentials with one click
  284. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  285. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT, account);
  286. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACTION,
  287. AuthenticatorActivity.ACTION_UPDATE_TOKEN);
  288. startActivity(updateAccountCredentials);
  289. }
  290. public static void openAccountRemovalConfirmationDialog(Account account, FragmentManager fragmentManager,
  291. boolean removeDirectly) {
  292. UserInfoActivity.AccountRemovalConfirmationDialog dialog =
  293. UserInfoActivity.AccountRemovalConfirmationDialog.newInstance(account, removeDirectly);
  294. dialog.show(fragmentManager, "dialog");
  295. }
  296. public static class AccountRemovalConfirmationDialog extends DialogFragment {
  297. private Account account;
  298. public static UserInfoActivity.AccountRemovalConfirmationDialog newInstance(Account account,
  299. boolean removeDirectly) {
  300. Bundle bundle = new Bundle();
  301. bundle.putParcelable(KEY_ACCOUNT, account);
  302. bundle.putBoolean(KEY_DIRECT_REMOVE, removeDirectly);
  303. UserInfoActivity.AccountRemovalConfirmationDialog dialog = new
  304. UserInfoActivity.AccountRemovalConfirmationDialog();
  305. dialog.setArguments(bundle);
  306. return dialog;
  307. }
  308. @Override
  309. public void onCreate(@Nullable Bundle savedInstanceState) {
  310. super.onCreate(savedInstanceState);
  311. account = getArguments().getParcelable(KEY_ACCOUNT);
  312. }
  313. @NonNull
  314. @Override
  315. public Dialog onCreateDialog(Bundle savedInstanceState) {
  316. final boolean removeDirectly = getArguments().getBoolean(KEY_DIRECT_REMOVE);
  317. return new AlertDialog.Builder(getActivity(), R.style.Theme_ownCloud_Dialog)
  318. .setTitle(R.string.delete_account)
  319. .setMessage(getResources().getString(R.string.delete_account_warning, account.name))
  320. .setIcon(R.drawable.ic_warning)
  321. .setPositiveButton(R.string.common_ok,
  322. new DialogInterface.OnClickListener() {
  323. @Override
  324. public void onClick(DialogInterface dialogInterface, int i) {
  325. // remove contact backup job
  326. ContactsPreferenceActivity.cancelContactBackupJobForAccount(getActivity(), account);
  327. ContentResolver contentResolver = getActivity().getContentResolver();
  328. // delete all synced folder for an account
  329. SyncedFolderProvider syncedFolderProvider = new SyncedFolderProvider(
  330. contentResolver);
  331. syncedFolderProvider.deleteSyncFoldersForAccount(account);
  332. UploadsStorageManager uploadsStorageManager = new UploadsStorageManager(
  333. contentResolver, getActivity());
  334. uploadsStorageManager.cancelPendingAutoUploadJobsForAccount(account);
  335. // disable daily backup
  336. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(
  337. contentResolver);
  338. arbitraryDataProvider.storeOrUpdateKeyValue(account,
  339. ContactsPreferenceActivity.PREFERENCE_CONTACTS_AUTOMATIC_BACKUP,
  340. "false");
  341. String arbitraryDataPushString;
  342. if (!TextUtils.isEmpty(arbitraryDataPushString = arbitraryDataProvider.getValue(
  343. account, PushUtils.KEY_PUSH)) &&
  344. !TextUtils.isEmpty(getResources().getString(R.string.push_server_url))) {
  345. Gson gson = new Gson();
  346. PushConfigurationState pushArbitraryData = gson.fromJson(arbitraryDataPushString,
  347. PushConfigurationState.class);
  348. pushArbitraryData.setShouldBeDeleted(true);
  349. arbitraryDataProvider.storeOrUpdateKeyValue(account, PushUtils.KEY_PUSH,
  350. gson.toJson(pushArbitraryData));
  351. EventBus.getDefault().post(new TokenPushEvent());
  352. }
  353. if (getActivity() != null && !removeDirectly) {
  354. Bundle bundle = new Bundle();
  355. bundle.putParcelable(KEY_ACCOUNT, Parcels.wrap(account));
  356. Intent intent = new Intent();
  357. intent.putExtras(bundle);
  358. getActivity().setResult(KEY_DELETE_CODE, intent);
  359. getActivity().finish();
  360. } else {
  361. AccountManager am = (AccountManager) getActivity()
  362. .getSystemService(ACCOUNT_SERVICE);
  363. am.removeAccount(account, null, null);
  364. Intent start = new Intent(getActivity(), FileDisplayActivity.class);
  365. start.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  366. startActivity(start);
  367. }
  368. }
  369. })
  370. .setNegativeButton(R.string.common_cancel, null)
  371. .create();
  372. }
  373. }
  374. private void fetchAndSetData() {
  375. Thread t = new Thread(new Runnable() {
  376. public void run() {
  377. RemoteOperation getRemoteUserInfoOperation = new GetRemoteUserInfoOperation();
  378. RemoteOperationResult result = getRemoteUserInfoOperation.execute(account, UserInfoActivity.this);
  379. if (result.isSuccess() && result.getData() != null) {
  380. userInfo = (UserInfo) result.getData().get(0);
  381. runOnUiThread(new Runnable() {
  382. @Override
  383. public void run() {
  384. populateUserInfoUi(userInfo);
  385. emptyContentContainer.setVisibility(View.GONE);
  386. userInfoView.setVisibility(View.VISIBLE);
  387. }
  388. });
  389. } else {
  390. // show error
  391. setMessageForMultiList(result.getLogMessage(), sorryMessage);
  392. Log_OC.d(TAG, result.getLogMessage());
  393. }
  394. }
  395. });
  396. t.start();
  397. }
  398. @Override
  399. protected void onSaveInstanceState(Bundle outState) {
  400. super.onSaveInstanceState(outState);
  401. if (userInfo != null) {
  402. outState.putParcelable(KEY_USER_DATA, Parcels.wrap(userInfo));
  403. }
  404. }
  405. @Subscribe(threadMode = ThreadMode.BACKGROUND)
  406. public void onMessageEvent(TokenPushEvent event) {
  407. PushUtils.pushRegistrationToServer();
  408. }
  409. }