FileDisplayActivity.java 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011 Bartek Przybylski
  3. * Copyright (C) 2012-2014 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.ui.activity;
  19. import java.io.File;
  20. import java.io.IOException;
  21. import android.accounts.Account;
  22. import android.accounts.AccountManager;
  23. import android.accounts.AuthenticatorException;
  24. import android.accounts.OperationCanceledException;
  25. import android.app.AlertDialog;
  26. import android.app.Dialog;
  27. import android.app.ProgressDialog;
  28. import android.content.BroadcastReceiver;
  29. import android.content.ComponentName;
  30. import android.content.ContentResolver;
  31. import android.content.ContentUris;
  32. import android.content.Context;
  33. import android.content.DialogInterface;
  34. import android.content.Intent;
  35. import android.content.IntentFilter;
  36. import android.content.ServiceConnection;
  37. import android.content.SharedPreferences;
  38. import android.content.SyncRequest;
  39. import android.content.res.Resources.NotFoundException;
  40. import android.database.Cursor;
  41. import android.net.Uri;
  42. import android.os.Build;
  43. import android.os.Bundle;
  44. import android.os.Environment;
  45. import android.os.IBinder;
  46. import android.preference.PreferenceManager;
  47. import android.provider.DocumentsContract;
  48. import android.provider.MediaStore;
  49. import android.provider.OpenableColumns;
  50. import android.support.v4.app.Fragment;
  51. import android.support.v4.app.FragmentManager;
  52. import android.support.v4.app.FragmentTransaction;
  53. import android.util.Log;
  54. import android.view.View;
  55. import android.view.ViewGroup;
  56. import android.widget.ArrayAdapter;
  57. import android.widget.TextView;
  58. import android.widget.Toast;
  59. import com.actionbarsherlock.app.ActionBar;
  60. import com.actionbarsherlock.app.ActionBar.OnNavigationListener;
  61. import com.actionbarsherlock.view.Menu;
  62. import com.actionbarsherlock.view.MenuInflater;
  63. import com.actionbarsherlock.view.MenuItem;
  64. import com.actionbarsherlock.view.Window;
  65. import com.owncloud.android.BuildConfig;
  66. import com.owncloud.android.MainApp;
  67. import com.owncloud.android.R;
  68. import com.owncloud.android.datamodel.OCFile;
  69. import com.owncloud.android.db.UploadDbObject;
  70. import com.owncloud.android.files.services.FileDownloader;
  71. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  72. import com.owncloud.android.files.services.FileUploadService;
  73. import com.owncloud.android.files.services.FileUploadService.FileUploaderBinder;
  74. import com.owncloud.android.lib.common.OwnCloudAccount;
  75. import com.owncloud.android.lib.common.OwnCloudClient;
  76. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  77. import com.owncloud.android.lib.common.OwnCloudCredentials;
  78. import com.owncloud.android.lib.common.accounts.AccountUtils.AccountNotFoundException;
  79. import com.owncloud.android.lib.common.network.CertificateCombinedException;
  80. import com.owncloud.android.lib.common.operations.RemoteOperation;
  81. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  82. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  83. import com.owncloud.android.lib.common.utils.Log_OC;
  84. import com.owncloud.android.operations.CreateFolderOperation;
  85. import com.owncloud.android.operations.CreateShareOperation;
  86. import com.owncloud.android.operations.MoveFileOperation;
  87. import com.owncloud.android.operations.RemoveFileOperation;
  88. import com.owncloud.android.operations.RenameFileOperation;
  89. import com.owncloud.android.operations.SynchronizeFileOperation;
  90. import com.owncloud.android.operations.SynchronizeFolderOperation;
  91. import com.owncloud.android.operations.UnshareLinkOperation;
  92. import com.owncloud.android.services.observer.FileObserverService;
  93. import com.owncloud.android.syncadapter.FileSyncAdapter;
  94. import com.owncloud.android.ui.adapter.FileListListAdapter;
  95. import com.owncloud.android.ui.dialog.CreateFolderDialogFragment;
  96. import com.owncloud.android.ui.dialog.SslUntrustedCertDialog;
  97. import com.owncloud.android.ui.dialog.SslUntrustedCertDialog.OnSslUntrustedCertListener;
  98. import com.owncloud.android.ui.fragment.FileDetailFragment;
  99. import com.owncloud.android.ui.fragment.FileFragment;
  100. import com.owncloud.android.ui.fragment.OCFileListFragment;
  101. import com.owncloud.android.ui.preview.PreviewImageActivity;
  102. import com.owncloud.android.ui.preview.PreviewImageFragment;
  103. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  104. import com.owncloud.android.ui.preview.PreviewVideoActivity;
  105. import com.owncloud.android.utils.DisplayUtils;
  106. import com.owncloud.android.utils.ErrorMessageAdapter;
  107. import com.owncloud.android.utils.UriUtils;
  108. /**
  109. * Displays, what files the user has available in his ownCloud. This is the main view.
  110. *
  111. * @author Bartek Przybylski
  112. * @author David A. Velasco
  113. */
  114. public class FileDisplayActivity extends HookActivity implements
  115. FileFragment.ContainerActivity, OnNavigationListener,
  116. OnSslUntrustedCertListener, OnEnforceableRefreshListener {
  117. private ArrayAdapter<String> mDirectories;
  118. private SyncBroadcastReceiver mSyncBroadcastReceiver;
  119. private UploadFinishReceiver mUploadFinishReceiver;
  120. private DownloadFinishReceiver mDownloadFinishReceiver;
  121. private RemoteOperationResult mLastSslUntrustedServerResult = null;
  122. private boolean mDualPane;
  123. private View mLeftFragmentContainer;
  124. private View mRightFragmentContainer;
  125. private static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  126. private static final String KEY_SYNC_IN_PROGRESS = "SYNC_IN_PROGRESS";
  127. private static final String KEY_WAITING_TO_SEND = "WAITING_TO_SEND";
  128. public static final int DIALOG_SHORT_WAIT = 0;
  129. private static final int DIALOG_CHOOSE_UPLOAD_SOURCE = 1;
  130. private static final int DIALOG_CERT_NOT_SAVED = 2;
  131. public static final String ACTION_DETAILS = "com.owncloud.android.ui.activity.action.DETAILS";
  132. private static final int ACTION_SELECT_CONTENT_FROM_APPS = 1;
  133. private static final int ACTION_SELECT_MULTIPLE_FILES = 2;
  134. public static final int ACTION_MOVE_FILES = 3;
  135. private static final String TAG = FileDisplayActivity.class.getSimpleName();
  136. private static final String TAG_LIST_OF_FILES = "LIST_OF_FILES";
  137. private static final String TAG_SECOND_FRAGMENT = "SECOND_FRAGMENT";
  138. private OCFile mWaitingToPreview;
  139. private boolean mSyncInProgress = false;
  140. private String DIALOG_UNTRUSTED_CERT;
  141. private OCFile mWaitingToSend;
  142. @Override
  143. protected void onCreate(Bundle savedInstanceState) {
  144. Log_OC.d(TAG, "onCreate() start");
  145. requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
  146. super.onCreate(savedInstanceState); // this calls onAccountChanged() when ownCloud Account is valid
  147. // PIN CODE request ; best location is to decide, let's try this first
  148. if (getIntent().getAction() != null && getIntent().getAction().equals(Intent.ACTION_MAIN) && savedInstanceState == null) {
  149. requestPinCode();
  150. } else if (getIntent().getAction() == null && savedInstanceState == null) {
  151. requestPinCode();
  152. }
  153. /// grant that FileObserverService is watching favourite files
  154. if (savedInstanceState == null) {
  155. Intent initObserversIntent = FileObserverService.makeInitIntent(this);
  156. startService(initObserversIntent);
  157. }
  158. /// Load of saved instance state
  159. if(savedInstanceState != null) {
  160. mWaitingToPreview = (OCFile) savedInstanceState.getParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW);
  161. mSyncInProgress = savedInstanceState.getBoolean(KEY_SYNC_IN_PROGRESS);
  162. mWaitingToSend = (OCFile) savedInstanceState.getParcelable(FileDisplayActivity.KEY_WAITING_TO_SEND);
  163. } else {
  164. mWaitingToPreview = null;
  165. mSyncInProgress = false;
  166. mWaitingToSend = null;
  167. }
  168. /// USER INTERFACE
  169. // Inflate and set the layout view
  170. setContentView(R.layout.files);
  171. mDualPane = getResources().getBoolean(R.bool.large_land_layout);
  172. mLeftFragmentContainer = findViewById(R.id.left_fragment_container);
  173. mRightFragmentContainer = findViewById(R.id.right_fragment_container);
  174. if (savedInstanceState == null) {
  175. createMinFragments();
  176. }
  177. // Action bar setup
  178. mDirectories = new CustomArrayAdapter<String>(this, R.layout.sherlock_spinner_dropdown_item);
  179. getSupportActionBar().setHomeButtonEnabled(true); // mandatory since Android ICS, according to the official documentation
  180. setSupportProgressBarIndeterminateVisibility(mSyncInProgress /*|| mRefreshSharesInProgress*/); // always AFTER setContentView(...) ; to work around bug in its implementation
  181. setBackgroundText();
  182. Log_OC.d(TAG, "onCreate() end");
  183. }
  184. @Override
  185. protected void onStart() {
  186. super.onStart();
  187. getSupportActionBar().setIcon(DisplayUtils.getSeasonalIconId());
  188. }
  189. @Override
  190. protected void onDestroy() {
  191. super.onDestroy();
  192. }
  193. /**
  194. * Called when the ownCloud {@link Account} associated to the Activity was just updated.
  195. */
  196. @Override
  197. protected void onAccountSet(boolean stateWasRecovered) {
  198. super.onAccountSet(stateWasRecovered);
  199. if (getAccount() != null) {
  200. /// Check whether the 'main' OCFile handled by the Activity is contained in the current Account
  201. OCFile file = getFile();
  202. // get parent from path
  203. String parentPath = "";
  204. if (file != null) {
  205. if (file.isDown() && file.getLastSyncDateForProperties() == 0) {
  206. // upload in progress - right now, files are not inserted in the local cache until the upload is successful
  207. // get parent from path
  208. parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  209. if (getStorageManager().getFileByPath(parentPath) == null)
  210. file = null; // not able to know the directory where the file is uploading
  211. } else {
  212. file = getStorageManager().getFileByPath(file.getRemotePath()); // currentDir = null if not in the current Account
  213. }
  214. }
  215. if (file == null) {
  216. // fall back to root folder
  217. file = getStorageManager().getFileByPath(OCFile.ROOT_PATH); // never returns null
  218. }
  219. setFile(file);
  220. setNavigationListWithFolder(file);
  221. if (!stateWasRecovered) {
  222. Log_OC.e(TAG, "Initializing Fragments in onAccountChanged..");
  223. initFragmentsWithFile();
  224. if (file.isFolder()) {
  225. startSyncFolderOperation(file, false);
  226. }
  227. } else {
  228. updateFragmentsVisibility(!file.isFolder());
  229. updateNavigationElementsInActionBar(file.isFolder() ? null : file);
  230. }
  231. }
  232. }
  233. private void setNavigationListWithFolder(OCFile file) {
  234. mDirectories.clear();
  235. OCFile fileIt = file;
  236. String parentPath;
  237. while(fileIt != null && fileIt.getFileName() != OCFile.ROOT_PATH) {
  238. if (fileIt.isFolder()) {
  239. mDirectories.add(fileIt.getFileName());
  240. }
  241. // get parent from path
  242. parentPath = fileIt.getRemotePath().substring(0, fileIt.getRemotePath().lastIndexOf(fileIt.getFileName()));
  243. fileIt = getStorageManager().getFileByPath(parentPath);
  244. }
  245. mDirectories.add(OCFile.PATH_SEPARATOR);
  246. }
  247. private void createMinFragments() {
  248. OCFileListFragment listOfFiles = new OCFileListFragment();
  249. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  250. transaction.add(R.id.left_fragment_container, listOfFiles, TAG_LIST_OF_FILES);
  251. transaction.commit();
  252. }
  253. private void initFragmentsWithFile() {
  254. if (getAccount() != null && getFile() != null) {
  255. /// First fragment
  256. OCFileListFragment listOfFiles = getListOfFilesFragment();
  257. if (listOfFiles != null) {
  258. listOfFiles.listDirectory(getCurrentDir());
  259. } else {
  260. Log_OC.e(TAG, "Still have a chance to lose the initializacion of list fragment >(");
  261. }
  262. /// Second fragment
  263. OCFile file = getFile();
  264. Fragment secondFragment = chooseInitialSecondFragment(file);
  265. if (secondFragment != null) {
  266. setSecondFragment(secondFragment);
  267. updateFragmentsVisibility(true);
  268. updateNavigationElementsInActionBar(file);
  269. } else {
  270. cleanSecondFragment();
  271. }
  272. } else {
  273. Log_OC.wtf(TAG, "initFragments() called with invalid NULLs!");
  274. if (getAccount() == null) {
  275. Log_OC.wtf(TAG, "\t account is NULL");
  276. }
  277. if (getFile() == null) {
  278. Log_OC.wtf(TAG, "\t file is NULL");
  279. }
  280. }
  281. }
  282. private Fragment chooseInitialSecondFragment(OCFile file) {
  283. Fragment secondFragment = null;
  284. if (file != null && !file.isFolder()) {
  285. if (file.isDown() && PreviewMediaFragment.canBePreviewed(file)
  286. && file.getLastSyncDateForProperties() > 0 // temporal fix
  287. ) {
  288. int startPlaybackPosition = getIntent().getIntExtra(PreviewVideoActivity.EXTRA_START_POSITION, 0);
  289. boolean autoplay = getIntent().getBooleanExtra(PreviewVideoActivity.EXTRA_AUTOPLAY, true);
  290. secondFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  291. } else {
  292. secondFragment = new FileDetailFragment(file, getAccount());
  293. }
  294. }
  295. return secondFragment;
  296. }
  297. /**
  298. * Replaces the second fragment managed by the activity with the received as
  299. * a parameter.
  300. *
  301. * Assumes never will be more than two fragments managed at the same time.
  302. *
  303. * @param fragment New second Fragment to set.
  304. */
  305. private void setSecondFragment(Fragment fragment) {
  306. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  307. transaction.replace(R.id.right_fragment_container, fragment, TAG_SECOND_FRAGMENT);
  308. transaction.commit();
  309. }
  310. private void updateFragmentsVisibility(boolean existsSecondFragment) {
  311. if (mDualPane) {
  312. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  313. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  314. }
  315. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  316. mRightFragmentContainer.setVisibility(View.VISIBLE);
  317. }
  318. } else if (existsSecondFragment) {
  319. if (mLeftFragmentContainer.getVisibility() != View.GONE) {
  320. mLeftFragmentContainer.setVisibility(View.GONE);
  321. }
  322. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  323. mRightFragmentContainer.setVisibility(View.VISIBLE);
  324. }
  325. } else {
  326. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  327. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  328. }
  329. if (mRightFragmentContainer.getVisibility() != View.GONE) {
  330. mRightFragmentContainer.setVisibility(View.GONE);
  331. }
  332. }
  333. }
  334. private OCFileListFragment getListOfFilesFragment() {
  335. Fragment listOfFiles = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_LIST_OF_FILES);
  336. if (listOfFiles != null) {
  337. return (OCFileListFragment)listOfFiles;
  338. }
  339. Log_OC.wtf(TAG, "Access to unexisting list of files fragment!!");
  340. return null;
  341. }
  342. public FileFragment getSecondFragment() {
  343. Fragment second = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_SECOND_FRAGMENT);
  344. if (second != null) {
  345. return (FileFragment)second;
  346. }
  347. return null;
  348. }
  349. protected void cleanSecondFragment() {
  350. Fragment second = getSecondFragment();
  351. if (second != null) {
  352. FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
  353. tr.remove(second);
  354. tr.commit();
  355. }
  356. updateFragmentsVisibility(false);
  357. updateNavigationElementsInActionBar(null);
  358. }
  359. protected void refreshListOfFilesFragment() {
  360. OCFileListFragment fileListFragment = getListOfFilesFragment();
  361. if (fileListFragment != null) {
  362. fileListFragment.listDirectory();
  363. }
  364. }
  365. protected void refreshSecondFragment(String downloadEvent, String downloadedRemotePath, boolean success) {
  366. FileFragment secondFragment = getSecondFragment();
  367. boolean waitedPreview = (mWaitingToPreview != null && mWaitingToPreview.getRemotePath().equals(downloadedRemotePath));
  368. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  369. FileDetailFragment detailsFragment = (FileDetailFragment) secondFragment;
  370. OCFile fileInFragment = detailsFragment.getFile();
  371. if (fileInFragment != null && !downloadedRemotePath.equals(fileInFragment.getRemotePath())) {
  372. // the user browsed to other file ; forget the automatic preview
  373. mWaitingToPreview = null;
  374. } else if (downloadEvent.equals(FileDownloader.getDownloadAddedMessage())) {
  375. // grant that the right panel updates the progress bar
  376. detailsFragment.listenForTransferProgress();
  377. detailsFragment.updateFileDetails(true, false);
  378. } else if (downloadEvent.equals(FileDownloader.getDownloadFinishMessage())) {
  379. // update the right panel
  380. boolean detailsFragmentChanged = false;
  381. if (waitedPreview) {
  382. if (success) {
  383. mWaitingToPreview = getStorageManager().getFileById(mWaitingToPreview.getFileId()); // update the file from database, for the local storage path
  384. if (PreviewMediaFragment.canBePreviewed(mWaitingToPreview)) {
  385. startMediaPreview(mWaitingToPreview, 0, true);
  386. detailsFragmentChanged = true;
  387. } else {
  388. getFileOperationsHelper().openFile(mWaitingToPreview);
  389. }
  390. }
  391. mWaitingToPreview = null;
  392. }
  393. if (!detailsFragmentChanged) {
  394. detailsFragment.updateFileDetails(false, (success));
  395. }
  396. }
  397. }
  398. }
  399. @Override
  400. public boolean onPrepareOptionsMenu(Menu menu) {
  401. if (BuildConfig.DEBUG) {
  402. menu.findItem(R.id.action_logger).setVisible(true);
  403. } else {
  404. menu.findItem(R.id.action_logger).setVisible(false);
  405. }
  406. return super.onPrepareOptionsMenu(menu);
  407. }
  408. @Override
  409. public boolean onCreateOptionsMenu(Menu menu) {
  410. MenuInflater inflater = getSherlock().getMenuInflater();
  411. inflater.inflate(R.menu.main_menu, menu);
  412. return true;
  413. }
  414. @Override
  415. public boolean onOptionsItemSelected(MenuItem item) {
  416. boolean retval = true;
  417. switch (item.getItemId()) {
  418. case R.id.action_create_dir: {
  419. CreateFolderDialogFragment dialog =
  420. CreateFolderDialogFragment.newInstance(getCurrentDir());
  421. dialog.show(getSupportFragmentManager(), "createdirdialog");
  422. break;
  423. }
  424. case R.id.action_sync_account: {
  425. startSynchronization();
  426. break;
  427. }
  428. case R.id.action_upload: {
  429. showDialog(DIALOG_CHOOSE_UPLOAD_SOURCE);
  430. break;
  431. }
  432. case R.id.action_settings: {
  433. Intent settingsIntent = new Intent(this, Preferences.class);
  434. startActivity(settingsIntent);
  435. break;
  436. }
  437. case R.id.action_logger: {
  438. Intent loggerIntent = new Intent(getApplicationContext(),LogHistoryActivity.class);
  439. startActivity(loggerIntent);
  440. break;
  441. }
  442. case R.id.action_upload_list: {
  443. Intent uploadListIntent = new Intent(getApplicationContext(),UploadListActivity.class);
  444. startActivity(uploadListIntent);
  445. break;
  446. }
  447. case android.R.id.home: {
  448. FileFragment second = getSecondFragment();
  449. OCFile currentDir = getCurrentDir();
  450. if((currentDir != null && currentDir.getParentId() != 0) ||
  451. (second != null && second.getFile() != null)) {
  452. onBackPressed();
  453. }
  454. break;
  455. }
  456. case R.id.action_sort: {
  457. SharedPreferences appPreferences = PreferenceManager
  458. .getDefaultSharedPreferences(this);
  459. // Read sorting order, default to sort by name ascending
  460. Integer sortOrder = appPreferences
  461. .getInt("sortOrder", FileListListAdapter.SORT_NAME);
  462. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  463. builder.setTitle(R.string.actionbar_sort_title)
  464. .setSingleChoiceItems(R.array.actionbar_sortby, sortOrder , new DialogInterface.OnClickListener() {
  465. public void onClick(DialogInterface dialog, int which) {
  466. switch (which){
  467. case 0:
  468. sortByName(true);
  469. break;
  470. case 1:
  471. sortByDate(false);
  472. break;
  473. // TODO re-enable when server-side folder size calculation is available
  474. // case 2:
  475. // sortBySize(false);
  476. // break;
  477. }
  478. dialog.dismiss();
  479. }
  480. });
  481. builder.create().show();
  482. break;
  483. }
  484. default:
  485. retval = super.onOptionsItemSelected(item);
  486. }
  487. return retval;
  488. }
  489. private void startSynchronization() {
  490. Log_OC.e(TAG, "Got to start sync");
  491. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  492. Log_OC.e(TAG, "Canceling all syncs for " + MainApp.getAuthority());
  493. ContentResolver.cancelSync(null, MainApp.getAuthority()); // cancel the current synchronizations of any ownCloud account
  494. Bundle bundle = new Bundle();
  495. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  496. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
  497. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority());
  498. ContentResolver.requestSync(
  499. getAccount(),
  500. MainApp.getAuthority(), bundle);
  501. } else {
  502. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority() + " with new API");
  503. SyncRequest.Builder builder = new SyncRequest.Builder();
  504. builder.setSyncAdapter(getAccount(), MainApp.getAuthority());
  505. builder.setExpedited(true);
  506. builder.setManual(true);
  507. builder.syncOnce();
  508. // Fix bug in Android Lollipop when you click on refresh the whole account
  509. Bundle extras = new Bundle();
  510. builder.setExtras(extras);
  511. SyncRequest request = builder.build();
  512. ContentResolver.requestSync(request);
  513. }
  514. }
  515. @Override
  516. public boolean onNavigationItemSelected(int itemPosition, long itemId) {
  517. if (itemPosition != 0) {
  518. String targetPath = "";
  519. for (int i=itemPosition; i < mDirectories.getCount() - 1; i++) {
  520. targetPath = mDirectories.getItem(i) + OCFile.PATH_SEPARATOR + targetPath;
  521. }
  522. targetPath = OCFile.PATH_SEPARATOR + targetPath;
  523. OCFile targetFolder = getStorageManager().getFileByPath(targetPath);
  524. if (targetFolder != null) {
  525. browseTo(targetFolder);
  526. }
  527. // the next operation triggers a new call to this method, but it's necessary to
  528. // ensure that the name exposed in the action bar is the current directory when the
  529. // user selected it in the navigation list
  530. if (getSupportActionBar().getNavigationMode() == ActionBar.NAVIGATION_MODE_LIST && itemPosition != 0)
  531. getSupportActionBar().setSelectedNavigationItem(0);
  532. }
  533. return true;
  534. }
  535. /**
  536. * Called, when the user selected something for uploading
  537. */
  538. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  539. super.onActivityResult(requestCode, resultCode, data);
  540. if (requestCode == ACTION_SELECT_CONTENT_FROM_APPS && (resultCode == RESULT_OK || resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)) {
  541. requestSimpleUpload(data, resultCode);
  542. } else if (requestCode == ACTION_SELECT_MULTIPLE_FILES && (resultCode == RESULT_OK || resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)) {
  543. requestMultipleUpload(data, resultCode);
  544. } else if (requestCode == ACTION_MOVE_FILES && (resultCode == RESULT_OK ||
  545. resultCode == MoveActivity.RESULT_OK_AND_MOVE)){
  546. final Intent fData = data;
  547. final int fResultCode = resultCode;
  548. getHandler().postDelayed(
  549. new Runnable() {
  550. @Override
  551. public void run() {
  552. requestMoveOperation(fData, fResultCode);
  553. }
  554. },
  555. DELAY_TO_REQUEST_OPERATION_ON_ACTIVITY_RESULTS
  556. );
  557. }
  558. }
  559. private void requestMultipleUpload(Intent data, int resultCode) {
  560. String[] filePaths = data.getStringArrayExtra(UploadFilesActivity.EXTRA_CHOSEN_FILES);
  561. if (filePaths != null) {
  562. String[] remotePaths = new String[filePaths.length];
  563. String remotePathBase = "";
  564. for (int j = mDirectories.getCount() - 2; j >= 0; --j) {
  565. remotePathBase += OCFile.PATH_SEPARATOR + mDirectories.getItem(j);
  566. }
  567. if (!remotePathBase.endsWith(OCFile.PATH_SEPARATOR))
  568. remotePathBase += OCFile.PATH_SEPARATOR;
  569. for (int j = 0; j< remotePaths.length; j++) {
  570. remotePaths[j] = remotePathBase + (new File(filePaths[j])).getName();
  571. }
  572. Intent i = new Intent(this, FileUploadService.class);
  573. i.putExtra(FileUploadService.KEY_ACCOUNT, getAccount());
  574. i.putExtra(FileUploadService.KEY_LOCAL_FILE, filePaths);
  575. i.putExtra(FileUploadService.KEY_REMOTE_FILE, remotePaths);
  576. i.putExtra(FileUploadService.KEY_UPLOAD_TYPE, FileUploadService.UploadSingleMulti.UPLOAD_MULTIPLE_FILES);
  577. if (resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)
  578. i.putExtra(FileUploadService.KEY_LOCAL_BEHAVIOUR, FileUploadService.LocalBehaviour.LOCAL_BEHAVIOUR_MOVE);
  579. startService(i);
  580. } else {
  581. Log_OC.d(TAG, "User clicked on 'Update' with no selection");
  582. Toast t = Toast.makeText(this, getString(R.string.filedisplay_no_file_selected), Toast.LENGTH_LONG);
  583. t.show();
  584. return;
  585. }
  586. }
  587. private void requestSimpleUpload(Intent data, int resultCode) {
  588. String filepath = null;
  589. String mimeType = null;
  590. Uri selectedImageUri = data.getData();
  591. try {
  592. mimeType = getContentResolver().getType(selectedImageUri);
  593. String filemanagerstring = selectedImageUri.getPath();
  594. String selectedImagePath = getPath(selectedImageUri);
  595. if (selectedImagePath != null)
  596. filepath = selectedImagePath;
  597. else
  598. filepath = filemanagerstring;
  599. } catch (Exception e) {
  600. Log_OC.e(TAG, "Unexpected exception when trying to read the result of Intent.ACTION_GET_CONTENT", e);
  601. e.printStackTrace();
  602. } finally {
  603. if (filepath == null) {
  604. Log_OC.e(TAG, "Couldnt resolve path to file");
  605. Toast t = Toast.makeText(this, getString(R.string.filedisplay_unexpected_bad_get_content), Toast.LENGTH_LONG);
  606. t.show();
  607. return;
  608. }
  609. }
  610. Intent i = new Intent(this, FileUploadService.class);
  611. i.putExtra(FileUploadService.KEY_ACCOUNT,
  612. getAccount());
  613. String remotepath = new String();
  614. for (int j = mDirectories.getCount() - 2; j >= 0; --j) {
  615. remotepath += OCFile.PATH_SEPARATOR + mDirectories.getItem(j);
  616. }
  617. if (!remotepath.endsWith(OCFile.PATH_SEPARATOR))
  618. remotepath += OCFile.PATH_SEPARATOR;
  619. i.putExtra(FileUploadService.KEY_LOCAL_FILE, filepath);
  620. i.putExtra(FileUploadService.KEY_REMOTE_FILE, remotepath);
  621. i.putExtra(FileUploadService.KEY_MIME_TYPE, mimeType);
  622. i.putExtra(FileUploadService.KEY_UPLOAD_TYPE, FileUploadService.UploadSingleMulti.UPLOAD_SINGLE_FILE);
  623. if (resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE) {
  624. i.putExtra(FileUploadService.KEY_LOCAL_BEHAVIOUR, FileUploadService.LocalBehaviour.LOCAL_BEHAVIOUR_MOVE);
  625. }
  626. if(startService(i) == null) {
  627. Log_OC.e(TAG, "FileUploadService could not be started");
  628. } if (filepath.startsWith(UriUtils.URI_CONTENT_SCHEME)) {
  629. Cursor cursor = MainApp.getAppContext().getContentResolver()
  630. .query(Uri.parse(filepath), null, null, null, null, null);
  631. try {
  632. if (cursor != null && cursor.moveToFirst()) {
  633. String displayName = cursor.getString(
  634. cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME));
  635. Log.i(TAG, "Display Name: " + displayName + "; mimeType: " + mimeType);
  636. displayName.replace(File.separatorChar, '_');
  637. displayName.replace(File.pathSeparatorChar, '_');
  638. remotepath += displayName + DisplayUtils.getComposedFileExtension(filepath);
  639. }
  640. } finally {
  641. cursor.close();
  642. }
  643. } else {
  644. remotepath += new File(filepath).getName();
  645. }
  646. }
  647. /**
  648. * Request the operation for moving the file/folder from one path to another
  649. *
  650. * @param data Intent received
  651. * @param resultCode Result code received
  652. */
  653. private void requestMoveOperation(Intent data, int resultCode) {
  654. OCFile folderToMoveAt = (OCFile) data.getParcelableExtra(MoveActivity.EXTRA_CURRENT_FOLDER);
  655. OCFile targetFile = (OCFile) data.getParcelableExtra(MoveActivity.EXTRA_TARGET_FILE);
  656. getFileOperationsHelper().moveFile(folderToMoveAt, targetFile);
  657. }
  658. @Override
  659. public void onBackPressed() {
  660. OCFileListFragment listOfFiles = getListOfFilesFragment();
  661. if (mDualPane || getSecondFragment() == null) {
  662. if (listOfFiles != null) { // should never be null, indeed
  663. if (mDirectories.getCount() <= 1) {
  664. finish();
  665. return;
  666. }
  667. int levelsUp = listOfFiles.onBrowseUp();
  668. for (int i=0; i < levelsUp && mDirectories.getCount() > 1 ; i++) {
  669. popDirname();
  670. }
  671. }
  672. }
  673. if (listOfFiles != null) { // should never be null, indeed
  674. setFile(listOfFiles.getCurrentFile());
  675. }
  676. cleanSecondFragment();
  677. }
  678. @Override
  679. protected void onSaveInstanceState(Bundle outState) {
  680. // responsibility of restore is preferred in onCreate() before than in onRestoreInstanceState when there are Fragments involved
  681. Log_OC.e(TAG, "onSaveInstanceState() start");
  682. super.onSaveInstanceState(outState);
  683. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW, mWaitingToPreview);
  684. outState.putBoolean(FileDisplayActivity.KEY_SYNC_IN_PROGRESS, mSyncInProgress);
  685. //outState.putBoolean(FileDisplayActivity.KEY_REFRESH_SHARES_IN_PROGRESS, mRefreshSharesInProgress);
  686. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_SEND, mWaitingToSend);
  687. Log_OC.d(TAG, "onSaveInstanceState() end");
  688. }
  689. @Override
  690. protected void onResume() {
  691. super.onResume();
  692. Log_OC.e(TAG, "onResume() start");
  693. // refresh list of files
  694. refreshListOfFilesFragment();
  695. // Listen for sync messages
  696. IntentFilter syncIntentFilter = new IntentFilter(FileSyncAdapter.EVENT_FULL_SYNC_START);
  697. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_END);
  698. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_FOLDER_CONTENTS_SYNCED);
  699. syncIntentFilter.addAction(SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
  700. syncIntentFilter.addAction(SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED);
  701. mSyncBroadcastReceiver = new SyncBroadcastReceiver();
  702. registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  703. //LocalBroadcastManager.getInstance(this).registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  704. // Listen for upload messages
  705. IntentFilter uploadIntentFilter = new IntentFilter(FileUploadService.getUploadFinishMessage());
  706. mUploadFinishReceiver = new UploadFinishReceiver();
  707. registerReceiver(mUploadFinishReceiver, uploadIntentFilter);
  708. // Listen for download messages
  709. IntentFilter downloadIntentFilter = new IntentFilter(FileDownloader.getDownloadAddedMessage());
  710. downloadIntentFilter.addAction(FileDownloader.getDownloadFinishMessage());
  711. mDownloadFinishReceiver = new DownloadFinishReceiver();
  712. registerReceiver(mDownloadFinishReceiver, downloadIntentFilter);
  713. Log_OC.d(TAG, "onResume() end");
  714. }
  715. @Override
  716. protected void onPause() {
  717. Log_OC.e(TAG, "onPause() start");
  718. if (mSyncBroadcastReceiver != null) {
  719. unregisterReceiver(mSyncBroadcastReceiver);
  720. //LocalBroadcastManager.getInstance(this).unregisterReceiver(mSyncBroadcastReceiver);
  721. mSyncBroadcastReceiver = null;
  722. }
  723. if (mUploadFinishReceiver != null) {
  724. unregisterReceiver(mUploadFinishReceiver);
  725. mUploadFinishReceiver = null;
  726. }
  727. if (mDownloadFinishReceiver != null) {
  728. unregisterReceiver(mDownloadFinishReceiver);
  729. mDownloadFinishReceiver = null;
  730. }
  731. Log_OC.d(TAG, "onPause() end");
  732. super.onPause();
  733. }
  734. @Override
  735. protected Dialog onCreateDialog(int id) {
  736. Dialog dialog = null;
  737. AlertDialog.Builder builder;
  738. switch (id) {
  739. case DIALOG_SHORT_WAIT: {
  740. ProgressDialog working_dialog = new ProgressDialog(this);
  741. working_dialog.setMessage(getResources().getString(
  742. R.string.wait_a_moment));
  743. working_dialog.setIndeterminate(true);
  744. working_dialog.setCancelable(false);
  745. dialog = working_dialog;
  746. break;
  747. }
  748. case DIALOG_CHOOSE_UPLOAD_SOURCE: {
  749. String[] allTheItems = { getString(R.string.actionbar_upload_files),
  750. getString(R.string.actionbar_upload_from_apps) };
  751. builder = new AlertDialog.Builder(this);
  752. builder.setTitle(R.string.actionbar_upload);
  753. builder.setItems(allTheItems, new DialogInterface.OnClickListener() {
  754. public void onClick(DialogInterface dialog, int item) {
  755. if (item == 0) {
  756. // if (!mDualPane) {
  757. Intent action = new Intent(FileDisplayActivity.this, UploadFilesActivity.class);
  758. action.putExtra(UploadFilesActivity.EXTRA_ACCOUNT, FileDisplayActivity.this.getAccount());
  759. startActivityForResult(action, ACTION_SELECT_MULTIPLE_FILES);
  760. // } else {
  761. // TODO create and handle new fragment
  762. // LocalFileListFragment
  763. // }
  764. } else if (item == 1) {
  765. Intent action = new Intent(Intent.ACTION_GET_CONTENT);
  766. action = action.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
  767. startActivityForResult(Intent.createChooser(action, getString(R.string.upload_chooser_title)),
  768. ACTION_SELECT_CONTENT_FROM_APPS);
  769. }
  770. }
  771. });
  772. dialog = builder.create();
  773. break;
  774. }
  775. case DIALOG_CERT_NOT_SAVED: {
  776. builder = new AlertDialog.Builder(this);
  777. builder.setMessage(getResources().getString(R.string.ssl_validator_not_saved));
  778. builder.setCancelable(false);
  779. builder.setPositiveButton(R.string.common_ok, new DialogInterface.OnClickListener() {
  780. @Override
  781. public void onClick(DialogInterface dialog, int which) {
  782. dialog.dismiss();
  783. };
  784. });
  785. dialog = builder.create();
  786. break;
  787. }
  788. default:
  789. dialog = null;
  790. }
  791. return dialog;
  792. }
  793. /**
  794. * Translates a content URI of an content to a physical path on the disk
  795. *
  796. * @param uri The URI to resolve
  797. * @return The path to the content or null if it could not be found
  798. */
  799. public String getPath(Uri uri) {
  800. String[] projection = { MediaStore.Images.Media.DATA };
  801. Cursor cursor = managedQuery(uri, projection, null, null, null);
  802. if (cursor != null) {
  803. int column_index = cursor
  804. .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
  805. cursor.moveToFirst();
  806. return cursor.getString(column_index);
  807. }
  808. final boolean isKitKatOrLater = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
  809. // DocumentProvider
  810. if (isKitKatOrLater && DocumentsContract.isDocumentUri(getApplicationContext(), uri)) {
  811. // ExternalStorageProvider
  812. if (UriUtils.isExternalStorageDocument(uri)) {
  813. final String docId = DocumentsContract.getDocumentId(uri);
  814. final String[] split = docId.split(":");
  815. final String type = split[0];
  816. if ("primary".equalsIgnoreCase(type)) {
  817. return Environment.getExternalStorageDirectory() + "/" + split[1];
  818. }
  819. }
  820. // DownloadsProvider
  821. else if (UriUtils.isDownloadsDocument(uri)) {
  822. final String id = DocumentsContract.getDocumentId(uri);
  823. final Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"),
  824. Long.valueOf(id));
  825. return UriUtils.getDataColumn(getApplicationContext(), contentUri, null, null);
  826. }
  827. // MediaProvider
  828. else if (UriUtils.isMediaDocument(uri)) {
  829. final String docId = DocumentsContract.getDocumentId(uri);
  830. final String[] split = docId.split(":");
  831. final String type = split[0];
  832. Uri contentUri = null;
  833. if ("image".equals(type)) {
  834. contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
  835. } else if ("video".equals(type)) {
  836. contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
  837. } else if ("audio".equals(type)) {
  838. contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
  839. }
  840. final String selection = "_id=?";
  841. final String[] selectionArgs = new String[] { split[1] };
  842. return UriUtils.getDataColumn(getApplicationContext(), contentUri, selection, selectionArgs);
  843. }
  844. // Documents providers returned as content://...
  845. else if (UriUtils.isContentDocument(uri)) {
  846. return uri.toString();
  847. }
  848. }
  849. // MediaStore (and general)
  850. else if ("content".equalsIgnoreCase(uri.getScheme())) {
  851. // Return the remote address
  852. if (UriUtils.isGooglePhotosUri(uri))
  853. return uri.getLastPathSegment();
  854. return UriUtils.getDataColumn(getApplicationContext(), uri, null, null);
  855. }
  856. // File
  857. else if ("file".equalsIgnoreCase(uri.getScheme())) {
  858. return uri.getPath();
  859. }
  860. return null;
  861. }
  862. /**
  863. * Pushes a directory to the drop down list
  864. * @param directory to push
  865. * @throws IllegalArgumentException If the {@link OCFile#isFolder()} returns false.
  866. */
  867. public void pushDirname(OCFile directory) {
  868. if(!directory.isFolder()){
  869. throw new IllegalArgumentException("Only directories may be pushed!");
  870. }
  871. mDirectories.insert(directory.getFileName(), 0);
  872. setFile(directory);
  873. }
  874. /**
  875. * Pops a directory name from the drop down list
  876. * @return True, unless the stack is empty
  877. */
  878. public boolean popDirname() {
  879. mDirectories.remove(mDirectories.getItem(0));
  880. return !mDirectories.isEmpty();
  881. }
  882. // Custom array adapter to override text colors
  883. private class CustomArrayAdapter<T> extends ArrayAdapter<T> {
  884. public CustomArrayAdapter(FileDisplayActivity ctx, int view) {
  885. super(ctx, view);
  886. }
  887. public View getView(int position, View convertView, ViewGroup parent) {
  888. View v = super.getView(position, convertView, parent);
  889. ((TextView) v).setTextColor(getResources().getColorStateList(
  890. android.R.color.white));
  891. fixRoot((TextView) v );
  892. return v;
  893. }
  894. public View getDropDownView(int position, View convertView,
  895. ViewGroup parent) {
  896. View v = super.getDropDownView(position, convertView, parent);
  897. ((TextView) v).setTextColor(getResources().getColorStateList(
  898. android.R.color.white));
  899. fixRoot((TextView) v );
  900. return v;
  901. }
  902. private void fixRoot(TextView v) {
  903. if (v.getText().equals(OCFile.PATH_SEPARATOR)) {
  904. v.setText(R.string.default_display_name_for_root_folder);
  905. }
  906. }
  907. }
  908. private class SyncBroadcastReceiver extends BroadcastReceiver {
  909. /**
  910. * {@link BroadcastReceiver} to enable syncing feedback in UI
  911. */
  912. @Override
  913. public void onReceive(Context context, Intent intent) {
  914. try {
  915. String event = intent.getAction();
  916. Log_OC.d(TAG, "Received broadcast " + event);
  917. String accountName = intent.getStringExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME);
  918. String synchFolderRemotePath = intent.getStringExtra(FileSyncAdapter.EXTRA_FOLDER_PATH);
  919. RemoteOperationResult synchResult = (RemoteOperationResult)intent.getSerializableExtra(FileSyncAdapter.EXTRA_RESULT);
  920. boolean sameAccount = (getAccount() != null && accountName.equals(getAccount().name) && getStorageManager() != null);
  921. if (sameAccount) {
  922. if (FileSyncAdapter.EVENT_FULL_SYNC_START.equals(event)) {
  923. mSyncInProgress = true;
  924. } else {
  925. OCFile currentFile = (getFile() == null) ? null : getStorageManager().getFileByPath(getFile().getRemotePath());
  926. OCFile currentDir = (getCurrentDir() == null) ? null : getStorageManager().getFileByPath(getCurrentDir().getRemotePath());
  927. if (currentDir == null) {
  928. // current folder was removed from the server
  929. Toast.makeText( FileDisplayActivity.this,
  930. String.format(getString(R.string.sync_current_folder_was_removed), mDirectories.getItem(0)),
  931. Toast.LENGTH_LONG)
  932. .show();
  933. browseToRoot();
  934. } else {
  935. if (currentFile == null && !getFile().isFolder()) {
  936. // currently selected file was removed in the server, and now we know it
  937. cleanSecondFragment();
  938. currentFile = currentDir;
  939. }
  940. if (synchFolderRemotePath != null && currentDir.getRemotePath().equals(synchFolderRemotePath)) {
  941. OCFileListFragment fileListFragment = getListOfFilesFragment();
  942. if (fileListFragment != null) {
  943. fileListFragment.listDirectory(currentDir);
  944. }
  945. }
  946. setFile(currentFile);
  947. }
  948. mSyncInProgress = (!FileSyncAdapter.EVENT_FULL_SYNC_END.equals(event) && !SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED.equals(event));
  949. if (SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED.
  950. equals(event) &&
  951. /// TODO refactor and make common
  952. synchResult != null && !synchResult.isSuccess() &&
  953. (synchResult.getCode() == ResultCode.UNAUTHORIZED ||
  954. synchResult.isIdPRedirection() ||
  955. (synchResult.isException() && synchResult.getException()
  956. instanceof AuthenticatorException))) {
  957. OwnCloudClient client = null;
  958. try {
  959. OwnCloudAccount ocAccount =
  960. new OwnCloudAccount(getAccount(), context);
  961. client = (OwnCloudClientManagerFactory.getDefaultSingleton().
  962. removeClientFor(ocAccount));
  963. // TODO get rid of these exceptions
  964. } catch (AccountNotFoundException e) {
  965. e.printStackTrace();
  966. } catch (AuthenticatorException e) {
  967. e.printStackTrace();
  968. } catch (OperationCanceledException e) {
  969. e.printStackTrace();
  970. } catch (IOException e) {
  971. e.printStackTrace();
  972. }
  973. if (client != null) {
  974. OwnCloudCredentials cred = client.getCredentials();
  975. if (cred != null) {
  976. AccountManager am = AccountManager.get(context);
  977. if (cred.authTokenExpires()) {
  978. am.invalidateAuthToken(
  979. getAccount().type,
  980. cred.getAuthToken()
  981. );
  982. } else {
  983. am.clearPassword(getAccount());
  984. }
  985. }
  986. }
  987. requestCredentialsUpdate();
  988. }
  989. }
  990. removeStickyBroadcast(intent);
  991. Log_OC.d(TAG, "Setting progress visibility to " + mSyncInProgress);
  992. setSupportProgressBarIndeterminateVisibility(mSyncInProgress /*|| mRefreshSharesInProgress*/);
  993. setBackgroundText();
  994. }
  995. if (synchResult != null) {
  996. if (synchResult.getCode().equals(RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED)) {
  997. mLastSslUntrustedServerResult = synchResult;
  998. }
  999. }
  1000. } catch (RuntimeException e) {
  1001. // avoid app crashes after changing the serial id of RemoteOperationResult
  1002. // in owncloud library with broadcast notifications pending to process
  1003. removeStickyBroadcast(intent);
  1004. }
  1005. }
  1006. }
  1007. /**
  1008. * Show a text message on screen view for notifying user if content is
  1009. * loading or folder is empty
  1010. */
  1011. private void setBackgroundText() {
  1012. OCFileListFragment ocFileListFragment = getListOfFilesFragment();
  1013. if (ocFileListFragment != null) {
  1014. int message = R.string.file_list_loading;
  1015. if (!mSyncInProgress) {
  1016. // In case file list is empty
  1017. message = R.string.file_list_empty;
  1018. }
  1019. ocFileListFragment.setMessageForEmptyList(getString(message));
  1020. } else {
  1021. Log_OC.e(TAG, "OCFileListFragment is null");
  1022. }
  1023. }
  1024. /**
  1025. * Once the file upload has finished -> update view
  1026. */
  1027. private class UploadFinishReceiver extends BroadcastReceiver {
  1028. /**
  1029. * Once the file upload has finished -> update view
  1030. * @author David A. Velasco
  1031. * {@link BroadcastReceiver} to enable upload feedback in UI
  1032. */
  1033. @Override
  1034. public void onReceive(Context context, Intent intent) {
  1035. try {
  1036. String uploadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  1037. String accountName = intent.getStringExtra(FileUploadService.ACCOUNT_NAME);
  1038. boolean sameAccount = getAccount() != null && accountName.equals(getAccount().name);
  1039. OCFile currentDir = getCurrentDir();
  1040. boolean isDescendant = (currentDir != null) && (uploadedRemotePath != null) &&
  1041. (uploadedRemotePath.startsWith(currentDir.getRemotePath()));
  1042. if (sameAccount && isDescendant) {
  1043. refreshListOfFilesFragment();
  1044. }
  1045. boolean uploadWasFine = intent.getBooleanExtra(FileUploadService.EXTRA_UPLOAD_RESULT, false);
  1046. boolean renamedInUpload = getFile().getRemotePath().
  1047. equals(intent.getStringExtra(FileUploadService.EXTRA_OLD_REMOTE_PATH));
  1048. boolean sameFile = getFile().getRemotePath().equals(uploadedRemotePath) ||
  1049. renamedInUpload;
  1050. FileFragment details = getSecondFragment();
  1051. boolean detailFragmentIsShown = (details != null &&
  1052. details instanceof FileDetailFragment);
  1053. if (sameAccount && sameFile && detailFragmentIsShown) {
  1054. if (uploadWasFine) {
  1055. setFile(getStorageManager().getFileByPath(uploadedRemotePath));
  1056. } else {
  1057. //TODO remove upload progress bar after upload failed.
  1058. }
  1059. if (renamedInUpload) {
  1060. String newName = (new File(uploadedRemotePath)).getName();
  1061. Toast msg = Toast.makeText(
  1062. context,
  1063. String.format(
  1064. getString(R.string.filedetails_renamed_in_upload_msg),
  1065. newName),
  1066. Toast.LENGTH_LONG);
  1067. msg.show();
  1068. }
  1069. if (uploadWasFine || getFile().fileExists()) {
  1070. ((FileDetailFragment)details).updateFileDetails(false, true);
  1071. } else {
  1072. cleanSecondFragment();
  1073. }
  1074. // Force the preview if the file is an image
  1075. if (uploadWasFine && PreviewImageFragment.canBePreviewed(getFile())) {
  1076. startImagePreview(getFile());
  1077. } // TODO what about other kind of previews?
  1078. }
  1079. } finally {
  1080. if (intent != null) {
  1081. removeStickyBroadcast(intent);
  1082. }
  1083. }
  1084. }
  1085. }
  1086. /**
  1087. * Class waiting for broadcast events from the {@link FielDownloader} service.
  1088. *
  1089. * Updates the UI when a download is started or finished, provided that it is relevant for the
  1090. * current folder.
  1091. */
  1092. private class DownloadFinishReceiver extends BroadcastReceiver {
  1093. @Override
  1094. public void onReceive(Context context, Intent intent) {
  1095. try {
  1096. boolean sameAccount = isSameAccount(context, intent);
  1097. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  1098. boolean isDescendant = isDescendant(downloadedRemotePath);
  1099. if (sameAccount && isDescendant) {
  1100. refreshListOfFilesFragment();
  1101. refreshSecondFragment(intent.getAction(), downloadedRemotePath, intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false));
  1102. }
  1103. if (mWaitingToSend != null) {
  1104. mWaitingToSend = getStorageManager().getFileByPath(mWaitingToSend.getRemotePath()); // Update the file to send
  1105. if (mWaitingToSend.isDown()) {
  1106. sendDownloadedFile();
  1107. }
  1108. }
  1109. } finally {
  1110. if (intent != null) {
  1111. removeStickyBroadcast(intent);
  1112. }
  1113. }
  1114. }
  1115. private boolean isDescendant(String downloadedRemotePath) {
  1116. OCFile currentDir = getCurrentDir();
  1117. return (currentDir != null && downloadedRemotePath != null && downloadedRemotePath.startsWith(currentDir.getRemotePath()));
  1118. }
  1119. private boolean isSameAccount(Context context, Intent intent) {
  1120. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  1121. return (accountName != null && getAccount() != null && accountName.equals(getAccount().name));
  1122. }
  1123. }
  1124. public void browseToRoot() {
  1125. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1126. if (listOfFiles != null) { // should never be null, indeed
  1127. while (mDirectories.getCount() > 1) {
  1128. popDirname();
  1129. }
  1130. OCFile root = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  1131. listOfFiles.listDirectory(root);
  1132. setFile(listOfFiles.getCurrentFile());
  1133. startSyncFolderOperation(root, false);
  1134. }
  1135. cleanSecondFragment();
  1136. }
  1137. public void browseTo(OCFile folder) {
  1138. if (folder == null || !folder.isFolder()) {
  1139. throw new IllegalArgumentException("Trying to browse to invalid folder " + folder);
  1140. }
  1141. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1142. if (listOfFiles != null) {
  1143. setNavigationListWithFolder(folder);
  1144. listOfFiles.listDirectory(folder);
  1145. setFile(listOfFiles.getCurrentFile());
  1146. startSyncFolderOperation(folder, false);
  1147. } else {
  1148. Log_OC.e(TAG, "Unexpected null when accessing list fragment");
  1149. }
  1150. cleanSecondFragment();
  1151. }
  1152. /**
  1153. * {@inheritDoc}
  1154. *
  1155. * Updates action bar and second fragment, if in dual pane mode.
  1156. */
  1157. @Override
  1158. public void onBrowsedDownTo(OCFile directory) {
  1159. pushDirname(directory);
  1160. cleanSecondFragment();
  1161. // Sync Folder
  1162. startSyncFolderOperation(directory, false);
  1163. }
  1164. /**
  1165. * Shows the information of the {@link OCFile} received as a
  1166. * parameter in the second fragment.
  1167. *
  1168. * @param file {@link OCFile} whose details will be shown
  1169. */
  1170. @Override
  1171. public void showDetails(OCFile file) {
  1172. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  1173. setSecondFragment(detailFragment);
  1174. updateFragmentsVisibility(true);
  1175. updateNavigationElementsInActionBar(file);
  1176. setFile(file);
  1177. }
  1178. /**
  1179. * TODO
  1180. */
  1181. private void updateNavigationElementsInActionBar(OCFile chosenFile) {
  1182. ActionBar actionBar = getSupportActionBar();
  1183. if (chosenFile == null || mDualPane) {
  1184. // only list of files - set for browsing through folders
  1185. OCFile currentDir = getCurrentDir();
  1186. boolean noRoot = (currentDir != null && currentDir.getParentId() != 0);
  1187. actionBar.setDisplayHomeAsUpEnabled(noRoot);
  1188. actionBar.setDisplayShowTitleEnabled(!noRoot);
  1189. if (!noRoot) {
  1190. actionBar.setTitle(getString(R.string.default_display_name_for_root_folder));
  1191. }
  1192. actionBar.setNavigationMode(!noRoot ? ActionBar.NAVIGATION_MODE_STANDARD : ActionBar.NAVIGATION_MODE_LIST);
  1193. actionBar.setListNavigationCallbacks(mDirectories, this); // assuming mDirectories is updated
  1194. } else {
  1195. actionBar.setDisplayHomeAsUpEnabled(true);
  1196. actionBar.setDisplayShowTitleEnabled(true);
  1197. actionBar.setTitle(chosenFile.getFileName());
  1198. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
  1199. }
  1200. }
  1201. @Override
  1202. protected ServiceConnection newTransferenceServiceConnection() {
  1203. return new ListServiceConnection();
  1204. }
  1205. /** Defines callbacks for service binding, passed to bindService() */
  1206. private class ListServiceConnection implements ServiceConnection {
  1207. @Override
  1208. public void onServiceConnected(ComponentName component, IBinder service) {
  1209. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  1210. Log_OC.d(TAG, "Download service connected");
  1211. mDownloaderBinder = (FileDownloaderBinder) service;
  1212. if (mWaitingToPreview != null)
  1213. if (getStorageManager() != null) {
  1214. mWaitingToPreview = getStorageManager().getFileById(mWaitingToPreview.getFileId()); // update the file
  1215. if (!mWaitingToPreview.isDown()) {
  1216. requestForDownload();
  1217. }
  1218. }
  1219. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploadService.class))) {
  1220. Log_OC.d(TAG, "Upload service connected");
  1221. mUploaderBinder = (FileUploaderBinder) service;
  1222. } else {
  1223. return;
  1224. }
  1225. // a new chance to get the mDownloadBinder through getFileDownloadBinder() - THIS IS A MESS
  1226. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1227. if (listOfFiles != null) {
  1228. listOfFiles.listDirectory();
  1229. }
  1230. FileFragment secondFragment = getSecondFragment();
  1231. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  1232. FileDetailFragment detailFragment = (FileDetailFragment)secondFragment;
  1233. detailFragment.listenForTransferProgress();
  1234. detailFragment.updateFileDetails(false, false);
  1235. }
  1236. }
  1237. @Override
  1238. public void onServiceDisconnected(ComponentName component) {
  1239. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  1240. Log_OC.d(TAG, "Download service disconnected");
  1241. mDownloaderBinder = null;
  1242. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploadService.class))) {
  1243. Log_OC.d(TAG, "Upload service disconnected");
  1244. mUploaderBinder = null;
  1245. }
  1246. }
  1247. };
  1248. /**
  1249. * Launch an intent to request the PIN code to the user before letting him use the app
  1250. */
  1251. private void requestPinCode() {
  1252. boolean pinStart = false;
  1253. SharedPreferences appPrefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
  1254. pinStart = appPrefs.getBoolean("set_pincode", false);
  1255. if (pinStart) {
  1256. Intent i = new Intent(getApplicationContext(), PinCodeActivity.class);
  1257. i.putExtra(PinCodeActivity.EXTRA_ACTIVITY, "FileDisplayActivity");
  1258. startActivity(i);
  1259. }
  1260. }
  1261. @Override
  1262. public void onSavedCertificate() {
  1263. startSyncFolderOperation(getCurrentDir(), false);
  1264. }
  1265. @Override
  1266. public void onFailedSavingCertificate() {
  1267. showDialog(DIALOG_CERT_NOT_SAVED);
  1268. }
  1269. @Override
  1270. public void onCancelCertificate() {
  1271. // nothing to do
  1272. }
  1273. /**
  1274. * Updates the view associated to the activity after the finish of some operation over files
  1275. * in the current account.
  1276. *
  1277. * @param operation Removal operation performed.
  1278. * @param result Result of the removal.
  1279. */
  1280. @Override
  1281. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  1282. super.onRemoteOperationFinish(operation, result);
  1283. if (operation instanceof RemoveFileOperation) {
  1284. onRemoveFileOperationFinish((RemoveFileOperation)operation, result);
  1285. } else if (operation instanceof RenameFileOperation) {
  1286. onRenameFileOperationFinish((RenameFileOperation)operation, result);
  1287. } else if (operation instanceof SynchronizeFileOperation) {
  1288. onSynchronizeFileOperationFinish((SynchronizeFileOperation)operation, result);
  1289. } else if (operation instanceof CreateFolderOperation) {
  1290. onCreateFolderOperationFinish((CreateFolderOperation)operation, result);
  1291. } else if (operation instanceof CreateShareOperation) {
  1292. onCreateShareOperationFinish((CreateShareOperation) operation, result);
  1293. } else if (operation instanceof UnshareLinkOperation) {
  1294. onUnshareLinkOperationFinish((UnshareLinkOperation)operation, result);
  1295. } else if (operation instanceof MoveFileOperation) {
  1296. onMoveFileOperationFinish((MoveFileOperation)operation, result);
  1297. }
  1298. }
  1299. private void onCreateShareOperationFinish(CreateShareOperation operation, RemoteOperationResult result) {
  1300. if (result.isSuccess()) {
  1301. refreshShowDetails();
  1302. refreshListOfFilesFragment();
  1303. }
  1304. }
  1305. private void onUnshareLinkOperationFinish(UnshareLinkOperation operation, RemoteOperationResult result) {
  1306. if (result.isSuccess()) {
  1307. refreshShowDetails();
  1308. refreshListOfFilesFragment();
  1309. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  1310. cleanSecondFragment();
  1311. refreshListOfFilesFragment();
  1312. }
  1313. }
  1314. private void refreshShowDetails() {
  1315. FileFragment details = getSecondFragment();
  1316. if (details != null) {
  1317. OCFile file = details.getFile();
  1318. if (file != null) {
  1319. file = getStorageManager().getFileByPath(file.getRemotePath());
  1320. if (details instanceof PreviewMediaFragment) {
  1321. // Refresh OCFile of the fragment
  1322. ((PreviewMediaFragment) details).updateFile(file);
  1323. } else {
  1324. showDetails(file);
  1325. }
  1326. }
  1327. invalidateOptionsMenu();
  1328. }
  1329. }
  1330. /**
  1331. * Updates the view associated to the activity after the finish of an operation trying to remove a
  1332. * file.
  1333. *
  1334. * @param operation Removal operation performed.
  1335. * @param result Result of the removal.
  1336. */
  1337. private void onRemoveFileOperationFinish(RemoveFileOperation operation, RemoteOperationResult result) {
  1338. dismissLoadingDialog();
  1339. Toast msg = Toast.makeText(this, ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1340. Toast.LENGTH_LONG);
  1341. msg.show();
  1342. if (result.isSuccess()) {
  1343. OCFile removedFile = operation.getFile();
  1344. FileFragment second = getSecondFragment();
  1345. if (second != null && removedFile.equals(second.getFile())) {
  1346. if (second instanceof PreviewMediaFragment) {
  1347. ((PreviewMediaFragment)second).stopPreview(true);
  1348. }
  1349. setFile(getStorageManager().getFileById(removedFile.getParentId()));
  1350. cleanSecondFragment();
  1351. }
  1352. if (getStorageManager().getFileById(removedFile.getParentId()).equals(getCurrentDir())) {
  1353. refreshListOfFilesFragment();
  1354. }
  1355. invalidateOptionsMenu();
  1356. } else {
  1357. if (result.isSslRecoverableException()) {
  1358. mLastSslUntrustedServerResult = result;
  1359. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1360. }
  1361. }
  1362. }
  1363. /**
  1364. * Updates the view associated to the activity after the finish of an operation trying to move a
  1365. * file.
  1366. *
  1367. * @param operation Move operation performed.
  1368. * @param result Result of the move operation.
  1369. */
  1370. private void onMoveFileOperationFinish(MoveFileOperation operation, RemoteOperationResult result) {
  1371. if (result.isSuccess()) {
  1372. dismissLoadingDialog();
  1373. refreshListOfFilesFragment();
  1374. } else {
  1375. dismissLoadingDialog();
  1376. try {
  1377. Toast msg = Toast.makeText(FileDisplayActivity.this,
  1378. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1379. Toast.LENGTH_LONG);
  1380. msg.show();
  1381. } catch (NotFoundException e) {
  1382. Log_OC.e(TAG, "Error while trying to show fail message " , e);
  1383. }
  1384. }
  1385. }
  1386. /**
  1387. * Updates the view associated to the activity after the finish of an operation trying to rename a
  1388. * file.
  1389. *
  1390. * @param operation Renaming operation performed.
  1391. * @param result Result of the renaming.
  1392. */
  1393. private void onRenameFileOperationFinish(RenameFileOperation operation, RemoteOperationResult result) {
  1394. dismissLoadingDialog();
  1395. OCFile renamedFile = operation.getFile();
  1396. if (result.isSuccess()) {
  1397. FileFragment details = getSecondFragment();
  1398. if (details != null) {
  1399. if (details instanceof FileDetailFragment && renamedFile.equals(details.getFile()) ) {
  1400. ((FileDetailFragment) details).updateFileDetails(renamedFile, getAccount());
  1401. showDetails(renamedFile);
  1402. } else if (details instanceof PreviewMediaFragment && renamedFile.equals(details.getFile())) {
  1403. ((PreviewMediaFragment) details).updateFile(renamedFile);
  1404. if (PreviewMediaFragment.canBePreviewed(renamedFile)) {
  1405. int position = ((PreviewMediaFragment)details).getPosition();
  1406. startMediaPreview(renamedFile, position, true);
  1407. } else {
  1408. getFileOperationsHelper().openFile(renamedFile);
  1409. }
  1410. }
  1411. }
  1412. if (getStorageManager().getFileById(renamedFile.getParentId()).equals(getCurrentDir())) {
  1413. refreshListOfFilesFragment();
  1414. }
  1415. } else {
  1416. Toast msg = Toast.makeText(this, ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1417. Toast.LENGTH_LONG);
  1418. msg.show();
  1419. if (result.isSslRecoverableException()) {
  1420. mLastSslUntrustedServerResult = result;
  1421. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1422. }
  1423. }
  1424. }
  1425. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation, RemoteOperationResult result) {
  1426. dismissLoadingDialog();
  1427. OCFile syncedFile = operation.getLocalFile();
  1428. if (!result.isSuccess()) {
  1429. if (result.getCode() == ResultCode.SYNC_CONFLICT) {
  1430. Intent i = new Intent(this, ConflictsResolveActivity.class);
  1431. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, syncedFile);
  1432. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, getAccount());
  1433. startActivity(i);
  1434. }
  1435. } else {
  1436. if (operation.transferWasRequested()) {
  1437. onTransferStateChanged(syncedFile, true, true);
  1438. } else {
  1439. Toast msg = Toast.makeText(this, ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1440. Toast.LENGTH_LONG);
  1441. msg.show();
  1442. }
  1443. }
  1444. }
  1445. /**
  1446. * Updates the view associated to the activity after the finish of an operation trying create a new folder
  1447. *
  1448. * @param operation Creation operation performed.
  1449. * @param result Result of the creation.
  1450. */
  1451. private void onCreateFolderOperationFinish(CreateFolderOperation operation, RemoteOperationResult result) {
  1452. if (result.isSuccess()) {
  1453. dismissLoadingDialog();
  1454. refreshListOfFilesFragment();
  1455. } else {
  1456. dismissLoadingDialog();
  1457. try {
  1458. Toast msg = Toast.makeText(FileDisplayActivity.this,
  1459. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  1460. Toast.LENGTH_LONG);
  1461. msg.show();
  1462. } catch (NotFoundException e) {
  1463. Log_OC.e(TAG, "Error while trying to show fail message " , e);
  1464. }
  1465. }
  1466. }
  1467. /**
  1468. * {@inheritDoc}
  1469. */
  1470. @Override
  1471. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  1472. refreshListOfFilesFragment();
  1473. FileFragment details = getSecondFragment();
  1474. if (details != null && details instanceof FileDetailFragment && file.equals(details.getFile()) ) {
  1475. if (downloading || uploading) {
  1476. ((FileDetailFragment)details).updateFileDetails(file, getAccount());
  1477. } else {
  1478. if (!file.fileExists()) {
  1479. cleanSecondFragment();
  1480. } else {
  1481. ((FileDetailFragment)details).updateFileDetails(false, true);
  1482. }
  1483. }
  1484. }
  1485. }
  1486. private void requestForDownload() {
  1487. Account account = getAccount();
  1488. if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
  1489. Intent i = new Intent(this, FileDownloader.class);
  1490. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1491. i.putExtra(FileDownloader.EXTRA_FILE, mWaitingToPreview);
  1492. startService(i);
  1493. }
  1494. }
  1495. private OCFile getCurrentDir() {
  1496. OCFile file = getFile();
  1497. if (file != null) {
  1498. if (file.isFolder()) {
  1499. return file;
  1500. } else if (getStorageManager() != null) {
  1501. String parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  1502. return getStorageManager().getFileByPath(parentPath);
  1503. }
  1504. }
  1505. return null;
  1506. }
  1507. public void startSyncFolderOperation(OCFile folder, boolean ignoreETag) {
  1508. long currentSyncTime = System.currentTimeMillis();
  1509. mSyncInProgress = true;
  1510. // perform folder synchronization
  1511. RemoteOperation synchFolderOp = new SynchronizeFolderOperation( folder,
  1512. currentSyncTime,
  1513. false,
  1514. getFileOperationsHelper().isSharedSupported(),
  1515. ignoreETag,
  1516. getStorageManager(),
  1517. getAccount(),
  1518. getApplicationContext()
  1519. );
  1520. synchFolderOp.execute(getAccount(), this, null, null);
  1521. setSupportProgressBarIndeterminateVisibility(true);
  1522. setBackgroundText();
  1523. }
  1524. /**
  1525. * Show untrusted cert dialog
  1526. */
  1527. public void showUntrustedCertDialog(RemoteOperationResult result) {
  1528. // Show a dialog with the certificate info
  1529. SslUntrustedCertDialog dialog = SslUntrustedCertDialog.newInstanceForFullSslError((CertificateCombinedException)result.getException());
  1530. FragmentManager fm = getSupportFragmentManager();
  1531. FragmentTransaction ft = fm.beginTransaction();
  1532. dialog.show(ft, DIALOG_UNTRUSTED_CERT);
  1533. }
  1534. private void requestForDownload(OCFile file) {
  1535. Account account = getAccount();
  1536. if (!mDownloaderBinder.isDownloading(account, file)) {
  1537. Intent i = new Intent(this, FileDownloader.class);
  1538. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1539. i.putExtra(FileDownloader.EXTRA_FILE, file);
  1540. startService(i);
  1541. }
  1542. }
  1543. private void sendDownloadedFile(){
  1544. getFileOperationsHelper().sendDownloadedFile(mWaitingToSend);
  1545. mWaitingToSend = null;
  1546. }
  1547. /**
  1548. * Requests the download of the received {@link OCFile} , updates the UI
  1549. * to monitor the download progress and prepares the activity to send the file
  1550. * when the download finishes.
  1551. *
  1552. * @param file {@link OCFile} to download and preview.
  1553. */
  1554. public void startDownloadForSending(OCFile file) {
  1555. mWaitingToSend = file;
  1556. requestForDownload(mWaitingToSend);
  1557. boolean hasSecondFragment = (getSecondFragment()!= null);
  1558. updateFragmentsVisibility(hasSecondFragment);
  1559. }
  1560. /**
  1561. * Opens the image gallery showing the image {@link OCFile} received as parameter.
  1562. *
  1563. * @param file Image {@link OCFile} to show.
  1564. */
  1565. public void startImagePreview(OCFile file) {
  1566. Intent showDetailsIntent = new Intent(this, PreviewImageActivity.class);
  1567. showDetailsIntent.putExtra(EXTRA_FILE, file);
  1568. showDetailsIntent.putExtra(EXTRA_ACCOUNT, getAccount());
  1569. startActivity(showDetailsIntent);
  1570. }
  1571. /**
  1572. * Stars the preview of an already down media {@link OCFile}.
  1573. *
  1574. * @param file Media {@link OCFile} to preview.
  1575. * @param startPlaybackPosition Media position where the playback will be started, in milliseconds.
  1576. * @param autoplay When 'true', the playback will start without user interactions.
  1577. */
  1578. public void startMediaPreview(OCFile file, int startPlaybackPosition, boolean autoplay) {
  1579. Fragment mediaFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  1580. setSecondFragment(mediaFragment);
  1581. updateFragmentsVisibility(true);
  1582. updateNavigationElementsInActionBar(file);
  1583. setFile(file);
  1584. }
  1585. /**
  1586. * Requests the download of the received {@link OCFile} , updates the UI
  1587. * to monitor the download progress and prepares the activity to preview
  1588. * or open the file when the download finishes.
  1589. *
  1590. * @param file {@link OCFile} to download and preview.
  1591. */
  1592. public void startDownloadForPreview(OCFile file) {
  1593. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  1594. setSecondFragment(detailFragment);
  1595. mWaitingToPreview = file;
  1596. requestForDownload();
  1597. updateFragmentsVisibility(true);
  1598. updateNavigationElementsInActionBar(file);
  1599. setFile(file);
  1600. }
  1601. public void cancelTransference(OCFile file) {
  1602. getFileOperationsHelper().cancelTransference(file);
  1603. if (mWaitingToPreview != null &&
  1604. mWaitingToPreview.getRemotePath().equals(file.getRemotePath())) {
  1605. mWaitingToPreview = null;
  1606. }
  1607. if (mWaitingToSend != null &&
  1608. mWaitingToSend.getRemotePath().equals(file.getRemotePath())) {
  1609. mWaitingToSend = null;
  1610. }
  1611. onTransferStateChanged(file, false, false);
  1612. }
  1613. @Override
  1614. public void onRefresh(boolean ignoreETag) {
  1615. refreshList(ignoreETag);
  1616. }
  1617. @Override
  1618. public void onRefresh() {
  1619. refreshList(true);
  1620. }
  1621. private void refreshList(boolean ignoreETag) {
  1622. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1623. if (listOfFiles != null) {
  1624. OCFile folder = listOfFiles.getCurrentFile();
  1625. if (folder != null) {
  1626. /*mFile = mContainerActivity.getStorageManager().getFileById(mFile.getFileId());
  1627. listDirectory(mFile);*/
  1628. startSyncFolderOperation(folder, ignoreETag);
  1629. }
  1630. }
  1631. }
  1632. private void sortByDate(boolean ascending){
  1633. getListOfFilesFragment().sortByDate(ascending);
  1634. }
  1635. private void sortBySize(boolean ascending){
  1636. getListOfFilesFragment().sortBySize(ascending);
  1637. }
  1638. private void sortByName(boolean ascending){
  1639. getListOfFilesFragment().sortByName(ascending);
  1640. }
  1641. }