ReceiveExternalFilesActivity.java 49 KB

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