AccountUtils.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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.net.Uri;
  25. import android.preference.PreferenceManager;
  26. import android.text.TextUtils;
  27. import com.owncloud.android.MainApp;
  28. import com.owncloud.android.datamodel.ArbitraryDataProvider;
  29. import com.owncloud.android.datamodel.OCFile;
  30. import com.owncloud.android.lib.common.OwnCloudAccount;
  31. import com.owncloud.android.lib.common.OwnCloudClient;
  32. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  33. import com.owncloud.android.lib.common.UserInfo;
  34. import com.owncloud.android.lib.common.accounts.AccountUtils.Constants;
  35. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  36. import com.owncloud.android.lib.common.utils.Log_OC;
  37. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  38. import com.owncloud.android.lib.resources.users.GetRemoteUserInfoOperation;
  39. import com.owncloud.android.ui.activity.ManageAccountsActivity;
  40. import androidx.annotation.NonNull;
  41. import androidx.annotation.Nullable;
  42. /**
  43. * Helper class for dealing with accounts.
  44. */
  45. public final class AccountUtils {
  46. private static final String TAG = AccountUtils.class.getSimpleName();
  47. private static final String PREF_SELECT_OC_ACCOUNT = "select_oc_account";
  48. public static final int ACCOUNT_VERSION = 1;
  49. public static final int ACCOUNT_VERSION_WITH_PROPER_ID = 2;
  50. public static final String ACCOUNT_USES_STANDARD_PASSWORD = "ACCOUNT_USES_STANDARD_PASSWORD";
  51. private AccountUtils() {
  52. // Required empty constructor
  53. }
  54. /**
  55. * Can be used to get the currently selected ownCloud {@link Account} in the
  56. * application preferences.
  57. *
  58. * @param context The current application {@link Context}
  59. * @return The ownCloud {@link Account} currently saved in preferences, or the first
  60. * {@link Account} available, if valid (still registered in the system as ownCloud
  61. * account). If none is available and valid, returns null.
  62. */
  63. public static @Nullable Account getCurrentOwnCloudAccount(Context context) {
  64. Account[] ocAccounts = getAccounts(context);
  65. Account defaultAccount = null;
  66. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(context.getContentResolver());
  67. SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(context);
  68. String accountName = appPreferences.getString(PREF_SELECT_OC_ACCOUNT, null);
  69. // account validation: the saved account MUST be in the list of ownCloud Accounts known by the AccountManager
  70. if (accountName != null) {
  71. for (Account account : ocAccounts) {
  72. if (account.name.equals(accountName)) {
  73. defaultAccount = account;
  74. break;
  75. }
  76. }
  77. }
  78. if (defaultAccount == null && ocAccounts.length > 0) {
  79. // take first which is not pending for removal account as fallback
  80. for (Account account: ocAccounts) {
  81. boolean pendingForRemoval = arbitraryDataProvider.getBooleanValue(account,
  82. ManageAccountsActivity.PENDING_FOR_REMOVAL);
  83. if (!pendingForRemoval) {
  84. defaultAccount = account;
  85. break;
  86. }
  87. }
  88. }
  89. return defaultAccount;
  90. }
  91. public static Account[] getAccounts(Context context) {
  92. AccountManager accountManager = AccountManager.get(context);
  93. return accountManager.getAccountsByType(MainApp.getAccountType(context));
  94. }
  95. public static boolean exists(Account account, Context context) {
  96. Account[] ocAccounts = getAccounts(context);
  97. if (account != null && account.name != null) {
  98. int lastAtPos = account.name.lastIndexOf('@');
  99. String hostAndPort = account.name.substring(lastAtPos + 1);
  100. String username = account.name.substring(0, lastAtPos);
  101. String otherHostAndPort;
  102. String otherUsername;
  103. for (Account otherAccount : ocAccounts) {
  104. lastAtPos = otherAccount.name.lastIndexOf('@');
  105. otherHostAndPort = otherAccount.name.substring(lastAtPos + 1);
  106. otherUsername = otherAccount.name.substring(0, lastAtPos);
  107. if (otherHostAndPort.equals(hostAndPort) &&
  108. otherUsername.equalsIgnoreCase(username)) {
  109. return true;
  110. }
  111. }
  112. }
  113. return false;
  114. }
  115. /**
  116. * returns the user's name based on the account name.
  117. *
  118. * @param accountName the account name
  119. * @return the user's name
  120. */
  121. public static String getAccountUsername(String accountName) {
  122. if (accountName != null) {
  123. return accountName.substring(0, accountName.lastIndexOf('@'));
  124. } else {
  125. return null;
  126. }
  127. }
  128. /**
  129. * Returns owncloud account identified by accountName or null if it does not exist.
  130. * @param context the context
  131. * @param accountName name of account to be returned
  132. * @return owncloud account named accountName
  133. */
  134. public static Account getOwnCloudAccountByName(Context context, String accountName) {
  135. Account[] ocAccounts = AccountManager.get(context).getAccountsByType(MainApp.getAccountType(context));
  136. for (Account account : ocAccounts) {
  137. if(account.name.equals(accountName)) {
  138. return account;
  139. }
  140. }
  141. return null;
  142. }
  143. public static boolean setCurrentOwnCloudAccount(final Context context, String accountName) {
  144. boolean result = false;
  145. if (accountName != null) {
  146. for (final Account account : getAccounts(context)) {
  147. if (accountName.equals(account.name)) {
  148. SharedPreferences.Editor appPrefs = PreferenceManager.getDefaultSharedPreferences(context).edit();
  149. appPrefs.putString(PREF_SELECT_OC_ACCOUNT, accountName);
  150. appPrefs.apply();
  151. result = true;
  152. break;
  153. }
  154. }
  155. }
  156. return result;
  157. }
  158. public static void resetOwnCloudAccount(Context context) {
  159. SharedPreferences.Editor appPrefs = PreferenceManager.getDefaultSharedPreferences(context).edit();
  160. appPrefs.putString(PREF_SELECT_OC_ACCOUNT, null);
  161. appPrefs.apply();
  162. }
  163. /**
  164. * Access the version of the OC server corresponding to an account SAVED IN THE ACCOUNTMANAGER
  165. *
  166. * @param account ownCloud account
  167. * @return Version of the OC server corresponding to account, according to the data saved
  168. * in the system AccountManager
  169. */
  170. public static @NonNull
  171. OwnCloudVersion getServerVersion(Account account) {
  172. OwnCloudVersion serverVersion = MainApp.MINIMUM_SUPPORTED_SERVER_VERSION;
  173. if (account != null) {
  174. AccountManager accountMgr = AccountManager.get(MainApp.getAppContext());
  175. String serverVersionStr = accountMgr.getUserData(account, Constants.KEY_OC_VERSION);
  176. if (serverVersionStr != null) {
  177. serverVersion = new OwnCloudVersion(serverVersionStr);
  178. }
  179. }
  180. return serverVersion;
  181. }
  182. public static boolean hasSearchSupport(Account account) {
  183. return getServerVersion(account).isSearchSupported();
  184. }
  185. /**
  186. * Update the accounts in AccountManager to meet the current version of accounts expected by the app, if needed.
  187. * <p>
  188. * Introduced to handle a change in the structure of stored account names needed to allow different OC servers in
  189. * the same domain, but not in the same path.
  190. *
  191. * @param context Used to access the AccountManager.
  192. */
  193. public static void updateAccountVersion(Context context) {
  194. Account currentAccount = AccountUtils.getCurrentOwnCloudAccount(context);
  195. AccountManager accountMgr = AccountManager.get(context);
  196. if (currentAccount != null) {
  197. String currentAccountVersion = accountMgr.getUserData(currentAccount, Constants.KEY_OC_ACCOUNT_VERSION);
  198. if (!String.valueOf(ACCOUNT_VERSION_WITH_PROPER_ID).equalsIgnoreCase(currentAccountVersion)) {
  199. Log_OC.i(TAG, "Upgrading accounts to account version #" + ACCOUNT_VERSION_WITH_PROPER_ID);
  200. Account[] ocAccounts = accountMgr.getAccountsByType(MainApp.getAccountType(context));
  201. String serverUrl;
  202. String username;
  203. String displayName;
  204. String newAccountName;
  205. Account newAccount;
  206. GetRemoteUserInfoOperation remoteUserNameOperation = new GetRemoteUserInfoOperation();
  207. for (Account account : ocAccounts) {
  208. // build new account name
  209. serverUrl = accountMgr.getUserData(account, Constants.KEY_OC_BASE_URL);
  210. // update user name
  211. try {
  212. OwnCloudAccount ocAccount = new OwnCloudAccount(account, context);
  213. OwnCloudClient client = OwnCloudClientManagerFactory.getDefaultSingleton()
  214. .getClientFor(ocAccount, context);
  215. RemoteOperationResult result = remoteUserNameOperation.execute(client);
  216. if (result.isSuccess()) {
  217. UserInfo userInfo = (UserInfo) result.getData().get(0);
  218. username = userInfo.id;
  219. displayName = userInfo.displayName;
  220. } else {
  221. // skip account, try it next time
  222. Log_OC.e(TAG, "Error while getting username for account: " + account.name);
  223. continue;
  224. }
  225. } catch (Exception e) {
  226. Log_OC.e(TAG, "Error while getting username: " + e.getMessage());
  227. continue;
  228. }
  229. newAccountName = com.owncloud.android.lib.common.accounts.AccountUtils.
  230. buildAccountName(Uri.parse(serverUrl), username);
  231. // migrate to a new account, if needed
  232. if (!newAccountName.equals(account.name)) {
  233. newAccount = migrateAccount(context, currentAccount, accountMgr, serverUrl, newAccountName,
  234. account);
  235. } else {
  236. // servers which base URL is in the root of their domain need no change
  237. Log_OC.d(TAG, account.name + " needs no upgrade ");
  238. newAccount = account;
  239. }
  240. accountMgr.setUserData(newAccount, Constants.KEY_DISPLAY_NAME, displayName);
  241. accountMgr.setUserData(newAccount, Constants.KEY_USER_ID, username);
  242. // at least, upgrade account version
  243. Log_OC.d(TAG, "Setting version " + ACCOUNT_VERSION_WITH_PROPER_ID + " to " + newAccountName);
  244. accountMgr.setUserData(newAccount, Constants.KEY_OC_ACCOUNT_VERSION,
  245. Integer.toString(ACCOUNT_VERSION_WITH_PROPER_ID));
  246. }
  247. }
  248. }
  249. }
  250. @NonNull
  251. private static Account migrateAccount(Context context, Account currentAccount, AccountManager accountMgr,
  252. String serverUrl, String newAccountName, Account account) {
  253. Log_OC.d(TAG, "Upgrading " + account.name + " to " + newAccountName);
  254. // create the new account
  255. Account newAccount = new Account(newAccountName, MainApp.getAccountType(context));
  256. String password = accountMgr.getPassword(account);
  257. accountMgr.addAccountExplicitly(newAccount, (password != null) ? password : "", null);
  258. // copy base URL
  259. accountMgr.setUserData(newAccount, Constants.KEY_OC_BASE_URL, serverUrl);
  260. // copy server version
  261. accountMgr.setUserData(
  262. newAccount,
  263. Constants.KEY_OC_VERSION,
  264. accountMgr.getUserData(account, Constants.KEY_OC_VERSION)
  265. );
  266. // copy cookies
  267. accountMgr.setUserData(
  268. newAccount,
  269. Constants.KEY_COOKIES,
  270. accountMgr.getUserData(account, Constants.KEY_COOKIES)
  271. );
  272. // copy type of authentication
  273. final String isSamlStr = accountMgr.getUserData(account, Constants.KEY_SUPPORTS_SAML_WEB_SSO);
  274. if (Boolean.parseBoolean(isSamlStr)) {
  275. accountMgr.setUserData(newAccount, Constants.KEY_SUPPORTS_SAML_WEB_SSO, "TRUE");
  276. }
  277. final String isOauthStr = accountMgr.getUserData(account, Constants.KEY_SUPPORTS_OAUTH2);
  278. if (Boolean.parseBoolean(isOauthStr)) {
  279. accountMgr.setUserData(newAccount, Constants.KEY_SUPPORTS_OAUTH2, "TRUE");
  280. }
  281. /* TODO - study if it's possible to run this method in a background thread to copy the authToken
  282. if (isOAuth || isSaml) {
  283. accountMgr.setAuthToken(newAccount, mAuthTokenType, mAuthToken);
  284. }
  285. */
  286. // don't forget the account saved in preferences as the current one
  287. if (currentAccount.name.equals(account.name)) {
  288. AccountUtils.setCurrentOwnCloudAccount(context, newAccountName);
  289. }
  290. // remove the old account
  291. accountMgr.removeAccount(account, null, null);
  292. // will assume it succeeds, not a big deal otherwise
  293. return newAccount;
  294. }
  295. /**
  296. * Checks if an account owns the file (file's ownerId is the same as account name)
  297. * @param file File to check
  298. * @param account account to compare
  299. * @return false if ownerId is not set or owner is a different account
  300. */
  301. public static boolean accountOwnsFile(OCFile file, Account account) {
  302. return !TextUtils.isEmpty(file.getOwnerId()) && account.name.split("@")[0].equals(file.getOwnerId());
  303. }
  304. }