UsersAndGroupsSearchProvider.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * @author Juan Carlos González Cabrero
  6. * Copyright (C) 2015 ownCloud Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.owncloud.android.providers;
  21. import android.accounts.Account;
  22. import android.app.SearchManager;
  23. import android.content.ContentProvider;
  24. import android.content.ContentValues;
  25. import android.content.Context;
  26. import android.content.UriMatcher;
  27. import android.database.Cursor;
  28. import android.database.MatrixCursor;
  29. import android.net.Uri;
  30. import android.os.Handler;
  31. import android.os.Looper;
  32. import android.provider.BaseColumns;
  33. import android.widget.Toast;
  34. import com.nextcloud.client.account.UserAccountManager;
  35. import com.owncloud.android.R;
  36. import com.owncloud.android.datamodel.FileDataStorageManager;
  37. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  38. import com.owncloud.android.lib.common.utils.Log_OC;
  39. import com.owncloud.android.lib.resources.shares.GetRemoteShareesOperation;
  40. import com.owncloud.android.lib.resources.shares.ShareType;
  41. import com.owncloud.android.utils.ErrorMessageAdapter;
  42. import org.json.JSONException;
  43. import org.json.JSONObject;
  44. import java.util.ArrayList;
  45. import java.util.HashMap;
  46. import java.util.Iterator;
  47. import java.util.List;
  48. import java.util.Locale;
  49. import java.util.Map;
  50. import javax.inject.Inject;
  51. import androidx.annotation.NonNull;
  52. import androidx.annotation.Nullable;
  53. import dagger.android.AndroidInjection;
  54. /**
  55. * Content provider for search suggestions, to search for users and groups existing in an ownCloud
  56. * server.
  57. */
  58. public class UsersAndGroupsSearchProvider extends ContentProvider {
  59. private static final String TAG = UsersAndGroupsSearchProvider.class.getSimpleName();
  60. private static final String[] COLUMNS = {
  61. BaseColumns._ID,
  62. SearchManager.SUGGEST_COLUMN_TEXT_1,
  63. SearchManager.SUGGEST_COLUMN_ICON_1,
  64. SearchManager.SUGGEST_COLUMN_INTENT_DATA
  65. };
  66. private static final int SEARCH = 1;
  67. private static final int RESULTS_PER_PAGE = 50;
  68. private static final int REQUESTED_PAGE = 1;
  69. public static String ACTION_SHARE_WITH;
  70. public static final String CONTENT = "content";
  71. private String DATA_USER;
  72. private String DATA_GROUP;
  73. private String DATA_ROOM;
  74. private String DATA_REMOTE;
  75. private String DATA_EMAIL;
  76. private UriMatcher mUriMatcher;
  77. @Inject
  78. protected UserAccountManager accountManager;
  79. private static Map<String, ShareType> sShareTypes = new HashMap<>();
  80. public static ShareType getShareType(String authority) {
  81. return sShareTypes.get(authority);
  82. }
  83. private static void setActionShareWith(@NonNull Context context) {
  84. ACTION_SHARE_WITH = context.getResources().getString(R.string.users_and_groups_share_with);
  85. }
  86. @Nullable
  87. @Override
  88. public String getType(@NonNull Uri uri) {
  89. // TODO implement
  90. return null;
  91. }
  92. @Override
  93. public boolean onCreate() {
  94. AndroidInjection.inject(this);
  95. if (getContext() == null) {
  96. return false;
  97. }
  98. String AUTHORITY = getContext().getResources().getString(R.string.users_and_groups_search_authority);
  99. setActionShareWith(getContext());
  100. DATA_USER = AUTHORITY + ".data.user";
  101. DATA_GROUP = AUTHORITY + ".data.group";
  102. DATA_ROOM = AUTHORITY + ".data.room";
  103. DATA_REMOTE = AUTHORITY + ".data.remote";
  104. DATA_EMAIL = AUTHORITY + ".data.email";
  105. sShareTypes.put(DATA_USER, ShareType.USER);
  106. sShareTypes.put(DATA_GROUP, ShareType.GROUP);
  107. sShareTypes.put(DATA_ROOM, ShareType.ROOM);
  108. sShareTypes.put(DATA_REMOTE, ShareType.FEDERATED);
  109. sShareTypes.put(DATA_EMAIL, ShareType.EMAIL);
  110. mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  111. mUriMatcher.addURI(AUTHORITY, SearchManager.SUGGEST_URI_PATH_QUERY + "/*", SEARCH);
  112. return true;
  113. }
  114. /**
  115. * returns sharee from server
  116. *
  117. * Reference: http://developer.android.com/guide/topics/search/adding-custom-suggestions.html#CustomContentProvider
  118. *
  119. * @param uri Content {@link Uri}, formatted as "content://com.nextcloud.android.providers.UsersAndGroupsSearchProvider/"
  120. * + {@link android.app.SearchManager#SUGGEST_URI_PATH_QUERY} + "/" +
  121. * 'userQuery'
  122. * @param projection Expected to be NULL.
  123. * @param selection Expected to be NULL.
  124. * @param selectionArgs Expected to be NULL.
  125. * @param sortOrder Expected to be NULL.
  126. * @return Cursor with possible sharees in the server that match 'query'.
  127. */
  128. @Nullable
  129. @Override
  130. public Cursor query(@NonNull Uri uri, String[] projection, String selection, String[] selectionArgs,
  131. String sortOrder) {
  132. Log_OC.d(TAG, "query received in thread " + Thread.currentThread().getName());
  133. int match = mUriMatcher.match(uri);
  134. switch (match) {
  135. case SEARCH:
  136. return searchForUsersOrGroups(uri);
  137. default:
  138. return null;
  139. }
  140. }
  141. private Cursor searchForUsersOrGroups(Uri uri) {
  142. String lastPathSegment = uri.getLastPathSegment();
  143. if (lastPathSegment == null) {
  144. throw new IllegalArgumentException("Wrong URI passed!");
  145. }
  146. // need to trust on the AccountUtils to get the current account since the query in the client side is not
  147. // directly started by our code, but from SearchView implementation
  148. Account account = accountManager.getCurrentAccount();
  149. if (account == null) {
  150. throw new IllegalArgumentException("Account may not be null!");
  151. }
  152. String userQuery = lastPathSegment.toLowerCase(Locale.ROOT);
  153. // request to the OC server about users and groups matching userQuery
  154. GetRemoteShareesOperation searchRequest = new GetRemoteShareesOperation(userQuery, REQUESTED_PAGE,
  155. RESULTS_PER_PAGE);
  156. RemoteOperationResult result = searchRequest.execute(account, getContext());
  157. List<JSONObject> names = new ArrayList<>();
  158. if (result.isSuccess()) {
  159. for (Object o : result.getData()) {
  160. names.add((JSONObject) o);
  161. }
  162. } else {
  163. showErrorMessage(result);
  164. }
  165. MatrixCursor response = null;
  166. // convert the responses from the OC server to the expected format
  167. if (names.size() > 0) {
  168. if (getContext() == null) {
  169. throw new IllegalArgumentException("Context may not be null!");
  170. }
  171. response = new MatrixCursor(COLUMNS);
  172. Uri userBaseUri = new Uri.Builder().scheme(CONTENT).authority(DATA_USER).build();
  173. Uri groupBaseUri = new Uri.Builder().scheme(CONTENT).authority(DATA_GROUP).build();
  174. Uri roomBaseUri = new Uri.Builder().scheme(CONTENT).authority(DATA_ROOM).build();
  175. Uri remoteBaseUri = new Uri.Builder().scheme(CONTENT).authority(DATA_REMOTE).build();
  176. Uri emailBaseUri = new Uri.Builder().scheme(CONTENT).authority(DATA_EMAIL).build();
  177. FileDataStorageManager manager = new FileDataStorageManager(account, getContext().getContentResolver());
  178. boolean federatedShareAllowed = manager.getCapability(account.name).getFilesSharingFederationOutgoing()
  179. .isTrue();
  180. try {
  181. Iterator<JSONObject> namesIt = names.iterator();
  182. JSONObject item;
  183. String displayName;
  184. int icon = 0;
  185. Uri dataUri;
  186. int count = 0;
  187. while (namesIt.hasNext()) {
  188. item = namesIt.next();
  189. dataUri = null;
  190. displayName = null;
  191. String userName = item.getString(GetRemoteShareesOperation.PROPERTY_LABEL);
  192. JSONObject value = item.getJSONObject(GetRemoteShareesOperation.NODE_VALUE);
  193. ShareType type = ShareType.fromValue(value.getInt(GetRemoteShareesOperation.PROPERTY_SHARE_TYPE));
  194. String shareWith = value.getString(GetRemoteShareesOperation.PROPERTY_SHARE_WITH);
  195. switch (type) {
  196. case GROUP:
  197. displayName = getContext().getString(R.string.share_group_clarification, userName);
  198. icon = R.drawable.ic_group;
  199. dataUri = Uri.withAppendedPath(groupBaseUri, shareWith);
  200. break;
  201. case FEDERATED:
  202. if (federatedShareAllowed) {
  203. icon = R.drawable.ic_user;
  204. dataUri = Uri.withAppendedPath(remoteBaseUri, shareWith);
  205. if (userName.equals(shareWith)) {
  206. displayName = getContext().getString(R.string.share_remote_clarification, userName);
  207. } else {
  208. String[] uriSplitted = shareWith.split("@");
  209. displayName = getContext().getString(R.string.share_known_remote_clarification,
  210. userName, uriSplitted[uriSplitted.length - 1]);
  211. }
  212. }
  213. break;
  214. case USER:
  215. displayName = userName;
  216. icon = R.drawable.ic_user;
  217. dataUri = Uri.withAppendedPath(userBaseUri, shareWith);
  218. break;
  219. case EMAIL:
  220. icon = R.drawable.ic_email;
  221. displayName = getContext().getString(R.string.share_email_clarification, userName);
  222. dataUri = Uri.withAppendedPath(emailBaseUri, shareWith);
  223. break;
  224. case ROOM:
  225. icon = R.drawable.ic_chat_bubble;
  226. displayName = getContext().getString(R.string.share_room_clarification, userName);
  227. dataUri = Uri.withAppendedPath(roomBaseUri, shareWith);
  228. break;
  229. default:
  230. break;
  231. }
  232. if (displayName != null && dataUri != null) {
  233. response.newRow()
  234. .add(count++) // BaseColumns._ID
  235. .add(displayName) // SearchManager.SUGGEST_COLUMN_TEXT_1
  236. .add(icon) // SearchManager.SUGGEST_COLUMN_ICON_1
  237. .add(dataUri);
  238. }
  239. }
  240. } catch (JSONException e) {
  241. Log_OC.e(TAG, "Exception while parsing data of users/groups", e);
  242. }
  243. }
  244. return response;
  245. }
  246. @Nullable
  247. @Override
  248. public Uri insert(@NonNull Uri uri, ContentValues values) {
  249. return null;
  250. }
  251. @Override
  252. public int delete(@NonNull Uri uri, String selection, String[] selectionArgs) {
  253. return 0;
  254. }
  255. @Override
  256. public int update(@NonNull Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  257. return 0;
  258. }
  259. /**
  260. * Show error message
  261. *
  262. * @param result Result with the failure information.
  263. */
  264. private void showErrorMessage(final RemoteOperationResult result) {
  265. Handler handler = new Handler(Looper.getMainLooper());
  266. handler.post(() -> {
  267. // The Toast must be shown in the main thread to grant that will be hidden correctly; otherwise
  268. // the thread may die before, an exception will occur, and the message will be left on the screen
  269. // until the app dies
  270. Context context = getContext();
  271. if (context == null) {
  272. throw new IllegalArgumentException("Context may not be null!");
  273. }
  274. Toast.makeText(getContext().getApplicationContext(),
  275. ErrorMessageAdapter.getErrorCauseMessage(result, null, getContext().getResources()),
  276. Toast.LENGTH_SHORT).show();
  277. });
  278. }
  279. }