ReceiveExternalFilesActivity.java 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @author masensio
  6. * @author Juan Carlos González Cabrero
  7. * @author David A. Velasco
  8. * Copyright (C) 2012 Bartek Przybylski
  9. * Copyright (C) 2016 ownCloud Inc.
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. package com.owncloud.android.ui.activity;
  24. import android.accounts.Account;
  25. import android.accounts.AccountManager;
  26. import android.accounts.AuthenticatorException;
  27. import android.app.Activity;
  28. import android.app.Dialog;
  29. import android.content.BroadcastReceiver;
  30. import android.content.Context;
  31. import android.content.Intent;
  32. import android.content.IntentFilter;
  33. import android.content.res.Resources.NotFoundException;
  34. import android.graphics.PorterDuff;
  35. import android.graphics.drawable.ColorDrawable;
  36. import android.graphics.drawable.Drawable;
  37. import android.os.Bundle;
  38. import android.os.Handler;
  39. import android.os.Looper;
  40. import android.os.Parcelable;
  41. import android.support.annotation.DrawableRes;
  42. import android.support.annotation.NonNull;
  43. import android.support.annotation.Nullable;
  44. import android.support.annotation.StringRes;
  45. import android.support.v4.app.DialogFragment;
  46. import android.support.v4.app.FragmentManager;
  47. import android.support.v4.content.ContextCompat;
  48. import android.support.v4.graphics.drawable.DrawableCompat;
  49. import android.support.v4.view.MenuItemCompat;
  50. import android.support.v7.app.ActionBar;
  51. import android.support.v7.app.AlertDialog;
  52. import android.support.v7.app.AlertDialog.Builder;
  53. import android.support.v7.widget.SearchView;
  54. import android.text.format.DateFormat;
  55. import android.view.LayoutInflater;
  56. import android.view.Menu;
  57. import android.view.MenuInflater;
  58. import android.view.MenuItem;
  59. import android.view.View;
  60. import android.view.WindowManager.LayoutParams;
  61. import android.widget.AdapterView;
  62. import android.widget.AdapterView.OnItemClickListener;
  63. import android.widget.ArrayAdapter;
  64. import android.widget.Button;
  65. import android.widget.EditText;
  66. import android.widget.ImageView;
  67. import android.widget.LinearLayout;
  68. import android.widget.ListView;
  69. import android.widget.ProgressBar;
  70. import android.widget.Spinner;
  71. import android.widget.TextView;
  72. import com.owncloud.android.MainApp;
  73. import com.owncloud.android.R;
  74. import com.owncloud.android.datamodel.OCFile;
  75. import com.owncloud.android.db.PreferenceManager;
  76. import com.owncloud.android.files.services.FileUploader;
  77. import com.owncloud.android.lib.common.operations.RemoteOperation;
  78. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  79. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  80. import com.owncloud.android.lib.common.utils.Log_OC;
  81. import com.owncloud.android.operations.CreateFolderOperation;
  82. import com.owncloud.android.operations.RefreshFolderOperation;
  83. import com.owncloud.android.operations.UploadFileOperation;
  84. import com.owncloud.android.syncadapter.FileSyncAdapter;
  85. import com.owncloud.android.ui.adapter.AccountListAdapter;
  86. import com.owncloud.android.ui.adapter.AccountListItem;
  87. import com.owncloud.android.ui.adapter.UploaderAdapter;
  88. import com.owncloud.android.ui.asynctasks.CopyAndUploadContentUrisTask;
  89. import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
  90. import com.owncloud.android.ui.dialog.CreateFolderDialogFragment;
  91. import com.owncloud.android.ui.dialog.SortingOrderDialogFragment;
  92. import com.owncloud.android.ui.fragment.TaskRetainerFragment;
  93. import com.owncloud.android.ui.helpers.UriUploader;
  94. import com.owncloud.android.utils.DataHolderUtil;
  95. import com.owncloud.android.utils.DisplayUtils;
  96. import com.owncloud.android.utils.ErrorMessageAdapter;
  97. import com.owncloud.android.utils.FileSortOrder;
  98. import com.owncloud.android.utils.ThemeUtils;
  99. import java.io.File;
  100. import java.io.FileWriter;
  101. import java.io.IOException;
  102. import java.io.UnsupportedEncodingException;
  103. import java.lang.reflect.Method;
  104. import java.util.ArrayList;
  105. import java.util.Arrays;
  106. import java.util.Calendar;
  107. import java.util.HashMap;
  108. import java.util.LinkedList;
  109. import java.util.List;
  110. import java.util.Stack;
  111. import java.util.Vector;
  112. import static com.owncloud.android.db.PreferenceManager.getSortOrder;
  113. /**
  114. * This can be used to upload things to an ownCloud instance.
  115. */
  116. public class ReceiveExternalFilesActivity extends FileActivity
  117. implements OnItemClickListener, View.OnClickListener, CopyAndUploadContentUrisTask.OnCopyTmpFilesTaskListener,
  118. SortingOrderDialogFragment.OnSortingOrderListener {
  119. private static final String TAG = ReceiveExternalFilesActivity.class.getSimpleName();
  120. private static final String FTAG_ERROR_FRAGMENT = "ERROR_FRAGMENT";
  121. public static final String TEXT_FILE_SUFFIX = ".txt";
  122. public static final String URL_FILE_SUFFIX = ".url";
  123. public static final String WEBLOC_FILE_SUFFIX = ".webloc";
  124. public static final String DESKTOP_FILE_SUFFIX = ".desktop";
  125. private AccountManager mAccountManager;
  126. private Stack<String> mParents = new Stack<>();
  127. private ArrayList<Parcelable> mStreamsToUpload;
  128. private String mUploadPath;
  129. private OCFile mFile;
  130. private SyncBroadcastReceiver mSyncBroadcastReceiver;
  131. private boolean mSyncInProgress = false;
  132. private final static int REQUEST_CODE__SETUP_ACCOUNT = REQUEST_CODE__LAST_SHARED + 1;
  133. private final static String KEY_PARENTS = "PARENTS";
  134. private final static String KEY_FILE = "FILE";
  135. private boolean mUploadFromTmpFile = false;
  136. private String mSubjectText;
  137. private String mExtraText;
  138. private final static String FILENAME_ENCODING = "UTF-8";
  139. private LinearLayout mEmptyListContainer;
  140. private TextView mEmptyListMessage;
  141. private TextView mEmptyListHeadline;
  142. private ImageView mEmptyListIcon;
  143. private ProgressBar mEmptyListProgress;
  144. @Override
  145. protected void onCreate(Bundle savedInstanceState) {
  146. prepareStreamsToUpload();
  147. if (savedInstanceState != null) {
  148. String parentPath = savedInstanceState.getString(KEY_PARENTS);
  149. if (parentPath != null) {
  150. mParents.addAll(Arrays.asList(parentPath.split("/")));
  151. }
  152. mFile = savedInstanceState.getParcelable(KEY_FILE);
  153. }
  154. mAccountManager = (AccountManager) getSystemService(Context.ACCOUNT_SERVICE);
  155. super.onCreate(savedInstanceState);
  156. // Listen for sync messages
  157. IntentFilter syncIntentFilter = new IntentFilter(RefreshFolderOperation.
  158. EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
  159. syncIntentFilter.addAction(RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED);
  160. mSyncBroadcastReceiver = new SyncBroadcastReceiver();
  161. registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
  162. // Init Fragment without UI to retain AsyncTask across configuration changes
  163. FragmentManager fm = getSupportFragmentManager();
  164. TaskRetainerFragment taskRetainerFragment =
  165. (TaskRetainerFragment) fm.findFragmentByTag(TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT);
  166. if (taskRetainerFragment == null) {
  167. taskRetainerFragment = new TaskRetainerFragment();
  168. fm.beginTransaction()
  169. .add(taskRetainerFragment, TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT).commit();
  170. } // else, Fragment already created and retained across configuration change
  171. }
  172. @Override
  173. protected void setAccount(Account account, boolean savedAccount) {
  174. Account[] accounts = mAccountManager.getAccountsByType(MainApp.getAccountType(this));
  175. if (accounts.length == 0) {
  176. Log_OC.i(TAG, "No ownCloud account is available");
  177. DialogNoAccount dialog = new DialogNoAccount();
  178. dialog.show(getSupportFragmentManager(), null);
  179. } else if (!savedAccount) {
  180. setAccount(accounts[0]);
  181. }
  182. if (!somethingToUpload()) {
  183. showErrorDialog(
  184. R.string.uploader_error_message_no_file_to_upload,
  185. R.string.uploader_error_title_no_file_to_upload
  186. );
  187. }
  188. super.setAccount(account, savedAccount);
  189. }
  190. private void showAccountChooserDialog() {
  191. DialogMultipleAccount dialog = new DialogMultipleAccount();
  192. dialog.show(getSupportFragmentManager(), null);
  193. }
  194. private Activity getActivity() {
  195. return this;
  196. }
  197. @Override
  198. protected void onAccountSet(boolean stateWasRecovered) {
  199. super.onAccountSet(mAccountWasRestored);
  200. initTargetFolder();
  201. populateDirectoryList();
  202. }
  203. @Override
  204. protected void onSaveInstanceState(Bundle outState) {
  205. Log_OC.d(TAG, "onSaveInstanceState() start");
  206. super.onSaveInstanceState(outState);
  207. outState.putString(KEY_PARENTS, generatePath(mParents));
  208. outState.putParcelable(KEY_FILE, mFile);
  209. outState.putParcelable(FileActivity.EXTRA_ACCOUNT, getAccount());
  210. Log_OC.d(TAG, "onSaveInstanceState() end");
  211. }
  212. @Override
  213. protected void onDestroy() {
  214. if (mSyncBroadcastReceiver != null) {
  215. unregisterReceiver(mSyncBroadcastReceiver);
  216. }
  217. super.onDestroy();
  218. }
  219. @Override
  220. public void onSortingOrderChosen(FileSortOrder newSortOrder) {
  221. PreferenceManager.setSortOrder(getBaseContext(), mFile, newSortOrder);
  222. populateDirectoryList();
  223. }
  224. public static class DialogNoAccount extends DialogFragment {
  225. @NonNull
  226. @Override
  227. public Dialog onCreateDialog(Bundle savedInstanceState) {
  228. AlertDialog.Builder builder = new Builder(getActivity());
  229. builder.setIcon(R.drawable.ic_warning);
  230. builder.setTitle(R.string.uploader_wrn_no_account_title);
  231. builder.setMessage(String.format(getString(R.string.uploader_wrn_no_account_text),
  232. getString(R.string.app_name)));
  233. builder.setCancelable(false);
  234. builder.setPositiveButton(R.string.uploader_wrn_no_account_setup_btn_text, (dialog, which) -> {
  235. // using string value since in API7 this
  236. // constant is not defined
  237. // in API7 < this constant is defined in
  238. // Settings.ADD_ACCOUNT_SETTINGS
  239. // and Settings.EXTRA_AUTHORITIES
  240. Intent intent = new Intent(android.provider.Settings.ACTION_ADD_ACCOUNT);
  241. intent.putExtra("authorities", new String[]{MainApp.getAuthTokenType()});
  242. startActivityForResult(intent, REQUEST_CODE__SETUP_ACCOUNT);
  243. });
  244. builder.setNegativeButton(R.string.uploader_wrn_no_account_quit_btn_text, (dialog, which) -> getActivity().finish());
  245. return builder.create();
  246. }
  247. }
  248. public static class DialogMultipleAccount extends DialogFragment {
  249. private AccountListAdapter mAccountListAdapter;
  250. private Drawable mTintedCheck;
  251. @NonNull
  252. @Override
  253. public Dialog onCreateDialog(Bundle savedInstanceState) {
  254. final ReceiveExternalFilesActivity parent = (ReceiveExternalFilesActivity) getActivity();
  255. AlertDialog.Builder builder = new Builder(parent);
  256. mTintedCheck = DrawableCompat.wrap(ContextCompat.getDrawable(parent, R.drawable.account_circle_white));
  257. int tint = ThemeUtils.primaryColor(getContext());
  258. DrawableCompat.setTint(mTintedCheck, tint);
  259. mAccountListAdapter = new AccountListAdapter(parent, getAccountListItems(parent), mTintedCheck);
  260. builder.setTitle(R.string.common_choose_account);
  261. builder.setAdapter(mAccountListAdapter, (dialog, which) -> {
  262. final ReceiveExternalFilesActivity parent1 = (ReceiveExternalFilesActivity) getActivity();
  263. parent1.setAccount(parent1.mAccountManager.getAccountsByType(
  264. MainApp.getAccountType(getActivity()))[which], false);
  265. parent1.onAccountSet(parent1.mAccountWasRestored);
  266. dialog.dismiss();
  267. });
  268. builder.setCancelable(true);
  269. return builder.create();
  270. }
  271. /**
  272. * creates the account list items list including the add-account action in case multiaccount_support is enabled.
  273. *
  274. * @return list of account list items
  275. */
  276. private ArrayList<AccountListItem> getAccountListItems(ReceiveExternalFilesActivity activity) {
  277. Account[] accountList = activity.mAccountManager.getAccountsByType(MainApp.getAccountType(getActivity()));
  278. ArrayList<AccountListItem> adapterAccountList = new ArrayList<>(accountList.length);
  279. for (Account account : accountList) {
  280. adapterAccountList.add(new AccountListItem(account));
  281. }
  282. return adapterAccountList;
  283. }
  284. }
  285. public static class DialogInputUploadFilename extends DialogFragment {
  286. private static final String KEY_SUBJECT_TEXT = "SUBJECT_TEXT";
  287. private static final String KEY_EXTRA_TEXT = "EXTRA_TEXT";
  288. private static final int CATEGORY_URL = 1;
  289. private static final int CATEGORY_MAPS_URL = 2;
  290. private List<String> mFilenameBase;
  291. private List<String> mFilenameSuffix;
  292. private List<String> mText;
  293. private int mFileCategory;
  294. private Spinner mSpinner;
  295. public static DialogInputUploadFilename newInstance(String subjectText, String extraText) {
  296. DialogInputUploadFilename dialog = new DialogInputUploadFilename();
  297. Bundle args = new Bundle();
  298. args.putString(KEY_SUBJECT_TEXT, subjectText);
  299. args.putString(KEY_EXTRA_TEXT, extraText);
  300. dialog.setArguments(args);
  301. return dialog;
  302. }
  303. @NonNull
  304. @Override
  305. public Dialog onCreateDialog(Bundle savedInstanceState) {
  306. mFilenameBase = new ArrayList<>();
  307. mFilenameSuffix = new ArrayList<>();
  308. mText = new ArrayList<>();
  309. String subjectText = "";
  310. String extraText = "";
  311. if (getArguments() != null) {
  312. if (getArguments().getString(KEY_SUBJECT_TEXT) != null) {
  313. subjectText = getArguments().getString(KEY_SUBJECT_TEXT);
  314. }
  315. if (getArguments().getString(KEY_EXTRA_TEXT) != null) {
  316. extraText = getArguments().getString(KEY_EXTRA_TEXT);
  317. }
  318. }
  319. LayoutInflater layout = LayoutInflater.from(requireContext());
  320. View view = layout.inflate(R.layout.upload_file_dialog, null);
  321. ArrayAdapter<String> adapter
  322. = new ArrayAdapter<>(requireContext(), android.R.layout.simple_spinner_item);
  323. adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  324. int selectPos = 0;
  325. String filename = renameSafeFilename(subjectText);
  326. if (filename == null) {
  327. filename = "";
  328. }
  329. adapter.add(getString(R.string.upload_file_dialog_filetype_snippet_text));
  330. mText.add(extraText);
  331. mFilenameBase.add(filename);
  332. mFilenameSuffix.add(TEXT_FILE_SUFFIX);
  333. if (isIntentStartWithUrl(extraText)) {
  334. String str = getString(R.string.upload_file_dialog_filetype_internet_shortcut);
  335. mText.add(internetShortcutUrlText(extraText));
  336. mFilenameBase.add(filename);
  337. mFilenameSuffix.add(URL_FILE_SUFFIX);
  338. adapter.add(String.format(str,URL_FILE_SUFFIX));
  339. mText.add(internetShortcutWeblocText(extraText));
  340. mFilenameBase.add(filename);
  341. mFilenameSuffix.add(WEBLOC_FILE_SUFFIX);
  342. adapter.add(String.format(str,WEBLOC_FILE_SUFFIX));
  343. mText.add(internetShortcutDesktopText(extraText, filename));
  344. mFilenameBase.add(filename);
  345. mFilenameSuffix.add(DESKTOP_FILE_SUFFIX);
  346. adapter.add(String.format(str,DESKTOP_FILE_SUFFIX));
  347. selectPos = PreferenceManager.getUploadUrlFileExtensionUrlSelectedPos(getActivity());
  348. mFileCategory = CATEGORY_URL;
  349. } else if (isIntentFromGoogleMap(subjectText, extraText)) {
  350. String str = getString(R.string.upload_file_dialog_filetype_googlemap_shortcut);
  351. String texts[] = extraText.split("\n");
  352. mText.add(internetShortcutUrlText(texts[2]));
  353. mFilenameBase.add(texts[0]);
  354. mFilenameSuffix.add(URL_FILE_SUFFIX);
  355. adapter.add(String.format(str,URL_FILE_SUFFIX));
  356. mText.add(internetShortcutWeblocText(texts[2]));
  357. mFilenameBase.add(texts[0]);
  358. mFilenameSuffix.add(WEBLOC_FILE_SUFFIX);
  359. adapter.add(String.format(str,WEBLOC_FILE_SUFFIX));
  360. mText.add(internetShortcutDesktopText(texts[2], texts[0]));
  361. mFilenameBase.add(texts[0]);
  362. mFilenameSuffix.add(DESKTOP_FILE_SUFFIX);
  363. adapter.add(String.format(str,DESKTOP_FILE_SUFFIX));
  364. selectPos = PreferenceManager.getUploadMapFileExtensionUrlSelectedPos(getActivity());
  365. mFileCategory = CATEGORY_MAPS_URL;
  366. }
  367. final EditText userInput = view.findViewById(R.id.user_input);
  368. setFilename(userInput, selectPos);
  369. userInput.requestFocus();
  370. final Spinner spinner = view.findViewById(R.id.file_type);
  371. setupSpinner(adapter, selectPos, userInput, spinner);
  372. if (adapter.getCount() == 1) {
  373. TextView label = view.findViewById(R.id.label_file_type);
  374. label.setVisibility(View.GONE);
  375. spinner.setVisibility(View.GONE);
  376. }
  377. mSpinner = spinner;
  378. Dialog filenameDialog = createFilenameDialog(view, userInput, spinner);
  379. if (filenameDialog.getWindow() != null) {
  380. filenameDialog.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
  381. }
  382. return filenameDialog;
  383. }
  384. private void setupSpinner(ArrayAdapter<String> adapter, int selectPos, final EditText userInput, Spinner spinner) {
  385. spinner.setAdapter(adapter);
  386. spinner.setSelection(selectPos, false);
  387. spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
  388. @Override
  389. public void onItemSelected(AdapterView parent, View view, int position, long id) {
  390. Spinner spinner = (Spinner) parent;
  391. int selectPos = spinner.getSelectedItemPosition();
  392. setFilename(userInput, selectPos);
  393. saveSelection(selectPos);
  394. }
  395. @Override
  396. public void onNothingSelected(AdapterView<?> parent) {
  397. // nothing to do
  398. }
  399. });
  400. }
  401. @NonNull
  402. private Dialog createFilenameDialog(View view, final EditText userInput, final Spinner spinner) {
  403. Builder builder = new Builder(requireActivity());
  404. builder.setView(view);
  405. builder.setTitle(R.string.upload_file_dialog_title);
  406. builder.setPositiveButton(R.string.common_ok, (dialog, id) -> {
  407. int selectPos = spinner.getSelectedItemPosition();
  408. // verify if file name has suffix
  409. String filename = userInput.getText().toString();
  410. String suffix = mFilenameSuffix.get(selectPos);
  411. if (!filename.endsWith(suffix)) {
  412. filename += suffix;
  413. }
  414. File file = createTempFile(mText.get(selectPos));
  415. if (file == null) {
  416. getActivity().finish();
  417. } else {
  418. String tmpName = file.getAbsolutePath();
  419. ((ReceiveExternalFilesActivity) getActivity()).uploadFile(tmpName, filename);
  420. }
  421. });
  422. builder.setNegativeButton(R.string.common_cancel, (dialog, id) -> dialog.cancel());
  423. return builder.create();
  424. }
  425. public void onPause() {
  426. hideSpinnerDropDown(mSpinner);
  427. super.onPause();
  428. }
  429. private void saveSelection(int selectPos) {
  430. switch (mFileCategory) {
  431. case CATEGORY_URL:
  432. PreferenceManager.setUploadUrlFileExtensionUrlSelectedPos(getActivity(), selectPos);
  433. break;
  434. case CATEGORY_MAPS_URL:
  435. PreferenceManager.setUploadMapFileExtensionUrlSelectedPos(getActivity(), selectPos);
  436. break;
  437. default:
  438. Log_OC.d(TAG, "Simple text snippet only: no selection to be persisted");
  439. break;
  440. }
  441. }
  442. private void hideSpinnerDropDown(Spinner spinner) {
  443. try {
  444. Method method = Spinner.class.getDeclaredMethod("onDetachedFromWindow");
  445. method.setAccessible(true);
  446. method.invoke(spinner);
  447. } catch (Exception e) {
  448. Log_OC.e(TAG, "onDetachedFromWindow", e);
  449. }
  450. }
  451. private void setFilename(EditText inputText, int selectPos)
  452. {
  453. String filename = mFilenameBase.get(selectPos) + mFilenameSuffix.get(selectPos);
  454. inputText.setText(filename);
  455. int selectionStart = 0;
  456. int extensionStart = filename.lastIndexOf(".");
  457. int selectionEnd = (extensionStart >= 0) ? extensionStart : filename.length();
  458. if (selectionEnd >= 0) {
  459. inputText.setSelection(
  460. Math.min(selectionStart, selectionEnd),
  461. Math.max(selectionStart, selectionEnd));
  462. }
  463. }
  464. private boolean isIntentFromGoogleMap(String subjectText, String extraText) {
  465. String texts[] = extraText.split("\n");
  466. if (texts.length != 3)
  467. return false;
  468. if (texts[0].length() == 0 || !subjectText.equals(texts[0]))
  469. return false;
  470. return texts[2].startsWith("https://goo.gl/maps/");
  471. }
  472. private boolean isIntentStartWithUrl(String extraText) {
  473. return (extraText.startsWith("http://") || extraText.startsWith("https://"));
  474. }
  475. @Nullable
  476. private String renameSafeFilename(String filename) {
  477. String safeFilename = filename;
  478. safeFilename = safeFilename.replaceAll("[?]", "_");
  479. safeFilename = safeFilename.replaceAll("\"", "_");
  480. safeFilename = safeFilename.replaceAll("/", "_");
  481. safeFilename = safeFilename.replaceAll("<", "_");
  482. safeFilename = safeFilename.replaceAll(">", "_");
  483. safeFilename = safeFilename.replaceAll("[*]", "_");
  484. safeFilename = safeFilename.replaceAll("[|]", "_");
  485. safeFilename = safeFilename.replaceAll(";", "_");
  486. safeFilename = safeFilename.replaceAll("=", "_");
  487. safeFilename = safeFilename.replaceAll(",", "_");
  488. try {
  489. int maxLength = 128;
  490. if (safeFilename.getBytes(FILENAME_ENCODING).length > maxLength) {
  491. safeFilename = new String(safeFilename.getBytes(FILENAME_ENCODING), 0, maxLength, FILENAME_ENCODING);
  492. }
  493. } catch (UnsupportedEncodingException e) {
  494. Log_OC.e(TAG, "rename failed ", e);
  495. return null;
  496. }
  497. return safeFilename;
  498. }
  499. private String internetShortcutUrlText(String url) {
  500. return "[InternetShortcut]\r\n" +
  501. "URL=" + url + "\r\n";
  502. }
  503. private String internetShortcutWeblocText(String url) {
  504. return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
  505. "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n" +
  506. "<plist version=\"1.0\">\n" +
  507. "<dict>\n" +
  508. "<key>URL</key>\n" +
  509. "<string>" + url + "</string>\n" +
  510. "</dict>\n" +
  511. "</plist>\n";
  512. }
  513. private String internetShortcutDesktopText(String url, String filename) {
  514. return "[Desktop Entry]\n" +
  515. "Encoding=UTF-8\n" +
  516. "Name=" + filename + "\n" +
  517. "Type=Link\n" +
  518. "URL=" + url + "\n" +
  519. "Icon=text-html";
  520. }
  521. @Nullable
  522. private File createTempFile(String text) {
  523. File file = new File(getActivity().getCacheDir(), "tmp.tmp");
  524. FileWriter fw = null;
  525. try {
  526. fw = new FileWriter(file);
  527. fw.write(text);
  528. } catch (IOException e) {
  529. Log_OC.d(TAG, "Error ", e);
  530. return null;
  531. } finally {
  532. if (fw != null) {
  533. try {
  534. fw.close();
  535. } catch (IOException e) {
  536. Log_OC.d(TAG, "Error closing file writer ", e);
  537. }
  538. }
  539. }
  540. return file;
  541. }
  542. }
  543. @Override
  544. public void onBackPressed() {
  545. if (mParents.size() <= 1) {
  546. super.onBackPressed();
  547. } else {
  548. mParents.pop();
  549. String full_path = generatePath(mParents);
  550. startSyncFolderOperation(getStorageManager().getFileByPath(full_path));
  551. populateDirectoryList();
  552. }
  553. }
  554. @Override
  555. public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
  556. // click on folder in the list
  557. Log_OC.d(TAG, "on item click");
  558. List<OCFile> tmpFiles = getStorageManager().getFolderContent(mFile, false);
  559. tmpFiles = sortFileList(tmpFiles);
  560. if (tmpFiles.size() <= 0) {
  561. return;
  562. }
  563. // filter on dirtype
  564. Vector<OCFile> files = new Vector<>();
  565. files.addAll(tmpFiles);
  566. if (files.size() < position) {
  567. throw new IndexOutOfBoundsException("Incorrect item selected");
  568. }
  569. if (files.get(position).isFolder()){
  570. OCFile folderToEnter = files.get(position);
  571. startSyncFolderOperation(folderToEnter);
  572. mParents.push(folderToEnter.getFileName());
  573. populateDirectoryList();
  574. }
  575. }
  576. @Override
  577. public void onClick(View v) {
  578. // click on button
  579. switch (v.getId()) {
  580. case R.id.uploader_choose_folder:
  581. mUploadPath = ""; // first element in mParents is root dir, represented by "";
  582. // init mUploadPath with "/" results in a "//" prefix
  583. for (String p : mParents) {
  584. mUploadPath += p + OCFile.PATH_SEPARATOR;
  585. }
  586. if (mUploadFromTmpFile) {
  587. DialogInputUploadFilename dialog = DialogInputUploadFilename.newInstance(mSubjectText, mExtraText);
  588. dialog.show(getSupportFragmentManager(), null);
  589. } else {
  590. Log_OC.d(TAG, "Uploading file to dir " + mUploadPath);
  591. uploadFiles();
  592. }
  593. break;
  594. case R.id.uploader_cancel:
  595. finish();
  596. break;
  597. default:
  598. throw new IllegalArgumentException("Wrong element clicked");
  599. }
  600. }
  601. @Override
  602. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  603. super.onActivityResult(requestCode, resultCode, data);
  604. Log_OC.i(TAG, "result received. req: " + requestCode + " res: " + resultCode);
  605. if (requestCode == REQUEST_CODE__SETUP_ACCOUNT) {
  606. if (resultCode == RESULT_CANCELED) {
  607. finish();
  608. }
  609. Account[] accounts = mAccountManager.getAccountsByType(MainApp.getAuthTokenType());
  610. if (accounts.length == 0) {
  611. DialogNoAccount dialog = new DialogNoAccount();
  612. dialog.show(getSupportFragmentManager(), null);
  613. } else {
  614. // there is no need for checking for is there more then one
  615. // account at this point
  616. // since account setup can set only one account at time
  617. setAccount(accounts[0]);
  618. populateDirectoryList();
  619. }
  620. }
  621. }
  622. private void setupActionBarSubtitle() {
  623. if (isHaveMultipleAccount()) {
  624. ActionBar actionBar = getSupportActionBar();
  625. if (actionBar != null) {
  626. actionBar.setSubtitle(getAccount().name);
  627. }
  628. }
  629. }
  630. private void populateDirectoryList() {
  631. setContentView(R.layout.uploader_layout);
  632. setupEmptyList();
  633. setupToolbar();
  634. ActionBar actionBar = getSupportActionBar();
  635. setupActionBarSubtitle();
  636. ListView mListView = findViewById(android.R.id.list);
  637. String current_dir = mParents.peek();
  638. boolean notRoot = (mParents.size() > 1);
  639. if (actionBar != null) {
  640. if ("".equals(current_dir)) {
  641. ThemeUtils.setColoredTitle(actionBar, R.string.uploader_top_message, this);
  642. } else {
  643. ThemeUtils.setColoredTitle(actionBar, current_dir, this);
  644. }
  645. actionBar.setDisplayHomeAsUpEnabled(notRoot);
  646. actionBar.setHomeButtonEnabled(notRoot);
  647. }
  648. String full_path = generatePath(mParents);
  649. Log_OC.d(TAG, "Populating view with content of : " + full_path);
  650. mFile = getStorageManager().getFileByPath(full_path);
  651. if (mFile != null) {
  652. List<OCFile> files = getStorageManager().getFolderContent(mFile, false);
  653. if (files.size() == 0) {
  654. setMessageForEmptyList(R.string.file_list_empty_headline, R.string.empty,
  655. R.drawable.ic_list_empty_upload);
  656. } else {
  657. mEmptyListContainer.setVisibility(View.GONE);
  658. files = sortFileList(files);
  659. List<HashMap<String, Object>> data = new LinkedList<>();
  660. for (OCFile f : files) {
  661. HashMap<String, Object> h = new HashMap<>();
  662. h.put("dirname", f);
  663. data.add(h);
  664. }
  665. UploaderAdapter sa = new UploaderAdapter(this,
  666. data,
  667. R.layout.uploader_list_item_layout,
  668. new String[]{"dirname"},
  669. new int[]{R.id.filename},
  670. getStorageManager(), getAccount());
  671. mListView.setAdapter(sa);
  672. }
  673. Button btnChooseFolder = findViewById(R.id.uploader_choose_folder);
  674. btnChooseFolder.setOnClickListener(this);
  675. btnChooseFolder.getBackground().setColorFilter(ThemeUtils.primaryColor(getAccount(), true, this),
  676. PorterDuff.Mode.SRC_ATOP);
  677. btnChooseFolder.setTextColor(ThemeUtils.fontColor(this));
  678. if (getSupportActionBar() != null) {
  679. getSupportActionBar().setBackgroundDrawable(new ColorDrawable(
  680. ThemeUtils.primaryColor(getAccount(), false, this)));
  681. }
  682. ThemeUtils.colorStatusBar(this, ThemeUtils.primaryDarkColor(getAccount(), this));
  683. ThemeUtils.colorToolbarProgressBar(this, ThemeUtils.primaryColor(getAccount(), false, this));
  684. Drawable backArrow = getResources().getDrawable(R.drawable.ic_arrow_back);
  685. if (actionBar != null) {
  686. actionBar.setHomeAsUpIndicator(ThemeUtils.tintDrawable(backArrow, ThemeUtils.fontColor(this)));
  687. }
  688. Button btnNewFolder = findViewById(R.id.uploader_cancel);
  689. btnNewFolder.setOnClickListener(this);
  690. mListView.setOnItemClickListener(this);
  691. }
  692. }
  693. protected void setupEmptyList() {
  694. mEmptyListContainer = findViewById(R.id.empty_list_view);
  695. mEmptyListMessage = findViewById(R.id.empty_list_view_text);
  696. mEmptyListHeadline = findViewById(R.id.empty_list_view_headline);
  697. mEmptyListIcon = findViewById(R.id.empty_list_icon);
  698. mEmptyListProgress = findViewById(R.id.empty_list_progress);
  699. mEmptyListProgress.getIndeterminateDrawable().setColorFilter(ThemeUtils.primaryColor(this),
  700. PorterDuff.Mode.SRC_IN);
  701. }
  702. public void setMessageForEmptyList(@StringRes final int headline, @StringRes final int message,
  703. @DrawableRes final int icon) {
  704. new Handler(Looper.getMainLooper()).post(() -> {
  705. if (mEmptyListContainer != null && mEmptyListMessage != null) {
  706. mEmptyListHeadline.setText(headline);
  707. mEmptyListMessage.setText(message);
  708. mEmptyListIcon.setImageDrawable(ThemeUtils.tintDrawable(icon, ThemeUtils.primaryColor(this, true)));
  709. mEmptyListIcon.setVisibility(View.VISIBLE);
  710. mEmptyListProgress.setVisibility(View.GONE);
  711. mEmptyListMessage.setVisibility(View.VISIBLE);
  712. }
  713. });
  714. }
  715. @Override
  716. public void onSavedCertificate() {
  717. startSyncFolderOperation(getCurrentDir());
  718. }
  719. private void startSyncFolderOperation(OCFile folder) {
  720. long currentSyncTime = System.currentTimeMillis();
  721. mSyncInProgress = true;
  722. // perform folder synchronization
  723. RemoteOperation syncFolderOp = new RefreshFolderOperation(folder,
  724. currentSyncTime,
  725. false,
  726. false,
  727. getStorageManager(),
  728. getAccount(),
  729. getApplicationContext()
  730. );
  731. syncFolderOp.execute(getAccount(), this, null, null);
  732. }
  733. private List<OCFile> sortFileList(List<OCFile> files) {
  734. FileSortOrder sortOrder = getSortOrder(this, mFile);
  735. return sortOrder.sortCloudFiles(files);
  736. }
  737. private String generatePath(Stack<String> dirs) {
  738. String full_path = "";
  739. for (String a : dirs) {
  740. full_path += a + "/";
  741. }
  742. return full_path;
  743. }
  744. private void prepareStreamsToUpload() {
  745. Intent intent = getIntent();
  746. if (Intent.ACTION_SEND.equals(intent.getAction())) {
  747. mStreamsToUpload = new ArrayList<>();
  748. mStreamsToUpload.add(intent.getParcelableExtra(Intent.EXTRA_STREAM));
  749. } else if (Intent.ACTION_SEND_MULTIPLE.equals(intent.getAction())) {
  750. mStreamsToUpload = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
  751. }
  752. if (mStreamsToUpload == null || mStreamsToUpload.size() == 0 ||
  753. mStreamsToUpload.get(0) == null) {
  754. mStreamsToUpload = null;
  755. saveTextsFromIntent(intent);
  756. }
  757. }
  758. private void saveTextsFromIntent(Intent intent) {
  759. if (!"text/plain".equals(intent.getType())) {
  760. return;
  761. }
  762. mUploadFromTmpFile = true;
  763. mSubjectText = intent.getStringExtra(Intent.EXTRA_SUBJECT);
  764. if (mSubjectText == null) {
  765. mSubjectText = intent.getStringExtra(Intent.EXTRA_TITLE);
  766. if (mSubjectText == null) {
  767. mSubjectText = DateFormat.format("yyyyMMdd_kkmmss", Calendar.getInstance()).toString();
  768. }
  769. }
  770. mExtraText = intent.getStringExtra(Intent.EXTRA_TEXT);
  771. }
  772. private boolean somethingToUpload() {
  773. return (mStreamsToUpload != null && mStreamsToUpload.size() > 0 && mStreamsToUpload.get(0) != null ||
  774. mUploadFromTmpFile);
  775. }
  776. public void uploadFile(String tmpName, String filename) {
  777. FileUploader.UploadRequester requester = new FileUploader.UploadRequester();
  778. requester.uploadNewFile(
  779. getBaseContext(),
  780. getAccount(),
  781. tmpName,
  782. mFile.getRemotePath() + filename,
  783. FileUploader.LOCAL_BEHAVIOUR_COPY,
  784. null,
  785. true,
  786. UploadFileOperation.CREATED_BY_USER,
  787. false,
  788. false
  789. );
  790. finish();
  791. }
  792. public void uploadFiles() {
  793. UriUploader uploader = new UriUploader(
  794. this,
  795. mStreamsToUpload,
  796. mUploadPath,
  797. getAccount(),
  798. FileUploader.LOCAL_BEHAVIOUR_FORGET,
  799. true, // Show waiting dialog while file is being copied from private storage
  800. this // Copy temp task listener
  801. );
  802. UriUploader.UriUploaderResultCode resultCode = uploader.uploadUris();
  803. // Save the path to shared preferences; even if upload is not possible, user chose the folder
  804. PreferenceManager.setLastUploadPath(this, mUploadPath);
  805. if (resultCode == UriUploader.UriUploaderResultCode.OK) {
  806. finish();
  807. } else {
  808. int messageResTitle = R.string.uploader_error_title_file_cannot_be_uploaded;
  809. int messageResId = R.string.common_error_unknown;
  810. if (resultCode == UriUploader.UriUploaderResultCode.ERROR_NO_FILE_TO_UPLOAD) {
  811. messageResId = R.string.uploader_error_message_no_file_to_upload;
  812. messageResTitle = R.string.uploader_error_title_no_file_to_upload;
  813. } else if (resultCode == UriUploader.UriUploaderResultCode.ERROR_READ_PERMISSION_NOT_GRANTED) {
  814. messageResId = R.string.uploader_error_message_read_permission_not_granted;
  815. } else if (resultCode == UriUploader.UriUploaderResultCode.ERROR_UNKNOWN) {
  816. messageResId = R.string.common_error_unknown;
  817. }
  818. showErrorDialog(
  819. messageResId,
  820. messageResTitle
  821. );
  822. }
  823. }
  824. @Override
  825. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  826. super.onRemoteOperationFinish(operation, result);
  827. if (operation instanceof CreateFolderOperation) {
  828. onCreateFolderOperationFinish((CreateFolderOperation) operation, result);
  829. }
  830. }
  831. /**
  832. * Updates the view associated to the activity after the finish of an operation
  833. * trying create a new folder
  834. *
  835. * @param operation Creation operation performed.
  836. * @param result Result of the creation.
  837. */
  838. private void onCreateFolderOperationFinish(CreateFolderOperation operation,
  839. RemoteOperationResult result) {
  840. if (result.isSuccess()) {
  841. String remotePath = operation.getRemotePath().substring(0, operation.getRemotePath().length() - 1);
  842. String newFolder = remotePath.substring(remotePath.lastIndexOf('/') + 1);
  843. mParents.push(newFolder);
  844. populateDirectoryList();
  845. } else {
  846. try {
  847. DisplayUtils.showSnackMessage(
  848. this, ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources())
  849. );
  850. } catch (NotFoundException e) {
  851. Log_OC.e(TAG, "Error while trying to show fail message ", e);
  852. }
  853. }
  854. }
  855. /**
  856. * Loads the target folder initialize shown to the user.
  857. * <p/>
  858. * The target account has to be chosen before this method is called.
  859. */
  860. private void initTargetFolder() {
  861. if (getStorageManager() == null) {
  862. throw new IllegalStateException("Do not call this method before initializing mStorageManager");
  863. }
  864. if (mParents.empty()) {
  865. String lastPath = PreferenceManager.getLastUploadPath(this);
  866. // "/" equals root-directory
  867. if ("/".equals(lastPath)) {
  868. mParents.add("");
  869. } else {
  870. String[] dir_names = lastPath.split("/");
  871. mParents.clear();
  872. mParents.addAll(Arrays.asList(dir_names));
  873. }
  874. }
  875. // make sure that path still exists, if it doesn't pop the stack and try the previous path
  876. while (!getStorageManager().fileExists(generatePath(mParents)) && mParents.size() > 1) {
  877. mParents.pop();
  878. }
  879. }
  880. private boolean isHaveMultipleAccount() {
  881. return mAccountManager.getAccountsByType(MainApp.getAccountType(this)).length > 1;
  882. }
  883. @Override
  884. public boolean onCreateOptionsMenu(Menu menu) {
  885. MenuInflater inflater = getMenuInflater();
  886. inflater.inflate(R.menu.receive_file_menu, menu);
  887. if (!isHaveMultipleAccount()) {
  888. MenuItem switchAccountMenu = menu.findItem(R.id.action_switch_account);
  889. switchAccountMenu.setVisible(false);
  890. }
  891. // tint search event
  892. final MenuItem item = menu.findItem(R.id.action_search);
  893. SearchView searchView = (SearchView) MenuItemCompat.getActionView(item);
  894. // hacky as no default way is provided
  895. int fontColor = ThemeUtils.fontColor(this);
  896. EditText editText = searchView.findViewById(android.support.v7.appcompat.R.id.search_src_text);
  897. editText.setHintTextColor(fontColor);
  898. editText.setTextColor(fontColor);
  899. ImageView searchClose = searchView.findViewById(android.support.v7.appcompat.R.id.search_close_btn);
  900. searchClose.setColorFilter(ThemeUtils.fontColor(this));
  901. ImageView searchButton = searchView.findViewById(android.support.v7.appcompat.R.id.search_button);
  902. searchButton.setColorFilter(ThemeUtils.fontColor(this));
  903. return true;
  904. }
  905. @Override
  906. public boolean onOptionsItemSelected(MenuItem item) {
  907. boolean retval = true;
  908. switch (item.getItemId()) {
  909. case R.id.action_create_dir:
  910. CreateFolderDialogFragment dialog = CreateFolderDialogFragment.newInstance(mFile);
  911. dialog.show(getSupportFragmentManager(), CreateFolderDialogFragment.CREATE_FOLDER_FRAGMENT);
  912. break;
  913. case android.R.id.home:
  914. if ((mParents.size() > 1)) {
  915. onBackPressed();
  916. }
  917. break;
  918. case R.id.action_switch_account:
  919. showAccountChooserDialog();
  920. break;
  921. case R.id.action_sort:
  922. SortingOrderDialogFragment mSortingOrderDialogFragment = SortingOrderDialogFragment.newInstance(
  923. getSortOrder(this, mFile));
  924. mSortingOrderDialogFragment.show(getSupportFragmentManager(),
  925. SortingOrderDialogFragment.SORTING_ORDER_FRAGMENT);
  926. break;
  927. default:
  928. retval = super.onOptionsItemSelected(item);
  929. break;
  930. }
  931. return retval;
  932. }
  933. private OCFile getCurrentFolder(){
  934. OCFile file = mFile;
  935. if (file != null) {
  936. if (file.isFolder()) {
  937. return file;
  938. } else if (getStorageManager() != null) {
  939. return getStorageManager().getFileByPath(file.getParentRemotePath());
  940. }
  941. }
  942. return null;
  943. }
  944. private void browseToRoot() {
  945. OCFile root = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  946. mFile = root;
  947. startSyncFolderOperation(root);
  948. }
  949. private class SyncBroadcastReceiver extends BroadcastReceiver {
  950. /**
  951. * {@link BroadcastReceiver} to enable syncing feedback in UI
  952. */
  953. @Override
  954. public void onReceive(Context context, Intent intent) {
  955. try {
  956. String event = intent.getAction();
  957. Log_OC.d(TAG, "Received broadcast " + event);
  958. String accountName = intent.getStringExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME);
  959. String syncFolderRemotePath = intent.getStringExtra(FileSyncAdapter.EXTRA_FOLDER_PATH);
  960. RemoteOperationResult syncResult = (RemoteOperationResult)
  961. DataHolderUtil.getInstance().retrieve(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
  962. boolean sameAccount = (getAccount() != null &&
  963. accountName.equals(getAccount().name) && getStorageManager() != null);
  964. if (sameAccount) {
  965. if (FileSyncAdapter.EVENT_FULL_SYNC_START.equals(event)) {
  966. mSyncInProgress = true;
  967. } else {
  968. OCFile currentFile = (mFile == null) ? null :
  969. getStorageManager().getFileByPath(mFile.getRemotePath());
  970. OCFile currentDir = (getCurrentFolder() == null) ? null :
  971. getStorageManager().getFileByPath(getCurrentFolder().getRemotePath());
  972. if (currentDir == null) {
  973. // current folder was removed from the server
  974. DisplayUtils.showSnackMessage(
  975. getActivity(),
  976. R.string.sync_current_folder_was_removed,
  977. getCurrentFolder().getFileName()
  978. );
  979. browseToRoot();
  980. } else {
  981. if (currentFile == null && !mFile.isFolder()) {
  982. // currently selected file was removed in the server, and now we know it
  983. currentFile = currentDir;
  984. }
  985. if (currentDir.getRemotePath().equals(syncFolderRemotePath)) {
  986. populateDirectoryList();
  987. }
  988. mFile = currentFile;
  989. }
  990. mSyncInProgress = (!FileSyncAdapter.EVENT_FULL_SYNC_END.equals(event) &&
  991. !RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED.equals(event));
  992. if (RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED.
  993. equals(event) &&
  994. /// TODO refactor and make common
  995. syncResult != null && !syncResult.isSuccess()) {
  996. if (syncResult.getCode() == ResultCode.UNAUTHORIZED ||
  997. (syncResult.isException() && syncResult.getException()
  998. instanceof AuthenticatorException)) {
  999. requestCredentialsUpdate(context);
  1000. } else if (RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED.equals(syncResult.getCode())) {
  1001. showUntrustedCertDialog(syncResult);
  1002. }
  1003. }
  1004. }
  1005. removeStickyBroadcast(intent);
  1006. Log_OC.d(TAG, "Setting progress visibility to " + mSyncInProgress);
  1007. }
  1008. } catch (RuntimeException e) {
  1009. // avoid app crashes after changing the serial id of RemoteOperationResult
  1010. // in owncloud library with broadcast notifications pending to process
  1011. removeStickyBroadcast(intent);
  1012. DataHolderUtil.getInstance().delete(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
  1013. }
  1014. }
  1015. }
  1016. /**
  1017. * Process the result of CopyAndUploadContentUrisTask
  1018. */
  1019. @Override
  1020. public void onTmpFilesCopied(ResultCode result) {
  1021. dismissLoadingDialog();
  1022. finish();
  1023. }
  1024. /**
  1025. * Show an error dialog, forcing the user to click a single button to exit the activity
  1026. *
  1027. * @param messageResId Resource id of the message to show in the dialog.
  1028. * @param messageResTitle Resource id of the title to show in the dialog. 0 to show default alert message.
  1029. * -1 to show no title.
  1030. */
  1031. private void showErrorDialog(int messageResId, int messageResTitle) {
  1032. ConfirmationDialogFragment errorDialog = ConfirmationDialogFragment.newInstance(
  1033. messageResId,
  1034. new String[]{getString(R.string.app_name)}, // see uploader_error_message_* in strings.xml
  1035. messageResTitle,
  1036. R.string.common_back,
  1037. -1,
  1038. -1
  1039. );
  1040. errorDialog.setCancelable(false);
  1041. errorDialog.setOnConfirmationListener(
  1042. new ConfirmationDialogFragment.ConfirmationDialogFragmentListener() {
  1043. @Override
  1044. public void onConfirmation(String callerTag) {
  1045. finish();
  1046. }
  1047. @Override
  1048. public void onNeutral(String callerTag) {
  1049. // not used at the moment
  1050. }
  1051. @Override
  1052. public void onCancel(String callerTag) {
  1053. // not used at the moment
  1054. }
  1055. }
  1056. );
  1057. errorDialog.show(getSupportFragmentManager(), FTAG_ERROR_FRAGMENT);
  1058. }
  1059. }