FileActivity.java 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2011 Bartek Przybylski
  6. * Copyright (C) 2015 ownCloud Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. package com.owncloud.android.ui.activity;
  22. import android.accounts.Account;
  23. import android.accounts.AccountManager;
  24. import android.accounts.AccountManagerCallback;
  25. import android.accounts.AccountManagerFuture;
  26. import android.accounts.AuthenticatorException;
  27. import android.accounts.OperationCanceledException;
  28. import android.content.ComponentName;
  29. import android.content.Context;
  30. import android.content.Intent;
  31. import android.content.ServiceConnection;
  32. import android.content.res.Configuration;
  33. import android.os.Bundle;
  34. import android.os.Handler;
  35. import android.os.IBinder;
  36. import android.support.v4.app.Fragment;
  37. import android.support.v4.app.FragmentManager;
  38. import android.support.v4.app.FragmentTransaction;
  39. import android.support.v4.view.GravityCompat;
  40. import android.support.v4.widget.DrawerLayout;
  41. import android.support.v7.app.ActionBar;
  42. import android.support.v7.app.ActionBarDrawerToggle;
  43. import android.support.v7.app.AppCompatActivity;
  44. import android.view.View;
  45. import android.widget.AdapterView;
  46. import android.widget.ListView;
  47. import android.widget.RelativeLayout;
  48. import android.widget.TextView;
  49. import android.widget.Toast;
  50. import com.owncloud.android.BuildConfig;
  51. import com.owncloud.android.MainApp;
  52. import com.owncloud.android.R;
  53. import com.owncloud.android.authentication.AccountUtils;
  54. import com.owncloud.android.authentication.AuthenticatorActivity;
  55. import com.owncloud.android.datamodel.FileDataStorageManager;
  56. import com.owncloud.android.datamodel.OCFile;
  57. import com.owncloud.android.files.FileOperationsHelper;
  58. import com.owncloud.android.files.services.FileDownloader;
  59. import com.owncloud.android.files.services.FileUploadService;
  60. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  61. import com.owncloud.android.files.services.FileUploadService.FileUploaderBinder;
  62. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  63. import com.owncloud.android.lib.common.operations.RemoteOperation;
  64. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  65. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  66. import com.owncloud.android.lib.common.utils.Log_OC;
  67. import com.owncloud.android.lib.resources.status.OCCapability;
  68. import com.owncloud.android.operations.CreateShareViaLinkOperation;
  69. import com.owncloud.android.operations.CreateShareWithShareeOperation;
  70. import com.owncloud.android.operations.GetSharesForFileOperation;
  71. import com.owncloud.android.operations.SynchronizeFileOperation;
  72. import com.owncloud.android.operations.SynchronizeFolderOperation;
  73. import com.owncloud.android.operations.UnshareOperation;
  74. import com.owncloud.android.operations.UpdateShareViaLinkOperation;
  75. import com.owncloud.android.services.OperationsService;
  76. import com.owncloud.android.services.OperationsService.OperationsServiceBinder;
  77. import com.owncloud.android.ui.NavigationDrawerItem;
  78. import com.owncloud.android.ui.adapter.NavigationDrawerListAdapter;
  79. import com.owncloud.android.ui.dialog.LoadingDialog;
  80. import com.owncloud.android.ui.dialog.SharePasswordDialogFragment;
  81. import com.owncloud.android.utils.ErrorMessageAdapter;
  82. import java.util.ArrayList;
  83. /**
  84. * Activity with common behaviour for activities handling {@link OCFile}s in ownCloud
  85. * {@link Account}s .
  86. */
  87. public class FileActivity extends AppCompatActivity
  88. implements OnRemoteOperationListener, ComponentsGetter {
  89. public static final String EXTRA_FILE = "com.owncloud.android.ui.activity.FILE";
  90. public static final String EXTRA_ACCOUNT = "com.owncloud.android.ui.activity.ACCOUNT";
  91. public static final String EXTRA_FROM_NOTIFICATION =
  92. "com.owncloud.android.ui.activity.FROM_NOTIFICATION";
  93. public static final String TAG = FileActivity.class.getSimpleName();
  94. private static final String DIALOG_WAIT_TAG = "DIALOG_WAIT";
  95. private static final String KEY_WAITING_FOR_OP_ID = "WAITING_FOR_OP_ID";
  96. private static final String DIALOG_SHARE_PASSWORD = "DIALOG_SHARE_PASSWORD";
  97. private static final String KEY_TRY_SHARE_AGAIN = "TRY_SHARE_AGAIN";
  98. private static final String KEY_ACTION_BAR_TITLE = "ACTION_BAR_TITLE";
  99. protected static final long DELAY_TO_REQUEST_OPERATIONS_LATER = 200;
  100. /** OwnCloud {@link Account} where the main {@link OCFile} handled by the activity is located.*/
  101. private Account mAccount;
  102. /** Capabilites of the server where {@link #mAccount} lives */
  103. private OCCapability mCapabilities;
  104. /** Main {@link OCFile} handled by the activity.*/
  105. private OCFile mFile;
  106. /** Flag to signal that the activity will is finishing to enforce the creation of an ownCloud
  107. * {@link Account} */
  108. private boolean mRedirectingToSetupAccount = false;
  109. /** Flag to signal when the value of mAccount was set */
  110. protected boolean mAccountWasSet;
  111. /** Flag to signal when the value of mAccount was restored from a saved state */
  112. protected boolean mAccountWasRestored;
  113. /** Flag to signal if the activity is launched by a notification */
  114. private boolean mFromNotification;
  115. /** Messages handler associated to the main thread and the life cycle of the activity */
  116. private Handler mHandler;
  117. /** Access point to the cached database for the current ownCloud {@link Account} */
  118. private FileDataStorageManager mStorageManager = null;
  119. private FileOperationsHelper mFileOperationsHelper;
  120. private ServiceConnection mOperationsServiceConnection = null;
  121. private OperationsServiceBinder mOperationsServiceBinder = null;
  122. private boolean mResumed = false;
  123. protected FileDownloaderBinder mDownloaderBinder = null;
  124. protected FileUploaderBinder mUploaderBinder = null;
  125. private ServiceConnection mDownloadServiceConnection, mUploadServiceConnection = null;
  126. // Navigation Drawer
  127. protected DrawerLayout mDrawerLayout;
  128. protected ActionBarDrawerToggle mDrawerToggle;
  129. protected ListView mDrawerList;
  130. // Slide menu items
  131. protected String[] mDrawerTitles;
  132. protected String[] mDrawerContentDescriptions;
  133. protected ArrayList<NavigationDrawerItem> mDrawerItems;
  134. protected NavigationDrawerListAdapter mNavigationDrawerAdapter = null;
  135. // TODO re-enable when "Accounts" is available in Navigation Drawer
  136. // protected boolean mShowAccounts = false;
  137. /**
  138. * Loads the ownCloud {@link Account} and main {@link OCFile} to be handled by the instance of
  139. * the {@link FileActivity}.
  140. *
  141. * Grants that a valid ownCloud {@link Account} is associated to the instance, or that the user
  142. * is requested to create a new one.
  143. */
  144. @Override
  145. protected void onCreate(Bundle savedInstanceState) {
  146. super.onCreate(savedInstanceState);
  147. mHandler = new Handler();
  148. mFileOperationsHelper = new FileOperationsHelper(this);
  149. Account account = null;
  150. if(savedInstanceState != null) {
  151. mFile = savedInstanceState.getParcelable(FileActivity.EXTRA_FILE);
  152. mFromNotification = savedInstanceState.getBoolean(FileActivity.EXTRA_FROM_NOTIFICATION);
  153. mFileOperationsHelper.setOpIdWaitingFor(
  154. savedInstanceState.getLong(KEY_WAITING_FOR_OP_ID, Long.MAX_VALUE)
  155. );
  156. if (getSupportActionBar() != null) {
  157. getSupportActionBar().setTitle(savedInstanceState.getString(KEY_ACTION_BAR_TITLE));
  158. }
  159. } else {
  160. account = getIntent().getParcelableExtra(FileActivity.EXTRA_ACCOUNT);
  161. mFile = getIntent().getParcelableExtra(FileActivity.EXTRA_FILE);
  162. mFromNotification = getIntent().getBooleanExtra(FileActivity.EXTRA_FROM_NOTIFICATION,
  163. false);
  164. }
  165. AccountUtils.updateAccountVersion(this); // best place, before any access to AccountManager
  166. // or database
  167. setAccount(account, savedInstanceState != null);
  168. mOperationsServiceConnection = new OperationsServiceConnection();
  169. bindService(new Intent(this, OperationsService.class), mOperationsServiceConnection,
  170. Context.BIND_AUTO_CREATE);
  171. mDownloadServiceConnection = newTransferenceServiceConnection();
  172. if (mDownloadServiceConnection != null) {
  173. bindService(new Intent(this, FileDownloader.class), mDownloadServiceConnection,
  174. Context.BIND_AUTO_CREATE);
  175. }
  176. mUploadServiceConnection = newTransferenceServiceConnection();
  177. if (mUploadServiceConnection != null) {
  178. bindService(new Intent(this, FileUploadService.class), mUploadServiceConnection,
  179. Context.BIND_AUTO_CREATE);
  180. }
  181. }
  182. @Override
  183. protected void onNewIntent (Intent intent) {
  184. Log_OC.v(TAG, "onNewIntent() start");
  185. Account current = AccountUtils.getCurrentOwnCloudAccount(this);
  186. if (current != null && mAccount != null && !mAccount.name.equals(current.name)) {
  187. mAccount = current;
  188. }
  189. Log_OC.v(TAG, "onNewIntent() stop");
  190. }
  191. /**
  192. * Since ownCloud {@link Account}s can be managed from the system setting menu,
  193. * the existence of the {@link Account} associated to the instance must be checked
  194. * every time it is restarted.
  195. */
  196. @Override
  197. protected void onRestart() {
  198. Log_OC.v(TAG, "onRestart() start");
  199. super.onRestart();
  200. boolean validAccount = (mAccount != null && AccountUtils.exists(mAccount, this));
  201. if (!validAccount) {
  202. swapToDefaultAccount();
  203. }
  204. Log_OC.v(TAG, "onRestart() end");
  205. }
  206. @Override
  207. protected void onStart() {
  208. super.onStart();
  209. if (mAccountWasSet) {
  210. onAccountSet(mAccountWasRestored);
  211. }
  212. }
  213. @Override
  214. protected void onResume() {
  215. super.onResume();
  216. mResumed = true;
  217. if (mOperationsServiceBinder != null) {
  218. doOnResumeAndBound();
  219. }
  220. }
  221. @Override
  222. protected void onPause() {
  223. if (mOperationsServiceBinder != null) {
  224. mOperationsServiceBinder.removeOperationListener(this);
  225. }
  226. mResumed = false;
  227. super.onPause();
  228. }
  229. @Override
  230. protected void onDestroy() {
  231. if (mOperationsServiceConnection != null) {
  232. unbindService(mOperationsServiceConnection);
  233. mOperationsServiceBinder = null;
  234. }
  235. if (mDownloadServiceConnection != null) {
  236. unbindService(mDownloadServiceConnection);
  237. mDownloadServiceConnection = null;
  238. }
  239. if (mUploadServiceConnection != null) {
  240. unbindService(mUploadServiceConnection);
  241. mUploadServiceConnection = null;
  242. }
  243. super.onDestroy();
  244. }
  245. @Override
  246. protected void onPostCreate(Bundle savedInstanceState) {
  247. super.onPostCreate(savedInstanceState);
  248. // Sync the toggle state after onRestoreInstanceState has occurred.
  249. if (mDrawerToggle != null) {
  250. mDrawerToggle.syncState();
  251. if (isDrawerOpen()) {
  252. getSupportActionBar().setTitle(R.string.app_name);
  253. mDrawerToggle.setDrawerIndicatorEnabled(true);
  254. }
  255. }
  256. }
  257. @Override
  258. public void onConfigurationChanged(Configuration newConfig) {
  259. super.onConfigurationChanged(newConfig);
  260. if (mDrawerToggle != null) {
  261. mDrawerToggle.onConfigurationChanged(newConfig);
  262. }
  263. }
  264. @Override
  265. public void onBackPressed() {
  266. if (isDrawerOpen()) {
  267. closeNavDrawer();
  268. return;
  269. }
  270. super.onBackPressed();
  271. }
  272. /**
  273. * checks if the drawer exists and is opened.
  274. *
  275. * @return <code>true</code> if the drawer is open, else <code>false</code>
  276. */
  277. public boolean isDrawerOpen() {
  278. if(mDrawerLayout != null) {
  279. return mDrawerLayout.isDrawerOpen(GravityCompat.START);
  280. } else {
  281. return false;
  282. }
  283. }
  284. /**
  285. * closes the navigation drawer.
  286. */
  287. public void closeNavDrawer() {
  288. if(mDrawerLayout != null) {
  289. mDrawerLayout.closeDrawer(GravityCompat.START);
  290. }
  291. }
  292. protected void initDrawer(){
  293. // constant settings for action bar when navigation drawer is inited
  294. getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
  295. mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
  296. // Notification Drawer
  297. RelativeLayout navigationDrawerLayout = (RelativeLayout) findViewById(R.id.left_drawer);
  298. mDrawerList = (ListView) navigationDrawerLayout.findViewById(R.id.drawer_list);
  299. // TODO re-enable when "Accounts" is available in Navigation Drawer
  300. // // load Account in the Drawer Title
  301. // // User-Icon
  302. // ImageView userIcon = (ImageView) navigationDrawerLayout.findViewById(R.id.drawer_userIcon);
  303. // userIcon.setImageResource(DisplayUtils.getSeasonalIconId());
  304. //
  305. // // Username
  306. // TextView username = (TextView) navigationDrawerLayout.findViewById(R.id.drawer_username);
  307. // Account account = AccountUtils.getCurrentOwnCloudAccount(getApplicationContext());
  308. //
  309. // if (account != null) {
  310. // int lastAtPos = account.name.lastIndexOf("@");
  311. // username.setText(account.name.substring(0, lastAtPos));
  312. // }
  313. // Display username in drawer
  314. setUsernameInDrawer(navigationDrawerLayout, AccountUtils.getCurrentOwnCloudAccount(getApplicationContext()));
  315. // load slide menu items
  316. mDrawerTitles = getResources().getStringArray(R.array.drawer_items);
  317. // nav drawer content description from resources
  318. mDrawerContentDescriptions = getResources().
  319. getStringArray(R.array.drawer_content_descriptions);
  320. // nav drawer items
  321. mDrawerItems = new ArrayList<NavigationDrawerItem>();
  322. // adding nav drawer items to array
  323. // TODO re-enable when "Accounts" is available in Navigation Drawer
  324. // Accounts
  325. // mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[0],
  326. // mDrawerContentDescriptions[0]));
  327. // All Files
  328. mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[0], mDrawerContentDescriptions[0],
  329. R.drawable.ic_folder_open));
  330. // TODO Enable when "On Device" is recovered
  331. // On Device
  332. //mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[2],
  333. // mDrawerContentDescriptions[2]));
  334. // Settings
  335. mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[1], mDrawerContentDescriptions[1],
  336. R.drawable.ic_settings));
  337. // Uploads
  338. mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[2], mDrawerContentDescriptions[2],
  339. R.drawable.ic_uploads));
  340. // Logs
  341. if (BuildConfig.DEBUG) {
  342. mDrawerItems.add(new NavigationDrawerItem(mDrawerTitles[3],
  343. mDrawerContentDescriptions[3], R.drawable.ic_log));
  344. }
  345. // setting the nav drawer list adapter
  346. mNavigationDrawerAdapter = new NavigationDrawerListAdapter(getApplicationContext(), this,
  347. mDrawerItems);
  348. mDrawerList.setAdapter(mNavigationDrawerAdapter);
  349. mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,R.string.drawer_open,R.string.drawer_close) {
  350. /** Called when a drawer has settled in a completely closed state. */
  351. public void onDrawerClosed(View view) {
  352. super.onDrawerClosed(view);
  353. updateActionBarTitleAndHomeButton(null);
  354. invalidateOptionsMenu();
  355. }
  356. /** Called when a drawer has settled in a completely open state. */
  357. public void onDrawerOpened(View drawerView) {
  358. super.onDrawerOpened(drawerView);
  359. getSupportActionBar().setTitle(R.string.app_name);
  360. mDrawerToggle.setDrawerIndicatorEnabled(true);
  361. invalidateOptionsMenu();
  362. }
  363. };
  364. // Set the list's click listener
  365. mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
  366. // Set the drawer toggle as the DrawerListener
  367. mDrawerLayout.setDrawerListener(mDrawerToggle);
  368. mDrawerToggle.setDrawerIndicatorEnabled(false);
  369. }
  370. /**
  371. * sets the given account name in the drawer in case the drawer is available. The account name
  372. * is shortened beginning from the @-sign in the username.
  373. *
  374. * @param navigationDrawerLayout the drawer layout to be used
  375. * @param account the account to be set in the drawer
  376. */
  377. protected void setUsernameInDrawer(RelativeLayout navigationDrawerLayout, Account account) {
  378. if (navigationDrawerLayout != null && account != null) {
  379. TextView username = (TextView) navigationDrawerLayout.findViewById(R.id.drawer_username);
  380. int lastAtPos = account.name.lastIndexOf("@");
  381. username.setText(account.name.substring(0, lastAtPos));
  382. }
  383. }
  384. /**
  385. * Updates title bar and home buttons (state and icon).
  386. *
  387. * Assumes that navigation drawer is NOT visible.
  388. */
  389. protected void updateActionBarTitleAndHomeButton(OCFile chosenFile) {
  390. String title = getString(R.string.default_display_name_for_root_folder); // default
  391. boolean inRoot;
  392. /// choose the appropiate title
  393. if (chosenFile == null) {
  394. chosenFile = mFile; // if no file is passed, current file decides
  395. }
  396. inRoot = (
  397. chosenFile == null ||
  398. (chosenFile.isFolder() && chosenFile.getParentId() == FileDataStorageManager.ROOT_PARENT_ID)
  399. );
  400. if (!inRoot) {
  401. title = chosenFile.getFileName();
  402. }
  403. /// set the chosen title
  404. ActionBar actionBar = getSupportActionBar();
  405. actionBar.setTitle(title);
  406. /// also as content description
  407. View actionBarTitleView = getWindow().getDecorView().findViewById(
  408. getResources().getIdentifier("action_bar_title", "id", "android")
  409. );
  410. if (actionBarTitleView != null) { // it's null in Android 2.x
  411. actionBarTitleView.setContentDescription(title);
  412. }
  413. /// set home button properties
  414. mDrawerToggle.setDrawerIndicatorEnabled(inRoot);
  415. actionBar.setDisplayHomeAsUpEnabled(true);
  416. actionBar.setDisplayShowTitleEnabled(true);
  417. }
  418. /**
  419. * Sets and validates the ownCloud {@link Account} associated to the Activity.
  420. *
  421. * If not valid, tries to swap it for other valid and existing ownCloud {@link Account}.
  422. *
  423. * POSTCONDITION: updates {@link #mAccountWasSet} and {@link #mAccountWasRestored}.
  424. *
  425. * @param account New {@link Account} to set.
  426. * @param savedAccount When 'true', account was retrieved from a saved instance state.
  427. */
  428. protected void setAccount(Account account, boolean savedAccount) {
  429. Account oldAccount = mAccount;
  430. boolean validAccount =
  431. (account != null && AccountUtils.setCurrentOwnCloudAccount(getApplicationContext(),
  432. account.name));
  433. if (validAccount) {
  434. mAccount = account;
  435. mAccountWasSet = true;
  436. mAccountWasRestored = (savedAccount || mAccount.equals(oldAccount));
  437. } else {
  438. swapToDefaultAccount();
  439. }
  440. }
  441. /**
  442. * Tries to swap the current ownCloud {@link Account} for other valid and existing.
  443. *
  444. * If no valid ownCloud {@link Account} exists, the the user is requested
  445. * to create a new ownCloud {@link Account}.
  446. *
  447. * POSTCONDITION: updates {@link #mAccountWasSet} and {@link #mAccountWasRestored}.
  448. */
  449. private void swapToDefaultAccount() {
  450. // default to the most recently used account
  451. Account newAccount = AccountUtils.getCurrentOwnCloudAccount(getApplicationContext());
  452. if (newAccount == null) {
  453. /// no account available: force account creation
  454. createFirstAccount();
  455. mRedirectingToSetupAccount = true;
  456. mAccountWasSet = false;
  457. mAccountWasRestored = false;
  458. } else {
  459. mAccountWasSet = true;
  460. mAccountWasRestored = (newAccount.equals(mAccount));
  461. mAccount = newAccount;
  462. }
  463. }
  464. /**
  465. * Launches the account creation activity. To use when no ownCloud account is available
  466. */
  467. private void createFirstAccount() {
  468. AccountManager am = AccountManager.get(getApplicationContext());
  469. am.addAccount(MainApp.getAccountType(),
  470. null,
  471. null,
  472. null,
  473. this,
  474. new AccountCreationCallback(),
  475. null);
  476. }
  477. /**
  478. * {@inheritDoc}
  479. */
  480. @Override
  481. protected void onSaveInstanceState(Bundle outState) {
  482. super.onSaveInstanceState(outState);
  483. outState.putParcelable(FileActivity.EXTRA_FILE, mFile);
  484. outState.putBoolean(FileActivity.EXTRA_FROM_NOTIFICATION, mFromNotification);
  485. outState.putLong(KEY_WAITING_FOR_OP_ID, mFileOperationsHelper.getOpIdWaitingFor());
  486. if(getSupportActionBar() != null && getSupportActionBar().getTitle() != null) {
  487. // Null check in case the actionbar is used in ActionBar.NAVIGATION_MODE_LIST
  488. // since it doesn't have a title then
  489. outState.putString(KEY_ACTION_BAR_TITLE, getSupportActionBar().getTitle().toString());
  490. }
  491. }
  492. /**
  493. * Getter for the main {@link OCFile} handled by the activity.
  494. *
  495. * @return Main {@link OCFile} handled by the activity.
  496. */
  497. public OCFile getFile() {
  498. return mFile;
  499. }
  500. /**
  501. * Setter for the main {@link OCFile} handled by the activity.
  502. *
  503. * @param file Main {@link OCFile} to be handled by the activity.
  504. */
  505. public void setFile(OCFile file) {
  506. mFile = file;
  507. }
  508. /**
  509. * Getter for the ownCloud {@link Account} where the main {@link OCFile} handled by the activity
  510. * is located.
  511. *
  512. * @return OwnCloud {@link Account} where the main {@link OCFile} handled by the activity
  513. * is located.
  514. */
  515. public Account getAccount() {
  516. return mAccount;
  517. }
  518. protected void setAccount(Account account) {
  519. mAccount = account;
  520. }
  521. /**
  522. * Getter for the capabilities of the server where the current OC account lives.
  523. *
  524. * @return Capabilities of the server where the current OC account lives. Null if the account is not
  525. * set yet.
  526. */
  527. public OCCapability getCapabilities() {
  528. return mCapabilities;
  529. }
  530. /**
  531. * @return Value of mFromNotification: True if the Activity is launched by a notification
  532. */
  533. public boolean fromNotification() {
  534. return mFromNotification;
  535. }
  536. /**
  537. * @return 'True' when the Activity is finishing to enforce the setup of a new account.
  538. */
  539. protected boolean isRedirectingToSetupAccount() {
  540. return mRedirectingToSetupAccount;
  541. }
  542. public OperationsServiceBinder getOperationsServiceBinder() {
  543. return mOperationsServiceBinder;
  544. }
  545. protected ServiceConnection newTransferenceServiceConnection() {
  546. return null;
  547. }
  548. /**
  549. * Helper class handling a callback from the {@link AccountManager} after the creation of
  550. * a new ownCloud {@link Account} finished, successfully or not.
  551. *
  552. * At this moment, only called after the creation of the first account.
  553. */
  554. public class AccountCreationCallback implements AccountManagerCallback<Bundle> {
  555. @Override
  556. public void run(AccountManagerFuture<Bundle> future) {
  557. FileActivity.this.mRedirectingToSetupAccount = false;
  558. boolean accountWasSet = false;
  559. if (future != null) {
  560. try {
  561. Bundle result;
  562. result = future.getResult();
  563. String name = result.getString(AccountManager.KEY_ACCOUNT_NAME);
  564. String type = result.getString(AccountManager.KEY_ACCOUNT_TYPE);
  565. if (AccountUtils.setCurrentOwnCloudAccount(getApplicationContext(), name)) {
  566. setAccount(new Account(name, type), false);
  567. accountWasSet = true;
  568. }
  569. } catch (OperationCanceledException e) {
  570. Log_OC.d(TAG, "Account creation canceled");
  571. } catch (Exception e) {
  572. Log_OC.e(TAG, "Account creation finished in exception: ", e);
  573. }
  574. } else {
  575. Log_OC.e(TAG, "Account creation callback with null bundle");
  576. }
  577. if (!accountWasSet) {
  578. moveTaskToBack(true);
  579. }
  580. }
  581. }
  582. /**
  583. * Called when the ownCloud {@link Account} associated to the Activity was just updated.
  584. *
  585. * Child classes must grant that state depending on the {@link Account} is updated.
  586. */
  587. protected void onAccountSet(boolean stateWasRecovered) {
  588. if (getAccount() != null) {
  589. mStorageManager = new FileDataStorageManager(getAccount(), getContentResolver());
  590. mCapabilities = mStorageManager.getCapability(mAccount.name);
  591. } else {
  592. Log_OC.wtf(TAG, "onAccountChanged was called with NULL account associated!");
  593. }
  594. }
  595. public FileDataStorageManager getStorageManager() {
  596. return mStorageManager;
  597. }
  598. public OnRemoteOperationListener getRemoteOperationListener() {
  599. return this;
  600. }
  601. public Handler getHandler() {
  602. return mHandler;
  603. }
  604. public FileOperationsHelper getFileOperationsHelper() {
  605. return mFileOperationsHelper;
  606. }
  607. /**
  608. *
  609. * @param operation Removal operation performed.
  610. * @param result Result of the removal.
  611. */
  612. @Override
  613. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  614. Log_OC.d(TAG, "Received result of operation in FileActivity - common behaviour for all the "
  615. + "FileActivities ");
  616. mFileOperationsHelper.setOpIdWaitingFor(Long.MAX_VALUE);
  617. dismissLoadingDialog();
  618. if (!result.isSuccess() && (
  619. result.getCode() == ResultCode.UNAUTHORIZED ||
  620. result.isIdPRedirection() ||
  621. (result.isException() && result.getException() instanceof AuthenticatorException)
  622. )) {
  623. requestCredentialsUpdate();
  624. if (result.getCode() == ResultCode.UNAUTHORIZED) {
  625. dismissLoadingDialog();
  626. Toast t = Toast.makeText(this, ErrorMessageAdapter.getErrorCauseMessage(result,
  627. operation, getResources()),
  628. Toast.LENGTH_LONG);
  629. t.show();
  630. }
  631. } else if (operation == null ||
  632. operation instanceof CreateShareWithShareeOperation ||
  633. operation instanceof UnshareOperation ||
  634. operation instanceof SynchronizeFolderOperation ||
  635. operation instanceof UpdateShareViaLinkOperation
  636. ) {
  637. if (result.isSuccess()) {
  638. updateFileFromDB();
  639. } else if (result.getCode() != ResultCode.CANCELLED) {
  640. Toast t = Toast.makeText(this,
  641. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  642. Toast.LENGTH_LONG);
  643. t.show();
  644. }
  645. } else if (operation instanceof CreateShareViaLinkOperation) {
  646. onCreateShareViaLinkOperationFinish((CreateShareViaLinkOperation) operation, result);
  647. } else if (operation instanceof SynchronizeFileOperation) {
  648. onSynchronizeFileOperationFinish((SynchronizeFileOperation) operation, result);
  649. } else if (operation instanceof GetSharesForFileOperation) {
  650. if (result.isSuccess() || result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  651. updateFileFromDB();
  652. } else {
  653. Toast t = Toast.makeText(this,
  654. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  655. Toast.LENGTH_LONG);
  656. t.show();
  657. }
  658. }
  659. }
  660. protected void requestCredentialsUpdate() {
  661. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  662. updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT, getAccount());
  663. updateAccountCredentials.putExtra(
  664. AuthenticatorActivity.EXTRA_ACTION,
  665. AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN);
  666. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
  667. startActivity(updateAccountCredentials);
  668. }
  669. private void onCreateShareViaLinkOperationFinish(CreateShareViaLinkOperation operation,
  670. RemoteOperationResult result) {
  671. if (result.isSuccess()) {
  672. updateFileFromDB();
  673. Intent sendIntent = operation.getSendIntentWithSubject(this);
  674. if (sendIntent != null) {
  675. startActivity(sendIntent);
  676. }
  677. } else {
  678. // Detect Failure (403) --> needs Password
  679. if (result.getCode() == ResultCode.SHARE_FORBIDDEN) {
  680. String password = operation.getPassword();
  681. if ((password == null || password.length() == 0) &&
  682. getCapabilities().getFilesSharingPublicEnabled().isUnknown())
  683. {
  684. // Was tried without password, but not sure that it's optional. Try with password.
  685. // Try with password before giving up.
  686. // See also ShareFileFragment#OnShareViaLinkListener
  687. SharePasswordDialogFragment dialog =
  688. SharePasswordDialogFragment.newInstance(new OCFile(operation.getPath()), true);
  689. dialog.show(getSupportFragmentManager(), DIALOG_SHARE_PASSWORD);
  690. } else {
  691. Toast t = Toast.makeText(this,
  692. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  693. Toast.LENGTH_LONG);
  694. t.show();
  695. }
  696. } else {
  697. Toast t = Toast.makeText(this,
  698. ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources()),
  699. Toast.LENGTH_LONG);
  700. t.show();
  701. }
  702. }
  703. }
  704. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation,
  705. RemoteOperationResult result) {
  706. OCFile syncedFile = operation.getLocalFile();
  707. if (!result.isSuccess()) {
  708. if (result.getCode() == ResultCode.SYNC_CONFLICT) {
  709. Intent i = new Intent(this, ConflictsResolveActivity.class);
  710. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, syncedFile);
  711. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, getAccount());
  712. startActivity(i);
  713. }
  714. } else {
  715. if (!operation.transferWasRequested()) {
  716. Toast msg = Toast.makeText(this, ErrorMessageAdapter.getErrorCauseMessage(result,
  717. operation, getResources()), Toast.LENGTH_LONG);
  718. msg.show();
  719. }
  720. invalidateOptionsMenu();
  721. }
  722. }
  723. protected void updateFileFromDB(){
  724. OCFile file = getFile();
  725. if (file != null) {
  726. file = getStorageManager().getFileByPath(file.getRemotePath());
  727. setFile(file);
  728. }
  729. }
  730. /**
  731. * Show loading dialog
  732. */
  733. public void showLoadingDialog(String message) {
  734. // Construct dialog
  735. LoadingDialog loading = new LoadingDialog(message);
  736. FragmentManager fm = getSupportFragmentManager();
  737. FragmentTransaction ft = fm.beginTransaction();
  738. loading.show(ft, DIALOG_WAIT_TAG);
  739. }
  740. /**
  741. * Dismiss loading dialog
  742. */
  743. public void dismissLoadingDialog() {
  744. Fragment frag = getSupportFragmentManager().findFragmentByTag(DIALOG_WAIT_TAG);
  745. if (frag != null) {
  746. LoadingDialog loading = (LoadingDialog) frag;
  747. loading.dismiss();
  748. }
  749. }
  750. private void doOnResumeAndBound() {
  751. mOperationsServiceBinder.addOperationListener(FileActivity.this, mHandler);
  752. long waitingForOpId = mFileOperationsHelper.getOpIdWaitingFor();
  753. if (waitingForOpId <= Integer.MAX_VALUE) {
  754. boolean wait = mOperationsServiceBinder.dispatchResultIfFinished((int)waitingForOpId,
  755. this);
  756. if (!wait ) {
  757. dismissLoadingDialog();
  758. }
  759. }
  760. }
  761. /**
  762. * Implements callback methods for service binding. Passed as a parameter to {
  763. */
  764. private class OperationsServiceConnection implements ServiceConnection {
  765. @Override
  766. public void onServiceConnected(ComponentName component, IBinder service) {
  767. if (component.equals(new ComponentName(FileActivity.this, OperationsService.class))) {
  768. Log_OC.d(TAG, "Operations service connected");
  769. mOperationsServiceBinder = (OperationsServiceBinder) service;
  770. /*if (!mOperationsServiceBinder.isPerformingBlockingOperation()) {
  771. dismissLoadingDialog();
  772. }*/
  773. if (mResumed) {
  774. doOnResumeAndBound();
  775. }
  776. } else {
  777. return;
  778. }
  779. }
  780. @Override
  781. public void onServiceDisconnected(ComponentName component) {
  782. if (component.equals(new ComponentName(FileActivity.this, OperationsService.class))) {
  783. Log_OC.d(TAG, "Operations service disconnected");
  784. mOperationsServiceBinder = null;
  785. // TODO whatever could be waiting for the service is unbound
  786. }
  787. }
  788. }
  789. @Override
  790. public FileDownloaderBinder getFileDownloaderBinder() {
  791. return mDownloaderBinder;
  792. }
  793. @Override
  794. public FileUploaderBinder getFileUploaderBinder() {
  795. return mUploaderBinder;
  796. }
  797. public void restart(){
  798. Intent i = new Intent(this, FileDisplayActivity.class);
  799. i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  800. startActivity(i);
  801. }
  802. // TODO re-enable when "Accounts" is available in Navigation Drawer
  803. // public void closeDrawer() {
  804. // mDrawerLayout.closeDrawers();
  805. // }
  806. public void allFilesOption(){
  807. restart();
  808. }
  809. private class DrawerItemClickListener implements ListView.OnItemClickListener {
  810. @Override
  811. public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
  812. // TODO re-enable when "Accounts" is available in Navigation Drawer
  813. // if (mShowAccounts && position > 0){
  814. // position = position - 1;
  815. // }
  816. switch (position){
  817. // TODO re-enable when "Accounts" is available in Navigation Drawer
  818. // case 0: // Accounts
  819. // mShowAccounts = !mShowAccounts;
  820. // mNavigationDrawerAdapter.setShowAccounts(mShowAccounts);
  821. // mNavigationDrawerAdapter.notifyDataSetChanged();
  822. // break;
  823. case 0: // All Files
  824. allFilesOption();
  825. mDrawerLayout.closeDrawers();
  826. break;
  827. // TODO Enable when "On Device" is recovered ?
  828. // case 2:
  829. // MainApp.showOnlyFilesOnDevice(true);
  830. // mDrawerLayout.closeDrawers();
  831. // break;
  832. case 1: // Settings
  833. Intent settingsIntent = new Intent(getApplicationContext(),
  834. Preferences.class);
  835. startActivity(settingsIntent);
  836. mDrawerLayout.closeDrawers();
  837. break;
  838. case 2: // Uploads
  839. Intent uploadListIntent = new Intent(getApplicationContext(),
  840. UploadListActivity.class);
  841. uploadListIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  842. startActivity(uploadListIntent);
  843. mDrawerLayout.closeDrawers();
  844. break;
  845. case 3: // Logs
  846. Intent loggerIntent = new Intent(getApplicationContext(),
  847. LogHistoryActivity.class);
  848. startActivity(loggerIntent);
  849. mDrawerLayout.closeDrawers();
  850. break;
  851. }
  852. }
  853. }
  854. }