FileDisplayActivity.java 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @author David A. Velasco
  6. * Copyright (C) 2011 Bartek Przybylski
  7. * Copyright (C) 2016 ownCloud Inc.
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.owncloud.android.ui.activity;
  22. import android.Manifest;
  23. import android.accounts.Account;
  24. import android.accounts.AuthenticatorException;
  25. import android.annotation.TargetApi;
  26. import android.content.BroadcastReceiver;
  27. import android.content.ComponentName;
  28. import android.content.ContentResolver;
  29. import android.content.Context;
  30. import android.content.DialogInterface;
  31. import android.content.Intent;
  32. import android.content.IntentFilter;
  33. import android.content.ServiceConnection;
  34. import android.content.SharedPreferences;
  35. import android.content.SyncRequest;
  36. import android.content.pm.PackageManager;
  37. import android.content.res.Resources.NotFoundException;
  38. import android.os.Build;
  39. import android.os.Bundle;
  40. import android.os.IBinder;
  41. import android.os.Parcelable;
  42. import android.support.design.widget.BottomNavigationView;
  43. import android.support.design.widget.Snackbar;
  44. import android.support.v4.app.Fragment;
  45. import android.support.v4.app.FragmentManager;
  46. import android.support.v4.app.FragmentTransaction;
  47. import android.support.v4.content.ContextCompat;
  48. import android.support.v4.view.MenuItemCompat;
  49. import android.support.v7.app.AlertDialog;
  50. import android.support.v7.widget.SearchView;
  51. import android.text.TextUtils;
  52. import android.view.Menu;
  53. import android.view.MenuInflater;
  54. import android.view.MenuItem;
  55. import android.view.View;
  56. import android.view.ViewTreeObserver;
  57. import android.widget.Toast;
  58. import com.owncloud.android.MainApp;
  59. import com.owncloud.android.R;
  60. import com.owncloud.android.datamodel.FileDataStorageManager;
  61. import com.owncloud.android.datamodel.OCFile;
  62. import com.owncloud.android.db.PreferenceManager;
  63. import com.owncloud.android.files.services.FileDownloader;
  64. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  65. import com.owncloud.android.files.services.FileUploader;
  66. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  67. import com.owncloud.android.lib.common.operations.RemoteOperation;
  68. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  69. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  70. import com.owncloud.android.lib.common.utils.Log_OC;
  71. import com.owncloud.android.operations.CopyFileOperation;
  72. import com.owncloud.android.operations.CreateFolderOperation;
  73. import com.owncloud.android.operations.MoveFileOperation;
  74. import com.owncloud.android.operations.RefreshFolderOperation;
  75. import com.owncloud.android.operations.RemoveFileOperation;
  76. import com.owncloud.android.operations.RenameFileOperation;
  77. import com.owncloud.android.operations.SynchronizeFileOperation;
  78. import com.owncloud.android.operations.UploadFileOperation;
  79. import com.owncloud.android.services.observer.FileObserverService;
  80. import com.owncloud.android.syncadapter.FileSyncAdapter;
  81. import com.owncloud.android.ui.dialog.SortingOrderDialogFragment;
  82. import com.owncloud.android.ui.fragment.ExtendedListFragment;
  83. import com.owncloud.android.ui.fragment.FileDetailFragment;
  84. import com.owncloud.android.ui.fragment.FileFragment;
  85. import com.owncloud.android.ui.fragment.OCFileListFragment;
  86. import com.owncloud.android.ui.fragment.TaskRetainerFragment;
  87. import com.owncloud.android.ui.helpers.UriUploader;
  88. import com.owncloud.android.ui.preview.PreviewImageActivity;
  89. import com.owncloud.android.ui.preview.PreviewImageFragment;
  90. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  91. import com.owncloud.android.ui.preview.PreviewTextFragment;
  92. import com.owncloud.android.ui.preview.PreviewVideoActivity;
  93. import com.owncloud.android.utils.DataHolderUtil;
  94. import com.owncloud.android.utils.DisplayUtils;
  95. import com.owncloud.android.utils.ErrorMessageAdapter;
  96. import com.owncloud.android.utils.PermissionUtil;
  97. import java.io.File;
  98. import java.util.ArrayList;
  99. import java.util.Collection;
  100. import static com.owncloud.android.db.PreferenceManager.getSortAscending;
  101. import static com.owncloud.android.db.PreferenceManager.getSortOrder;
  102. /**
  103. * Displays, what files the user has available in his ownCloud. This is the main view.
  104. */
  105. public class FileDisplayActivity extends HookActivity
  106. implements FileFragment.ContainerActivity,
  107. OnEnforceableRefreshListener, SortingOrderDialogFragment.OnSortingOrderListener {
  108. private SyncBroadcastReceiver mSyncBroadcastReceiver;
  109. private UploadFinishReceiver mUploadFinishReceiver;
  110. private DownloadFinishReceiver mDownloadFinishReceiver;
  111. private RemoteOperationResult mLastSslUntrustedServerResult = null;
  112. private boolean mDualPane;
  113. private View mLeftFragmentContainer;
  114. private View mRightFragmentContainer;
  115. private static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  116. private static final String KEY_SYNC_IN_PROGRESS = "SYNC_IN_PROGRESS";
  117. private static final String KEY_WAITING_TO_SEND = "WAITING_TO_SEND";
  118. private static final String KEY_SEARCH_QUERY = "KEY_SEARCH_QUERY";
  119. private static final String SORT_ORDER_DIALOG_TAG = "SORT_ORDER_DIALOG";
  120. public static final String ACTION_DETAILS = "com.owncloud.android.ui.activity.action.DETAILS";
  121. public static final int REQUEST_CODE__SELECT_CONTENT_FROM_APPS = REQUEST_CODE__LAST_SHARED + 1;
  122. public static final int REQUEST_CODE__SELECT_FILES_FROM_FILE_SYSTEM = REQUEST_CODE__LAST_SHARED + 2;
  123. public static final int REQUEST_CODE__MOVE_FILES = REQUEST_CODE__LAST_SHARED + 3;
  124. public static final int REQUEST_CODE__COPY_FILES = REQUEST_CODE__LAST_SHARED + 4;
  125. protected static final long DELAY_TO_REQUEST_REFRESH_OPERATION_LATER = DELAY_TO_REQUEST_OPERATIONS_LATER + 350;
  126. private static final String TAG = FileDisplayActivity.class.getSimpleName();
  127. private static final String TAG_LIST_OF_FILES = "LIST_OF_FILES";
  128. private static final String TAG_SECOND_FRAGMENT = "SECOND_FRAGMENT";
  129. private OCFile mWaitingToPreview;
  130. private boolean mSyncInProgress = false;
  131. private OCFile mWaitingToSend;
  132. private Collection<MenuItem> mDrawerMenuItemstoShowHideList;
  133. private String searchQuery;
  134. private SearchView searchView;
  135. @Override
  136. protected void onCreate(Bundle savedInstanceState) {
  137. Log_OC.v(TAG, "onCreate() start");
  138. super.onCreate(savedInstanceState); // this calls onAccountChanged() when ownCloud Account
  139. // is valid
  140. /// grant that FileObserverService is watching favorite files
  141. if (savedInstanceState == null) {
  142. Intent initObserversIntent = FileObserverService.makeInitIntent(this);
  143. startService(initObserversIntent);
  144. }
  145. /// Load of saved instance state
  146. if (savedInstanceState != null) {
  147. mWaitingToPreview = (OCFile) savedInstanceState.getParcelable(
  148. FileDisplayActivity.KEY_WAITING_TO_PREVIEW);
  149. mSyncInProgress = savedInstanceState.getBoolean(KEY_SYNC_IN_PROGRESS);
  150. mWaitingToSend = (OCFile) savedInstanceState.getParcelable(
  151. FileDisplayActivity.KEY_WAITING_TO_SEND);
  152. searchQuery = savedInstanceState.getString(KEY_SEARCH_QUERY);
  153. } else {
  154. mWaitingToPreview = null;
  155. mSyncInProgress = false;
  156. mWaitingToSend = null;
  157. }
  158. /// USER INTERFACE
  159. // Inflate and set the layout view
  160. setContentView(R.layout.files);
  161. // setup toolbar
  162. setupToolbar();
  163. // setup drawer
  164. if (MainApp.isOnlyOnDevice()) {
  165. setupDrawer(R.id.nav_on_device);
  166. } else {
  167. setupDrawer(R.id.nav_all_files);
  168. }
  169. mDualPane = getResources().getBoolean(R.bool.large_land_layout);
  170. mLeftFragmentContainer = findViewById(R.id.left_fragment_container);
  171. mRightFragmentContainer = findViewById(R.id.right_fragment_container);
  172. // Action bar setup
  173. getSupportActionBar().setHomeButtonEnabled(true);
  174. // Init Fragment without UI to retain AsyncTask across configuration changes
  175. FragmentManager fm = getSupportFragmentManager();
  176. TaskRetainerFragment taskRetainerFragment =
  177. (TaskRetainerFragment) fm.findFragmentByTag(TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT);
  178. if (taskRetainerFragment == null) {
  179. taskRetainerFragment = new TaskRetainerFragment();
  180. fm.beginTransaction()
  181. .add(taskRetainerFragment, TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT).commit();
  182. } // else, Fragment already created and retained across configuration change
  183. Log_OC.v(TAG, "onCreate() end");
  184. }
  185. @Override
  186. protected void onPostCreate(Bundle savedInstanceState) {
  187. super.onPostCreate(savedInstanceState);
  188. if (PermissionUtil.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
  189. // Check if we should show an explanation
  190. if (PermissionUtil.shouldShowRequestPermissionRationale(this,
  191. Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
  192. // Show explanation to the user and then request permission
  193. Snackbar snackbar = Snackbar.make(findViewById(R.id.ListLayout), R.string.permission_storage_access,
  194. Snackbar.LENGTH_INDEFINITE)
  195. .setAction(R.string.common_ok, new View.OnClickListener() {
  196. @Override
  197. public void onClick(View v) {
  198. PermissionUtil.requestWriteExternalStoreagePermission(FileDisplayActivity.this);
  199. }
  200. });
  201. DisplayUtils.colorSnackbar(this, snackbar);
  202. snackbar.show();
  203. } else {
  204. // No explanation needed, request the permission.
  205. PermissionUtil.requestWriteExternalStoreagePermission(this);
  206. }
  207. }
  208. if (savedInstanceState == null) {
  209. createMinFragments();
  210. }
  211. refreshList(true);
  212. setIndeterminate(mSyncInProgress);
  213. // always AFTER setContentView(...) in onCreate(); to work around bug in its implementation
  214. setBackgroundText();
  215. upgradeNotificationForInstantUpload();
  216. }
  217. /**
  218. * For Android 7+.
  219. * Opens a pop up info for the new instant upload and disabled the old instant upload.
  220. */
  221. private void upgradeNotificationForInstantUpload() {
  222. // check for Android 6+ if legacy instant upload is activated --> disable + show info
  223. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M &&
  224. (PreferenceManager.instantPictureUploadEnabled(this) ||
  225. PreferenceManager.instantPictureUploadEnabled(this))) {
  226. // remove legacy shared preferences
  227. SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(this).edit();
  228. editor.remove("instant_uploading")
  229. .remove("instant_video_uploading")
  230. .remove("instant_upload_path")
  231. .remove("instant_upload_path_use_subfolders")
  232. .remove("instant_upload_on_wifi")
  233. .remove("instant_upload_on_charging")
  234. .remove("instant_video_upload_path")
  235. .remove("instant_video_upload_path_use_subfolders")
  236. .remove("instant_video_upload_on_wifi")
  237. .remove("instant_video_uploading")
  238. .remove("instant_video_upload_on_charging")
  239. .remove("prefs_instant_behaviour").apply();
  240. // show info pop-up
  241. new AlertDialog.Builder(this, R.style.Theme_ownCloud_Dialog)
  242. .setTitle(R.string.drawer_folder_sync)
  243. .setMessage(R.string.folder_sync_new_info)
  244. .setPositiveButton(R.string.drawer_open, new DialogInterface.OnClickListener() {
  245. public void onClick(DialogInterface dialog, int which) {
  246. // show instant upload
  247. Intent folderSyncIntent = new Intent(getApplicationContext(), FolderSyncActivity.class);
  248. dialog.dismiss();
  249. startActivity(folderSyncIntent);
  250. }
  251. })
  252. .setNegativeButton(R.string.drawer_close, new DialogInterface.OnClickListener() {
  253. public void onClick(DialogInterface dialog, int which) {
  254. dialog.dismiss();
  255. }
  256. })
  257. .setIcon(R.drawable.ic_cloud_upload)
  258. .show();
  259. }
  260. }
  261. @Override
  262. public void onRequestPermissionsResult(int requestCode,
  263. String permissions[], int[] grantResults) {
  264. switch (requestCode) {
  265. case PermissionUtil.PERMISSIONS_WRITE_EXTERNAL_STORAGE: {
  266. // If request is cancelled, result arrays are empty.
  267. if (grantResults.length > 0
  268. && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
  269. // permission was granted
  270. startSynchronization();
  271. // toggle on is save since this is the only scenario this code gets accessed
  272. } else {
  273. // permission denied --> do nothing
  274. return;
  275. }
  276. return;
  277. }
  278. }
  279. }
  280. /**
  281. * Called when the ownCloud {@link Account} associated to the Activity was just updated.
  282. */
  283. @Override
  284. protected void onAccountSet(boolean stateWasRecovered) {
  285. super.onAccountSet(stateWasRecovered);
  286. if (getAccount() != null) {
  287. /// Check whether the 'main' OCFile handled by the Activity is contained in the
  288. // current Account
  289. OCFile file = getFile();
  290. // get parent from path
  291. String parentPath = "";
  292. if (file != null) {
  293. if (file.isDown() && file.getLastSyncDateForProperties() == 0) {
  294. // upload in progress - right now, files are not inserted in the local
  295. // cache until the upload is successful get parent from path
  296. parentPath = file.getRemotePath().substring(0,
  297. file.getRemotePath().lastIndexOf(file.getFileName()));
  298. if (getStorageManager().getFileByPath(parentPath) == null) {
  299. file = null; // not able to know the directory where the file is uploading
  300. }
  301. } else {
  302. file = getStorageManager().getFileByPath(file.getRemotePath());
  303. // currentDir = null if not in the current Account
  304. }
  305. }
  306. if (file == null) {
  307. // fall back to root folder
  308. file = getStorageManager().getFileByPath(OCFile.ROOT_PATH); // never returns null
  309. }
  310. setFile(file);
  311. if (mAccountWasSet) {
  312. setAccountInDrawer(getAccount());
  313. setupDrawer();
  314. }
  315. if (!stateWasRecovered) {
  316. Log_OC.d(TAG, "Initializing Fragments in onAccountChanged..");
  317. initFragmentsWithFile();
  318. if (file.isFolder() && TextUtils.isEmpty(searchQuery)) {
  319. startSyncFolderOperation(file, false);
  320. }
  321. } else {
  322. updateFragmentsVisibility(!file.isFolder());
  323. updateActionBarTitleAndHomeButton(file.isFolder() ? null : file);
  324. }
  325. }
  326. }
  327. private void createMinFragments() {
  328. OCFileListFragment listOfFiles = new OCFileListFragment();
  329. Bundle args = new Bundle();
  330. args.putBoolean(OCFileListFragment.ARG_ALLOW_CONTEXTUAL_ACTIONS, true);
  331. listOfFiles.setArguments(args);
  332. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  333. transaction.add(R.id.left_fragment_container, listOfFiles, TAG_LIST_OF_FILES);
  334. transaction.commit();
  335. }
  336. private void initFragmentsWithFile() {
  337. if (getAccount() != null && getFile() != null) {
  338. /// First fragment
  339. OCFileListFragment listOfFiles = getListOfFilesFragment();
  340. if (listOfFiles != null && TextUtils.isEmpty(searchQuery)) {
  341. listOfFiles.listDirectory(getCurrentDir(), MainApp.isOnlyOnDevice(), false);
  342. } else {
  343. Log_OC.e(TAG, "Still have a chance to lose the initializacion of list fragment >(");
  344. }
  345. /// Second fragment
  346. OCFile file = getFile();
  347. Fragment secondFragment = chooseInitialSecondFragment(file);
  348. if (secondFragment != null) {
  349. setSecondFragment(secondFragment);
  350. updateFragmentsVisibility(true);
  351. updateActionBarTitleAndHomeButton(file);
  352. } else {
  353. cleanSecondFragment();
  354. if (file.isDown() && PreviewTextFragment.canBePreviewed(file)) {
  355. startTextPreview(file);
  356. }
  357. }
  358. } else {
  359. Log_OC.e(TAG, "initFragments() called with invalid NULLs!");
  360. if (getAccount() == null) {
  361. Log_OC.e(TAG, "\t account is NULL");
  362. }
  363. if (getFile() == null) {
  364. Log_OC.e(TAG, "\t file is NULL");
  365. }
  366. }
  367. }
  368. private Fragment chooseInitialSecondFragment(OCFile file) {
  369. Fragment secondFragment = null;
  370. if (file != null && !file.isFolder()) {
  371. if (file.isDown() && PreviewMediaFragment.canBePreviewed(file)
  372. && file.getLastSyncDateForProperties() > 0 // temporal fix
  373. ) {
  374. int startPlaybackPosition =
  375. getIntent().getIntExtra(PreviewVideoActivity.EXTRA_START_POSITION, 0);
  376. boolean autoplay =
  377. getIntent().getBooleanExtra(PreviewVideoActivity.EXTRA_AUTOPLAY, true);
  378. secondFragment = new PreviewMediaFragment(file, getAccount(),
  379. startPlaybackPosition, autoplay);
  380. } else if (file.isDown() && PreviewTextFragment.canBePreviewed(file)) {
  381. secondFragment = null;
  382. } else {
  383. secondFragment = FileDetailFragment.newInstance(file, getAccount());
  384. }
  385. }
  386. return secondFragment;
  387. }
  388. /**
  389. * Replaces the second fragment managed by the activity with the received as
  390. * a parameter.
  391. * <p/>
  392. * Assumes never will be more than two fragments managed at the same time.
  393. *
  394. * @param fragment New second Fragment to set.
  395. */
  396. private void setSecondFragment(Fragment fragment) {
  397. if (searchView != null) {
  398. searchView.post(new Runnable() {
  399. @Override
  400. public void run() {
  401. searchView.setQuery("", true);
  402. }
  403. });
  404. }
  405. setDrawerIndicatorEnabled(false);
  406. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  407. transaction.replace(R.id.right_fragment_container, fragment, TAG_SECOND_FRAGMENT);
  408. transaction.commit();
  409. }
  410. private void updateFragmentsVisibility(boolean existsSecondFragment) {
  411. if (mDualPane) {
  412. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  413. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  414. }
  415. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  416. mRightFragmentContainer.setVisibility(View.VISIBLE);
  417. }
  418. } else if (existsSecondFragment) {
  419. if (mLeftFragmentContainer.getVisibility() != View.GONE) {
  420. mLeftFragmentContainer.setVisibility(View.GONE);
  421. }
  422. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  423. mRightFragmentContainer.setVisibility(View.VISIBLE);
  424. }
  425. } else {
  426. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  427. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  428. }
  429. if (mRightFragmentContainer.getVisibility() != View.GONE) {
  430. mRightFragmentContainer.setVisibility(View.GONE);
  431. }
  432. }
  433. }
  434. private OCFileListFragment getListOfFilesFragment() {
  435. Fragment listOfFiles = getSupportFragmentManager().findFragmentByTag(
  436. FileDisplayActivity.TAG_LIST_OF_FILES);
  437. if (listOfFiles != null) {
  438. return (OCFileListFragment) listOfFiles;
  439. }
  440. Log_OC.e(TAG, "Access to unexisting list of files fragment!!");
  441. return null;
  442. }
  443. public FileFragment getSecondFragment() {
  444. Fragment second = getSupportFragmentManager().findFragmentByTag(
  445. FileDisplayActivity.TAG_SECOND_FRAGMENT);
  446. if (second != null) {
  447. return (FileFragment) second;
  448. }
  449. return null;
  450. }
  451. protected void cleanSecondFragment() {
  452. Fragment second = getSecondFragment();
  453. if (second != null) {
  454. FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
  455. tr.remove(second);
  456. tr.commit();
  457. }
  458. updateFragmentsVisibility(false);
  459. updateActionBarTitleAndHomeButton(null);
  460. }
  461. public void refreshListOfFilesFragment(boolean fromSearch) {
  462. OCFileListFragment fileListFragment = getListOfFilesFragment();
  463. if (fileListFragment != null) {
  464. fileListFragment.listDirectory(MainApp.isOnlyOnDevice(), fromSearch);
  465. }
  466. }
  467. protected void refreshSecondFragment(String downloadEvent, String downloadedRemotePath,
  468. boolean success) {
  469. FileFragment secondFragment = getSecondFragment();
  470. boolean waitedPreview = (mWaitingToPreview != null &&
  471. mWaitingToPreview.getRemotePath().equals(downloadedRemotePath));
  472. if (secondFragment instanceof FileDetailFragment) {
  473. FileDetailFragment detailsFragment = (FileDetailFragment) secondFragment;
  474. OCFile fileInFragment = detailsFragment.getFile();
  475. if (fileInFragment != null &&
  476. !downloadedRemotePath.equals(fileInFragment.getRemotePath())) {
  477. // the user browsed to other file ; forget the automatic preview
  478. mWaitingToPreview = null;
  479. } else if (downloadEvent.equals(FileDownloader.getDownloadAddedMessage())) {
  480. // grant that the right panel updates the progress bar
  481. detailsFragment.listenForTransferProgress();
  482. detailsFragment.updateFileDetails(true, false);
  483. } else if (downloadEvent.equals(FileDownloader.getDownloadFinishMessage())) {
  484. // update the right panel
  485. boolean detailsFragmentChanged = false;
  486. if (waitedPreview) {
  487. if (success) {
  488. mWaitingToPreview = getStorageManager().getFileById(
  489. mWaitingToPreview.getFileId()); // update the file from database,
  490. // for the local storage path
  491. if (PreviewMediaFragment.canBePreviewed(mWaitingToPreview)) {
  492. startMediaPreview(mWaitingToPreview, 0, true);
  493. detailsFragmentChanged = true;
  494. } else if (PreviewTextFragment.canBePreviewed(mWaitingToPreview)) {
  495. startTextPreview(mWaitingToPreview);
  496. detailsFragmentChanged = true;
  497. } else {
  498. getFileOperationsHelper().openFile(mWaitingToPreview);
  499. }
  500. }
  501. mWaitingToPreview = null;
  502. }
  503. if (!detailsFragmentChanged) {
  504. detailsFragment.updateFileDetails(false, (success));
  505. }
  506. }
  507. }
  508. }
  509. @Override
  510. public boolean onPrepareOptionsMenu(Menu menu) {
  511. boolean drawerOpen = isDrawerOpen();
  512. for (MenuItem menuItem : mDrawerMenuItemstoShowHideList) {
  513. menuItem.setVisible(!drawerOpen);
  514. }
  515. return super.onPrepareOptionsMenu(menu);
  516. }
  517. @Override
  518. public boolean onCreateOptionsMenu(Menu menu) {
  519. MenuInflater inflater = getMenuInflater();
  520. inflater.inflate(R.menu.main_menu, menu);
  521. menu.findItem(R.id.action_create_dir).setVisible(false);
  522. final MenuItem item = menu.findItem(R.id.action_search);
  523. searchView = (SearchView) MenuItemCompat.getActionView(item);
  524. // populate list of menu items to show/hide when drawer is opened/closed
  525. mDrawerMenuItemstoShowHideList = new ArrayList<>(4);
  526. mDrawerMenuItemstoShowHideList.add(menu.findItem(R.id.action_sort));
  527. mDrawerMenuItemstoShowHideList.add(menu.findItem(R.id.action_sync_account));
  528. mDrawerMenuItemstoShowHideList.add(menu.findItem(R.id.action_switch_view));
  529. mDrawerMenuItemstoShowHideList.add(menu.findItem(R.id.action_search));
  530. //focus the SearchView
  531. if (!TextUtils.isEmpty(searchQuery)) {
  532. searchView.post(new Runnable() {
  533. @Override
  534. public void run() {
  535. searchView.setIconified(false);
  536. searchView.setQuery(searchQuery, true);
  537. searchView.clearFocus();
  538. }
  539. });
  540. }
  541. final View mSearchEditFrame = searchView
  542. .findViewById(android.support.v7.appcompat.R.id.search_edit_frame);
  543. searchView.setOnCloseListener(new SearchView.OnCloseListener() {
  544. @Override
  545. public boolean onClose() {
  546. if (TextUtils.isEmpty(searchView.getQuery().toString())) {
  547. searchView.onActionViewCollapsed();
  548. setDrawerIndicatorEnabled(isDrawerIndicatorAvailable()); // order matters
  549. getSupportActionBar().setDisplayHomeAsUpEnabled(true);
  550. mDrawerToggle.syncState();
  551. } else {
  552. searchView.post(new Runnable() {
  553. @Override
  554. public void run() {
  555. searchView.setQuery("", true);
  556. }
  557. });
  558. }
  559. return true;
  560. }
  561. });
  562. ViewTreeObserver vto = mSearchEditFrame.getViewTreeObserver();
  563. vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
  564. int oldVisibility = -1;
  565. @Override
  566. public void onGlobalLayout() {
  567. int currentVisibility = mSearchEditFrame.getVisibility();
  568. if (currentVisibility != oldVisibility) {
  569. if (currentVisibility == View.VISIBLE) {
  570. setDrawerIndicatorEnabled(false);
  571. }
  572. oldVisibility = currentVisibility;
  573. }
  574. }
  575. });
  576. return true;
  577. }
  578. @Override
  579. public boolean onOptionsItemSelected(MenuItem item) {
  580. boolean retval = true;
  581. switch (item.getItemId()) {
  582. case R.id.action_sync_account: {
  583. startSynchronization();
  584. break;
  585. }
  586. case android.R.id.home: {
  587. FileFragment second = getSecondFragment();
  588. OCFile currentDir = getCurrentDir();
  589. if (isDrawerOpen()) {
  590. closeDrawer();
  591. } else if ((currentDir != null && currentDir.getParentId() != 0) ||
  592. (second != null && second.getFile() != null) || isSearchOpen()) {
  593. onBackPressed();
  594. } else {
  595. openDrawer();
  596. }
  597. break;
  598. }
  599. case R.id.action_sort: {
  600. FragmentManager fm = getSupportFragmentManager();
  601. FragmentTransaction ft = fm.beginTransaction();
  602. ft.addToBackStack(null);
  603. SortingOrderDialogFragment mSortingOrderDialogFragment = SortingOrderDialogFragment.newInstance(
  604. getSortOrder(this),
  605. getSortAscending(this)
  606. );
  607. mSortingOrderDialogFragment.show(ft, SORT_ORDER_DIALOG_TAG);
  608. break;
  609. }
  610. case R.id.action_switch_view: {
  611. if (isGridView()) {
  612. item.setTitle(getString(R.string.action_switch_grid_view));
  613. item.setIcon(ContextCompat.getDrawable(getApplicationContext(),
  614. R.drawable.ic_view_module));
  615. getListOfFilesFragment().setListAsPreferred();
  616. } else {
  617. item.setTitle(getApplicationContext().getString(R.string.action_switch_list_view));
  618. item.setIcon(ContextCompat.getDrawable(getApplicationContext(),
  619. R.drawable.ic_view_list));
  620. getListOfFilesFragment().setGridAsPreferred();
  621. }
  622. return true;
  623. }
  624. default:
  625. retval = super.onOptionsItemSelected(item);
  626. }
  627. return retval;
  628. }
  629. private void startSynchronization() {
  630. Log_OC.d(TAG, "Got to start sync");
  631. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  632. Log_OC.d(TAG, "Canceling all syncs for " + MainApp.getAuthority());
  633. ContentResolver.cancelSync(null, MainApp.getAuthority());
  634. // cancel the current synchronizations of any ownCloud account
  635. Bundle bundle = new Bundle();
  636. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  637. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
  638. Log_OC.d(TAG, "Requesting sync for " + getAccount().name + " at " +
  639. MainApp.getAuthority());
  640. ContentResolver.requestSync(
  641. getAccount(),
  642. MainApp.getAuthority(), bundle);
  643. } else {
  644. Log_OC.d(TAG, "Requesting sync for " + getAccount().name + " at " +
  645. MainApp.getAuthority() + " with new API");
  646. SyncRequest.Builder builder = new SyncRequest.Builder();
  647. builder.setSyncAdapter(getAccount(), MainApp.getAuthority());
  648. builder.setExpedited(true);
  649. builder.setManual(true);
  650. builder.syncOnce();
  651. // Fix bug in Android Lollipop when you click on refresh the whole account
  652. Bundle extras = new Bundle();
  653. builder.setExtras(extras);
  654. SyncRequest request = builder.build();
  655. ContentResolver.requestSync(request);
  656. }
  657. }
  658. /**
  659. * Called, when the user selected something for uploading
  660. */
  661. @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
  662. @Override
  663. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  664. if (requestCode == REQUEST_CODE__SELECT_CONTENT_FROM_APPS &&
  665. (resultCode == RESULT_OK ||
  666. resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)) {
  667. requestUploadOfContentFromApps(data, resultCode);
  668. } else if (requestCode == REQUEST_CODE__SELECT_FILES_FROM_FILE_SYSTEM &&
  669. (resultCode == RESULT_OK ||
  670. resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE ||
  671. resultCode == UploadFilesActivity.RESULT_OK_AND_DO_NOTHING ||
  672. resultCode == UploadFilesActivity.RESULT_OK_AND_DELETE)) {
  673. requestUploadOfFilesFromFileSystem(data, resultCode);
  674. } else if (requestCode == REQUEST_CODE__MOVE_FILES && resultCode == RESULT_OK) {
  675. final Intent fData = data;
  676. getHandler().postDelayed(
  677. new Runnable() {
  678. @Override
  679. public void run() {
  680. requestMoveOperation(fData);
  681. }
  682. },
  683. DELAY_TO_REQUEST_OPERATIONS_LATER
  684. );
  685. } else if (requestCode == REQUEST_CODE__COPY_FILES && resultCode == RESULT_OK) {
  686. final Intent fData = data;
  687. getHandler().postDelayed(
  688. new Runnable() {
  689. @Override
  690. public void run() {
  691. requestCopyOperation(fData);
  692. }
  693. },
  694. DELAY_TO_REQUEST_OPERATIONS_LATER
  695. );
  696. } else {
  697. super.onActivityResult(requestCode, resultCode, data);
  698. }
  699. }
  700. private void requestUploadOfFilesFromFileSystem(Intent data, int resultCode) {
  701. String[] filePaths = data.getStringArrayExtra(UploadFilesActivity.EXTRA_CHOSEN_FILES);
  702. if (filePaths != null) {
  703. String[] remotePaths = new String[filePaths.length];
  704. String remotePathBase = getCurrentDir().getRemotePath();
  705. for (int j = 0; j < remotePaths.length; j++) {
  706. remotePaths[j] = remotePathBase + (new File(filePaths[j])).getName();
  707. }
  708. // default, as fallback
  709. int behaviour = FileUploader.LOCAL_BEHAVIOUR_FORGET;
  710. switch (resultCode) {
  711. case UploadFilesActivity.RESULT_OK_AND_MOVE:
  712. behaviour = FileUploader.LOCAL_BEHAVIOUR_MOVE;
  713. break;
  714. case UploadFilesActivity.RESULT_OK_AND_DELETE:
  715. behaviour = FileUploader.LOCAL_BEHAVIOUR_DELETE;
  716. break;
  717. case UploadFilesActivity.RESULT_OK_AND_DO_NOTHING:
  718. behaviour = FileUploader.LOCAL_BEHAVIOUR_FORGET;
  719. break;
  720. }
  721. FileUploader.UploadRequester requester = new FileUploader.UploadRequester();
  722. requester.uploadNewFile(
  723. this,
  724. getAccount(),
  725. filePaths,
  726. remotePaths,
  727. null, // MIME type will be detected from file name
  728. behaviour,
  729. false, // do not create parent folder if not existent
  730. UploadFileOperation.CREATED_BY_USER
  731. );
  732. } else {
  733. Log_OC.d(TAG, "User clicked on 'Update' with no selection");
  734. Toast t = Toast.makeText(this, getString(R.string.filedisplay_no_file_selected),
  735. Toast.LENGTH_LONG);
  736. t.show();
  737. return;
  738. }
  739. }
  740. private void requestUploadOfContentFromApps(Intent contentIntent, int resultCode) {
  741. ArrayList<Parcelable> streamsToUpload = new ArrayList<>();
  742. //getClipData is only supported on api level 16+, Jelly Bean
  743. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN &&
  744. contentIntent.getClipData() != null &&
  745. contentIntent.getClipData().getItemCount() > 0) {
  746. for (int i = 0; i < contentIntent.getClipData().getItemCount(); i++) {
  747. streamsToUpload.add(contentIntent.getClipData().getItemAt(i).getUri());
  748. }
  749. } else {
  750. streamsToUpload.add(contentIntent.getData());
  751. }
  752. int behaviour = (resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE) ? FileUploader.LOCAL_BEHAVIOUR_MOVE :
  753. FileUploader.LOCAL_BEHAVIOUR_COPY;
  754. OCFile currentDir = getCurrentDir();
  755. String remotePath = (currentDir != null) ? currentDir.getRemotePath() : OCFile.ROOT_PATH;
  756. UriUploader uploader = new UriUploader(
  757. this,
  758. streamsToUpload,
  759. remotePath,
  760. getAccount(),
  761. behaviour,
  762. false, // Not show waiting dialog while file is being copied from private storage
  763. null // Not needed copy temp task listener
  764. );
  765. uploader.uploadUris();
  766. }
  767. /**
  768. * Request the operation for moving the file/folder from one path to another
  769. *
  770. * @param data Intent received
  771. */
  772. private void requestMoveOperation(Intent data) {
  773. OCFile folderToMoveAt = data.getParcelableExtra(FolderPickerActivity.EXTRA_FOLDER);
  774. ArrayList<OCFile> files = data.getParcelableArrayListExtra(FolderPickerActivity.EXTRA_FILES);
  775. getFileOperationsHelper().moveFiles(files, folderToMoveAt);
  776. }
  777. /**
  778. * Request the operation for copying the file/folder from one path to another
  779. *
  780. * @param data Intent received
  781. */
  782. private void requestCopyOperation(Intent data) {
  783. OCFile folderToMoveAt = data.getParcelableExtra(FolderPickerActivity.EXTRA_FOLDER);
  784. ArrayList<OCFile> files = data.getParcelableArrayListExtra(FolderPickerActivity.EXTRA_FILES);
  785. getFileOperationsHelper().copyFiles(files, folderToMoveAt);
  786. }
  787. private boolean isSearchOpen() {
  788. final View mSearchEditFrame = searchView.findViewById(android.support.v7.appcompat.R.id.search_edit_frame);
  789. return (mSearchEditFrame != null && mSearchEditFrame.getVisibility() == View.VISIBLE);
  790. }
  791. private void revertBottomNavigationBarToAllFiles() {
  792. if (getResources().getBoolean(R.bool.bottom_toolbar_enabled)) {
  793. BottomNavigationView bottomNavigationView = (BottomNavigationView) getListOfFilesFragment().getView()
  794. .findViewById(R.id.bottom_navigation_view);
  795. if (bottomNavigationView.getMenu().findItem(R.id.nav_bar_settings).isChecked()) {
  796. bottomNavigationView.getMenu().findItem(R.id.nav_bar_files).setChecked(true);
  797. }
  798. }
  799. }
  800. @Override
  801. public void onBackPressed() {
  802. boolean isFabOpen = isFabOpen();
  803. boolean isDrawerOpen = isDrawerOpen();
  804. boolean isSearchOpen = isSearchOpen();
  805. /*
  806. * BackPressed priority/hierarchy:
  807. * 1. close search view if opened
  808. * 2. close drawer if opened
  809. * 3. close FAB if open (only if drawer isn't open)
  810. * 4. navigate up (only if drawer and FAB aren't open)
  811. */
  812. if (isSearchOpen && searchView != null) {
  813. searchView.setQuery("", true);
  814. searchView.onActionViewCollapsed();
  815. setDrawerIndicatorEnabled(isDrawerIndicatorAvailable());
  816. } else if (isDrawerOpen && isFabOpen) {
  817. // close drawer first
  818. super.onBackPressed();
  819. } else if (isDrawerOpen && !isFabOpen) {
  820. // close drawer
  821. super.onBackPressed();
  822. } else if (!isDrawerOpen && isFabOpen) {
  823. // close fab
  824. getListOfFilesFragment().getFabMain().collapse();
  825. } else {
  826. // all closed
  827. OCFileListFragment listOfFiles = getListOfFilesFragment();
  828. if (mDualPane || getSecondFragment() == null) {
  829. OCFile currentDir = getCurrentDir();
  830. if (currentDir == null || currentDir.getParentId() == FileDataStorageManager.ROOT_PARENT_ID) {
  831. finish();
  832. return;
  833. }
  834. if (listOfFiles != null) { // should never be null, indeed
  835. listOfFiles.onBrowseUp();
  836. }
  837. }
  838. if (listOfFiles != null) { // should never be null, indeed
  839. setFile(listOfFiles.getCurrentFile());
  840. }
  841. cleanSecondFragment();
  842. }
  843. }
  844. @Override
  845. protected void onSaveInstanceState(Bundle outState) {
  846. // responsibility of restore is preferred in onCreate() before than in
  847. // onRestoreInstanceState when there are Fragments involved
  848. Log_OC.v(TAG, "onSaveInstanceState() start");
  849. super.onSaveInstanceState(outState);
  850. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW, mWaitingToPreview);
  851. outState.putBoolean(FileDisplayActivity.KEY_SYNC_IN_PROGRESS, mSyncInProgress);
  852. //outState.putBoolean(FileDisplayActivity.KEY_REFRESH_SHARES_IN_PROGRESS,
  853. // mRefreshSharesInProgress);
  854. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_SEND, mWaitingToSend);
  855. if (searchView != null) {
  856. outState.putString(KEY_SEARCH_QUERY, searchView.getQuery().toString());
  857. }
  858. Log_OC.v(TAG, "onSaveInstanceState() end");
  859. }
  860. @Override
  861. protected void onResume() {
  862. Log_OC.v(TAG, "onResume() start");
  863. super.onResume();
  864. revertBottomNavigationBarToAllFiles();
  865. // refresh list of files
  866. if (searchView != null && !TextUtils.isEmpty(searchQuery)) {
  867. searchView.setQuery(searchQuery, true);
  868. } else {
  869. refreshListOfFilesFragment(false);
  870. }
  871. // Listen for sync messages
  872. IntentFilter syncIntentFilter = new IntentFilter(FileSyncAdapter.EVENT_FULL_SYNC_START);
  873. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_END);
  874. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_FOLDER_CONTENTS_SYNCED);
  875. syncIntentFilter.addAction(RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
  876. syncIntentFilter.addAction(RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED);
  877. mSyncBroadcastReceiver = new SyncBroadcastReceiver();
  878. registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  879. //LocalBroadcastManager.getInstance(this).registerReceiver(mSyncBroadcastReceiver,
  880. // syncIntentFilter);
  881. // Listen for upload messages
  882. IntentFilter uploadIntentFilter = new IntentFilter(FileUploader.getUploadFinishMessage());
  883. mUploadFinishReceiver = new UploadFinishReceiver();
  884. registerReceiver(mUploadFinishReceiver, uploadIntentFilter);
  885. // Listen for download messages
  886. IntentFilter downloadIntentFilter = new IntentFilter(
  887. FileDownloader.getDownloadAddedMessage());
  888. downloadIntentFilter.addAction(FileDownloader.getDownloadFinishMessage());
  889. mDownloadFinishReceiver = new DownloadFinishReceiver();
  890. registerReceiver(mDownloadFinishReceiver, downloadIntentFilter);
  891. Log_OC.v(TAG, "onResume() end");
  892. }
  893. @Override
  894. protected void onPause() {
  895. Log_OC.v(TAG, "onPause() start");
  896. if (mSyncBroadcastReceiver != null) {
  897. unregisterReceiver(mSyncBroadcastReceiver);
  898. //LocalBroadcastManager.getInstance(this).unregisterReceiver(mSyncBroadcastReceiver);
  899. mSyncBroadcastReceiver = null;
  900. }
  901. if (mUploadFinishReceiver != null) {
  902. unregisterReceiver(mUploadFinishReceiver);
  903. mUploadFinishReceiver = null;
  904. }
  905. if (mDownloadFinishReceiver != null) {
  906. unregisterReceiver(mDownloadFinishReceiver);
  907. mDownloadFinishReceiver = null;
  908. }
  909. super.onPause();
  910. Log_OC.v(TAG, "onPause() end");
  911. }
  912. public boolean isFabOpen() {
  913. return (getListOfFilesFragment() != null
  914. && getListOfFilesFragment().getFabMain() != null
  915. && getListOfFilesFragment().getFabMain().isExpanded());
  916. }
  917. @Override
  918. public void onSortingOrderChosen(int selection) {
  919. switch (selection) {
  920. case SortingOrderDialogFragment.BY_NAME_ASC:
  921. sortByName(true);
  922. break;
  923. case SortingOrderDialogFragment.BY_NAME_DESC:
  924. sortByName(false);
  925. break;
  926. case SortingOrderDialogFragment.BY_MODIFICATION_DATE_ASC:
  927. sortByDate(true);
  928. break;
  929. case SortingOrderDialogFragment.BY_MODIFICATION_DATE_DESC:
  930. sortByDate(false);
  931. break;
  932. case SortingOrderDialogFragment.BY_SIZE_ASC:
  933. sortBySize(true);
  934. break;
  935. case SortingOrderDialogFragment.BY_SIZE_DESC:
  936. sortBySize(false);
  937. break;
  938. default: // defaulting to alphabetical-ascending
  939. Log_OC.w(TAG, "Unknown sort order, defaulting to alphabetical-ascending!");
  940. sortByName(true);
  941. break;
  942. }
  943. }
  944. private class SyncBroadcastReceiver extends BroadcastReceiver {
  945. /**
  946. * {@link BroadcastReceiver} to enable syncing feedback in UI
  947. */
  948. @Override
  949. public void onReceive(Context context, Intent intent) {
  950. try {
  951. String event = intent.getAction();
  952. Log_OC.d(TAG, "Received broadcast " + event);
  953. String accountName = intent.getStringExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME);
  954. String synchFolderRemotePath =
  955. intent.getStringExtra(FileSyncAdapter.EXTRA_FOLDER_PATH);
  956. RemoteOperationResult synchResult = (RemoteOperationResult)
  957. DataHolderUtil.getInstance().retrieve(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
  958. boolean sameAccount = (getAccount() != null &&
  959. accountName.equals(getAccount().name) && getStorageManager() != null);
  960. if (sameAccount) {
  961. if (FileSyncAdapter.EVENT_FULL_SYNC_START.equals(event)) {
  962. mSyncInProgress = true;
  963. } else {
  964. OCFile currentFile = (getFile() == null) ? null :
  965. getStorageManager().getFileByPath(getFile().getRemotePath());
  966. OCFile currentDir = (getCurrentDir() == null) ? null :
  967. getStorageManager().getFileByPath(getCurrentDir().getRemotePath());
  968. if (currentDir == null) {
  969. // current folder was removed from the server
  970. Toast.makeText(FileDisplayActivity.this,
  971. String.format(
  972. getString(R.string.
  973. sync_current_folder_was_removed),
  974. synchFolderRemotePath),
  975. Toast.LENGTH_LONG)
  976. .show();
  977. browseToRoot();
  978. } else {
  979. if (currentFile == null && !getFile().isFolder()) {
  980. // currently selected file was removed in the server, and now we
  981. // know it
  982. cleanSecondFragment();
  983. currentFile = currentDir;
  984. }
  985. if (currentDir.getRemotePath().equals(synchFolderRemotePath)) {
  986. OCFileListFragment fileListFragment = getListOfFilesFragment();
  987. if (fileListFragment != null) {
  988. fileListFragment.listDirectory(currentDir,
  989. MainApp.isOnlyOnDevice(), false);
  990. }
  991. }
  992. setFile(currentFile);
  993. }
  994. mSyncInProgress = (!FileSyncAdapter.EVENT_FULL_SYNC_END.equals(event) &&
  995. !RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED
  996. .equals(event));
  997. if (RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED.
  998. equals(event) &&
  999. synchResult != null && !synchResult.isSuccess()) {
  1000. /// TODO refactor and make common
  1001. if (checkForRemoteOperationError(synchResult)) {
  1002. requestCredentialsUpdate(context);
  1003. } else if (RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED.equals(
  1004. synchResult.getCode())) {
  1005. showUntrustedCertDialog(synchResult);
  1006. }
  1007. }
  1008. removeStickyBroadcast(intent);
  1009. DataHolderUtil.getInstance().delete(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
  1010. Log_OC.d(TAG, "Setting progress visibility to " + mSyncInProgress);
  1011. setIndeterminate(mSyncInProgress);
  1012. setBackgroundText();
  1013. }
  1014. }
  1015. if (synchResult != null && synchResult.getCode().equals(
  1016. RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED)) {
  1017. mLastSslUntrustedServerResult = synchResult;
  1018. }
  1019. } catch (RuntimeException e) {
  1020. // avoid app crashes after changing the serial id of RemoteOperationResult
  1021. // in owncloud library with broadcast notifications pending to process
  1022. removeStickyBroadcast(intent);
  1023. DataHolderUtil.getInstance().delete(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
  1024. }
  1025. }
  1026. }
  1027. private boolean checkForRemoteOperationError(RemoteOperationResult syncResult) {
  1028. return ResultCode.UNAUTHORIZED.equals(syncResult.getCode()) ||
  1029. (syncResult.isException() && syncResult.getException()
  1030. instanceof AuthenticatorException);
  1031. }
  1032. /**
  1033. * Show a text message on screen view for notifying user if content is
  1034. * loading or folder is empty
  1035. */
  1036. private void setBackgroundText() {
  1037. OCFileListFragment ocFileListFragment = getListOfFilesFragment();
  1038. if (ocFileListFragment != null) {
  1039. if (!mSyncInProgress) {
  1040. ocFileListFragment.setEmptyListMessage(ExtendedListFragment.SearchType.NO_SEARCH);
  1041. } else {
  1042. ocFileListFragment.setEmptyListLoadingMessage();
  1043. }
  1044. } else {
  1045. Log_OC.e(TAG, "OCFileListFragment is null");
  1046. }
  1047. }
  1048. /**
  1049. * Once the file upload has finished -> update view
  1050. */
  1051. private class UploadFinishReceiver extends BroadcastReceiver {
  1052. /**
  1053. * Once the file upload has finished -> update view
  1054. *
  1055. * {@link BroadcastReceiver} to enable upload feedback in UI
  1056. */
  1057. @Override
  1058. public void onReceive(Context context, Intent intent) {
  1059. try {
  1060. String uploadedRemotePath = intent.getStringExtra(FileUploader.EXTRA_REMOTE_PATH);
  1061. String accountName = intent.getStringExtra(FileUploader.ACCOUNT_NAME);
  1062. boolean sameAccount = getAccount() != null && accountName.equals(getAccount().name);
  1063. OCFile currentDir = getCurrentDir();
  1064. boolean isDescendant = (currentDir != null) && (uploadedRemotePath != null) &&
  1065. (uploadedRemotePath.startsWith(currentDir.getRemotePath()));
  1066. if (sameAccount && isDescendant) {
  1067. String linkedToRemotePath =
  1068. intent.getStringExtra(FileUploader.EXTRA_LINKED_TO_PATH);
  1069. if (linkedToRemotePath == null || isAscendant(linkedToRemotePath)) {
  1070. refreshListOfFilesFragment(false);
  1071. }
  1072. }
  1073. boolean uploadWasFine = intent.getBooleanExtra(
  1074. FileUploader.EXTRA_UPLOAD_RESULT,
  1075. false);
  1076. boolean renamedInUpload = getFile().getRemotePath().
  1077. equals(intent.getStringExtra(FileUploader.EXTRA_OLD_REMOTE_PATH));
  1078. boolean sameFile = getFile().getRemotePath().equals(uploadedRemotePath) ||
  1079. renamedInUpload;
  1080. FileFragment details = getSecondFragment();
  1081. boolean detailFragmentIsShown = (details instanceof FileDetailFragment);
  1082. if (sameAccount && sameFile && detailFragmentIsShown) {
  1083. if (uploadWasFine) {
  1084. setFile(getStorageManager().getFileByPath(uploadedRemotePath));
  1085. } else {
  1086. //TODO remove upload progress bar after upload failed.
  1087. Log_OC.d(TAG, "Remove upload progress bar after upload failed");
  1088. }
  1089. if (renamedInUpload) {
  1090. String newName = (new File(uploadedRemotePath)).getName();
  1091. Toast msg = Toast.makeText(
  1092. context,
  1093. String.format(
  1094. getString(R.string.filedetails_renamed_in_upload_msg),
  1095. newName),
  1096. Toast.LENGTH_LONG);
  1097. msg.show();
  1098. }
  1099. if (uploadWasFine || getFile().fileExists()) {
  1100. ((FileDetailFragment) details).updateFileDetails(false, true);
  1101. } else {
  1102. cleanSecondFragment();
  1103. }
  1104. // Force the preview if the file is an image or text file
  1105. if (uploadWasFine) {
  1106. OCFile ocFile = getFile();
  1107. if (PreviewImageFragment.canBePreviewed(ocFile)) {
  1108. startImagePreview(getFile());
  1109. } else if (PreviewTextFragment.canBePreviewed(ocFile)) {
  1110. startTextPreview(ocFile);
  1111. }
  1112. // TODO what about other kind of previews?
  1113. }
  1114. }
  1115. setIndeterminate(false);
  1116. } finally {
  1117. if (intent != null) {
  1118. removeStickyBroadcast(intent);
  1119. }
  1120. }
  1121. }
  1122. // TODO refactor this receiver, and maybe DownloadFinishReceiver; this method is duplicated :S
  1123. private boolean isAscendant(String linkedToRemotePath) {
  1124. OCFile currentDir = getCurrentDir();
  1125. return (
  1126. currentDir != null &&
  1127. currentDir.getRemotePath().startsWith(linkedToRemotePath)
  1128. );
  1129. }
  1130. }
  1131. /**
  1132. * Class waiting for broadcast events from the {@link FileDownloader} service.
  1133. * <p/>
  1134. * Updates the UI when a download is started or finished, provided that it is relevant for the
  1135. * current folder.
  1136. */
  1137. private class DownloadFinishReceiver extends BroadcastReceiver {
  1138. @Override
  1139. public void onReceive(Context context, Intent intent) {
  1140. try {
  1141. boolean sameAccount = isSameAccount(intent);
  1142. String downloadedRemotePath =
  1143. intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  1144. boolean isDescendant = isDescendant(downloadedRemotePath);
  1145. if (sameAccount && isDescendant) {
  1146. String linkedToRemotePath =
  1147. intent.getStringExtra(FileDownloader.EXTRA_LINKED_TO_PATH);
  1148. if (linkedToRemotePath == null || isAscendant(linkedToRemotePath)) {
  1149. refreshListOfFilesFragment(false);
  1150. }
  1151. refreshSecondFragment(
  1152. intent.getAction(),
  1153. downloadedRemotePath,
  1154. intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false)
  1155. );
  1156. }
  1157. if (mWaitingToSend != null) {
  1158. mWaitingToSend =
  1159. getStorageManager().getFileByPath(mWaitingToSend.getRemotePath());
  1160. if (mWaitingToSend.isDown()) {
  1161. sendDownloadedFile();
  1162. }
  1163. }
  1164. } finally {
  1165. if (intent != null) {
  1166. removeStickyBroadcast(intent);
  1167. }
  1168. }
  1169. }
  1170. private boolean isDescendant(String downloadedRemotePath) {
  1171. OCFile currentDir = getCurrentDir();
  1172. return (
  1173. currentDir != null &&
  1174. downloadedRemotePath != null &&
  1175. downloadedRemotePath.startsWith(currentDir.getRemotePath())
  1176. );
  1177. }
  1178. private boolean isAscendant(String linkedToRemotePath) {
  1179. OCFile currentDir = getCurrentDir();
  1180. return (
  1181. currentDir != null &&
  1182. currentDir.getRemotePath().startsWith(linkedToRemotePath)
  1183. );
  1184. }
  1185. private boolean isSameAccount(Intent intent) {
  1186. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  1187. return (accountName != null && getAccount() != null &&
  1188. accountName.equals(getAccount().name));
  1189. }
  1190. }
  1191. public void browseToRoot() {
  1192. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1193. if (listOfFiles != null) { // should never be null, indeed
  1194. OCFile root = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  1195. listOfFiles.listDirectory(root, MainApp.isOnlyOnDevice(), false);
  1196. setFile(listOfFiles.getCurrentFile());
  1197. startSyncFolderOperation(root, false);
  1198. }
  1199. cleanSecondFragment();
  1200. }
  1201. /**
  1202. * {@inheritDoc}
  1203. * Updates action bar and second fragment, if in dual pane mode.
  1204. */
  1205. @Override
  1206. public void onBrowsedDownTo(OCFile directory) {
  1207. setFile(directory);
  1208. cleanSecondFragment();
  1209. // Sync Folder
  1210. startSyncFolderOperation(directory, false);
  1211. }
  1212. /**
  1213. * Shows the information of the {@link OCFile} received as a
  1214. * parameter in the second fragment.
  1215. *
  1216. * @param file {@link OCFile} whose details will be shown
  1217. */
  1218. @Override
  1219. public void showDetails(OCFile file) {
  1220. Fragment detailFragment = FileDetailFragment.newInstance(file, getAccount());
  1221. setSecondFragment(detailFragment);
  1222. updateFragmentsVisibility(true);
  1223. updateActionBarTitleAndHomeButton(file);
  1224. setFile(file);
  1225. }
  1226. @Override
  1227. protected void updateActionBarTitleAndHomeButton(OCFile chosenFile) {
  1228. if (chosenFile == null) {
  1229. chosenFile = getFile(); // if no file is passed, current file decides
  1230. }
  1231. if (mDualPane) {
  1232. // in dual pane mode, keep the focus of title an action bar in the current folder
  1233. super.updateActionBarTitleAndHomeButton(getCurrentDir());
  1234. } else {
  1235. super.updateActionBarTitleAndHomeButton(chosenFile);
  1236. }
  1237. }
  1238. @Override
  1239. public boolean isDrawerIndicatorAvailable() {
  1240. return isRoot(getCurrentDir());
  1241. }
  1242. @Override
  1243. protected ServiceConnection newTransferenceServiceConnection() {
  1244. return new ListServiceConnection();
  1245. }
  1246. /**
  1247. * Defines callbacks for service binding, passed to bindService()
  1248. */
  1249. private class ListServiceConnection implements ServiceConnection {
  1250. @Override
  1251. public void onServiceConnected(ComponentName component, IBinder service) {
  1252. if (component.equals(new ComponentName(
  1253. FileDisplayActivity.this, FileDownloader.class))) {
  1254. Log_OC.d(TAG, "Download service connected");
  1255. mDownloaderBinder = (FileDownloaderBinder) service;
  1256. if (mWaitingToPreview != null && getStorageManager() != null) {
  1257. // update the file
  1258. mWaitingToPreview =
  1259. getStorageManager().getFileById(mWaitingToPreview.getFileId());
  1260. if (!mWaitingToPreview.isDown()) {
  1261. requestForDownload();
  1262. }
  1263. }
  1264. } else if (component.equals(new ComponentName(FileDisplayActivity.this,
  1265. FileUploader.class))) {
  1266. Log_OC.d(TAG, "Upload service connected");
  1267. mUploaderBinder = (FileUploaderBinder) service;
  1268. } else {
  1269. return;
  1270. }
  1271. // a new chance to get the mDownloadBinder through
  1272. // getFileDownloadBinder() - THIS IS A MESS
  1273. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1274. if (listOfFiles != null) {
  1275. listOfFiles.listDirectory(MainApp.isOnlyOnDevice(), false);
  1276. }
  1277. FileFragment secondFragment = getSecondFragment();
  1278. if (secondFragment instanceof FileDetailFragment) {
  1279. FileDetailFragment detailFragment = (FileDetailFragment) secondFragment;
  1280. detailFragment.listenForTransferProgress();
  1281. detailFragment.updateFileDetails(false, false);
  1282. }
  1283. }
  1284. @Override
  1285. public void onServiceDisconnected(ComponentName component) {
  1286. if (component.equals(new ComponentName(FileDisplayActivity.this,
  1287. FileDownloader.class))) {
  1288. Log_OC.d(TAG, "Download service disconnected");
  1289. mDownloaderBinder = null;
  1290. } else if (component.equals(new ComponentName(FileDisplayActivity.this,
  1291. FileUploader.class))) {
  1292. Log_OC.d(TAG, "Upload service disconnected");
  1293. mUploaderBinder = null;
  1294. }
  1295. }
  1296. }
  1297. /**
  1298. * Updates the view associated to the activity after the finish of some operation over files
  1299. * in the current account.
  1300. *
  1301. * @param operation Removal operation performed.
  1302. * @param result Result of the removal.
  1303. */
  1304. @Override
  1305. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  1306. super.onRemoteOperationFinish(operation, result);
  1307. if (operation instanceof RemoveFileOperation) {
  1308. onRemoveFileOperationFinish((RemoveFileOperation) operation, result);
  1309. } else if (operation instanceof RenameFileOperation) {
  1310. onRenameFileOperationFinish((RenameFileOperation) operation, result);
  1311. } else if (operation instanceof SynchronizeFileOperation) {
  1312. onSynchronizeFileOperationFinish((SynchronizeFileOperation) operation, result);
  1313. } else if (operation instanceof CreateFolderOperation) {
  1314. onCreateFolderOperationFinish((CreateFolderOperation) operation, result);
  1315. } else if (operation instanceof MoveFileOperation) {
  1316. onMoveFileOperationFinish((MoveFileOperation) operation, result);
  1317. } else if (operation instanceof CopyFileOperation) {
  1318. onCopyFileOperationFinish((CopyFileOperation) operation, result);
  1319. }
  1320. }
  1321. private void refreshShowDetails() {
  1322. FileFragment details = getSecondFragment();
  1323. if (details != null) {
  1324. OCFile file = details.getFile();
  1325. if (file != null) {
  1326. file = getStorageManager().getFileByPath(file.getRemotePath());
  1327. if (details instanceof PreviewMediaFragment) {
  1328. // Refresh OCFile of the fragment
  1329. ((PreviewMediaFragment) details).updateFile(file);
  1330. } else if (details instanceof PreviewTextFragment) {
  1331. // Refresh OCFile of the fragment
  1332. ((PreviewTextFragment) details).updateFile(file);
  1333. } else {
  1334. showDetails(file);
  1335. }
  1336. }
  1337. invalidateOptionsMenu();
  1338. }
  1339. }
  1340. /**
  1341. * Updates the view associated to the activity after the finish of an operation trying to
  1342. * remove a file.
  1343. *
  1344. * @param operation Removal operation performed.
  1345. * @param result Result of the removal.
  1346. */
  1347. private void onRemoveFileOperationFinish(RemoveFileOperation operation,
  1348. RemoteOperationResult result) {
  1349. Toast msg = Toast.makeText(this,
  1350. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1351. Toast.LENGTH_LONG);
  1352. msg.show();
  1353. if (result.isSuccess()) {
  1354. OCFile removedFile = operation.getFile();
  1355. FileFragment second = getSecondFragment();
  1356. if (second != null && removedFile.equals(second.getFile())) {
  1357. if (second instanceof PreviewMediaFragment) {
  1358. ((PreviewMediaFragment) second).stopPreview(true);
  1359. }
  1360. setFile(getStorageManager().getFileById(removedFile.getParentId()));
  1361. cleanSecondFragment();
  1362. }
  1363. if (getStorageManager().getFileById(removedFile.getParentId()).equals(getCurrentDir())) {
  1364. refreshListOfFilesFragment(false);
  1365. }
  1366. invalidateOptionsMenu();
  1367. } else {
  1368. if (result.isSslRecoverableException()) {
  1369. mLastSslUntrustedServerResult = result;
  1370. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1371. }
  1372. }
  1373. }
  1374. /**
  1375. * Updates the view associated to the activity after the finish of an operation trying to move a
  1376. * file.
  1377. *
  1378. * @param operation Move operation performed.
  1379. * @param result Result of the move operation.
  1380. */
  1381. private void onMoveFileOperationFinish(MoveFileOperation operation,
  1382. RemoteOperationResult result) {
  1383. if (result.isSuccess()) {
  1384. refreshListOfFilesFragment(false);
  1385. } else {
  1386. try {
  1387. Toast msg = Toast.makeText(FileDisplayActivity.this,
  1388. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1389. Toast.LENGTH_LONG);
  1390. msg.show();
  1391. } catch (NotFoundException e) {
  1392. Log_OC.e(TAG, "Error while trying to show fail message ", e);
  1393. }
  1394. }
  1395. }
  1396. /**
  1397. * Updates the view associated to the activity after the finish of an operation trying to copy a
  1398. * file.
  1399. *
  1400. * @param operation Copy operation performed.
  1401. * @param result Result of the copy operation.
  1402. */
  1403. private void onCopyFileOperationFinish(CopyFileOperation operation, RemoteOperationResult result) {
  1404. if (result.isSuccess()) {
  1405. refreshListOfFilesFragment(false);
  1406. } else {
  1407. try {
  1408. Toast msg = Toast.makeText(FileDisplayActivity.this,
  1409. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1410. Toast.LENGTH_LONG);
  1411. msg.show();
  1412. } catch (NotFoundException e) {
  1413. Log_OC.e(TAG, "Error while trying to show fail message ", e);
  1414. }
  1415. }
  1416. }
  1417. /**
  1418. * Updates the view associated to the activity after the finish of an operation trying to rename
  1419. * a file.
  1420. *
  1421. * @param operation Renaming operation performed.
  1422. * @param result Result of the renaming.
  1423. */
  1424. private void onRenameFileOperationFinish(RenameFileOperation operation,
  1425. RemoteOperationResult result) {
  1426. OCFile renamedFile = operation.getFile();
  1427. if (result.isSuccess()) {
  1428. FileFragment details = getSecondFragment();
  1429. if (details != null) {
  1430. if (details instanceof FileDetailFragment &&
  1431. renamedFile.equals(details.getFile())) {
  1432. ((FileDetailFragment) details).updateFileDetails(renamedFile, getAccount());
  1433. showDetails(renamedFile);
  1434. } else if (details instanceof PreviewMediaFragment &&
  1435. renamedFile.equals(details.getFile())) {
  1436. ((PreviewMediaFragment) details).updateFile(renamedFile);
  1437. if (PreviewMediaFragment.canBePreviewed(renamedFile)) {
  1438. int position = ((PreviewMediaFragment) details).getPosition();
  1439. startMediaPreview(renamedFile, position, true);
  1440. } else {
  1441. getFileOperationsHelper().openFile(renamedFile);
  1442. }
  1443. } else if (details instanceof PreviewTextFragment &&
  1444. renamedFile.equals(details.getFile())) {
  1445. ((PreviewTextFragment) details).updateFile(renamedFile);
  1446. if (PreviewTextFragment.canBePreviewed(renamedFile)) {
  1447. startTextPreview(renamedFile);
  1448. } else {
  1449. getFileOperationsHelper().openFile(renamedFile);
  1450. }
  1451. }
  1452. }
  1453. if (getStorageManager().getFileById(renamedFile.getParentId()).equals(getCurrentDir())) {
  1454. refreshListOfFilesFragment(false);
  1455. }
  1456. } else {
  1457. Toast msg = Toast.makeText(this,
  1458. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1459. Toast.LENGTH_LONG);
  1460. msg.show();
  1461. if (result.isSslRecoverableException()) {
  1462. mLastSslUntrustedServerResult = result;
  1463. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1464. }
  1465. }
  1466. }
  1467. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation,
  1468. RemoteOperationResult result) {
  1469. if (result.isSuccess() && operation.transferWasRequested()) {
  1470. OCFile syncedFile = operation.getLocalFile();
  1471. onTransferStateChanged(syncedFile, true, true);
  1472. invalidateOptionsMenu();
  1473. refreshShowDetails();
  1474. }
  1475. }
  1476. /**
  1477. * Updates the view associated to the activity after the finish of an operation trying create a
  1478. * new folder
  1479. *
  1480. * @param operation Creation operation performed.
  1481. * @param result Result of the creation.
  1482. */
  1483. private void onCreateFolderOperationFinish(CreateFolderOperation operation,
  1484. RemoteOperationResult result) {
  1485. if (result.isSuccess()) {
  1486. refreshListOfFilesFragment(false);
  1487. } else {
  1488. try {
  1489. Toast msg = Toast.makeText(FileDisplayActivity.this,
  1490. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1491. Toast.LENGTH_LONG);
  1492. msg.show();
  1493. } catch (NotFoundException e) {
  1494. Log_OC.e(TAG, "Error while trying to show fail message ", e);
  1495. }
  1496. }
  1497. }
  1498. /**
  1499. * {@inheritDoc}
  1500. */
  1501. @Override
  1502. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  1503. refreshListOfFilesFragment(false);
  1504. FileFragment details = getSecondFragment();
  1505. if (details instanceof FileDetailFragment &&
  1506. file.equals(details.getFile())) {
  1507. if (downloading || uploading) {
  1508. ((FileDetailFragment) details).updateFileDetails(file, getAccount());
  1509. } else {
  1510. if (!file.fileExists()) {
  1511. cleanSecondFragment();
  1512. } else {
  1513. ((FileDetailFragment) details).updateFileDetails(false, true);
  1514. }
  1515. }
  1516. }
  1517. }
  1518. private void requestForDownload() {
  1519. Account account = getAccount();
  1520. //if (!mWaitingToPreview.isDownloading()) {
  1521. if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
  1522. Intent i = new Intent(this, FileDownloader.class);
  1523. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1524. i.putExtra(FileDownloader.EXTRA_FILE, mWaitingToPreview);
  1525. startService(i);
  1526. }
  1527. }
  1528. @Override
  1529. public void onSavedCertificate() {
  1530. startSyncFolderOperation(getCurrentDir(), false);
  1531. }
  1532. /**
  1533. * Starts an operation to refresh the requested folder.
  1534. * <p/>
  1535. * The operation is run in a new background thread created on the fly.
  1536. * <p/>
  1537. * The refresh updates is a "light sync": properties of regular files in folder are updated (including
  1538. * associated shares), but not their contents. Only the contents of files marked to be kept-in-sync are
  1539. * synchronized too.
  1540. *
  1541. * @param folder Folder to refresh.
  1542. * @param ignoreETag If 'true', the data from the server will be fetched and sync'ed even if the eTag
  1543. * didn't change.
  1544. */
  1545. public void startSyncFolderOperation(final OCFile folder, final boolean ignoreETag) {
  1546. // the execution is slightly delayed to allow the activity get the window focus if it's being started
  1547. // or if the method is called from a dialog that is being dismissed
  1548. if (TextUtils.isEmpty(searchQuery)) {
  1549. getHandler().postDelayed(
  1550. new Runnable() {
  1551. @Override
  1552. public void run() {
  1553. if (hasWindowFocus()) {
  1554. long currentSyncTime = System.currentTimeMillis();
  1555. mSyncInProgress = true;
  1556. // perform folder synchronization
  1557. RemoteOperation synchFolderOp = new RefreshFolderOperation(folder,
  1558. currentSyncTime,
  1559. false,
  1560. getFileOperationsHelper().isSharedSupported(),
  1561. ignoreETag,
  1562. getStorageManager(),
  1563. getAccount(),
  1564. getApplicationContext()
  1565. );
  1566. synchFolderOp.execute(
  1567. getAccount(),
  1568. MainApp.getAppContext(),
  1569. FileDisplayActivity.this,
  1570. null,
  1571. null
  1572. );
  1573. setIndeterminate(true);
  1574. setBackgroundText();
  1575. } // else: NOTHING ; lets' not refresh when the user rotates the device but there is
  1576. // another window floating over
  1577. }
  1578. },
  1579. DELAY_TO_REQUEST_REFRESH_OPERATION_LATER
  1580. );
  1581. }
  1582. }
  1583. private void requestForDownload(OCFile file) {
  1584. Account account = getAccount();
  1585. if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
  1586. Intent i = new Intent(this, FileDownloader.class);
  1587. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1588. i.putExtra(FileDownloader.EXTRA_FILE, file);
  1589. startService(i);
  1590. }
  1591. }
  1592. private void sendDownloadedFile() {
  1593. getFileOperationsHelper().sendDownloadedFile(mWaitingToSend);
  1594. mWaitingToSend = null;
  1595. }
  1596. /**
  1597. * Requests the download of the received {@link OCFile} , updates the UI
  1598. * to monitor the download progress and prepares the activity to send the file
  1599. * when the download finishes.
  1600. *
  1601. * @param file {@link OCFile} to download and preview.
  1602. */
  1603. public void startDownloadForSending(OCFile file) {
  1604. mWaitingToSend = file;
  1605. requestForDownload(mWaitingToSend);
  1606. boolean hasSecondFragment = (getSecondFragment() != null);
  1607. updateFragmentsVisibility(hasSecondFragment);
  1608. }
  1609. /**
  1610. * Opens the image gallery showing the image {@link OCFile} received as parameter.
  1611. *
  1612. * @param file Image {@link OCFile} to show.
  1613. */
  1614. public void startImagePreview(OCFile file) {
  1615. Intent showDetailsIntent = new Intent(this, PreviewImageActivity.class);
  1616. showDetailsIntent.putExtra(EXTRA_FILE, file);
  1617. showDetailsIntent.putExtra(EXTRA_ACCOUNT, getAccount());
  1618. startActivity(showDetailsIntent);
  1619. }
  1620. /**
  1621. * Stars the preview of an already down media {@link OCFile}.
  1622. *
  1623. * @param file Media {@link OCFile} to preview.
  1624. * @param startPlaybackPosition Media position where the playback will be started,
  1625. * in milliseconds.
  1626. * @param autoplay When 'true', the playback will start without user
  1627. * interactions.
  1628. */
  1629. public void startMediaPreview(OCFile file, int startPlaybackPosition, boolean autoplay) {
  1630. Fragment mediaFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition,
  1631. autoplay);
  1632. setSecondFragment(mediaFragment);
  1633. updateFragmentsVisibility(true);
  1634. updateActionBarTitleAndHomeButton(file);
  1635. setFile(file);
  1636. }
  1637. /**
  1638. * Stars the preview of a text file {@link OCFile}.
  1639. *
  1640. * @param file Text {@link OCFile} to preview.
  1641. */
  1642. public void startTextPreview(OCFile file) {
  1643. Bundle args = new Bundle();
  1644. args.putParcelable(EXTRA_FILE, file);
  1645. args.putParcelable(EXTRA_ACCOUNT, getAccount());
  1646. Fragment textPreviewFragment = Fragment.instantiate(getApplicationContext(),
  1647. PreviewTextFragment.class.getName(), args);
  1648. setSecondFragment(textPreviewFragment);
  1649. updateFragmentsVisibility(true);
  1650. updateActionBarTitleAndHomeButton(file);
  1651. setFile(file);
  1652. }
  1653. /**
  1654. * Requests the download of the received {@link OCFile} , updates the UI
  1655. * to monitor the download progress and prepares the activity to preview
  1656. * or open the file when the download finishes.
  1657. *
  1658. * @param file {@link OCFile} to download and preview.
  1659. */
  1660. public void startDownloadForPreview(OCFile file) {
  1661. Fragment detailFragment = FileDetailFragment.newInstance(file, getAccount());
  1662. setSecondFragment(detailFragment);
  1663. mWaitingToPreview = file;
  1664. requestForDownload();
  1665. updateFragmentsVisibility(true);
  1666. updateActionBarTitleAndHomeButton(file);
  1667. setFile(file);
  1668. }
  1669. /**
  1670. * Request stopping the upload/download operation in progress over the given {@link OCFile} file.
  1671. *
  1672. * @param file {@link OCFile} file which operation are wanted to be cancel
  1673. */
  1674. public void cancelTransference(OCFile file) {
  1675. getFileOperationsHelper().cancelTransference(file);
  1676. if (mWaitingToPreview != null &&
  1677. mWaitingToPreview.getRemotePath().equals(file.getRemotePath())) {
  1678. mWaitingToPreview = null;
  1679. }
  1680. if (mWaitingToSend != null &&
  1681. mWaitingToSend.getRemotePath().equals(file.getRemotePath())) {
  1682. mWaitingToSend = null;
  1683. }
  1684. onTransferStateChanged(file, false, false);
  1685. }
  1686. /**
  1687. * Request stopping all upload/download operations in progress over the given {@link OCFile} files.
  1688. *
  1689. * @param files collection of {@link OCFile} files which operations are wanted to be cancel
  1690. */
  1691. public void cancelTransference(Collection<OCFile> files) {
  1692. for (OCFile file : files) {
  1693. cancelTransference(file);
  1694. }
  1695. }
  1696. @Override
  1697. public void onRefresh(boolean ignoreETag) {
  1698. refreshList(ignoreETag);
  1699. }
  1700. @Override
  1701. public void onRefresh() {
  1702. refreshList(true);
  1703. }
  1704. private void refreshList(boolean ignoreETag) {
  1705. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1706. if (listOfFiles != null) {
  1707. OCFile folder = listOfFiles.getCurrentFile();
  1708. if (folder != null) {
  1709. /*mFile = mContainerActivity.getStorageManager().getFileById(mFile.getFileId());
  1710. listDirectory(mFile);*/
  1711. startSyncFolderOperation(folder, ignoreETag);
  1712. }
  1713. }
  1714. }
  1715. private void sortByDate(boolean ascending) {
  1716. getListOfFilesFragment().sortByDate(ascending);
  1717. }
  1718. private void sortBySize(boolean ascending) {
  1719. getListOfFilesFragment().sortBySize(ascending);
  1720. }
  1721. private void sortByName(boolean ascending) {
  1722. getListOfFilesFragment().sortByName(ascending);
  1723. }
  1724. private boolean isGridView() {
  1725. return getListOfFilesFragment().isGridEnabled();
  1726. }
  1727. public void allFilesOption() {
  1728. browseToRoot();
  1729. }
  1730. @Override
  1731. public void showFiles(boolean onDeviceOnly) {
  1732. super.showFiles(onDeviceOnly);
  1733. getListOfFilesFragment().refreshDirectory();
  1734. }
  1735. }