AccountUtils.java 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * Copyright (C) 2012 Bartek Przybylski
  5. * Copyright (C) 2016 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.owncloud.android.authentication;
  20. import android.accounts.Account;
  21. import android.accounts.AccountManager;
  22. import android.content.Context;
  23. import android.content.SharedPreferences;
  24. import android.preference.PreferenceManager;
  25. import android.text.TextUtils;
  26. import com.owncloud.android.MainApp;
  27. import com.owncloud.android.datamodel.ArbitraryDataProvider;
  28. import com.owncloud.android.datamodel.OCFile;
  29. import com.owncloud.android.lib.common.accounts.AccountUtils.Constants;
  30. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  31. import com.owncloud.android.ui.activity.ManageAccountsActivity;
  32. import androidx.annotation.NonNull;
  33. import androidx.annotation.Nullable;
  34. /**
  35. * Helper class for dealing with accounts.
  36. */
  37. public final class AccountUtils {
  38. private static final String PREF_SELECT_OC_ACCOUNT = "select_oc_account";
  39. public static final int ACCOUNT_VERSION = 1;
  40. public static final int ACCOUNT_VERSION_WITH_PROPER_ID = 2;
  41. public static final String ACCOUNT_USES_STANDARD_PASSWORD = "ACCOUNT_USES_STANDARD_PASSWORD";
  42. private AccountUtils() {
  43. // Required empty constructor
  44. }
  45. /**
  46. * Can be used to get the currently selected ownCloud {@link Account} in the
  47. * application preferences.
  48. *
  49. * @param context The current application {@link Context}
  50. * @return The ownCloud {@link Account} currently saved in preferences, or the first
  51. * {@link Account} available, if valid (still registered in the system as ownCloud
  52. * account). If none is available and valid, returns null.
  53. */
  54. public static @Nullable Account getCurrentOwnCloudAccount(Context context) {
  55. Account[] ocAccounts = getAccounts(context);
  56. Account defaultAccount = null;
  57. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(context.getContentResolver());
  58. SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(context);
  59. String accountName = appPreferences.getString(PREF_SELECT_OC_ACCOUNT, null);
  60. // account validation: the saved account MUST be in the list of ownCloud Accounts known by the AccountManager
  61. if (accountName != null) {
  62. for (Account account : ocAccounts) {
  63. if (account.name.equals(accountName)) {
  64. defaultAccount = account;
  65. break;
  66. }
  67. }
  68. }
  69. if (defaultAccount == null && ocAccounts.length > 0) {
  70. // take first which is not pending for removal account as fallback
  71. for (Account account: ocAccounts) {
  72. boolean pendingForRemoval = arbitraryDataProvider.getBooleanValue(account,
  73. ManageAccountsActivity.PENDING_FOR_REMOVAL);
  74. if (!pendingForRemoval) {
  75. defaultAccount = account;
  76. break;
  77. }
  78. }
  79. }
  80. return defaultAccount;
  81. }
  82. private static Account[] getAccounts(Context context) {
  83. AccountManager accountManager = AccountManager.get(context);
  84. return accountManager.getAccountsByType(MainApp.getAccountType(context));
  85. }
  86. public static boolean exists(Account account, Context context) {
  87. Account[] ocAccounts = getAccounts(context);
  88. if (account != null && account.name != null) {
  89. int lastAtPos = account.name.lastIndexOf('@');
  90. String hostAndPort = account.name.substring(lastAtPos + 1);
  91. String username = account.name.substring(0, lastAtPos);
  92. String otherHostAndPort;
  93. String otherUsername;
  94. for (Account otherAccount : ocAccounts) {
  95. lastAtPos = otherAccount.name.lastIndexOf('@');
  96. otherHostAndPort = otherAccount.name.substring(lastAtPos + 1);
  97. otherUsername = otherAccount.name.substring(0, lastAtPos);
  98. if (otherHostAndPort.equals(hostAndPort) &&
  99. otherUsername.equalsIgnoreCase(username)) {
  100. return true;
  101. }
  102. }
  103. }
  104. return false;
  105. }
  106. /**
  107. * Returns owncloud account identified by accountName or null if it does not exist.
  108. * @param context the context
  109. * @param accountName name of account to be returned
  110. * @return owncloud account named accountName
  111. */
  112. public static Account getOwnCloudAccountByName(Context context, String accountName) {
  113. Account[] ocAccounts = AccountManager.get(context).getAccountsByType(MainApp.getAccountType(context));
  114. for (Account account : ocAccounts) {
  115. if(account.name.equals(accountName)) {
  116. return account;
  117. }
  118. }
  119. return null;
  120. }
  121. public static boolean setCurrentOwnCloudAccount(final Context context, String accountName) {
  122. boolean result = false;
  123. if (accountName != null) {
  124. for (final Account account : getAccounts(context)) {
  125. if (accountName.equals(account.name)) {
  126. SharedPreferences.Editor appPrefs = PreferenceManager.getDefaultSharedPreferences(context).edit();
  127. appPrefs.putString(PREF_SELECT_OC_ACCOUNT, accountName);
  128. appPrefs.apply();
  129. result = true;
  130. break;
  131. }
  132. }
  133. }
  134. return result;
  135. }
  136. public static void resetOwnCloudAccount(Context context) {
  137. SharedPreferences.Editor appPrefs = PreferenceManager.getDefaultSharedPreferences(context).edit();
  138. appPrefs.putString(PREF_SELECT_OC_ACCOUNT, null);
  139. appPrefs.apply();
  140. }
  141. /**
  142. * Access the version of the OC server corresponding to an account SAVED IN THE ACCOUNTMANAGER
  143. *
  144. * @param account ownCloud account
  145. * @return Version of the OC server corresponding to account, according to the data saved
  146. * in the system AccountManager
  147. */
  148. public static @NonNull
  149. OwnCloudVersion getServerVersion(Account account) {
  150. OwnCloudVersion serverVersion = MainApp.MINIMUM_SUPPORTED_SERVER_VERSION;
  151. if (account != null) {
  152. AccountManager accountMgr = AccountManager.get(MainApp.getAppContext());
  153. String serverVersionStr = accountMgr.getUserData(account, Constants.KEY_OC_VERSION);
  154. if (serverVersionStr != null) {
  155. serverVersion = new OwnCloudVersion(serverVersionStr);
  156. }
  157. }
  158. return serverVersion;
  159. }
  160. public static boolean hasSearchSupport(Account account) {
  161. return getServerVersion(account).isSearchSupported();
  162. }
  163. /**
  164. * Checks if an account owns the file (file's ownerId is the same as account name)
  165. * @param file File to check
  166. * @param account account to compare
  167. * @return false if ownerId is not set or owner is a different account
  168. */
  169. public static boolean accountOwnsFile(OCFile file, Account account) {
  170. return !TextUtils.isEmpty(file.getOwnerId()) && account.name.split("@")[0].equals(file.getOwnerId());
  171. }
  172. }