FileDisplayActivity.java 53 KB

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