FileDisplayActivity.java 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011 Bartek Przybylski
  3. * Copyright (C) 2012-2013 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 android.accounts.Account;
  21. import android.app.AlertDialog;
  22. import android.app.Dialog;
  23. import android.app.ProgressDialog;
  24. import android.content.BroadcastReceiver;
  25. import android.content.ComponentName;
  26. import android.content.ContentResolver;
  27. import android.content.Context;
  28. import android.content.DialogInterface;
  29. import android.content.Intent;
  30. import android.content.IntentFilter;
  31. import android.content.ServiceConnection;
  32. import android.content.SharedPreferences;
  33. import android.content.SyncRequest;
  34. import android.content.res.Resources.NotFoundException;
  35. import android.database.Cursor;
  36. import android.net.Uri;
  37. import android.os.Bundle;
  38. import android.os.Handler;
  39. import android.os.IBinder;
  40. import android.preference.PreferenceManager;
  41. import android.provider.MediaStore;
  42. import android.support.v4.app.Fragment;
  43. import android.support.v4.app.FragmentManager;
  44. import android.support.v4.app.FragmentTransaction;
  45. import android.util.Log;
  46. import android.view.View;
  47. import android.view.ViewGroup;
  48. import android.widget.ArrayAdapter;
  49. import android.widget.TextView;
  50. import android.widget.Toast;
  51. import com.actionbarsherlock.app.ActionBar;
  52. import com.actionbarsherlock.app.ActionBar.OnNavigationListener;
  53. import com.actionbarsherlock.view.Menu;
  54. import com.actionbarsherlock.view.MenuInflater;
  55. import com.actionbarsherlock.view.MenuItem;
  56. import com.actionbarsherlock.view.Window;
  57. import com.owncloud.android.MainApp;
  58. import com.owncloud.android.R;
  59. import com.owncloud.android.datamodel.FileDataStorageManager;
  60. import com.owncloud.android.datamodel.OCFile;
  61. import com.owncloud.android.files.services.FileDownloader;
  62. import com.owncloud.android.files.services.FileObserverService;
  63. import com.owncloud.android.files.services.FileUploader;
  64. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  65. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  66. import com.owncloud.android.operations.CreateFolderOperation;
  67. import com.owncloud.android.oc_framework.operations.OnRemoteOperationListener;
  68. import com.owncloud.android.oc_framework.operations.RemoteOperation;
  69. import com.owncloud.android.oc_framework.operations.RemoteOperationResult;
  70. import com.owncloud.android.oc_framework.operations.RemoteOperationResult.ResultCode;
  71. import com.owncloud.android.operations.RemoveFileOperation;
  72. import com.owncloud.android.operations.RenameFileOperation;
  73. import com.owncloud.android.operations.SynchronizeFileOperation;
  74. import com.owncloud.android.operations.SynchronizeFolderOperation;
  75. import com.owncloud.android.syncadapter.FileSyncService;
  76. import com.owncloud.android.ui.dialog.EditNameDialog;
  77. import com.owncloud.android.ui.dialog.EditNameDialog.EditNameDialogListener;
  78. import com.owncloud.android.ui.dialog.LoadingDialog;
  79. import com.owncloud.android.ui.dialog.SslValidatorDialog;
  80. import com.owncloud.android.ui.dialog.SslValidatorDialog.OnSslValidatorListener;
  81. import com.owncloud.android.ui.fragment.FileDetailFragment;
  82. import com.owncloud.android.ui.fragment.FileFragment;
  83. import com.owncloud.android.ui.fragment.OCFileListFragment;
  84. import com.owncloud.android.ui.preview.PreviewImageActivity;
  85. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  86. import com.owncloud.android.ui.preview.PreviewVideoActivity;
  87. import com.owncloud.android.utils.Log_OC;
  88. /**
  89. * Displays, what files the user has available in his ownCloud.
  90. *
  91. * @author Bartek Przybylski
  92. * @author David A. Velasco
  93. */
  94. public class FileDisplayActivity extends FileActivity implements
  95. OCFileListFragment.ContainerActivity, FileDetailFragment.ContainerActivity, OnNavigationListener, OnSslValidatorListener, OnRemoteOperationListener, EditNameDialogListener {
  96. private ArrayAdapter<String> mDirectories;
  97. /** Access point to the cached database for the current ownCloud {@link Account} */
  98. private FileDataStorageManager mStorageManager = null;
  99. private SyncBroadcastReceiver mSyncBroadcastReceiver;
  100. private UploadFinishReceiver mUploadFinishReceiver;
  101. private DownloadFinishReceiver mDownloadFinishReceiver;
  102. private FileDownloaderBinder mDownloaderBinder = null;
  103. private FileUploaderBinder mUploaderBinder = null;
  104. private ServiceConnection mDownloadConnection = null, mUploadConnection = null;
  105. private RemoteOperationResult mLastSslUntrustedServerResult = null;
  106. private boolean mDualPane;
  107. private View mLeftFragmentContainer;
  108. private View mRightFragmentContainer;
  109. private static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  110. private static final String KEY_SYNC_IN_PROGRESS = "SYNC_IN_PROGRESS";
  111. public static final int DIALOG_SHORT_WAIT = 0;
  112. private static final int DIALOG_CHOOSE_UPLOAD_SOURCE = 1;
  113. private static final int DIALOG_SSL_VALIDATOR = 2;
  114. private static final int DIALOG_CERT_NOT_SAVED = 3;
  115. private static final String DIALOG_WAIT_TAG = "DIALOG_WAIT";
  116. public static final String ACTION_DETAILS = "com.owncloud.android.ui.activity.action.DETAILS";
  117. private static final int ACTION_SELECT_CONTENT_FROM_APPS = 1;
  118. private static final int ACTION_SELECT_MULTIPLE_FILES = 2;
  119. private static final String TAG = FileDisplayActivity.class.getSimpleName();
  120. private static final String TAG_LIST_OF_FILES = "LIST_OF_FILES";
  121. private static final String TAG_SECOND_FRAGMENT = "SECOND_FRAGMENT";
  122. private OCFile mWaitingToPreview;
  123. private Handler mHandler;
  124. private boolean mSyncInProgress = false;
  125. @Override
  126. protected void onCreate(Bundle savedInstanceState) {
  127. Log_OC.d(TAG, "onCreate() start");
  128. requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
  129. super.onCreate(savedInstanceState); // this calls onAccountChanged() when ownCloud Account is valid
  130. mHandler = new Handler();
  131. /// bindings to transference services
  132. mUploadConnection = new ListServiceConnection();
  133. mDownloadConnection = new ListServiceConnection();
  134. bindService(new Intent(this, FileUploader.class), mUploadConnection, Context.BIND_AUTO_CREATE);
  135. bindService(new Intent(this, FileDownloader.class), mDownloadConnection, Context.BIND_AUTO_CREATE);
  136. // PIN CODE request ; best location is to decide, let's try this first
  137. if (getIntent().getAction() != null && getIntent().getAction().equals(Intent.ACTION_MAIN) && savedInstanceState == null) {
  138. requestPinCode();
  139. }
  140. /// file observer
  141. Intent observer_intent = new Intent(this, FileObserverService.class);
  142. observer_intent.putExtra(FileObserverService.KEY_FILE_CMD, FileObserverService.CMD_INIT_OBSERVED_LIST);
  143. startService(observer_intent);
  144. /// Load of saved instance state
  145. if(savedInstanceState != null) {
  146. mWaitingToPreview = (OCFile) savedInstanceState.getParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW);
  147. mSyncInProgress = savedInstanceState.getBoolean(KEY_SYNC_IN_PROGRESS);
  148. } else {
  149. mWaitingToPreview = null;
  150. mSyncInProgress = false;
  151. }
  152. /// USER INTERFACE
  153. // Inflate and set the layout view
  154. setContentView(R.layout.files);
  155. mDualPane = getResources().getBoolean(R.bool.large_land_layout);
  156. mLeftFragmentContainer = findViewById(R.id.left_fragment_container);
  157. mRightFragmentContainer = findViewById(R.id.right_fragment_container);
  158. if (savedInstanceState == null) {
  159. createMinFragments();
  160. }
  161. // Action bar setup
  162. mDirectories = new CustomArrayAdapter<String>(this, R.layout.sherlock_spinner_dropdown_item);
  163. getSupportActionBar().setHomeButtonEnabled(true); // mandatory since Android ICS, according to the official documentation
  164. setSupportProgressBarIndeterminateVisibility(mSyncInProgress); // always AFTER setContentView(...) ; to work around bug in its implementation
  165. Log_OC.d(TAG, "onCreate() end");
  166. }
  167. @Override
  168. protected void onDestroy() {
  169. super.onDestroy();
  170. if (mDownloadConnection != null)
  171. unbindService(mDownloadConnection);
  172. if (mUploadConnection != null)
  173. unbindService(mUploadConnection);
  174. }
  175. /**
  176. * Called when the ownCloud {@link Account} associated to the Activity was just updated.
  177. */
  178. @Override
  179. protected void onAccountSet(boolean stateWasRecovered) {
  180. if (getAccount() != null) {
  181. mStorageManager = new FileDataStorageManager(getAccount(), getContentResolver());
  182. /// Check whether the 'main' OCFile handled by the Activity is contained in the current Account
  183. OCFile file = getFile();
  184. // get parent from path
  185. String parentPath = "";
  186. if (file != null) {
  187. if (file.isDown() && file.getLastSyncDateForProperties() == 0) {
  188. // upload in progress - right now, files are not inserted in the local cache until the upload is successful
  189. // get parent from path
  190. parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  191. if (mStorageManager.getFileByPath(parentPath) == null)
  192. file = null; // not able to know the directory where the file is uploading
  193. } else {
  194. file = mStorageManager.getFileByPath(file.getRemotePath()); // currentDir = null if not in the current Account
  195. }
  196. }
  197. if (file == null) {
  198. // fall back to root folder
  199. file = mStorageManager.getFileByPath(OCFile.ROOT_PATH); // never returns null
  200. }
  201. setFile(file);
  202. setNavigationListWithFolder(file);
  203. if (!stateWasRecovered) {
  204. Log_OC.e(TAG, "Initializing Fragments in onAccountChanged..");
  205. initFragmentsWithFile();
  206. if (file.isFolder()) {
  207. startSyncFolderOperation(file);
  208. }
  209. } else {
  210. updateFragmentsVisibility(!file.isFolder());
  211. updateNavigationElementsInActionBar(file.isFolder() ? null : file);
  212. }
  213. } else {
  214. Log_OC.wtf(TAG, "onAccountChanged was called with NULL account associated!");
  215. }
  216. }
  217. private void setNavigationListWithFolder(OCFile file) {
  218. mDirectories.clear();
  219. OCFile fileIt = file;
  220. String parentPath;
  221. while(fileIt != null && fileIt.getFileName() != OCFile.ROOT_PATH) {
  222. if (fileIt.isFolder()) {
  223. mDirectories.add(fileIt.getFileName());
  224. }
  225. //fileIt = mStorageManager.getFileById(fileIt.getParentId());
  226. // get parent from path
  227. parentPath = fileIt.getRemotePath().substring(0, fileIt.getRemotePath().lastIndexOf(fileIt.getFileName()));
  228. fileIt = mStorageManager.getFileByPath(parentPath);
  229. }
  230. mDirectories.add(OCFile.PATH_SEPARATOR);
  231. }
  232. private void createMinFragments() {
  233. OCFileListFragment listOfFiles = new OCFileListFragment();
  234. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  235. transaction.add(R.id.left_fragment_container, listOfFiles, TAG_LIST_OF_FILES);
  236. transaction.commit();
  237. }
  238. private void initFragmentsWithFile() {
  239. if (getAccount() != null && getFile() != null) {
  240. /// First fragment
  241. OCFileListFragment listOfFiles = getListOfFilesFragment();
  242. if (listOfFiles != null) {
  243. listOfFiles.listDirectory(getCurrentDir());
  244. } else {
  245. Log.e(TAG, "Still have a chance to lose the initializacion of list fragment >(");
  246. }
  247. /// Second fragment
  248. OCFile file = getFile();
  249. Fragment secondFragment = chooseInitialSecondFragment(file);
  250. if (secondFragment != null) {
  251. setSecondFragment(secondFragment);
  252. updateFragmentsVisibility(true);
  253. updateNavigationElementsInActionBar(file);
  254. } else {
  255. cleanSecondFragment();
  256. }
  257. } else {
  258. Log.wtf(TAG, "initFragments() called with invalid NULLs!");
  259. if (getAccount() == null) {
  260. Log.wtf(TAG, "\t account is NULL");
  261. }
  262. if (getFile() == null) {
  263. Log.wtf(TAG, "\t file is NULL");
  264. }
  265. }
  266. }
  267. private Fragment chooseInitialSecondFragment(OCFile file) {
  268. Fragment secondFragment = null;
  269. if (file != null && !file.isFolder()) {
  270. if (file.isDown() && PreviewMediaFragment.canBePreviewed(file)
  271. && file.getLastSyncDateForProperties() > 0 // temporal fix
  272. ) {
  273. int startPlaybackPosition = getIntent().getIntExtra(PreviewVideoActivity.EXTRA_START_POSITION, 0);
  274. boolean autoplay = getIntent().getBooleanExtra(PreviewVideoActivity.EXTRA_AUTOPLAY, true);
  275. secondFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  276. } else {
  277. secondFragment = new FileDetailFragment(file, getAccount());
  278. }
  279. }
  280. return secondFragment;
  281. }
  282. /**
  283. * Replaces the second fragment managed by the activity with the received as
  284. * a parameter.
  285. *
  286. * Assumes never will be more than two fragments managed at the same time.
  287. *
  288. * @param fragment New second Fragment to set.
  289. */
  290. private void setSecondFragment(Fragment fragment) {
  291. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  292. transaction.replace(R.id.right_fragment_container, fragment, TAG_SECOND_FRAGMENT);
  293. transaction.commit();
  294. }
  295. private void updateFragmentsVisibility(boolean existsSecondFragment) {
  296. if (mDualPane) {
  297. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  298. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  299. }
  300. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  301. mRightFragmentContainer.setVisibility(View.VISIBLE);
  302. }
  303. } else if (existsSecondFragment) {
  304. if (mLeftFragmentContainer.getVisibility() != View.GONE) {
  305. mLeftFragmentContainer.setVisibility(View.GONE);
  306. }
  307. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  308. mRightFragmentContainer.setVisibility(View.VISIBLE);
  309. }
  310. } else {
  311. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  312. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  313. }
  314. if (mRightFragmentContainer.getVisibility() != View.GONE) {
  315. mRightFragmentContainer.setVisibility(View.GONE);
  316. }
  317. }
  318. }
  319. private OCFileListFragment getListOfFilesFragment() {
  320. Fragment listOfFiles = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_LIST_OF_FILES);
  321. if (listOfFiles != null) {
  322. return (OCFileListFragment)listOfFiles;
  323. }
  324. Log_OC.wtf(TAG, "Access to unexisting list of files fragment!!");
  325. return null;
  326. }
  327. protected FileFragment getSecondFragment() {
  328. Fragment second = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_SECOND_FRAGMENT);
  329. if (second != null) {
  330. return (FileFragment)second;
  331. }
  332. return null;
  333. }
  334. public void cleanSecondFragment() {
  335. Fragment second = getSecondFragment();
  336. if (second != null) {
  337. FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
  338. tr.remove(second);
  339. tr.commit();
  340. }
  341. updateFragmentsVisibility(false);
  342. updateNavigationElementsInActionBar(null);
  343. }
  344. protected void refeshListOfFilesFragment() {
  345. OCFileListFragment fileListFragment = getListOfFilesFragment();
  346. if (fileListFragment != null) {
  347. fileListFragment.listDirectory();
  348. }
  349. }
  350. protected void refreshSecondFragment(String downloadEvent, String downloadedRemotePath, boolean success) {
  351. FileFragment secondFragment = getSecondFragment();
  352. boolean waitedPreview = (mWaitingToPreview != null && mWaitingToPreview.getRemotePath().equals(downloadedRemotePath));
  353. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  354. FileDetailFragment detailsFragment = (FileDetailFragment) secondFragment;
  355. OCFile fileInFragment = detailsFragment.getFile();
  356. if (fileInFragment != null && !downloadedRemotePath.equals(fileInFragment.getRemotePath())) {
  357. // the user browsed to other file ; forget the automatic preview
  358. mWaitingToPreview = null;
  359. } else if (downloadEvent.equals(FileDownloader.getDownloadAddedMessage())) {
  360. // grant that the right panel updates the progress bar
  361. detailsFragment.listenForTransferProgress();
  362. detailsFragment.updateFileDetails(true, false);
  363. } else if (downloadEvent.equals(FileDownloader.getDownloadFinishMessage())) {
  364. // update the right panel
  365. boolean detailsFragmentChanged = false;
  366. if (waitedPreview) {
  367. if (success) {
  368. mWaitingToPreview = mStorageManager.getFileById(mWaitingToPreview.getFileId()); // update the file from database, for the local storage path
  369. if (PreviewMediaFragment.canBePreviewed(mWaitingToPreview)) {
  370. startMediaPreview(mWaitingToPreview, 0, true);
  371. detailsFragmentChanged = true;
  372. } else {
  373. openFile(mWaitingToPreview);
  374. }
  375. }
  376. mWaitingToPreview = null;
  377. }
  378. if (!detailsFragmentChanged) {
  379. detailsFragment.updateFileDetails(false, (success));
  380. }
  381. }
  382. }
  383. }
  384. @Override
  385. public boolean onCreateOptionsMenu(Menu menu) {
  386. MenuInflater inflater = getSherlock().getMenuInflater();
  387. inflater.inflate(R.menu.main_menu, menu);
  388. return true;
  389. }
  390. @Override
  391. public boolean onOptionsItemSelected(MenuItem item) {
  392. boolean retval = true;
  393. switch (item.getItemId()) {
  394. case R.id.action_create_dir: {
  395. EditNameDialog dialog = EditNameDialog.newInstance(getString(R.string.uploader_info_dirname), "", -1, -1, this);
  396. dialog.show(getSupportFragmentManager(), "createdirdialog");
  397. break;
  398. }
  399. case R.id.action_sync_account: {
  400. startSynchronization();
  401. break;
  402. }
  403. case R.id.action_upload: {
  404. showDialog(DIALOG_CHOOSE_UPLOAD_SOURCE);
  405. break;
  406. }
  407. case R.id.action_settings: {
  408. Intent settingsIntent = new Intent(this, Preferences.class);
  409. startActivity(settingsIntent);
  410. break;
  411. }
  412. case android.R.id.home: {
  413. FileFragment second = getSecondFragment();
  414. OCFile currentDir = getCurrentDir();
  415. if((currentDir != null && currentDir.getParentId() != 0) ||
  416. (second != null && second.getFile() != null)) {
  417. onBackPressed();
  418. }
  419. break;
  420. }
  421. default:
  422. retval = super.onOptionsItemSelected(item);
  423. }
  424. return retval;
  425. }
  426. private void startSynchronization() {
  427. Log_OC.e(TAG, "Got to start sync");
  428. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  429. Log_OC.e(TAG, "Canceling all syncs for " + MainApp.getAuthority());
  430. ContentResolver.cancelSync(null, MainApp.getAuthority()); // cancel the current synchronizations of any ownCloud account
  431. Bundle bundle = new Bundle();
  432. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  433. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
  434. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority());
  435. ContentResolver.requestSync(
  436. getAccount(),
  437. MainApp.getAuthority(), bundle);
  438. } else {
  439. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority() + " with new API");
  440. SyncRequest.Builder builder = new SyncRequest.Builder();
  441. builder.setSyncAdapter(getAccount(), MainApp.getAuthority());
  442. builder.setExpedited(true);
  443. builder.setManual(true);
  444. builder.syncOnce();
  445. SyncRequest request = builder.build();
  446. ContentResolver.requestSync(request);
  447. }
  448. }
  449. @Override
  450. public boolean onNavigationItemSelected(int itemPosition, long itemId) {
  451. if (itemPosition != 0) {
  452. String targetPath = "";
  453. for (int i=itemPosition; i < mDirectories.getCount() - 1; i++) {
  454. targetPath = mDirectories.getItem(i) + OCFile.PATH_SEPARATOR + targetPath;
  455. }
  456. targetPath = OCFile.PATH_SEPARATOR + targetPath;
  457. OCFile targetFolder = mStorageManager.getFileByPath(targetPath);
  458. if (targetFolder != null) {
  459. browseTo(targetFolder);
  460. }
  461. // the next operation triggers a new call to this method, but it's necessary to
  462. // ensure that the name exposed in the action bar is the current directory when the
  463. // user selected it in the navigation list
  464. getSupportActionBar().setSelectedNavigationItem(0);
  465. }
  466. return true;
  467. }
  468. /**
  469. * Called, when the user selected something for uploading
  470. */
  471. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  472. super.onActivityResult(requestCode, resultCode, data);
  473. if (requestCode == ACTION_SELECT_CONTENT_FROM_APPS && (resultCode == RESULT_OK || resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)) {
  474. requestSimpleUpload(data, resultCode);
  475. } else if (requestCode == ACTION_SELECT_MULTIPLE_FILES && (resultCode == RESULT_OK || resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)) {
  476. requestMultipleUpload(data, resultCode);
  477. }
  478. }
  479. private void requestMultipleUpload(Intent data, int resultCode) {
  480. String[] filePaths = data.getStringArrayExtra(UploadFilesActivity.EXTRA_CHOSEN_FILES);
  481. if (filePaths != null) {
  482. String[] remotePaths = new String[filePaths.length];
  483. String remotePathBase = "";
  484. for (int j = mDirectories.getCount() - 2; j >= 0; --j) {
  485. remotePathBase += OCFile.PATH_SEPARATOR + mDirectories.getItem(j);
  486. }
  487. if (!remotePathBase.endsWith(OCFile.PATH_SEPARATOR))
  488. remotePathBase += OCFile.PATH_SEPARATOR;
  489. for (int j = 0; j< remotePaths.length; j++) {
  490. remotePaths[j] = remotePathBase + (new File(filePaths[j])).getName();
  491. }
  492. Intent i = new Intent(this, FileUploader.class);
  493. i.putExtra(FileUploader.KEY_ACCOUNT, getAccount());
  494. i.putExtra(FileUploader.KEY_LOCAL_FILE, filePaths);
  495. i.putExtra(FileUploader.KEY_REMOTE_FILE, remotePaths);
  496. i.putExtra(FileUploader.KEY_UPLOAD_TYPE, FileUploader.UPLOAD_MULTIPLE_FILES);
  497. if (resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)
  498. i.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, FileUploader.LOCAL_BEHAVIOUR_MOVE);
  499. startService(i);
  500. } else {
  501. Log_OC.d(TAG, "User clicked on 'Update' with no selection");
  502. Toast t = Toast.makeText(this, getString(R.string.filedisplay_no_file_selected), Toast.LENGTH_LONG);
  503. t.show();
  504. return;
  505. }
  506. }
  507. private void requestSimpleUpload(Intent data, int resultCode) {
  508. String filepath = null;
  509. try {
  510. Uri selectedImageUri = data.getData();
  511. String filemanagerstring = selectedImageUri.getPath();
  512. String selectedImagePath = getPath(selectedImageUri);
  513. if (selectedImagePath != null)
  514. filepath = selectedImagePath;
  515. else
  516. filepath = filemanagerstring;
  517. } catch (Exception e) {
  518. Log_OC.e(TAG, "Unexpected exception when trying to read the result of Intent.ACTION_GET_CONTENT", e);
  519. e.printStackTrace();
  520. } finally {
  521. if (filepath == null) {
  522. Log_OC.e(TAG, "Couldnt resolve path to file");
  523. Toast t = Toast.makeText(this, getString(R.string.filedisplay_unexpected_bad_get_content), Toast.LENGTH_LONG);
  524. t.show();
  525. return;
  526. }
  527. }
  528. Intent i = new Intent(this, FileUploader.class);
  529. i.putExtra(FileUploader.KEY_ACCOUNT,
  530. getAccount());
  531. String remotepath = new String();
  532. for (int j = mDirectories.getCount() - 2; j >= 0; --j) {
  533. remotepath += OCFile.PATH_SEPARATOR + mDirectories.getItem(j);
  534. }
  535. if (!remotepath.endsWith(OCFile.PATH_SEPARATOR))
  536. remotepath += OCFile.PATH_SEPARATOR;
  537. remotepath += new File(filepath).getName();
  538. i.putExtra(FileUploader.KEY_LOCAL_FILE, filepath);
  539. i.putExtra(FileUploader.KEY_REMOTE_FILE, remotepath);
  540. i.putExtra(FileUploader.KEY_UPLOAD_TYPE, FileUploader.UPLOAD_SINGLE_FILE);
  541. if (resultCode == UploadFilesActivity.RESULT_OK_AND_MOVE)
  542. i.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, FileUploader.LOCAL_BEHAVIOUR_MOVE);
  543. startService(i);
  544. }
  545. @Override
  546. public void onBackPressed() {
  547. OCFileListFragment listOfFiles = getListOfFilesFragment();
  548. if (mDualPane || getSecondFragment() == null) {
  549. if (listOfFiles != null) { // should never be null, indeed
  550. if (mDirectories.getCount() <= 1) {
  551. finish();
  552. return;
  553. }
  554. int levelsUp = listOfFiles.onBrowseUp();
  555. for (int i=0; i < levelsUp && mDirectories.getCount() > 1 ; i++) {
  556. popDirname();
  557. }
  558. }
  559. }
  560. if (listOfFiles != null) { // should never be null, indeed
  561. setFile(listOfFiles.getCurrentFile());
  562. }
  563. cleanSecondFragment();
  564. }
  565. @Override
  566. protected void onSaveInstanceState(Bundle outState) {
  567. // responsibility of restore is preferred in onCreate() before than in onRestoreInstanceState when there are Fragments involved
  568. Log_OC.e(TAG, "onSaveInstanceState() start");
  569. super.onSaveInstanceState(outState);
  570. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW, mWaitingToPreview);
  571. outState.putBoolean(FileDisplayActivity.KEY_SYNC_IN_PROGRESS, mSyncInProgress);
  572. Log_OC.d(TAG, "onSaveInstanceState() end");
  573. }
  574. @Override
  575. protected void onResume() {
  576. super.onResume();
  577. Log_OC.e(TAG, "onResume() start");
  578. // Listen for sync messages
  579. IntentFilter syncIntentFilter = new IntentFilter(FileSyncService.getSyncMessage());
  580. mSyncBroadcastReceiver = new SyncBroadcastReceiver();
  581. registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  582. // Listen for upload messages
  583. IntentFilter uploadIntentFilter = new IntentFilter(FileUploader.getUploadFinishMessage());
  584. mUploadFinishReceiver = new UploadFinishReceiver();
  585. registerReceiver(mUploadFinishReceiver, uploadIntentFilter);
  586. // Listen for download messages
  587. IntentFilter downloadIntentFilter = new IntentFilter(FileDownloader.getDownloadAddedMessage());
  588. downloadIntentFilter.addAction(FileDownloader.getDownloadFinishMessage());
  589. mDownloadFinishReceiver = new DownloadFinishReceiver();
  590. registerReceiver(mDownloadFinishReceiver, downloadIntentFilter);
  591. Log_OC.d(TAG, "onResume() end");
  592. }
  593. @Override
  594. protected void onPause() {
  595. super.onPause();
  596. Log_OC.e(TAG, "onPause() start");
  597. if (mSyncBroadcastReceiver != null) {
  598. unregisterReceiver(mSyncBroadcastReceiver);
  599. mSyncBroadcastReceiver = null;
  600. }
  601. if (mUploadFinishReceiver != null) {
  602. unregisterReceiver(mUploadFinishReceiver);
  603. mUploadFinishReceiver = null;
  604. }
  605. if (mDownloadFinishReceiver != null) {
  606. unregisterReceiver(mDownloadFinishReceiver);
  607. mDownloadFinishReceiver = null;
  608. }
  609. Log_OC.d(TAG, "onPause() end");
  610. }
  611. @Override
  612. protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
  613. if (id == DIALOG_SSL_VALIDATOR && mLastSslUntrustedServerResult != null) {
  614. ((SslValidatorDialog)dialog).updateResult(mLastSslUntrustedServerResult);
  615. }
  616. }
  617. @Override
  618. protected Dialog onCreateDialog(int id) {
  619. Dialog dialog = null;
  620. AlertDialog.Builder builder;
  621. switch (id) {
  622. case DIALOG_SHORT_WAIT: {
  623. ProgressDialog working_dialog = new ProgressDialog(this);
  624. working_dialog.setMessage(getResources().getString(
  625. R.string.wait_a_moment));
  626. working_dialog.setIndeterminate(true);
  627. working_dialog.setCancelable(false);
  628. dialog = working_dialog;
  629. break;
  630. }
  631. case DIALOG_CHOOSE_UPLOAD_SOURCE: {
  632. String[] items = null;
  633. String[] allTheItems = { getString(R.string.actionbar_upload_files),
  634. getString(R.string.actionbar_upload_from_apps),
  635. getString(R.string.actionbar_failed_instant_upload) };
  636. String[] commonItems = { getString(R.string.actionbar_upload_files),
  637. getString(R.string.actionbar_upload_from_apps) };
  638. if (InstantUploadActivity.IS_ENABLED)
  639. items = allTheItems;
  640. else
  641. items = commonItems;
  642. builder = new AlertDialog.Builder(this);
  643. builder.setTitle(R.string.actionbar_upload);
  644. builder.setItems(items, new DialogInterface.OnClickListener() {
  645. public void onClick(DialogInterface dialog, int item) {
  646. if (item == 0) {
  647. // if (!mDualPane) {
  648. Intent action = new Intent(FileDisplayActivity.this, UploadFilesActivity.class);
  649. action.putExtra(UploadFilesActivity.EXTRA_ACCOUNT, FileDisplayActivity.this.getAccount());
  650. startActivityForResult(action, ACTION_SELECT_MULTIPLE_FILES);
  651. // } else {
  652. // TODO create and handle new fragment
  653. // LocalFileListFragment
  654. // }
  655. } else if (item == 1) {
  656. Intent action = new Intent(Intent.ACTION_GET_CONTENT);
  657. action = action.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
  658. startActivityForResult(Intent.createChooser(action, getString(R.string.upload_chooser_title)),
  659. ACTION_SELECT_CONTENT_FROM_APPS);
  660. } else if (item == 2 && InstantUploadActivity.IS_ENABLED) {
  661. Intent action = new Intent(FileDisplayActivity.this, InstantUploadActivity.class);
  662. action.putExtra(FileUploader.KEY_ACCOUNT, FileDisplayActivity.this.getAccount());
  663. startActivity(action);
  664. }
  665. }
  666. });
  667. dialog = builder.create();
  668. break;
  669. }
  670. case DIALOG_SSL_VALIDATOR: {
  671. dialog = SslValidatorDialog.newInstance(this, mLastSslUntrustedServerResult, this);
  672. break;
  673. }
  674. case DIALOG_CERT_NOT_SAVED: {
  675. builder = new AlertDialog.Builder(this);
  676. builder.setMessage(getResources().getString(R.string.ssl_validator_not_saved));
  677. builder.setCancelable(false);
  678. builder.setPositiveButton(R.string.common_ok, new DialogInterface.OnClickListener() {
  679. @Override
  680. public void onClick(DialogInterface dialog, int which) {
  681. dialog.dismiss();
  682. };
  683. });
  684. dialog = builder.create();
  685. break;
  686. }
  687. default:
  688. dialog = null;
  689. }
  690. return dialog;
  691. }
  692. /**
  693. * Show loading dialog
  694. */
  695. public void showLoadingDialog() {
  696. // Construct dialog
  697. LoadingDialog loading = new LoadingDialog(getResources().getString(R.string.wait_a_moment));
  698. FragmentManager fm = getSupportFragmentManager();
  699. FragmentTransaction ft = fm.beginTransaction();
  700. loading.show(ft, DIALOG_WAIT_TAG);
  701. }
  702. /**
  703. * Dismiss loading dialog
  704. */
  705. public void dismissLoadingDialog(){
  706. Fragment frag = getSupportFragmentManager().findFragmentByTag(DIALOG_WAIT_TAG);
  707. if (frag != null) {
  708. LoadingDialog loading = (LoadingDialog) frag;
  709. loading.dismiss();
  710. }
  711. }
  712. /**
  713. * Translates a content URI of an image to a physical path
  714. * on the disk
  715. * @param uri The URI to resolve
  716. * @return The path to the image or null if it could not be found
  717. */
  718. public String getPath(Uri uri) {
  719. String[] projection = { MediaStore.Images.Media.DATA };
  720. Cursor cursor = managedQuery(uri, projection, null, null, null);
  721. if (cursor != null) {
  722. int column_index = cursor
  723. .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
  724. cursor.moveToFirst();
  725. return cursor.getString(column_index);
  726. }
  727. return null;
  728. }
  729. /**
  730. * Pushes a directory to the drop down list
  731. * @param directory to push
  732. * @throws IllegalArgumentException If the {@link OCFile#isFolder()} returns false.
  733. */
  734. public void pushDirname(OCFile directory) {
  735. if(!directory.isFolder()){
  736. throw new IllegalArgumentException("Only directories may be pushed!");
  737. }
  738. mDirectories.insert(directory.getFileName(), 0);
  739. setFile(directory);
  740. }
  741. /**
  742. * Pops a directory name from the drop down list
  743. * @return True, unless the stack is empty
  744. */
  745. public boolean popDirname() {
  746. mDirectories.remove(mDirectories.getItem(0));
  747. return !mDirectories.isEmpty();
  748. }
  749. // Custom array adapter to override text colors
  750. private class CustomArrayAdapter<T> extends ArrayAdapter<T> {
  751. public CustomArrayAdapter(FileDisplayActivity ctx, int view) {
  752. super(ctx, view);
  753. }
  754. public View getView(int position, View convertView, ViewGroup parent) {
  755. View v = super.getView(position, convertView, parent);
  756. ((TextView) v).setTextColor(getResources().getColorStateList(
  757. android.R.color.white));
  758. return v;
  759. }
  760. public View getDropDownView(int position, View convertView,
  761. ViewGroup parent) {
  762. View v = super.getDropDownView(position, convertView, parent);
  763. ((TextView) v).setTextColor(getResources().getColorStateList(
  764. android.R.color.white));
  765. return v;
  766. }
  767. }
  768. private class SyncBroadcastReceiver extends BroadcastReceiver {
  769. /**
  770. * {@link BroadcastReceiver} to enable syncing feedback in UI
  771. */
  772. @Override
  773. public void onReceive(Context context, Intent intent) {
  774. boolean inProgress = intent.getBooleanExtra(FileSyncService.IN_PROGRESS, false);
  775. String accountName = intent.getStringExtra(FileSyncService.ACCOUNT_NAME);
  776. RemoteOperationResult synchResult = (RemoteOperationResult)intent.getSerializableExtra(FileSyncService.SYNC_RESULT);
  777. if (getAccount() != null && accountName.equals(getAccount().name)
  778. && mStorageManager != null
  779. ) {
  780. String synchFolderRemotePath = intent.getStringExtra(FileSyncService.SYNC_FOLDER_REMOTE_PATH);
  781. OCFile currentFile = (getFile() == null) ? null : mStorageManager.getFileByPath(getFile().getRemotePath());
  782. OCFile currentDir = (getCurrentDir() == null) ? null : mStorageManager.getFileByPath(getCurrentDir().getRemotePath());
  783. if (currentDir == null) {
  784. // current folder was removed from the server
  785. Toast.makeText( FileDisplayActivity.this,
  786. String.format(getString(R.string.sync_current_folder_was_removed), mDirectories.getItem(0)),
  787. Toast.LENGTH_LONG)
  788. .show();
  789. browseToRoot();
  790. } else {
  791. if (currentFile == null && !getFile().isFolder()) {
  792. // currently selected file was removed in the server, and now we know it
  793. cleanSecondFragment();
  794. currentFile = currentDir;
  795. }
  796. if (synchFolderRemotePath != null && currentDir.getRemotePath().equals(synchFolderRemotePath)) {
  797. OCFileListFragment fileListFragment = getListOfFilesFragment();
  798. if (fileListFragment != null) {
  799. fileListFragment.listDirectory(currentDir);
  800. }
  801. }
  802. setFile(currentFile);
  803. }
  804. setSupportProgressBarIndeterminateVisibility(inProgress);
  805. removeStickyBroadcast(intent);
  806. mSyncInProgress = inProgress;
  807. }
  808. if (synchResult != null) {
  809. if (synchResult.getCode().equals(RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED)) {
  810. mLastSslUntrustedServerResult = synchResult;
  811. showDialog(DIALOG_SSL_VALIDATOR);
  812. }
  813. }
  814. }
  815. }
  816. private class UploadFinishReceiver extends BroadcastReceiver {
  817. /**
  818. * Once the file upload has finished -> update view
  819. * @author David A. Velasco
  820. * {@link BroadcastReceiver} to enable upload feedback in UI
  821. */
  822. @Override
  823. public void onReceive(Context context, Intent intent) {
  824. String uploadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  825. String accountName = intent.getStringExtra(FileUploader.ACCOUNT_NAME);
  826. boolean sameAccount = getAccount() != null && accountName.equals(getAccount().name);
  827. OCFile currentDir = getCurrentDir();
  828. boolean isDescendant = (currentDir != null) && (uploadedRemotePath != null) && (uploadedRemotePath.startsWith(currentDir.getRemotePath()));
  829. if (sameAccount && isDescendant) {
  830. refeshListOfFilesFragment();
  831. }
  832. }
  833. }
  834. /**
  835. * Class waiting for broadcast events from the {@link FielDownloader} service.
  836. *
  837. * Updates the UI when a download is started or finished, provided that it is relevant for the
  838. * current folder.
  839. */
  840. private class DownloadFinishReceiver extends BroadcastReceiver {
  841. @Override
  842. public void onReceive(Context context, Intent intent) {
  843. boolean sameAccount = isSameAccount(context, intent);
  844. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  845. boolean isDescendant = isDescendant(downloadedRemotePath);
  846. if (sameAccount && isDescendant) {
  847. refeshListOfFilesFragment();
  848. refreshSecondFragment(intent.getAction(), downloadedRemotePath, intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false));
  849. }
  850. removeStickyBroadcast(intent);
  851. }
  852. private boolean isDescendant(String downloadedRemotePath) {
  853. OCFile currentDir = getCurrentDir();
  854. return (currentDir != null && downloadedRemotePath != null && downloadedRemotePath.startsWith(currentDir.getRemotePath()));
  855. }
  856. private boolean isSameAccount(Context context, Intent intent) {
  857. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  858. return (accountName != null && getAccount() != null && accountName.equals(getAccount().name));
  859. }
  860. }
  861. /**
  862. * {@inheritDoc}
  863. */
  864. @Override
  865. public FileDataStorageManager getStorageManager() {
  866. return mStorageManager;
  867. }
  868. public void browseToRoot() {
  869. OCFileListFragment listOfFiles = getListOfFilesFragment();
  870. if (listOfFiles != null) { // should never be null, indeed
  871. while (mDirectories.getCount() > 1) {
  872. popDirname();
  873. }
  874. OCFile root = mStorageManager.getFileByPath(OCFile.ROOT_PATH);
  875. listOfFiles.listDirectory(root);
  876. setFile(listOfFiles.getCurrentFile());
  877. startSyncFolderOperation(root);
  878. }
  879. cleanSecondFragment();
  880. }
  881. public void browseTo(OCFile folder) {
  882. if (folder == null || !folder.isFolder()) {
  883. throw new IllegalArgumentException("Trying to browse to invalid folder " + folder);
  884. }
  885. OCFileListFragment listOfFiles = getListOfFilesFragment();
  886. if (listOfFiles != null) {
  887. setNavigationListWithFolder(folder);
  888. listOfFiles.listDirectory(folder);
  889. setFile(listOfFiles.getCurrentFile());
  890. startSyncFolderOperation(folder);
  891. } else {
  892. Log_OC.e(TAG, "Unexpected null when accessing list fragment");
  893. }
  894. cleanSecondFragment();
  895. }
  896. /**
  897. * {@inheritDoc}
  898. *
  899. * Updates action bar and second fragment, if in dual pane mode.
  900. */
  901. @Override
  902. public void onBrowsedDownTo(OCFile directory) {
  903. pushDirname(directory);
  904. cleanSecondFragment();
  905. // Sync Folder
  906. startSyncFolderOperation(directory);
  907. }
  908. /**
  909. * Opens the image gallery showing the image {@link OCFile} received as parameter.
  910. *
  911. * @param file Image {@link OCFile} to show.
  912. */
  913. @Override
  914. public void startImagePreview(OCFile file) {
  915. Intent showDetailsIntent = new Intent(this, PreviewImageActivity.class);
  916. showDetailsIntent.putExtra(EXTRA_FILE, file);
  917. showDetailsIntent.putExtra(EXTRA_ACCOUNT, getAccount());
  918. startActivity(showDetailsIntent);
  919. }
  920. /**
  921. * Stars the preview of an already down media {@link OCFile}.
  922. *
  923. * @param file Media {@link OCFile} to preview.
  924. * @param startPlaybackPosition Media position where the playback will be started, in milliseconds.
  925. * @param autoplay When 'true', the playback will start without user interactions.
  926. */
  927. @Override
  928. public void startMediaPreview(OCFile file, int startPlaybackPosition, boolean autoplay) {
  929. Fragment mediaFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  930. setSecondFragment(mediaFragment);
  931. updateFragmentsVisibility(true);
  932. updateNavigationElementsInActionBar(file);
  933. setFile(file);
  934. }
  935. /**
  936. * Requests the download of the received {@link OCFile} , updates the UI
  937. * to monitor the download progress and prepares the activity to preview
  938. * or open the file when the download finishes.
  939. *
  940. * @param file {@link OCFile} to download and preview.
  941. */
  942. @Override
  943. public void startDownloadForPreview(OCFile file) {
  944. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  945. setSecondFragment(detailFragment);
  946. mWaitingToPreview = file;
  947. requestForDownload();
  948. updateFragmentsVisibility(true);
  949. updateNavigationElementsInActionBar(file);
  950. setFile(file);
  951. }
  952. /**
  953. * Shows the information of the {@link OCFile} received as a
  954. * parameter in the second fragment.
  955. *
  956. * @param file {@link OCFile} whose details will be shown
  957. */
  958. @Override
  959. public void showDetails(OCFile file) {
  960. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  961. setSecondFragment(detailFragment);
  962. updateFragmentsVisibility(true);
  963. updateNavigationElementsInActionBar(file);
  964. setFile(file);
  965. }
  966. /**
  967. * TODO
  968. */
  969. private void updateNavigationElementsInActionBar(OCFile chosenFile) {
  970. ActionBar actionBar = getSupportActionBar();
  971. if (chosenFile == null || mDualPane) {
  972. // only list of files - set for browsing through folders
  973. OCFile currentDir = getCurrentDir();
  974. actionBar.setDisplayHomeAsUpEnabled(currentDir != null && currentDir.getParentId() != 0);
  975. actionBar.setDisplayShowTitleEnabled(false);
  976. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
  977. actionBar.setListNavigationCallbacks(mDirectories, this); // assuming mDirectories is updated
  978. } else {
  979. actionBar.setDisplayHomeAsUpEnabled(true);
  980. actionBar.setDisplayShowTitleEnabled(true);
  981. actionBar.setTitle(chosenFile.getFileName());
  982. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
  983. }
  984. }
  985. // private void updateDisplayHomeAtSync(){
  986. // ActionBar actionBar = getSupportActionBar();
  987. // OCFile currentDir = getCurrentDir();
  988. // if (currentDir.getParentId() != DataStorageManager.ROOT_PARENT_ID) {
  989. // actionBar.setHomeButtonEnabled(!mSyncInProgress);
  990. // actionBar.setDisplayHomeAsUpEnabled(!mSyncInProgress);
  991. // }
  992. // else {
  993. // actionBar.setHomeButtonEnabled(true);
  994. // actionBar.setDisplayHomeAsUpEnabled(false);
  995. // }
  996. // }
  997. //
  998. /**
  999. * {@inheritDoc}
  1000. */
  1001. @Override
  1002. public void onFileStateChanged() {
  1003. refeshListOfFilesFragment();
  1004. updateNavigationElementsInActionBar(getSecondFragment().getFile());
  1005. }
  1006. /**
  1007. * {@inheritDoc}
  1008. */
  1009. @Override
  1010. public FileDownloaderBinder getFileDownloaderBinder() {
  1011. return mDownloaderBinder;
  1012. }
  1013. /**
  1014. * {@inheritDoc}
  1015. */
  1016. @Override
  1017. public FileUploaderBinder getFileUploaderBinder() {
  1018. return mUploaderBinder;
  1019. }
  1020. /** Defines callbacks for service binding, passed to bindService() */
  1021. private class ListServiceConnection implements ServiceConnection {
  1022. @Override
  1023. public void onServiceConnected(ComponentName component, IBinder service) {
  1024. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  1025. Log_OC.d(TAG, "Download service connected");
  1026. mDownloaderBinder = (FileDownloaderBinder) service;
  1027. if (mWaitingToPreview != null) {
  1028. requestForDownload();
  1029. }
  1030. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploader.class))) {
  1031. Log_OC.d(TAG, "Upload service connected");
  1032. mUploaderBinder = (FileUploaderBinder) service;
  1033. } else {
  1034. return;
  1035. }
  1036. // a new chance to get the mDownloadBinder through getFileDownloadBinder() - THIS IS A MESS
  1037. OCFileListFragment listOfFiles = getListOfFilesFragment();
  1038. if (listOfFiles != null) {
  1039. listOfFiles.listDirectory();
  1040. }
  1041. FileFragment secondFragment = getSecondFragment();
  1042. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  1043. FileDetailFragment detailFragment = (FileDetailFragment)secondFragment;
  1044. detailFragment.listenForTransferProgress();
  1045. detailFragment.updateFileDetails(false, false);
  1046. }
  1047. }
  1048. @Override
  1049. public void onServiceDisconnected(ComponentName component) {
  1050. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  1051. Log_OC.d(TAG, "Download service disconnected");
  1052. mDownloaderBinder = null;
  1053. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploader.class))) {
  1054. Log_OC.d(TAG, "Upload service disconnected");
  1055. mUploaderBinder = null;
  1056. }
  1057. }
  1058. };
  1059. /**
  1060. * Launch an intent to request the PIN code to the user before letting him use the app
  1061. */
  1062. private void requestPinCode() {
  1063. boolean pinStart = false;
  1064. SharedPreferences appPrefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
  1065. pinStart = appPrefs.getBoolean("set_pincode", false);
  1066. if (pinStart) {
  1067. Intent i = new Intent(getApplicationContext(), PinCodeActivity.class);
  1068. i.putExtra(PinCodeActivity.EXTRA_ACTIVITY, "FileDisplayActivity");
  1069. startActivity(i);
  1070. }
  1071. }
  1072. @Override
  1073. public void onSavedCertificate() {
  1074. startSyncFolderOperation(getCurrentDir());
  1075. }
  1076. @Override
  1077. public void onFailedSavingCertificate() {
  1078. showDialog(DIALOG_CERT_NOT_SAVED);
  1079. }
  1080. /**
  1081. * Updates the view associated to the activity after the finish of some operation over files
  1082. * in the current account.
  1083. *
  1084. * @param operation Removal operation performed.
  1085. * @param result Result of the removal.
  1086. */
  1087. @Override
  1088. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  1089. if (operation instanceof RemoveFileOperation) {
  1090. onRemoveFileOperationFinish((RemoveFileOperation)operation, result);
  1091. } else if (operation instanceof RenameFileOperation) {
  1092. onRenameFileOperationFinish((RenameFileOperation)operation, result);
  1093. } else if (operation instanceof SynchronizeFileOperation) {
  1094. onSynchronizeFileOperationFinish((SynchronizeFileOperation)operation, result);
  1095. } else if (operation instanceof CreateFolderOperation) {
  1096. onCreateFolderOperationFinish((CreateFolderOperation)operation, result);
  1097. }
  1098. }
  1099. /**
  1100. * Updates the view associated to the activity after the finish of an operation trying to remove a
  1101. * file.
  1102. *
  1103. * @param operation Removal operation performed.
  1104. * @param result Result of the removal.
  1105. */
  1106. private void onRemoveFileOperationFinish(RemoveFileOperation operation, RemoteOperationResult result) {
  1107. dismissLoadingDialog();
  1108. if (result.isSuccess()) {
  1109. Toast msg = Toast.makeText(this, R.string.remove_success_msg, Toast.LENGTH_LONG);
  1110. msg.show();
  1111. OCFile removedFile = operation.getFile();
  1112. getSecondFragment();
  1113. FileFragment second = getSecondFragment();
  1114. if (second != null && removedFile.equals(second.getFile())) {
  1115. cleanSecondFragment();
  1116. }
  1117. if (mStorageManager.getFileById(removedFile.getParentId()).equals(getCurrentDir())) {
  1118. refeshListOfFilesFragment();
  1119. }
  1120. } else {
  1121. Toast msg = Toast.makeText(this, R.string.remove_fail_msg, Toast.LENGTH_LONG);
  1122. msg.show();
  1123. if (result.isSslRecoverableException()) {
  1124. mLastSslUntrustedServerResult = result;
  1125. showDialog(DIALOG_SSL_VALIDATOR);
  1126. }
  1127. }
  1128. }
  1129. /**
  1130. * Updates the view associated to the activity after the finish of an operation trying create a new folder
  1131. *
  1132. * @param operation Creation operation performed.
  1133. * @param result Result of the creation.
  1134. */
  1135. private void onCreateFolderOperationFinish(CreateFolderOperation operation, RemoteOperationResult result) {
  1136. if (result.isSuccess()) {
  1137. dismissLoadingDialog();
  1138. refeshListOfFilesFragment();
  1139. } else {
  1140. dismissLoadingDialog();
  1141. if (result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME) {
  1142. Toast.makeText(FileDisplayActivity.this, R.string.create_dir_fail_msg_invalid_characters, Toast.LENGTH_LONG).show();
  1143. } else {
  1144. try {
  1145. Toast msg = Toast.makeText(FileDisplayActivity.this, R.string.create_dir_fail_msg, Toast.LENGTH_LONG);
  1146. msg.show();
  1147. } catch (NotFoundException e) {
  1148. Log_OC.e(TAG, "Error while trying to show fail message " , e);
  1149. }
  1150. }
  1151. }
  1152. }
  1153. /**
  1154. * Updates the view associated to the activity after the finish of an operation trying to rename a
  1155. * file.
  1156. *
  1157. * @param operation Renaming operation performed.
  1158. * @param result Result of the renaming.
  1159. */
  1160. private void onRenameFileOperationFinish(RenameFileOperation operation, RemoteOperationResult result) {
  1161. dismissLoadingDialog();
  1162. OCFile renamedFile = operation.getFile();
  1163. if (result.isSuccess()) {
  1164. if (mDualPane) {
  1165. FileFragment details = getSecondFragment();
  1166. if (details != null && details instanceof FileDetailFragment && renamedFile.equals(details.getFile()) ) {
  1167. ((FileDetailFragment) details).updateFileDetails(renamedFile, getAccount());
  1168. }
  1169. }
  1170. if (mStorageManager.getFileById(renamedFile.getParentId()).equals(getCurrentDir())) {
  1171. refeshListOfFilesFragment();
  1172. }
  1173. } else {
  1174. if (result.getCode().equals(ResultCode.INVALID_LOCAL_FILE_NAME)) {
  1175. Toast msg = Toast.makeText(this, R.string.rename_local_fail_msg, Toast.LENGTH_LONG);
  1176. msg.show();
  1177. // TODO throw again the new rename dialog
  1178. } else {
  1179. Toast msg = Toast.makeText(this, R.string.rename_server_fail_msg, Toast.LENGTH_LONG);
  1180. msg.show();
  1181. if (result.isSslRecoverableException()) {
  1182. mLastSslUntrustedServerResult = result;
  1183. showDialog(DIALOG_SSL_VALIDATOR);
  1184. }
  1185. }
  1186. }
  1187. }
  1188. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation, RemoteOperationResult result) {
  1189. dismissLoadingDialog();
  1190. OCFile syncedFile = operation.getLocalFile();
  1191. if (!result.isSuccess()) {
  1192. if (result.getCode() == ResultCode.SYNC_CONFLICT) {
  1193. Intent i = new Intent(this, ConflictsResolveActivity.class);
  1194. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, syncedFile);
  1195. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, getAccount());
  1196. startActivity(i);
  1197. }
  1198. } else {
  1199. if (operation.transferWasRequested()) {
  1200. refeshListOfFilesFragment();
  1201. onTransferStateChanged(syncedFile, true, true);
  1202. } else {
  1203. Toast msg = Toast.makeText(this, R.string.sync_file_nothing_to_do_msg, Toast.LENGTH_LONG);
  1204. msg.show();
  1205. }
  1206. }
  1207. }
  1208. /**
  1209. * {@inheritDoc}
  1210. */
  1211. @Override
  1212. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  1213. if (mDualPane) {
  1214. FileFragment details = getSecondFragment();
  1215. if (details != null && details instanceof FileDetailFragment && file.equals(details.getFile()) ) {
  1216. if (downloading || uploading) {
  1217. ((FileDetailFragment)details).updateFileDetails(file, getAccount());
  1218. } else {
  1219. ((FileDetailFragment)details).updateFileDetails(false, true);
  1220. }
  1221. }
  1222. }
  1223. }
  1224. public void onDismiss(EditNameDialog dialog) {
  1225. if (dialog.getResult()) {
  1226. String newDirectoryName = dialog.getNewFilename().trim();
  1227. Log_OC.d(TAG, "'create directory' dialog dismissed with new name " + newDirectoryName);
  1228. if (newDirectoryName.length() > 0) {
  1229. String path = getCurrentDir().getRemotePath();
  1230. // Create directory
  1231. path += newDirectoryName + OCFile.PATH_SEPARATOR;
  1232. RemoteOperation operation = new CreateFolderOperation(newDirectoryName, path, false, mStorageManager);
  1233. operation.execute( getAccount(),
  1234. FileDisplayActivity.this,
  1235. FileDisplayActivity.this,
  1236. mHandler,
  1237. FileDisplayActivity.this);
  1238. showLoadingDialog();
  1239. }
  1240. }
  1241. }
  1242. private void requestForDownload() {
  1243. Account account = getAccount();
  1244. if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
  1245. Intent i = new Intent(this, FileDownloader.class);
  1246. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1247. i.putExtra(FileDownloader.EXTRA_FILE, mWaitingToPreview);
  1248. startService(i);
  1249. }
  1250. }
  1251. private OCFile getCurrentDir() {
  1252. OCFile file = getFile();
  1253. if (file != null) {
  1254. if (file.isFolder()) {
  1255. return file;
  1256. } else if (mStorageManager != null) {
  1257. String parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  1258. return mStorageManager.getFileByPath(parentPath);
  1259. }
  1260. }
  1261. return null;
  1262. }
  1263. public void startSyncFolderOperation(OCFile folder) {
  1264. long currentSyncTime = System.currentTimeMillis();
  1265. mSyncInProgress = true;
  1266. // perform folder synchronization
  1267. RemoteOperation synchFolderOp = new SynchronizeFolderOperation( folder,
  1268. currentSyncTime,
  1269. false,
  1270. getStorageManager(),
  1271. getAccount(),
  1272. getApplicationContext()
  1273. );
  1274. synchFolderOp.execute(getAccount(), this, null, null, this);
  1275. setSupportProgressBarIndeterminateVisibility(true);
  1276. }
  1277. // public void enableDisableViewGroup(ViewGroup viewGroup, boolean enabled) {
  1278. // int childCount = viewGroup.getChildCount();
  1279. // for (int i = 0; i < childCount; i++) {
  1280. // View view = viewGroup.getChildAt(i);
  1281. // view.setEnabled(enabled);
  1282. // view.setClickable(!enabled);
  1283. // if (view instanceof ViewGroup) {
  1284. // enableDisableViewGroup((ViewGroup) view, enabled);
  1285. // }
  1286. // }
  1287. // }
  1288. }