SearchShareesFragment.java 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * @author David A. Velasco
  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. */
  21. package com.owncloud.android.ui.fragment;
  22. import android.accounts.Account;
  23. import android.app.Activity;
  24. import android.app.SearchManager;
  25. import android.content.Context;
  26. import android.os.Bundle;
  27. import android.support.v4.app.Fragment;
  28. import android.support.v7.widget.SearchView;
  29. import android.view.LayoutInflater;
  30. import android.view.View;
  31. import android.view.ViewGroup;
  32. import android.view.inputmethod.EditorInfo;
  33. import android.view.inputmethod.InputMethodManager;
  34. import android.widget.ListView;
  35. import com.owncloud.android.R;
  36. import com.owncloud.android.datamodel.OCFile;
  37. import com.owncloud.android.lib.common.utils.Log_OC;
  38. import com.owncloud.android.lib.resources.shares.OCShare;
  39. import com.owncloud.android.ui.activity.FileActivity;
  40. import com.owncloud.android.ui.adapter.ShareUserListAdapter;
  41. import com.owncloud.android.utils.AnalyticsUtils;
  42. import java.util.ArrayList;
  43. /**
  44. * Fragment for Searching sharees (users and groups)
  45. *
  46. * A simple {@link Fragment} subclass.
  47. *
  48. * Activities that contain this fragment must implement the
  49. * {@link ShareFragmentListener} interface
  50. * to handle interaction events.
  51. *
  52. * Use the {@link SearchShareesFragment#newInstance} factory method to
  53. * create an instance of this fragment.
  54. */
  55. public class SearchShareesFragment extends Fragment implements ShareUserListAdapter.ShareUserAdapterListener {
  56. private static final String TAG = SearchShareesFragment.class.getSimpleName();
  57. // the fragment initialization parameters
  58. private static final String ARG_FILE = "FILE";
  59. private static final String ARG_ACCOUNT = "ACCOUNT";
  60. private static final String SCREEN_NAME = "Sharee search";
  61. // Parameters
  62. private OCFile mFile;
  63. private Account mAccount;
  64. // other members
  65. private ArrayList<OCShare> mShares;
  66. private ShareUserListAdapter mUserGroupsAdapter = null;
  67. private ShareFragmentListener mListener;
  68. /**
  69. * Public factory method to create new SearchShareesFragment instances.
  70. *
  71. * @param fileToShare An {@link OCFile} to be shared
  72. * @param account The ownCloud account containing fileToShare
  73. * @return A new instance of fragment SearchShareesFragment.
  74. */
  75. public static SearchShareesFragment newInstance(OCFile fileToShare, Account account) {
  76. SearchShareesFragment fragment = new SearchShareesFragment();
  77. Bundle args = new Bundle();
  78. args.putParcelable(ARG_FILE, fileToShare);
  79. args.putParcelable(ARG_ACCOUNT, account);
  80. fragment.setArguments(args);
  81. return fragment;
  82. }
  83. /**
  84. * {@inheritDoc}
  85. */
  86. @Override
  87. public void onCreate(Bundle savedInstanceState) {
  88. super.onCreate(savedInstanceState);
  89. if (getArguments() != null) {
  90. mFile = getArguments().getParcelable(ARG_FILE);
  91. mAccount = getArguments().getParcelable(ARG_ACCOUNT);
  92. }
  93. }
  94. @Override
  95. public void onResume() {
  96. super.onResume();
  97. if (getActivity() != null) {
  98. AnalyticsUtils.setCurrentScreenName(getActivity(), SCREEN_NAME, TAG);
  99. }
  100. }
  101. /**
  102. * {@inheritDoc}
  103. */
  104. @Override
  105. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  106. Bundle savedInstanceState) {
  107. // Inflate the layout for this fragment
  108. View view = inflater.inflate(R.layout.search_users_groups_layout, container, false);
  109. // Get the SearchView and set the searchable configuration
  110. SearchView searchView = (SearchView) view.findViewById(R.id.searchView);
  111. SearchManager searchManager = (SearchManager) getActivity().getSystemService(Context.SEARCH_SERVICE);
  112. searchView.setSearchableInfo(searchManager.getSearchableInfo(
  113. getActivity().getComponentName()) // assumes parent activity is the searchable activity
  114. );
  115. searchView.setIconifiedByDefault(false); // do not iconify the widget; expand it by default
  116. searchView.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI); // avoid fullscreen with softkeyboard
  117. searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
  118. @Override
  119. public boolean onQueryTextSubmit(String query) {
  120. Log_OC.v(TAG, "onQueryTextSubmit intercepted, query: " + query);
  121. return true; // return true to prevent the query is processed to be queried;
  122. // a user / group will be picked only if selected in the list of suggestions
  123. }
  124. @Override
  125. public boolean onQueryTextChange(String newText) {
  126. return false; // let it for the parent listener in the hierarchy / default behaviour
  127. }
  128. });
  129. return view;
  130. }
  131. @Override
  132. public void onActivityCreated(Bundle savedInstanceState) {
  133. super.onActivityCreated(savedInstanceState);
  134. getActivity().setTitle(R.string.share_with_title);
  135. // Load data into the list
  136. refreshUsersOrGroupsListFromDB();
  137. }
  138. /**
  139. * Get users and groups from the DB to fill in the "share with" list
  140. *
  141. * Depends on the parent Activity provides a {@link com.owncloud.android.datamodel.FileDataStorageManager}
  142. * instance ready to use. If not ready, does nothing.
  143. */
  144. public void refreshUsersOrGroupsListFromDB (){
  145. // Get Users and Groups
  146. if (((FileActivity) mListener).getStorageManager() != null) {
  147. mShares = ((FileActivity) mListener).getStorageManager().getSharesWithForAFile(
  148. mFile.getRemotePath(),
  149. mAccount.name
  150. );
  151. // Update list of users/groups
  152. updateListOfUserGroups();
  153. }
  154. }
  155. private void updateListOfUserGroups() {
  156. // Update list of users/groups
  157. // TODO Refactoring: create a new {@link ShareUserListAdapter} instance with every call should not be needed
  158. mUserGroupsAdapter = new ShareUserListAdapter(
  159. getActivity().getApplicationContext(),
  160. R.layout.share_user_item, mShares, this
  161. );
  162. // Show data
  163. ListView usersList = (ListView) getView().findViewById(R.id.searchUsersListView);
  164. if (mShares.size() > 0) {
  165. usersList.setVisibility(View.VISIBLE);
  166. usersList.setAdapter(mUserGroupsAdapter);
  167. } else {
  168. usersList.setVisibility(View.GONE);
  169. }
  170. }
  171. @Override
  172. public void onAttach(Activity activity) {
  173. super.onAttach(activity);
  174. try {
  175. mListener = (ShareFragmentListener) activity;
  176. } catch (ClassCastException e) {
  177. throw new ClassCastException(activity.toString()
  178. + " must implement OnFragmentInteractionListener");
  179. }
  180. }
  181. @Override
  182. public void onStart() {
  183. super.onStart();
  184. // focus the search view and request the software keyboard be shown
  185. View searchView = getView().findViewById(R.id.searchView);
  186. if (searchView.requestFocus()) {
  187. InputMethodManager imm = (InputMethodManager)
  188. getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
  189. if (imm != null) {
  190. imm.showSoftInput(searchView.findFocus(), InputMethodManager.SHOW_IMPLICIT);
  191. }
  192. }
  193. }
  194. @Override
  195. public void onDetach() {
  196. super.onDetach();
  197. mListener = null;
  198. }
  199. @Override
  200. public void unshareButtonPressed(OCShare share) {
  201. // Unshare
  202. mListener.unshareWith(share);
  203. Log_OC.d(TAG, "Unshare - " + share.getSharedWithDisplayName());
  204. }
  205. @Override
  206. public void editShare(OCShare share) {
  207. // move to fragment to edit share
  208. Log_OC.d(TAG, "Editing " + share.getSharedWithDisplayName());
  209. mListener.showEditShare(share);
  210. }
  211. }