FileDisplayActivity.java 66 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601
  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.IBinder;
  39. import android.preference.PreferenceManager;
  40. import android.provider.MediaStore;
  41. import android.support.v4.app.Fragment;
  42. import android.support.v4.app.FragmentManager;
  43. import android.support.v4.app.FragmentTransaction;
  44. //import android.support.v4.content.LocalBroadcastManager;
  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.OCFile;
  60. import com.owncloud.android.files.services.FileDownloader;
  61. import com.owncloud.android.files.services.FileObserverService;
  62. import com.owncloud.android.files.services.FileUploader;
  63. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  64. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  65. import com.owncloud.android.operations.CreateFolderOperation;
  66. import com.owncloud.android.lib.common.network.CertificateCombinedException;
  67. import com.owncloud.android.lib.common.operations.RemoteOperation;
  68. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  69. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  70. import com.owncloud.android.operations.CreateShareOperation;
  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.operations.UnshareLinkOperation;
  76. import com.owncloud.android.syncadapter.FileSyncAdapter;
  77. import com.owncloud.android.ui.dialog.EditNameDialog;
  78. import com.owncloud.android.ui.dialog.SslUntrustedCertDialog;
  79. import com.owncloud.android.ui.dialog.EditNameDialog.EditNameDialogListener;
  80. import com.owncloud.android.ui.dialog.SslUntrustedCertDialog.OnSslUntrustedCertListener;
  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.PreviewImageFragment;
  86. import com.owncloud.android.ui.preview.PreviewMediaFragment;
  87. import com.owncloud.android.ui.preview.PreviewVideoActivity;
  88. import com.owncloud.android.utils.DisplayUtils;
  89. import com.owncloud.android.utils.Log_OC;
  90. /**
  91. * Displays, what files the user has available in his ownCloud.
  92. *
  93. * @author Bartek Przybylski
  94. * @author David A. Velasco
  95. */
  96. public class FileDisplayActivity extends HookActivity implements
  97. FileFragment.ContainerActivity, OnNavigationListener,
  98. OnSslUntrustedCertListener, EditNameDialogListener {
  99. private ArrayAdapter<String> mDirectories;
  100. private SyncBroadcastReceiver mSyncBroadcastReceiver;
  101. private UploadFinishReceiver mUploadFinishReceiver;
  102. private DownloadFinishReceiver mDownloadFinishReceiver;
  103. private RemoteOperationResult mLastSslUntrustedServerResult = null;
  104. private boolean mDualPane;
  105. private View mLeftFragmentContainer;
  106. private View mRightFragmentContainer;
  107. private static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  108. private static final String KEY_SYNC_IN_PROGRESS = "SYNC_IN_PROGRESS";
  109. private static final String KEY_WAITING_TO_SEND = "WAITING_TO_SEND";
  110. public static final int DIALOG_SHORT_WAIT = 0;
  111. private static final int DIALOG_CHOOSE_UPLOAD_SOURCE = 1;
  112. private static final int DIALOG_CERT_NOT_SAVED = 2;
  113. public static final String ACTION_DETAILS = "com.owncloud.android.ui.activity.action.DETAILS";
  114. private static final int ACTION_SELECT_CONTENT_FROM_APPS = 1;
  115. private static final int ACTION_SELECT_MULTIPLE_FILES = 2;
  116. private static final String TAG = FileDisplayActivity.class.getSimpleName();
  117. private static final String TAG_LIST_OF_FILES = "LIST_OF_FILES";
  118. private static final String TAG_SECOND_FRAGMENT = "SECOND_FRAGMENT";
  119. private OCFile mWaitingToPreview;
  120. private boolean mSyncInProgress = false;
  121. private String DIALOG_UNTRUSTED_CERT;
  122. private OCFile mWaitingToSend;
  123. @Override
  124. protected void onCreate(Bundle savedInstanceState) {
  125. Log_OC.d(TAG, "onCreate() start");
  126. requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
  127. super.onCreate(savedInstanceState); // this calls onAccountChanged() when ownCloud Account is valid
  128. // PIN CODE request ; best location is to decide, let's try this first
  129. if (getIntent().getAction() != null && getIntent().getAction().equals(Intent.ACTION_MAIN) && savedInstanceState == null) {
  130. requestPinCode();
  131. } else if (getIntent().getAction() == null && savedInstanceState == null) {
  132. requestPinCode();
  133. }
  134. /// file observer
  135. Intent observer_intent = new Intent(this, FileObserverService.class);
  136. observer_intent.putExtra(FileObserverService.KEY_FILE_CMD, FileObserverService.CMD_INIT_OBSERVED_LIST);
  137. startService(observer_intent);
  138. /// Load of saved instance state
  139. if(savedInstanceState != null) {
  140. mWaitingToPreview = (OCFile) savedInstanceState.getParcelable(FileDisplayActivity.KEY_WAITING_TO_PREVIEW);
  141. mSyncInProgress = savedInstanceState.getBoolean(KEY_SYNC_IN_PROGRESS);
  142. mWaitingToSend = (OCFile) savedInstanceState.getParcelable(FileDisplayActivity.KEY_WAITING_TO_SEND);
  143. } else {
  144. mWaitingToPreview = null;
  145. mSyncInProgress = false;
  146. mWaitingToSend = null;
  147. }
  148. /// USER INTERFACE
  149. // Inflate and set the layout view
  150. setContentView(R.layout.files);
  151. mDualPane = getResources().getBoolean(R.bool.large_land_layout);
  152. mLeftFragmentContainer = findViewById(R.id.left_fragment_container);
  153. mRightFragmentContainer = findViewById(R.id.right_fragment_container);
  154. if (savedInstanceState == null) {
  155. createMinFragments();
  156. } else {
  157. Log_OC.d(TAG, "Init the secondFragment again");
  158. if (mDualPane) {
  159. initFragmentsWithFile();
  160. }
  161. }
  162. // Action bar setup
  163. mDirectories = new CustomArrayAdapter<String>(this, R.layout.sherlock_spinner_dropdown_item);
  164. getSupportActionBar().setHomeButtonEnabled(true); // mandatory since Android ICS, according to the official documentation
  165. setSupportProgressBarIndeterminateVisibility(mSyncInProgress /*|| mRefreshSharesInProgress*/); // always AFTER setContentView(...) ; to work around bug in its implementation
  166. Log_OC.d(TAG, "onCreate() end");
  167. }
  168. @Override
  169. protected void onStart() {
  170. super.onStart();
  171. getSupportActionBar().setIcon(DisplayUtils.getSeasonalIconId());
  172. }
  173. @Override
  174. protected void onDestroy() {
  175. super.onDestroy();
  176. }
  177. /**
  178. * Called when the ownCloud {@link Account} associated to the Activity was just updated.
  179. */
  180. @Override
  181. protected void onAccountSet(boolean stateWasRecovered) {
  182. super.onAccountSet(stateWasRecovered);
  183. if (getAccount() != null) {
  184. /// Check whether the 'main' OCFile handled by the Activity is contained in the current Account
  185. OCFile file = getFile();
  186. // get parent from path
  187. String parentPath = "";
  188. if (file != null) {
  189. if (file.isDown() && file.getLastSyncDateForProperties() == 0) {
  190. // upload in progress - right now, files are not inserted in the local cache until the upload is successful
  191. // get parent from path
  192. parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  193. if (getStorageManager().getFileByPath(parentPath) == null)
  194. file = null; // not able to know the directory where the file is uploading
  195. } else {
  196. file = getStorageManager().getFileByPath(file.getRemotePath()); // currentDir = null if not in the current Account
  197. }
  198. }
  199. if (file == null) {
  200. // fall back to root folder
  201. file = getStorageManager().getFileByPath(OCFile.ROOT_PATH); // never returns null
  202. }
  203. setFile(file);
  204. setNavigationListWithFolder(file);
  205. if (!stateWasRecovered) {
  206. Log_OC.e(TAG, "Initializing Fragments in onAccountChanged..");
  207. initFragmentsWithFile();
  208. if (file.isFolder()) {
  209. startSyncFolderOperation(file);
  210. }
  211. } else {
  212. updateFragmentsVisibility(!file.isFolder());
  213. updateNavigationElementsInActionBar(file.isFolder() ? null : file);
  214. }
  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. // get parent from path
  226. parentPath = fileIt.getRemotePath().substring(0, fileIt.getRemotePath().lastIndexOf(fileIt.getFileName()));
  227. fileIt = getStorageManager().getFileByPath(parentPath);
  228. }
  229. mDirectories.add(OCFile.PATH_SEPARATOR);
  230. }
  231. private void createMinFragments() {
  232. OCFileListFragment listOfFiles = new OCFileListFragment();
  233. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  234. transaction.add(R.id.left_fragment_container, listOfFiles, TAG_LIST_OF_FILES);
  235. transaction.commit();
  236. }
  237. private void initFragmentsWithFile() {
  238. if (getAccount() != null && getFile() != null) {
  239. /// First fragment
  240. OCFileListFragment listOfFiles = getListOfFilesFragment();
  241. if (listOfFiles != null) {
  242. listOfFiles.listDirectory(getCurrentDir());
  243. } else {
  244. Log.e(TAG, "Still have a chance to lose the initializacion of list fragment >(");
  245. }
  246. /// Second fragment
  247. OCFile file = getFile();
  248. Fragment secondFragment = chooseInitialSecondFragment(file);
  249. if (secondFragment != null) {
  250. setSecondFragment(secondFragment);
  251. updateFragmentsVisibility(true);
  252. updateNavigationElementsInActionBar(file);
  253. } else {
  254. cleanSecondFragment();
  255. }
  256. } else {
  257. Log.wtf(TAG, "initFragments() called with invalid NULLs!");
  258. if (getAccount() == null) {
  259. Log.wtf(TAG, "\t account is NULL");
  260. }
  261. if (getFile() == null) {
  262. Log.wtf(TAG, "\t file is NULL");
  263. }
  264. }
  265. }
  266. private Fragment chooseInitialSecondFragment(OCFile file) {
  267. Fragment secondFragment = null;
  268. if (file != null && !file.isFolder()) {
  269. if (file.isDown() && PreviewMediaFragment.canBePreviewed(file)
  270. && file.getLastSyncDateForProperties() > 0 // temporal fix
  271. ) {
  272. int startPlaybackPosition = getIntent().getIntExtra(PreviewVideoActivity.EXTRA_START_POSITION, 0);
  273. boolean autoplay = getIntent().getBooleanExtra(PreviewVideoActivity.EXTRA_AUTOPLAY, true);
  274. secondFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  275. } else {
  276. secondFragment = new FileDetailFragment(file, getAccount());
  277. }
  278. }
  279. return secondFragment;
  280. }
  281. /**
  282. * Replaces the second fragment managed by the activity with the received as
  283. * a parameter.
  284. *
  285. * Assumes never will be more than two fragments managed at the same time.
  286. *
  287. * @param fragment New second Fragment to set.
  288. */
  289. private void setSecondFragment(Fragment fragment) {
  290. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  291. transaction.replace(R.id.right_fragment_container, fragment, TAG_SECOND_FRAGMENT);
  292. transaction.commit();
  293. }
  294. private void updateFragmentsVisibility(boolean existsSecondFragment) {
  295. if (mDualPane) {
  296. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  297. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  298. }
  299. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  300. mRightFragmentContainer.setVisibility(View.VISIBLE);
  301. }
  302. } else if (existsSecondFragment) {
  303. if (mLeftFragmentContainer.getVisibility() != View.GONE) {
  304. mLeftFragmentContainer.setVisibility(View.GONE);
  305. }
  306. if (mRightFragmentContainer.getVisibility() != View.VISIBLE) {
  307. mRightFragmentContainer.setVisibility(View.VISIBLE);
  308. }
  309. } else {
  310. if (mLeftFragmentContainer.getVisibility() != View.VISIBLE) {
  311. mLeftFragmentContainer.setVisibility(View.VISIBLE);
  312. }
  313. if (mRightFragmentContainer.getVisibility() != View.GONE) {
  314. mRightFragmentContainer.setVisibility(View.GONE);
  315. }
  316. }
  317. }
  318. private OCFileListFragment getListOfFilesFragment() {
  319. Fragment listOfFiles = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_LIST_OF_FILES);
  320. if (listOfFiles != null) {
  321. return (OCFileListFragment)listOfFiles;
  322. }
  323. Log_OC.wtf(TAG, "Access to unexisting list of files fragment!!");
  324. return null;
  325. }
  326. public FileFragment getSecondFragment() {
  327. Fragment second = getSupportFragmentManager().findFragmentByTag(FileDisplayActivity.TAG_SECOND_FRAGMENT);
  328. if (second != null) {
  329. return (FileFragment)second;
  330. }
  331. return null;
  332. }
  333. protected void cleanSecondFragment() {
  334. Fragment second = getSecondFragment();
  335. if (second != null) {
  336. FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
  337. tr.remove(second);
  338. tr.commit();
  339. }
  340. updateFragmentsVisibility(false);
  341. updateNavigationElementsInActionBar(null);
  342. }
  343. protected void refreshListOfFilesFragment() {
  344. OCFileListFragment fileListFragment = getListOfFilesFragment();
  345. if (fileListFragment != null) {
  346. fileListFragment.listDirectory();
  347. }
  348. }
  349. protected void refreshSecondFragment(String downloadEvent, String downloadedRemotePath, boolean success) {
  350. FileFragment secondFragment = getSecondFragment();
  351. boolean waitedPreview = (mWaitingToPreview != null && mWaitingToPreview.getRemotePath().equals(downloadedRemotePath));
  352. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  353. FileDetailFragment detailsFragment = (FileDetailFragment) secondFragment;
  354. OCFile fileInFragment = detailsFragment.getFile();
  355. if (fileInFragment != null && !downloadedRemotePath.equals(fileInFragment.getRemotePath())) {
  356. // the user browsed to other file ; forget the automatic preview
  357. mWaitingToPreview = null;
  358. } else if (downloadEvent.equals(FileDownloader.getDownloadAddedMessage())) {
  359. // grant that the right panel updates the progress bar
  360. detailsFragment.listenForTransferProgress();
  361. detailsFragment.updateFileDetails(true, false);
  362. } else if (downloadEvent.equals(FileDownloader.getDownloadFinishMessage())) {
  363. // update the right panel
  364. boolean detailsFragmentChanged = false;
  365. if (waitedPreview) {
  366. if (success) {
  367. mWaitingToPreview = getStorageManager().getFileById(mWaitingToPreview.getFileId()); // update the file from database, for the local storage path
  368. if (PreviewMediaFragment.canBePreviewed(mWaitingToPreview)) {
  369. startMediaPreview(mWaitingToPreview, 0, true);
  370. detailsFragmentChanged = true;
  371. } else {
  372. getFileOperationsHelper().openFile(mWaitingToPreview);
  373. }
  374. }
  375. mWaitingToPreview = null;
  376. }
  377. if (!detailsFragmentChanged) {
  378. detailsFragment.updateFileDetails(false, (success));
  379. }
  380. }
  381. }
  382. }
  383. @Override
  384. public boolean onCreateOptionsMenu(Menu menu) {
  385. MenuInflater inflater = getSherlock().getMenuInflater();
  386. inflater.inflate(R.menu.main_menu, menu);
  387. return true;
  388. }
  389. @Override
  390. public boolean onOptionsItemSelected(MenuItem item) {
  391. boolean retval = true;
  392. switch (item.getItemId()) {
  393. case R.id.action_create_dir: {
  394. EditNameDialog dialog = EditNameDialog.newInstance(getString(R.string.uploader_info_dirname), "", -1, -1, this);
  395. dialog.show(getSupportFragmentManager(), "createdirdialog");
  396. break;
  397. }
  398. case R.id.action_sync_account: {
  399. startSynchronization();
  400. break;
  401. }
  402. case R.id.action_upload: {
  403. showDialog(DIALOG_CHOOSE_UPLOAD_SOURCE);
  404. break;
  405. }
  406. case R.id.action_settings: {
  407. Intent settingsIntent = new Intent(this, Preferences.class);
  408. startActivity(settingsIntent);
  409. break;
  410. }
  411. case android.R.id.home: {
  412. FileFragment second = getSecondFragment();
  413. OCFile currentDir = getCurrentDir();
  414. if((currentDir != null && currentDir.getParentId() != 0) ||
  415. (second != null && second.getFile() != null)) {
  416. onBackPressed();
  417. }
  418. break;
  419. }
  420. default:
  421. retval = super.onOptionsItemSelected(item);
  422. }
  423. return retval;
  424. }
  425. private void startSynchronization() {
  426. Log_OC.e(TAG, "Got to start sync");
  427. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  428. Log_OC.e(TAG, "Canceling all syncs for " + MainApp.getAuthority());
  429. ContentResolver.cancelSync(null, MainApp.getAuthority()); // cancel the current synchronizations of any ownCloud account
  430. Bundle bundle = new Bundle();
  431. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  432. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
  433. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority());
  434. ContentResolver.requestSync(
  435. getAccount(),
  436. MainApp.getAuthority(), bundle);
  437. } else {
  438. Log_OC.e(TAG, "Requesting sync for " + getAccount().name + " at " + MainApp.getAuthority() + " with new API");
  439. SyncRequest.Builder builder = new SyncRequest.Builder();
  440. builder.setSyncAdapter(getAccount(), MainApp.getAuthority());
  441. builder.setExpedited(true);
  442. builder.setManual(true);
  443. builder.syncOnce();
  444. SyncRequest request = builder.build();
  445. ContentResolver.requestSync(request);
  446. }
  447. }
  448. @Override
  449. public boolean onNavigationItemSelected(int itemPosition, long itemId) {
  450. if (itemPosition != 0) {
  451. String targetPath = "";
  452. for (int i=itemPosition; i < mDirectories.getCount() - 1; i++) {
  453. targetPath = mDirectories.getItem(i) + OCFile.PATH_SEPARATOR + targetPath;
  454. }
  455. targetPath = OCFile.PATH_SEPARATOR + targetPath;
  456. OCFile targetFolder = getStorageManager().getFileByPath(targetPath);
  457. if (targetFolder != null) {
  458. browseTo(targetFolder);
  459. }
  460. // the next operation triggers a new call to this method, but it's necessary to
  461. // ensure that the name exposed in the action bar is the current directory when the
  462. // user selected it in the navigation list
  463. if (getSupportActionBar().getNavigationMode() == ActionBar.NAVIGATION_MODE_LIST && itemPosition != 0)
  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. //outState.putBoolean(FileDisplayActivity.KEY_REFRESH_SHARES_IN_PROGRESS, mRefreshSharesInProgress);
  573. outState.putParcelable(FileDisplayActivity.KEY_WAITING_TO_SEND, mWaitingToSend);
  574. Log_OC.d(TAG, "onSaveInstanceState() end");
  575. }
  576. @Override
  577. protected void onResume() {
  578. super.onResume();
  579. Log_OC.e(TAG, "onResume() start");
  580. // Listen for sync messages
  581. IntentFilter syncIntentFilter = new IntentFilter(FileSyncAdapter.EVENT_FULL_SYNC_START);
  582. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_END);
  583. syncIntentFilter.addAction(FileSyncAdapter.EVENT_FULL_SYNC_FOLDER_CONTENTS_SYNCED);
  584. syncIntentFilter.addAction(SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
  585. syncIntentFilter.addAction(SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED);
  586. mSyncBroadcastReceiver = new SyncBroadcastReceiver();
  587. registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  588. //LocalBroadcastManager.getInstance(this).registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  589. // Listen for upload messages
  590. IntentFilter uploadIntentFilter = new IntentFilter(FileUploader.getUploadFinishMessage());
  591. mUploadFinishReceiver = new UploadFinishReceiver();
  592. registerReceiver(mUploadFinishReceiver, uploadIntentFilter);
  593. // Listen for download messages
  594. IntentFilter downloadIntentFilter = new IntentFilter(FileDownloader.getDownloadAddedMessage());
  595. downloadIntentFilter.addAction(FileDownloader.getDownloadFinishMessage());
  596. mDownloadFinishReceiver = new DownloadFinishReceiver();
  597. registerReceiver(mDownloadFinishReceiver, downloadIntentFilter);
  598. Log_OC.d(TAG, "onResume() end");
  599. }
  600. @Override
  601. protected void onPause() {
  602. super.onPause();
  603. Log_OC.e(TAG, "onPause() start");
  604. if (mSyncBroadcastReceiver != null) {
  605. unregisterReceiver(mSyncBroadcastReceiver);
  606. //LocalBroadcastManager.getInstance(this).unregisterReceiver(mSyncBroadcastReceiver);
  607. mSyncBroadcastReceiver = null;
  608. }
  609. if (mUploadFinishReceiver != null) {
  610. unregisterReceiver(mUploadFinishReceiver);
  611. mUploadFinishReceiver = null;
  612. }
  613. if (mDownloadFinishReceiver != null) {
  614. unregisterReceiver(mDownloadFinishReceiver);
  615. mDownloadFinishReceiver = null;
  616. }
  617. Log_OC.d(TAG, "onPause() end");
  618. }
  619. @Override
  620. protected Dialog onCreateDialog(int id) {
  621. Dialog dialog = null;
  622. AlertDialog.Builder builder;
  623. switch (id) {
  624. case DIALOG_SHORT_WAIT: {
  625. ProgressDialog working_dialog = new ProgressDialog(this);
  626. working_dialog.setMessage(getResources().getString(
  627. R.string.wait_a_moment));
  628. working_dialog.setIndeterminate(true);
  629. working_dialog.setCancelable(false);
  630. dialog = working_dialog;
  631. break;
  632. }
  633. case DIALOG_CHOOSE_UPLOAD_SOURCE: {
  634. String[] items = null;
  635. String[] allTheItems = { getString(R.string.actionbar_upload_files),
  636. getString(R.string.actionbar_upload_from_apps),
  637. getString(R.string.actionbar_failed_instant_upload) };
  638. String[] commonItems = { getString(R.string.actionbar_upload_files),
  639. getString(R.string.actionbar_upload_from_apps) };
  640. if (InstantUploadActivity.IS_ENABLED)
  641. items = allTheItems;
  642. else
  643. items = commonItems;
  644. builder = new AlertDialog.Builder(this);
  645. builder.setTitle(R.string.actionbar_upload);
  646. builder.setItems(items, new DialogInterface.OnClickListener() {
  647. public void onClick(DialogInterface dialog, int item) {
  648. if (item == 0) {
  649. // if (!mDualPane) {
  650. Intent action = new Intent(FileDisplayActivity.this, UploadFilesActivity.class);
  651. action.putExtra(UploadFilesActivity.EXTRA_ACCOUNT, FileDisplayActivity.this.getAccount());
  652. startActivityForResult(action, ACTION_SELECT_MULTIPLE_FILES);
  653. // } else {
  654. // TODO create and handle new fragment
  655. // LocalFileListFragment
  656. // }
  657. } else if (item == 1) {
  658. Intent action = new Intent(Intent.ACTION_GET_CONTENT);
  659. action = action.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
  660. startActivityForResult(Intent.createChooser(action, getString(R.string.upload_chooser_title)),
  661. ACTION_SELECT_CONTENT_FROM_APPS);
  662. } else if (item == 2 && InstantUploadActivity.IS_ENABLED) {
  663. Intent action = new Intent(FileDisplayActivity.this, InstantUploadActivity.class);
  664. action.putExtra(FileUploader.KEY_ACCOUNT, FileDisplayActivity.this.getAccount());
  665. startActivity(action);
  666. }
  667. }
  668. });
  669. dialog = builder.create();
  670. break;
  671. }
  672. case DIALOG_CERT_NOT_SAVED: {
  673. builder = new AlertDialog.Builder(this);
  674. builder.setMessage(getResources().getString(R.string.ssl_validator_not_saved));
  675. builder.setCancelable(false);
  676. builder.setPositiveButton(R.string.common_ok, new DialogInterface.OnClickListener() {
  677. @Override
  678. public void onClick(DialogInterface dialog, int which) {
  679. dialog.dismiss();
  680. };
  681. });
  682. dialog = builder.create();
  683. break;
  684. }
  685. default:
  686. dialog = null;
  687. }
  688. return dialog;
  689. }
  690. /**
  691. * Translates a content URI of an image to a physical path
  692. * on the disk
  693. * @param uri The URI to resolve
  694. * @return The path to the image or null if it could not be found
  695. */
  696. public String getPath(Uri uri) {
  697. String[] projection = { MediaStore.Images.Media.DATA };
  698. Cursor cursor = managedQuery(uri, projection, null, null, null);
  699. if (cursor != null) {
  700. int column_index = cursor
  701. .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
  702. cursor.moveToFirst();
  703. return cursor.getString(column_index);
  704. }
  705. return null;
  706. }
  707. /**
  708. * Pushes a directory to the drop down list
  709. * @param directory to push
  710. * @throws IllegalArgumentException If the {@link OCFile#isFolder()} returns false.
  711. */
  712. public void pushDirname(OCFile directory) {
  713. if(!directory.isFolder()){
  714. throw new IllegalArgumentException("Only directories may be pushed!");
  715. }
  716. mDirectories.insert(directory.getFileName(), 0);
  717. setFile(directory);
  718. }
  719. /**
  720. * Pops a directory name from the drop down list
  721. * @return True, unless the stack is empty
  722. */
  723. public boolean popDirname() {
  724. mDirectories.remove(mDirectories.getItem(0));
  725. return !mDirectories.isEmpty();
  726. }
  727. // Custom array adapter to override text colors
  728. private class CustomArrayAdapter<T> extends ArrayAdapter<T> {
  729. public CustomArrayAdapter(FileDisplayActivity ctx, int view) {
  730. super(ctx, view);
  731. }
  732. public View getView(int position, View convertView, ViewGroup parent) {
  733. View v = super.getView(position, convertView, parent);
  734. ((TextView) v).setTextColor(getResources().getColorStateList(
  735. android.R.color.white));
  736. fixRoot((TextView) v );
  737. return v;
  738. }
  739. public View getDropDownView(int position, View convertView,
  740. ViewGroup parent) {
  741. View v = super.getDropDownView(position, convertView, parent);
  742. ((TextView) v).setTextColor(getResources().getColorStateList(
  743. android.R.color.white));
  744. fixRoot((TextView) v );
  745. return v;
  746. }
  747. private void fixRoot(TextView v) {
  748. if (v.getText().equals(OCFile.PATH_SEPARATOR)) {
  749. v.setText(R.string.default_display_name_for_root_folder);
  750. }
  751. }
  752. }
  753. private class SyncBroadcastReceiver extends BroadcastReceiver {
  754. /**
  755. * {@link BroadcastReceiver} to enable syncing feedback in UI
  756. */
  757. @Override
  758. public void onReceive(Context context, Intent intent) {
  759. try {
  760. String event = intent.getAction();
  761. Log_OC.d(TAG, "Received broadcast " + event);
  762. String accountName = intent.getStringExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME);
  763. String synchFolderRemotePath = intent.getStringExtra(FileSyncAdapter.EXTRA_FOLDER_PATH);
  764. RemoteOperationResult synchResult = (RemoteOperationResult)intent.getSerializableExtra(FileSyncAdapter.EXTRA_RESULT);
  765. boolean sameAccount = (getAccount() != null && accountName.equals(getAccount().name) && getStorageManager() != null);
  766. if (sameAccount) {
  767. if (FileSyncAdapter.EVENT_FULL_SYNC_START.equals(event)) {
  768. mSyncInProgress = true;
  769. } else {
  770. OCFile currentFile = (getFile() == null) ? null : getStorageManager().getFileByPath(getFile().getRemotePath());
  771. OCFile currentDir = (getCurrentDir() == null) ? null : getStorageManager().getFileByPath(getCurrentDir().getRemotePath());
  772. if (currentDir == null) {
  773. // current folder was removed from the server
  774. Toast.makeText( FileDisplayActivity.this,
  775. String.format(getString(R.string.sync_current_folder_was_removed), mDirectories.getItem(0)),
  776. Toast.LENGTH_LONG)
  777. .show();
  778. browseToRoot();
  779. } else {
  780. if (currentFile == null && !getFile().isFolder()) {
  781. // currently selected file was removed in the server, and now we know it
  782. cleanSecondFragment();
  783. currentFile = currentDir;
  784. }
  785. if (synchFolderRemotePath != null && currentDir.getRemotePath().equals(synchFolderRemotePath)) {
  786. OCFileListFragment fileListFragment = getListOfFilesFragment();
  787. if (fileListFragment != null) {
  788. fileListFragment.listDirectory(currentDir);
  789. }
  790. }
  791. setFile(currentFile);
  792. }
  793. mSyncInProgress = (!FileSyncAdapter.EVENT_FULL_SYNC_END.equals(event) && !SynchronizeFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED.equals(event));
  794. }
  795. removeStickyBroadcast(intent);
  796. Log_OC.d(TAG, "Setting progress visibility to " + mSyncInProgress);
  797. setSupportProgressBarIndeterminateVisibility(mSyncInProgress /*|| mRefreshSharesInProgress*/);
  798. }
  799. if (synchResult != null) {
  800. if (synchResult.getCode().equals(RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED)) {
  801. mLastSslUntrustedServerResult = synchResult;
  802. }
  803. }
  804. } catch (RuntimeException e) {
  805. // avoid app crashes after changing the serial id of RemoteOperationResult
  806. // in owncloud library with broadcast notifications pending to process
  807. removeStickyBroadcast(intent);
  808. }
  809. }
  810. }
  811. /**
  812. * Once the file upload has finished -> update view
  813. */
  814. private class UploadFinishReceiver extends BroadcastReceiver {
  815. /**
  816. * Once the file upload has finished -> update view
  817. * @author David A. Velasco
  818. * {@link BroadcastReceiver} to enable upload feedback in UI
  819. */
  820. @Override
  821. public void onReceive(Context context, Intent intent) {
  822. String uploadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  823. String accountName = intent.getStringExtra(FileUploader.ACCOUNT_NAME);
  824. boolean sameAccount = getAccount() != null && accountName.equals(getAccount().name);
  825. OCFile currentDir = getCurrentDir();
  826. boolean isDescendant = (currentDir != null) && (uploadedRemotePath != null) &&
  827. (uploadedRemotePath.startsWith(currentDir.getRemotePath()));
  828. if (sameAccount && isDescendant) {
  829. refreshListOfFilesFragment();
  830. }
  831. boolean uploadWasFine = intent.getBooleanExtra(FileUploader.EXTRA_UPLOAD_RESULT, false);
  832. boolean renamedInUpload = getFile().getRemotePath().
  833. equals(intent.getStringExtra(FileUploader.EXTRA_OLD_REMOTE_PATH));
  834. boolean sameFile = getFile().getRemotePath().equals(uploadedRemotePath) ||
  835. renamedInUpload;
  836. FileFragment details = getSecondFragment();
  837. boolean detailFragmentIsShown = (details != null &&
  838. details instanceof FileDetailFragment);
  839. if (sameAccount && sameFile && detailFragmentIsShown) {
  840. if (uploadWasFine) {
  841. setFile(getStorageManager().getFileByPath(uploadedRemotePath));
  842. }
  843. if (renamedInUpload) {
  844. String newName = (new File(uploadedRemotePath)).getName();
  845. Toast msg = Toast.makeText(
  846. context,
  847. String.format(
  848. getString(R.string.filedetails_renamed_in_upload_msg),
  849. newName),
  850. Toast.LENGTH_LONG);
  851. msg.show();
  852. }
  853. if (uploadWasFine || getFile().fileExists()) {
  854. ((FileDetailFragment)details).updateFileDetails(false, true);
  855. } else {
  856. cleanSecondFragment();
  857. }
  858. // Force the preview if the file is an image
  859. if (uploadWasFine && PreviewImageFragment.canBePreviewed(getFile())) {
  860. startImagePreview(getFile());
  861. } // TODO what about other kind of previews?
  862. }
  863. removeStickyBroadcast(intent);
  864. }
  865. }
  866. /**
  867. * Class waiting for broadcast events from the {@link FielDownloader} service.
  868. *
  869. * Updates the UI when a download is started or finished, provided that it is relevant for the
  870. * current folder.
  871. */
  872. private class DownloadFinishReceiver extends BroadcastReceiver {
  873. @Override
  874. public void onReceive(Context context, Intent intent) {
  875. boolean sameAccount = isSameAccount(context, intent);
  876. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  877. boolean isDescendant = isDescendant(downloadedRemotePath);
  878. if (sameAccount && isDescendant) {
  879. refreshListOfFilesFragment();
  880. refreshSecondFragment(intent.getAction(), downloadedRemotePath, intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false));
  881. }
  882. if (mWaitingToSend != null) {
  883. mWaitingToSend = getStorageManager().getFileByPath(mWaitingToSend.getRemotePath()); // Update the file to send
  884. if (mWaitingToSend.isDown()) {
  885. sendDownloadedFile();
  886. }
  887. }
  888. removeStickyBroadcast(intent);
  889. }
  890. private boolean isDescendant(String downloadedRemotePath) {
  891. OCFile currentDir = getCurrentDir();
  892. return (currentDir != null && downloadedRemotePath != null && downloadedRemotePath.startsWith(currentDir.getRemotePath()));
  893. }
  894. private boolean isSameAccount(Context context, Intent intent) {
  895. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  896. return (accountName != null && getAccount() != null && accountName.equals(getAccount().name));
  897. }
  898. }
  899. public void browseToRoot() {
  900. OCFileListFragment listOfFiles = getListOfFilesFragment();
  901. if (listOfFiles != null) { // should never be null, indeed
  902. while (mDirectories.getCount() > 1) {
  903. popDirname();
  904. }
  905. OCFile root = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  906. listOfFiles.listDirectory(root);
  907. setFile(listOfFiles.getCurrentFile());
  908. startSyncFolderOperation(root);
  909. }
  910. cleanSecondFragment();
  911. }
  912. public void browseTo(OCFile folder) {
  913. if (folder == null || !folder.isFolder()) {
  914. throw new IllegalArgumentException("Trying to browse to invalid folder " + folder);
  915. }
  916. OCFileListFragment listOfFiles = getListOfFilesFragment();
  917. if (listOfFiles != null) {
  918. setNavigationListWithFolder(folder);
  919. listOfFiles.listDirectory(folder);
  920. setFile(listOfFiles.getCurrentFile());
  921. startSyncFolderOperation(folder);
  922. } else {
  923. Log_OC.e(TAG, "Unexpected null when accessing list fragment");
  924. }
  925. cleanSecondFragment();
  926. }
  927. /**
  928. * {@inheritDoc}
  929. *
  930. * Updates action bar and second fragment, if in dual pane mode.
  931. */
  932. @Override
  933. public void onBrowsedDownTo(OCFile directory) {
  934. pushDirname(directory);
  935. cleanSecondFragment();
  936. // Sync Folder
  937. startSyncFolderOperation(directory);
  938. }
  939. /**
  940. * Shows the information of the {@link OCFile} received as a
  941. * parameter in the second fragment.
  942. *
  943. * @param file {@link OCFile} whose details will be shown
  944. */
  945. @Override
  946. public void showDetails(OCFile file) {
  947. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  948. setSecondFragment(detailFragment);
  949. updateFragmentsVisibility(true);
  950. updateNavigationElementsInActionBar(file);
  951. setFile(file);
  952. }
  953. /**
  954. * TODO
  955. */
  956. private void updateNavigationElementsInActionBar(OCFile chosenFile) {
  957. ActionBar actionBar = getSupportActionBar();
  958. if (chosenFile == null || mDualPane) {
  959. // only list of files - set for browsing through folders
  960. OCFile currentDir = getCurrentDir();
  961. boolean noRoot = (currentDir != null && currentDir.getParentId() != 0);
  962. actionBar.setDisplayHomeAsUpEnabled(noRoot);
  963. actionBar.setDisplayShowTitleEnabled(!noRoot);
  964. if (!noRoot) {
  965. actionBar.setTitle(getString(R.string.default_display_name_for_root_folder));
  966. }
  967. actionBar.setNavigationMode(!noRoot ? ActionBar.NAVIGATION_MODE_STANDARD : ActionBar.NAVIGATION_MODE_LIST);
  968. actionBar.setListNavigationCallbacks(mDirectories, this); // assuming mDirectories is updated
  969. } else {
  970. actionBar.setDisplayHomeAsUpEnabled(true);
  971. actionBar.setDisplayShowTitleEnabled(true);
  972. actionBar.setTitle(chosenFile.getFileName());
  973. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
  974. }
  975. }
  976. @Override
  977. protected ServiceConnection newTransferenceServiceConnection() {
  978. return new ListServiceConnection();
  979. }
  980. /** Defines callbacks for service binding, passed to bindService() */
  981. private class ListServiceConnection implements ServiceConnection {
  982. @Override
  983. public void onServiceConnected(ComponentName component, IBinder service) {
  984. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  985. Log_OC.d(TAG, "Download service connected");
  986. mDownloaderBinder = (FileDownloaderBinder) service;
  987. if (mWaitingToPreview != null && !mWaitingToPreview.isDown()) {
  988. requestForDownload();
  989. }
  990. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploader.class))) {
  991. Log_OC.d(TAG, "Upload service connected");
  992. mUploaderBinder = (FileUploaderBinder) service;
  993. } else {
  994. return;
  995. }
  996. // a new chance to get the mDownloadBinder through getFileDownloadBinder() - THIS IS A MESS
  997. OCFileListFragment listOfFiles = getListOfFilesFragment();
  998. if (listOfFiles != null) {
  999. listOfFiles.listDirectory();
  1000. }
  1001. FileFragment secondFragment = getSecondFragment();
  1002. if (secondFragment != null && secondFragment instanceof FileDetailFragment) {
  1003. FileDetailFragment detailFragment = (FileDetailFragment)secondFragment;
  1004. detailFragment.listenForTransferProgress();
  1005. detailFragment.updateFileDetails(false, false);
  1006. }
  1007. }
  1008. @Override
  1009. public void onServiceDisconnected(ComponentName component) {
  1010. if (component.equals(new ComponentName(FileDisplayActivity.this, FileDownloader.class))) {
  1011. Log_OC.d(TAG, "Download service disconnected");
  1012. mDownloaderBinder = null;
  1013. } else if (component.equals(new ComponentName(FileDisplayActivity.this, FileUploader.class))) {
  1014. Log_OC.d(TAG, "Upload service disconnected");
  1015. mUploaderBinder = null;
  1016. }
  1017. }
  1018. };
  1019. /**
  1020. * Launch an intent to request the PIN code to the user before letting him use the app
  1021. */
  1022. private void requestPinCode() {
  1023. boolean pinStart = false;
  1024. SharedPreferences appPrefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
  1025. pinStart = appPrefs.getBoolean("set_pincode", false);
  1026. if (pinStart) {
  1027. Intent i = new Intent(getApplicationContext(), PinCodeActivity.class);
  1028. i.putExtra(PinCodeActivity.EXTRA_ACTIVITY, "FileDisplayActivity");
  1029. startActivity(i);
  1030. }
  1031. }
  1032. @Override
  1033. public void onSavedCertificate() {
  1034. startSyncFolderOperation(getCurrentDir());
  1035. }
  1036. @Override
  1037. public void onFailedSavingCertificate() {
  1038. showDialog(DIALOG_CERT_NOT_SAVED);
  1039. }
  1040. @Override
  1041. public void onCancelCertificate() {
  1042. // nothing to do
  1043. }
  1044. /**
  1045. * Updates the view associated to the activity after the finish of some operation over files
  1046. * in the current account.
  1047. *
  1048. * @param operation Removal operation performed.
  1049. * @param result Result of the removal.
  1050. */
  1051. @Override
  1052. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  1053. super.onRemoteOperationFinish(operation, result);
  1054. if (operation instanceof RemoveFileOperation) {
  1055. onRemoveFileOperationFinish((RemoveFileOperation)operation, result);
  1056. } else if (operation instanceof RenameFileOperation) {
  1057. onRenameFileOperationFinish((RenameFileOperation)operation, result);
  1058. } else if (operation instanceof SynchronizeFileOperation) {
  1059. onSynchronizeFileOperationFinish((SynchronizeFileOperation)operation, result);
  1060. } else if (operation instanceof CreateFolderOperation) {
  1061. onCreateFolderOperationFinish((CreateFolderOperation)operation, result);
  1062. } else if (operation instanceof CreateShareOperation) {
  1063. onCreateShareOperationFinish((CreateShareOperation) operation, result);
  1064. } else if (operation instanceof UnshareLinkOperation) {
  1065. onUnshareLinkOperationFinish((UnshareLinkOperation)operation, result);
  1066. }
  1067. }
  1068. private void onCreateShareOperationFinish(CreateShareOperation operation, RemoteOperationResult result) {
  1069. if (result.isSuccess()) {
  1070. refreshShowDetails();
  1071. refreshListOfFilesFragment();
  1072. }
  1073. }
  1074. private void onUnshareLinkOperationFinish(UnshareLinkOperation operation, RemoteOperationResult result) {
  1075. if (result.isSuccess()) {
  1076. refreshShowDetails();
  1077. refreshListOfFilesFragment();
  1078. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  1079. cleanSecondFragment();
  1080. refreshListOfFilesFragment();
  1081. }
  1082. }
  1083. private void refreshShowDetails() {
  1084. FileFragment details = getSecondFragment();
  1085. if (details != null) {
  1086. OCFile file = details.getFile();
  1087. if (file != null) {
  1088. file = getStorageManager().getFileByPath(file.getRemotePath());
  1089. if (details instanceof PreviewMediaFragment) {
  1090. // Refresh OCFile of the fragment
  1091. ((PreviewMediaFragment) details).updateFile(file);
  1092. } else {
  1093. showDetails(file);
  1094. }
  1095. }
  1096. invalidateOptionsMenu();
  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. FileFragment second = getSecondFragment();
  1113. if (second != null && removedFile.equals(second.getFile())) {
  1114. if (second instanceof PreviewMediaFragment) {
  1115. ((PreviewMediaFragment)second).stopPreview(true);
  1116. }
  1117. setFile(getStorageManager().getFileById(removedFile.getParentId()));
  1118. cleanSecondFragment();
  1119. }
  1120. if (getStorageManager().getFileById(removedFile.getParentId()).equals(getCurrentDir())) {
  1121. refreshListOfFilesFragment();
  1122. }
  1123. invalidateOptionsMenu();
  1124. } else {
  1125. Toast msg = Toast.makeText(this, R.string.remove_fail_msg, Toast.LENGTH_LONG);
  1126. msg.show();
  1127. if (result.isSslRecoverableException()) {
  1128. mLastSslUntrustedServerResult = result;
  1129. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1130. }
  1131. }
  1132. }
  1133. /**
  1134. * Updates the view associated to the activity after the finish of an operation trying create a new folder
  1135. *
  1136. * @param operation Creation operation performed.
  1137. * @param result Result of the creation.
  1138. */
  1139. private void onCreateFolderOperationFinish(CreateFolderOperation operation, RemoteOperationResult result) {
  1140. if (result.isSuccess()) {
  1141. dismissLoadingDialog();
  1142. refreshListOfFilesFragment();
  1143. } else {
  1144. dismissLoadingDialog();
  1145. if (result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME) {
  1146. Toast.makeText(FileDisplayActivity.this, R.string.filename_forbidden_characters, Toast.LENGTH_LONG).show();
  1147. } else {
  1148. try {
  1149. Toast msg = Toast.makeText(FileDisplayActivity.this, R.string.create_dir_fail_msg, Toast.LENGTH_LONG);
  1150. msg.show();
  1151. } catch (NotFoundException e) {
  1152. Log_OC.e(TAG, "Error while trying to show fail message " , e);
  1153. }
  1154. }
  1155. }
  1156. }
  1157. /**
  1158. * Updates the view associated to the activity after the finish of an operation trying to rename a
  1159. * file.
  1160. *
  1161. * @param operation Renaming operation performed.
  1162. * @param result Result of the renaming.
  1163. */
  1164. private void onRenameFileOperationFinish(RenameFileOperation operation, RemoteOperationResult result) {
  1165. dismissLoadingDialog();
  1166. OCFile renamedFile = operation.getFile();
  1167. if (result.isSuccess()) {
  1168. FileFragment details = getSecondFragment();
  1169. if (details != null)
  1170. if (details instanceof FileDetailFragment && renamedFile.equals(details.getFile()) ) {
  1171. ((FileDetailFragment) details).updateFileDetails(renamedFile, getAccount());
  1172. showDetails(renamedFile);
  1173. } else if (details instanceof PreviewMediaFragment && renamedFile.equals(details.getFile())) {
  1174. ((PreviewMediaFragment) details).updateFile(renamedFile);
  1175. if (PreviewMediaFragment.canBePreviewed(renamedFile)) {
  1176. int position = ((PreviewMediaFragment)details).getPosition();
  1177. startMediaPreview(renamedFile, position, true);
  1178. } else {
  1179. getFileOperationsHelper().openFile(renamedFile);
  1180. }
  1181. }
  1182. if (getStorageManager().getFileById(renamedFile.getParentId()).equals(getCurrentDir())) {
  1183. refreshListOfFilesFragment();
  1184. }
  1185. } else {
  1186. if (result.getCode().equals(ResultCode.INVALID_LOCAL_FILE_NAME)) {
  1187. Toast msg = Toast.makeText(this, R.string.rename_local_fail_msg, Toast.LENGTH_LONG);
  1188. msg.show();
  1189. // TODO throw again the new rename dialog
  1190. } if (result.getCode().equals(ResultCode.INVALID_CHARACTER_IN_NAME)) {
  1191. Toast msg = Toast.makeText(this, R.string.filename_forbidden_characters, Toast.LENGTH_LONG);
  1192. msg.show();
  1193. } else {
  1194. Toast msg = Toast.makeText(this, R.string.rename_server_fail_msg, Toast.LENGTH_LONG);
  1195. msg.show();
  1196. if (result.isSslRecoverableException()) {
  1197. mLastSslUntrustedServerResult = result;
  1198. showUntrustedCertDialog(mLastSslUntrustedServerResult);
  1199. }
  1200. }
  1201. }
  1202. }
  1203. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation, RemoteOperationResult result) {
  1204. dismissLoadingDialog();
  1205. OCFile syncedFile = operation.getLocalFile();
  1206. if (!result.isSuccess()) {
  1207. if (result.getCode() == ResultCode.SYNC_CONFLICT) {
  1208. Intent i = new Intent(this, ConflictsResolveActivity.class);
  1209. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, syncedFile);
  1210. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, getAccount());
  1211. startActivity(i);
  1212. }
  1213. } else {
  1214. if (operation.transferWasRequested()) {
  1215. onTransferStateChanged(syncedFile, true, true);
  1216. } else {
  1217. Toast msg = Toast.makeText(this, R.string.sync_file_nothing_to_do_msg, Toast.LENGTH_LONG);
  1218. msg.show();
  1219. }
  1220. }
  1221. }
  1222. /**
  1223. * {@inheritDoc}
  1224. */
  1225. @Override
  1226. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  1227. FileFragment details = getSecondFragment();
  1228. if (details != null && details instanceof FileDetailFragment && file.equals(details.getFile()) ) {
  1229. if (downloading || uploading) {
  1230. ((FileDetailFragment)details).updateFileDetails(file, getAccount());
  1231. } else {
  1232. ((FileDetailFragment)details).updateFileDetails(false, true);
  1233. }
  1234. }
  1235. }
  1236. public void onDismiss(EditNameDialog dialog) {
  1237. if (dialog.getResult()) {
  1238. String newDirectoryName = dialog.getNewFilename().trim();
  1239. Log_OC.d(TAG, "'create directory' dialog dismissed with new name " + newDirectoryName);
  1240. if (newDirectoryName.length() > 0) {
  1241. String path = getCurrentDir().getRemotePath();
  1242. // Create directory
  1243. path += newDirectoryName + OCFile.PATH_SEPARATOR;
  1244. getFileOperationsHelper().createFolder(path, false);
  1245. }
  1246. }
  1247. }
  1248. private void requestForDownload() {
  1249. Account account = getAccount();
  1250. if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
  1251. Intent i = new Intent(this, FileDownloader.class);
  1252. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1253. i.putExtra(FileDownloader.EXTRA_FILE, mWaitingToPreview);
  1254. startService(i);
  1255. }
  1256. }
  1257. private OCFile getCurrentDir() {
  1258. OCFile file = getFile();
  1259. if (file != null) {
  1260. if (file.isFolder()) {
  1261. return file;
  1262. } else if (getStorageManager() != null) {
  1263. String parentPath = file.getRemotePath().substring(0, file.getRemotePath().lastIndexOf(file.getFileName()));
  1264. return getStorageManager().getFileByPath(parentPath);
  1265. }
  1266. }
  1267. return null;
  1268. }
  1269. public void startSyncFolderOperation(OCFile folder) {
  1270. long currentSyncTime = System.currentTimeMillis();
  1271. mSyncInProgress = true;
  1272. // perform folder synchronization
  1273. RemoteOperation synchFolderOp = new SynchronizeFolderOperation( folder,
  1274. currentSyncTime,
  1275. false,
  1276. getFileOperationsHelper().isSharedSupported(),
  1277. getStorageManager(),
  1278. getAccount(),
  1279. getApplicationContext()
  1280. );
  1281. synchFolderOp.execute(getAccount(), this, null, null, this);
  1282. setSupportProgressBarIndeterminateVisibility(true);
  1283. }
  1284. /**
  1285. * Show untrusted cert dialog
  1286. */
  1287. public void showUntrustedCertDialog(RemoteOperationResult result) {
  1288. // Show a dialog with the certificate info
  1289. SslUntrustedCertDialog dialog = SslUntrustedCertDialog.newInstanceForFullSslError((CertificateCombinedException)result.getException());
  1290. FragmentManager fm = getSupportFragmentManager();
  1291. FragmentTransaction ft = fm.beginTransaction();
  1292. dialog.show(ft, DIALOG_UNTRUSTED_CERT);
  1293. }
  1294. private void requestForDownload(OCFile file) {
  1295. Account account = getAccount();
  1296. if (!mDownloaderBinder.isDownloading(account, file)) {
  1297. Intent i = new Intent(this, FileDownloader.class);
  1298. i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
  1299. i.putExtra(FileDownloader.EXTRA_FILE, file);
  1300. startService(i);
  1301. }
  1302. }
  1303. private void sendDownloadedFile(){
  1304. getFileOperationsHelper().sendDownloadedFile(mWaitingToSend);
  1305. mWaitingToSend = null;
  1306. }
  1307. /**
  1308. * Requests the download of the received {@link OCFile} , updates the UI
  1309. * to monitor the download progress and prepares the activity to send the file
  1310. * when the download finishes.
  1311. *
  1312. * @param file {@link OCFile} to download and preview.
  1313. */
  1314. public void startDownloadForSending(OCFile file) {
  1315. mWaitingToSend = file;
  1316. requestForDownload(mWaitingToSend);
  1317. boolean hasSecondFragment = (getSecondFragment()!= null);
  1318. updateFragmentsVisibility(hasSecondFragment);
  1319. }
  1320. /**
  1321. * Opens the image gallery showing the image {@link OCFile} received as parameter.
  1322. *
  1323. * @param file Image {@link OCFile} to show.
  1324. */
  1325. public void startImagePreview(OCFile file) {
  1326. Intent showDetailsIntent = new Intent(this, PreviewImageActivity.class);
  1327. showDetailsIntent.putExtra(EXTRA_FILE, file);
  1328. showDetailsIntent.putExtra(EXTRA_ACCOUNT, getAccount());
  1329. startActivity(showDetailsIntent);
  1330. }
  1331. /**
  1332. * Stars the preview of an already down media {@link OCFile}.
  1333. *
  1334. * @param file Media {@link OCFile} to preview.
  1335. * @param startPlaybackPosition Media position where the playback will be started, in milliseconds.
  1336. * @param autoplay When 'true', the playback will start without user interactions.
  1337. */
  1338. public void startMediaPreview(OCFile file, int startPlaybackPosition, boolean autoplay) {
  1339. Fragment mediaFragment = new PreviewMediaFragment(file, getAccount(), startPlaybackPosition, autoplay);
  1340. setSecondFragment(mediaFragment);
  1341. updateFragmentsVisibility(true);
  1342. updateNavigationElementsInActionBar(file);
  1343. setFile(file);
  1344. }
  1345. /**
  1346. * Requests the download of the received {@link OCFile} , updates the UI
  1347. * to monitor the download progress and prepares the activity to preview
  1348. * or open the file when the download finishes.
  1349. *
  1350. * @param file {@link OCFile} to download and preview.
  1351. */
  1352. public void startDownloadForPreview(OCFile file) {
  1353. Fragment detailFragment = new FileDetailFragment(file, getAccount());
  1354. setSecondFragment(detailFragment);
  1355. mWaitingToPreview = file;
  1356. requestForDownload();
  1357. updateFragmentsVisibility(true);
  1358. updateNavigationElementsInActionBar(file);
  1359. setFile(file);
  1360. }
  1361. public void cancelTransference(OCFile file) {
  1362. Account account = getAccount();
  1363. if (mDownloaderBinder != null && mDownloaderBinder.isDownloading(account, file)) {
  1364. mDownloaderBinder.cancel(account, file);
  1365. refreshListOfFilesFragment();
  1366. onTransferStateChanged(file, false, false);
  1367. } else if (mUploaderBinder != null && mUploaderBinder.isUploading(account, file)) {
  1368. mUploaderBinder.cancel(account, file);
  1369. refreshListOfFilesFragment();
  1370. if (!file.fileExists()) {
  1371. cleanSecondFragment();
  1372. } else {
  1373. onTransferStateChanged(file, false, false);
  1374. }
  1375. }
  1376. }
  1377. }