1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240 |
- /*
- * ownCloud Android client application
- *
- * @author Bartek Przybylski
- * @author masensio
- * @author Juan Carlos González Cabrero
- * @author David A. Velasco
- * Copyright (C) 2012 Bartek Przybylski
- * Copyright (C) 2016 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.activity;
- import android.accounts.Account;
- import android.accounts.AccountManager;
- import android.accounts.AuthenticatorException;
- import android.app.Activity;
- import android.app.Dialog;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import android.content.res.Resources.NotFoundException;
- import android.graphics.PorterDuff;
- import android.graphics.drawable.ColorDrawable;
- import android.graphics.drawable.Drawable;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.Looper;
- import android.os.Parcelable;
- import android.support.annotation.DrawableRes;
- import android.support.annotation.NonNull;
- import android.support.annotation.Nullable;
- import android.support.annotation.StringRes;
- import android.support.v4.app.DialogFragment;
- import android.support.v4.app.FragmentManager;
- import android.support.v4.content.ContextCompat;
- import android.support.v4.graphics.drawable.DrawableCompat;
- import android.support.v4.view.MenuItemCompat;
- import android.support.v7.app.ActionBar;
- import android.support.v7.app.AlertDialog;
- import android.support.v7.app.AlertDialog.Builder;
- import android.support.v7.widget.SearchView;
- import android.text.format.DateFormat;
- import android.view.LayoutInflater;
- import android.view.Menu;
- import android.view.MenuInflater;
- import android.view.MenuItem;
- import android.view.View;
- import android.view.WindowManager.LayoutParams;
- import android.widget.AdapterView;
- import android.widget.AdapterView.OnItemClickListener;
- import android.widget.ArrayAdapter;
- import android.widget.Button;
- import android.widget.EditText;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.ListView;
- import android.widget.ProgressBar;
- import android.widget.Spinner;
- import android.widget.TextView;
- import com.owncloud.android.MainApp;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.db.PreferenceManager;
- import com.owncloud.android.files.services.FileUploader;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
- import com.owncloud.android.lib.common.utils.Log_OC;
- import com.owncloud.android.operations.CreateFolderOperation;
- import com.owncloud.android.operations.RefreshFolderOperation;
- import com.owncloud.android.operations.UploadFileOperation;
- import com.owncloud.android.syncadapter.FileSyncAdapter;
- import com.owncloud.android.ui.adapter.AccountListAdapter;
- import com.owncloud.android.ui.adapter.AccountListItem;
- import com.owncloud.android.ui.adapter.UploaderAdapter;
- import com.owncloud.android.ui.asynctasks.CopyAndUploadContentUrisTask;
- import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
- import com.owncloud.android.ui.dialog.CreateFolderDialogFragment;
- import com.owncloud.android.ui.dialog.SortingOrderDialogFragment;
- import com.owncloud.android.ui.fragment.TaskRetainerFragment;
- import com.owncloud.android.ui.helpers.UriUploader;
- import com.owncloud.android.utils.DataHolderUtil;
- import com.owncloud.android.utils.DisplayUtils;
- import com.owncloud.android.utils.ErrorMessageAdapter;
- import com.owncloud.android.utils.FileSortOrder;
- import com.owncloud.android.utils.MimeType;
- import com.owncloud.android.utils.ThemeUtils;
- import java.io.File;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.io.UnsupportedEncodingException;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import java.util.Arrays;
- import java.util.Calendar;
- import java.util.HashMap;
- import java.util.LinkedList;
- import java.util.List;
- import java.util.Stack;
- import java.util.Vector;
- import static com.owncloud.android.db.PreferenceManager.getSortOrder;
- /**
- * This can be used to upload things to an ownCloud instance.
- */
- public class ReceiveExternalFilesActivity extends FileActivity
- implements OnItemClickListener, View.OnClickListener, CopyAndUploadContentUrisTask.OnCopyTmpFilesTaskListener,
- SortingOrderDialogFragment.OnSortingOrderListener {
- private static final String TAG = ReceiveExternalFilesActivity.class.getSimpleName();
- private static final String FTAG_ERROR_FRAGMENT = "ERROR_FRAGMENT";
- public static final String TEXT_FILE_SUFFIX = ".txt";
- public static final String URL_FILE_SUFFIX = ".url";
- public static final String WEBLOC_FILE_SUFFIX = ".webloc";
- public static final String DESKTOP_FILE_SUFFIX = ".desktop";
- public static final int SINGLE_PARENT = 1;
- private AccountManager mAccountManager;
- private Stack<String> mParents = new Stack<>();
- private List<Parcelable> mStreamsToUpload;
- private String mUploadPath;
- private OCFile mFile;
- private SyncBroadcastReceiver mSyncBroadcastReceiver;
- private boolean mSyncInProgress;
- private final static int REQUEST_CODE__SETUP_ACCOUNT = REQUEST_CODE__LAST_SHARED + 1;
- private final static String KEY_PARENTS = "PARENTS";
- private final static String KEY_FILE = "FILE";
- private boolean mUploadFromTmpFile;
- private String mSubjectText;
- private String mExtraText;
- private final static String FILENAME_ENCODING = "UTF-8";
- private LinearLayout mEmptyListContainer;
- private TextView mEmptyListMessage;
- private TextView mEmptyListHeadline;
- private ImageView mEmptyListIcon;
- private ProgressBar mEmptyListProgress;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- prepareStreamsToUpload();
- if (savedInstanceState != null) {
- String parentPath = savedInstanceState.getString(KEY_PARENTS);
- if (parentPath != null) {
- mParents.addAll(Arrays.asList(parentPath.split("/")));
- }
-
- mFile = savedInstanceState.getParcelable(KEY_FILE);
- }
- mAccountManager = (AccountManager) getSystemService(Context.ACCOUNT_SERVICE);
- super.onCreate(savedInstanceState);
- // Listen for sync messages
- IntentFilter syncIntentFilter = new IntentFilter(RefreshFolderOperation.
- EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
- syncIntentFilter.addAction(RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED);
- mSyncBroadcastReceiver = new SyncBroadcastReceiver();
- registerReceiver(mSyncBroadcastReceiver, syncIntentFilter);
- // Init Fragment without UI to retain AsyncTask across configuration changes
- FragmentManager fm = getSupportFragmentManager();
- TaskRetainerFragment taskRetainerFragment =
- (TaskRetainerFragment) fm.findFragmentByTag(TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT);
- if (taskRetainerFragment == null) {
- taskRetainerFragment = new TaskRetainerFragment();
- fm.beginTransaction()
- .add(taskRetainerFragment, TaskRetainerFragment.FTAG_TASK_RETAINER_FRAGMENT).commit();
- } // else, Fragment already created and retained across configuration change
- }
- @Override
- protected void setAccount(Account account, boolean savedAccount) {
- Account[] accounts = mAccountManager.getAccountsByType(MainApp.getAccountType(this));
- if (accounts.length == 0) {
- Log_OC.i(TAG, "No ownCloud account is available");
- DialogNoAccount dialog = new DialogNoAccount();
- dialog.show(getSupportFragmentManager(), null);
- } else if (!savedAccount) {
- setAccount(accounts[0]);
- }
- if (!somethingToUpload()) {
- showErrorDialog(
- R.string.uploader_error_message_no_file_to_upload,
- R.string.uploader_error_title_no_file_to_upload
- );
- }
- super.setAccount(account, savedAccount);
- }
- private void showAccountChooserDialog() {
- DialogMultipleAccount dialog = new DialogMultipleAccount();
- dialog.show(getSupportFragmentManager(), null);
- }
- private Activity getActivity() {
- return this;
- }
- @Override
- protected void onAccountSet(boolean stateWasRecovered) {
- super.onAccountSet(mAccountWasRestored);
- initTargetFolder();
- populateDirectoryList();
- }
- @Override
- protected void onSaveInstanceState(Bundle outState) {
- Log_OC.d(TAG, "onSaveInstanceState() start");
- super.onSaveInstanceState(outState);
- outState.putString(KEY_PARENTS, generatePath(mParents));
- outState.putParcelable(KEY_FILE, mFile);
- outState.putParcelable(FileActivity.EXTRA_ACCOUNT, getAccount());
- Log_OC.d(TAG, "onSaveInstanceState() end");
- }
- @Override
- protected void onDestroy() {
- if (mSyncBroadcastReceiver != null) {
- unregisterReceiver(mSyncBroadcastReceiver);
- }
- super.onDestroy();
- }
- @Override
- public void onSortingOrderChosen(FileSortOrder newSortOrder) {
- PreferenceManager.setSortOrder(getBaseContext(), mFile, newSortOrder);
- populateDirectoryList();
- }
- public static class DialogNoAccount extends DialogFragment {
- @NonNull
- @Override
- public Dialog onCreateDialog(Bundle savedInstanceState) {
- AlertDialog.Builder builder = new Builder(getActivity());
- builder.setIcon(R.drawable.ic_warning);
- builder.setTitle(R.string.uploader_wrn_no_account_title);
- builder.setMessage(String.format(getString(R.string.uploader_wrn_no_account_text),
- getString(R.string.app_name)));
- builder.setCancelable(false);
- builder.setPositiveButton(R.string.uploader_wrn_no_account_setup_btn_text, (dialog, which) -> {
- // using string value since in API7 this
- // constant is not defined
- // in API7 < this constant is defined in
- // Settings.ADD_ACCOUNT_SETTINGS
- // and Settings.EXTRA_AUTHORITIES
- Intent intent = new Intent(android.provider.Settings.ACTION_ADD_ACCOUNT);
- intent.putExtra("authorities", new String[]{MainApp.getAuthTokenType()});
- startActivityForResult(intent, REQUEST_CODE__SETUP_ACCOUNT);
- });
- builder.setNegativeButton(R.string.uploader_wrn_no_account_quit_btn_text, (dialog, which) -> getActivity().finish());
- return builder.create();
- }
- }
- public static class DialogMultipleAccount extends DialogFragment {
- private AccountListAdapter mAccountListAdapter;
- private Drawable mTintedCheck;
- @NonNull
- @Override
- public Dialog onCreateDialog(Bundle savedInstanceState) {
- final ReceiveExternalFilesActivity parent = (ReceiveExternalFilesActivity) getActivity();
- AlertDialog.Builder builder = new Builder(parent);
- mTintedCheck = DrawableCompat.wrap(ContextCompat.getDrawable(parent, R.drawable.account_circle_white));
- int tint = ThemeUtils.primaryColor(getContext());
- DrawableCompat.setTint(mTintedCheck, tint);
- mAccountListAdapter = new AccountListAdapter(parent, getAccountListItems(parent), mTintedCheck);
- builder.setTitle(R.string.common_choose_account);
- builder.setAdapter(mAccountListAdapter, (dialog, which) -> {
- final ReceiveExternalFilesActivity parent1 = (ReceiveExternalFilesActivity) getActivity();
- parent1.setAccount(parent1.mAccountManager.getAccountsByType(
- MainApp.getAccountType(getActivity()))[which], false);
- parent1.onAccountSet(parent1.mAccountWasRestored);
- dialog.dismiss();
- });
- builder.setCancelable(true);
- return builder.create();
- }
- /**
- * creates the account list items list including the add-account action in case multiaccount_support is enabled.
- *
- * @return list of account list items
- */
- private List<AccountListItem> getAccountListItems(ReceiveExternalFilesActivity activity) {
- Account[] accountList = activity.mAccountManager.getAccountsByType(MainApp.getAccountType(getActivity()));
- List<AccountListItem> adapterAccountList = new ArrayList<>(accountList.length);
- for (Account account : accountList) {
- adapterAccountList.add(new AccountListItem(account));
- }
- return adapterAccountList;
- }
- }
- public static class DialogInputUploadFilename extends DialogFragment {
- private static final String KEY_SUBJECT_TEXT = "SUBJECT_TEXT";
- private static final String KEY_EXTRA_TEXT = "EXTRA_TEXT";
- private static final int CATEGORY_URL = 1;
- private static final int CATEGORY_MAPS_URL = 2;
- private static final int EXTRA_TEXT_LENGTH = 3;
- private static final int SINGLE_SPINNER_ENTRY = 1;
- private List<String> mFilenameBase;
- private List<String> mFilenameSuffix;
- private List<String> mText;
- private int mFileCategory;
- private Spinner mSpinner;
- public static DialogInputUploadFilename newInstance(String subjectText, String extraText) {
- DialogInputUploadFilename dialog = new DialogInputUploadFilename();
- Bundle args = new Bundle();
- args.putString(KEY_SUBJECT_TEXT, subjectText);
- args.putString(KEY_EXTRA_TEXT, extraText);
- dialog.setArguments(args);
- return dialog;
- }
- @NonNull
- @Override
- public Dialog onCreateDialog(Bundle savedInstanceState) {
- mFilenameBase = new ArrayList<>();
- mFilenameSuffix = new ArrayList<>();
- mText = new ArrayList<>();
- String subjectText = "";
- String extraText = "";
- if (getArguments() != null) {
- if (getArguments().getString(KEY_SUBJECT_TEXT) != null) {
- subjectText = getArguments().getString(KEY_SUBJECT_TEXT);
- }
- if (getArguments().getString(KEY_EXTRA_TEXT) != null) {
- extraText = getArguments().getString(KEY_EXTRA_TEXT);
- }
- }
- LayoutInflater layout = LayoutInflater.from(requireContext());
- View view = layout.inflate(R.layout.upload_file_dialog, null);
- ArrayAdapter<String> adapter
- = new ArrayAdapter<>(requireContext(), android.R.layout.simple_spinner_item);
- adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
- int selectPos = 0;
- String filename = renameSafeFilename(subjectText);
- if (filename == null) {
- filename = "";
- }
- adapter.add(getString(R.string.upload_file_dialog_filetype_snippet_text));
- mText.add(extraText);
- mFilenameBase.add(filename);
- mFilenameSuffix.add(TEXT_FILE_SUFFIX);
- if (isIntentStartWithUrl(extraText)) {
- String str = getString(R.string.upload_file_dialog_filetype_internet_shortcut);
- mText.add(internetShortcutUrlText(extraText));
- mFilenameBase.add(filename);
- mFilenameSuffix.add(URL_FILE_SUFFIX);
- adapter.add(String.format(str,URL_FILE_SUFFIX));
- mText.add(internetShortcutWeblocText(extraText));
- mFilenameBase.add(filename);
- mFilenameSuffix.add(WEBLOC_FILE_SUFFIX);
- adapter.add(String.format(str,WEBLOC_FILE_SUFFIX));
- mText.add(internetShortcutDesktopText(extraText, filename));
- mFilenameBase.add(filename);
- mFilenameSuffix.add(DESKTOP_FILE_SUFFIX);
- adapter.add(String.format(str,DESKTOP_FILE_SUFFIX));
- selectPos = PreferenceManager.getUploadUrlFileExtensionUrlSelectedPos(getActivity());
- mFileCategory = CATEGORY_URL;
- } else if (isIntentFromGoogleMap(subjectText, extraText)) {
- String str = getString(R.string.upload_file_dialog_filetype_googlemap_shortcut);
- String texts[] = extraText.split("\n");
- mText.add(internetShortcutUrlText(texts[2]));
- mFilenameBase.add(texts[0]);
- mFilenameSuffix.add(URL_FILE_SUFFIX);
- adapter.add(String.format(str,URL_FILE_SUFFIX));
- mText.add(internetShortcutWeblocText(texts[2]));
- mFilenameBase.add(texts[0]);
- mFilenameSuffix.add(WEBLOC_FILE_SUFFIX);
- adapter.add(String.format(str,WEBLOC_FILE_SUFFIX));
- mText.add(internetShortcutDesktopText(texts[2], texts[0]));
- mFilenameBase.add(texts[0]);
- mFilenameSuffix.add(DESKTOP_FILE_SUFFIX);
- adapter.add(String.format(str,DESKTOP_FILE_SUFFIX));
- selectPos = PreferenceManager.getUploadMapFileExtensionUrlSelectedPos(getActivity());
- mFileCategory = CATEGORY_MAPS_URL;
- }
- final EditText userInput = view.findViewById(R.id.user_input);
- setFilename(userInput, selectPos);
- userInput.requestFocus();
- final Spinner spinner = view.findViewById(R.id.file_type);
- setupSpinner(adapter, selectPos, userInput, spinner);
- if (adapter.getCount() == SINGLE_SPINNER_ENTRY) {
- view.findViewById(R.id.label_file_type).setVisibility(View.GONE);
- spinner.setVisibility(View.GONE);
- }
- mSpinner = spinner;
- Dialog filenameDialog = createFilenameDialog(view, userInput, spinner);
- if (filenameDialog.getWindow() != null) {
- filenameDialog.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
- }
- return filenameDialog;
- }
- private void setupSpinner(ArrayAdapter<String> adapter, int selectPos, final EditText userInput, Spinner spinner) {
- spinner.setAdapter(adapter);
- spinner.setSelection(selectPos, false);
- spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
- @Override
- public void onItemSelected(AdapterView parent, View view, int position, long id) {
- Spinner spinner = (Spinner) parent;
- int selectPos = spinner.getSelectedItemPosition();
- setFilename(userInput, selectPos);
- saveSelection(selectPos);
- }
- @Override
- public void onNothingSelected(AdapterView<?> parent) {
- // nothing to do
- }
- });
- }
- @NonNull
- private Dialog createFilenameDialog(View view, final EditText userInput, final Spinner spinner) {
- Builder builder = new Builder(requireActivity());
- builder.setView(view);
- builder.setTitle(R.string.upload_file_dialog_title);
- builder.setPositiveButton(R.string.common_ok, (dialog, id) -> {
- int selectPos = spinner.getSelectedItemPosition();
- // verify if file name has suffix
- String filename = userInput.getText().toString();
- String suffix = mFilenameSuffix.get(selectPos);
- if (!filename.endsWith(suffix)) {
- filename += suffix;
- }
- File file = createTempFile(mText.get(selectPos));
- if (file == null) {
- getActivity().finish();
- } else {
- String tmpName = file.getAbsolutePath();
- ((ReceiveExternalFilesActivity) getActivity()).uploadFile(tmpName, filename);
- }
- });
- builder.setNegativeButton(R.string.common_cancel, (dialog, id) -> dialog.cancel());
- return builder.create();
- }
- public void onPause() {
- hideSpinnerDropDown(mSpinner);
- super.onPause();
- }
- private void saveSelection(int selectPos) {
- switch (mFileCategory) {
- case CATEGORY_URL:
- PreferenceManager.setUploadUrlFileExtensionUrlSelectedPos(getActivity(), selectPos);
- break;
- case CATEGORY_MAPS_URL:
- PreferenceManager.setUploadMapFileExtensionUrlSelectedPos(getActivity(), selectPos);
- break;
- default:
- Log_OC.d(TAG, "Simple text snippet only: no selection to be persisted");
- break;
- }
- }
- private void hideSpinnerDropDown(Spinner spinner) {
- try {
- Method method = Spinner.class.getDeclaredMethod("onDetachedFromWindow");
- method.setAccessible(true);
- method.invoke(spinner);
- } catch (Exception e) {
- Log_OC.e(TAG, "onDetachedFromWindow", e);
- }
- }
- private void setFilename(EditText inputText, int selectPos)
- {
- String filename = mFilenameBase.get(selectPos) + mFilenameSuffix.get(selectPos);
- inputText.setText(filename);
- int selectionStart = 0;
- int extensionStart = filename.lastIndexOf(".");
- int selectionEnd = extensionStart >= 0 ? extensionStart : filename.length();
- if (selectionEnd >= 0) {
- inputText.setSelection(
- Math.min(selectionStart, selectionEnd),
- Math.max(selectionStart, selectionEnd));
- }
- }
- private boolean isIntentFromGoogleMap(String subjectText, String extraText) {
- String texts[] = extraText.split("\n");
- if (texts.length != EXTRA_TEXT_LENGTH) {
- return false;
- }
- if (texts[0].length() == 0 || !subjectText.equals(texts[0])) {
- return false;
- }
- return texts[2].startsWith("https://goo.gl/maps/");
- }
- private boolean isIntentStartWithUrl(String extraText) {
- return extraText.startsWith("http://") || extraText.startsWith("https://");
- }
- @Nullable
- private String renameSafeFilename(String filename) {
- String safeFilename = filename;
- safeFilename = safeFilename.replaceAll("[?]", "_");
- safeFilename = safeFilename.replaceAll("\"", "_");
- safeFilename = safeFilename.replaceAll("/", "_");
- safeFilename = safeFilename.replaceAll("<", "_");
- safeFilename = safeFilename.replaceAll(">", "_");
- safeFilename = safeFilename.replaceAll("[*]", "_");
- safeFilename = safeFilename.replaceAll("[|]", "_");
- safeFilename = safeFilename.replaceAll(";", "_");
- safeFilename = safeFilename.replaceAll("=", "_");
- safeFilename = safeFilename.replaceAll(",", "_");
- try {
- int maxLength = 128;
- if (safeFilename.getBytes(FILENAME_ENCODING).length > maxLength) {
- safeFilename = new String(safeFilename.getBytes(FILENAME_ENCODING), 0, maxLength, FILENAME_ENCODING);
- }
- } catch (UnsupportedEncodingException e) {
- Log_OC.e(TAG, "rename failed ", e);
- return null;
- }
- return safeFilename;
- }
- private String internetShortcutUrlText(String url) {
- return "[InternetShortcut]\r\n" +
- "URL=" + url + "\r\n";
- }
- private String internetShortcutWeblocText(String url) {
- return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
- "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n" +
- "<plist version=\"1.0\">\n" +
- "<dict>\n" +
- "<key>URL</key>\n" +
- "<string>" + url + "</string>\n" +
- "</dict>\n" +
- "</plist>\n";
- }
- private String internetShortcutDesktopText(String url, String filename) {
- return "[Desktop Entry]\n" +
- "Encoding=UTF-8\n" +
- "Name=" + filename + "\n" +
- "Type=Link\n" +
- "URL=" + url + "\n" +
- "Icon=text-html";
- }
- @Nullable
- private File createTempFile(String text) {
- File file = new File(getActivity().getCacheDir(), "tmp.tmp");
- FileWriter fw = null;
- try {
- fw = new FileWriter(file);
- fw.write(text);
- } catch (IOException e) {
- Log_OC.d(TAG, "Error ", e);
- return null;
- } finally {
- if (fw != null) {
- try {
- fw.close();
- } catch (IOException e) {
- Log_OC.d(TAG, "Error closing file writer ", e);
- }
- }
- }
- return file;
- }
- }
- @Override
- public void onBackPressed() {
- if (mParents.size() <= SINGLE_PARENT) {
- super.onBackPressed();
- } else {
- mParents.pop();
- String full_path = generatePath(mParents);
- startSyncFolderOperation(getStorageManager().getFileByPath(full_path));
- populateDirectoryList();
- }
- }
- @Override
- public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
- // click on folder in the list
- Log_OC.d(TAG, "on item click");
- List<OCFile> tmpFiles = getStorageManager().getFolderContent(mFile, false);
- tmpFiles = sortFileList(tmpFiles);
- if (tmpFiles.isEmpty()) {
- return;
- }
- // filter on dirtype
- Vector<OCFile> files = new Vector<>();
- files.addAll(tmpFiles);
-
- if (files.size() < position) {
- throw new IndexOutOfBoundsException("Incorrect item selected");
- }
- if (files.get(position).isFolder()){
- OCFile folderToEnter = files.get(position);
- startSyncFolderOperation(folderToEnter);
- mParents.push(folderToEnter.getFileName());
- populateDirectoryList();
- }
- }
- @Override
- public void onClick(View v) {
- // click on button
- switch (v.getId()) {
- case R.id.uploader_choose_folder:
- mUploadPath = ""; // first element in mParents is root dir, represented by "";
- // init mUploadPath with "/" results in a "//" prefix
- for (String p : mParents) {
- mUploadPath += p + OCFile.PATH_SEPARATOR;
- }
- if (mUploadFromTmpFile) {
- DialogInputUploadFilename dialog = DialogInputUploadFilename.newInstance(mSubjectText, mExtraText);
- dialog.show(getSupportFragmentManager(), null);
- } else {
- Log_OC.d(TAG, "Uploading file to dir " + mUploadPath);
- uploadFiles();
- }
- break;
- case R.id.uploader_cancel:
- finish();
- break;
- default:
- throw new IllegalArgumentException("Wrong element clicked");
- }
- }
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- super.onActivityResult(requestCode, resultCode, data);
- Log_OC.i(TAG, "result received. req: " + requestCode + " res: " + resultCode);
- if (requestCode == REQUEST_CODE__SETUP_ACCOUNT) {
- if (resultCode == RESULT_CANCELED) {
- finish();
- }
- Account[] accounts = mAccountManager.getAccountsByType(MainApp.getAuthTokenType());
- if (accounts.length == 0) {
- DialogNoAccount dialog = new DialogNoAccount();
- dialog.show(getSupportFragmentManager(), null);
- } else {
- // there is no need for checking for is there more then one
- // account at this point
- // since account setup can set only one account at time
- setAccount(accounts[0]);
- populateDirectoryList();
- }
- }
- }
- private void setupActionBarSubtitle() {
- if (isHaveMultipleAccount()) {
- ActionBar actionBar = getSupportActionBar();
- if (actionBar != null) {
- actionBar.setSubtitle(getAccount().name);
- }
- }
- }
- private void populateDirectoryList() {
- setContentView(R.layout.uploader_layout);
- setupEmptyList();
- setupToolbar();
- ActionBar actionBar = getSupportActionBar();
- setupActionBarSubtitle();
- ListView mListView = findViewById(android.R.id.list);
- String current_dir = mParents.peek();
- boolean notRoot = mParents.size() > 1;
- if (actionBar != null) {
- if ("".equals(current_dir)) {
- ThemeUtils.setColoredTitle(actionBar, R.string.uploader_top_message, this);
- } else {
- ThemeUtils.setColoredTitle(actionBar, current_dir, this);
- }
- actionBar.setDisplayHomeAsUpEnabled(notRoot);
- actionBar.setHomeButtonEnabled(notRoot);
- }
- String full_path = generatePath(mParents);
- Log_OC.d(TAG, "Populating view with content of : " + full_path);
- mFile = getStorageManager().getFileByPath(full_path);
- if (mFile != null) {
- List<OCFile> files = getStorageManager().getFolderContent(mFile, false);
- if (files.isEmpty()) {
- setMessageForEmptyList(R.string.file_list_empty_headline, R.string.empty,
- R.drawable.ic_list_empty_upload);
- } else {
- mEmptyListContainer.setVisibility(View.GONE);
- files = sortFileList(files);
- List<HashMap<String, Object>> data = new LinkedList<>();
- for (OCFile f : files) {
- HashMap<String, Object> h = new HashMap<>();
- h.put("dirname", f);
- data.add(h);
- }
- UploaderAdapter sa = new UploaderAdapter(this,
- data,
- R.layout.uploader_list_item_layout,
- new String[]{"dirname"},
- new int[]{R.id.filename},
- getStorageManager(), getAccount());
- mListView.setAdapter(sa);
- }
- Button btnChooseFolder = findViewById(R.id.uploader_choose_folder);
- btnChooseFolder.setOnClickListener(this);
- btnChooseFolder.getBackground().setColorFilter(ThemeUtils.primaryColor(getAccount(), true, this),
- PorterDuff.Mode.SRC_ATOP);
- btnChooseFolder.setTextColor(ThemeUtils.fontColor(this));
- if (getSupportActionBar() != null) {
- getSupportActionBar().setBackgroundDrawable(new ColorDrawable(
- ThemeUtils.primaryColor(getAccount(), false, this)));
- }
- ThemeUtils.colorStatusBar(this, ThemeUtils.primaryDarkColor(getAccount(), this));
- ThemeUtils.colorToolbarProgressBar(this, ThemeUtils.primaryColor(getAccount(), false, this));
- Drawable backArrow = getResources().getDrawable(R.drawable.ic_arrow_back);
- if (actionBar != null) {
- actionBar.setHomeAsUpIndicator(ThemeUtils.tintDrawable(backArrow, ThemeUtils.fontColor(this)));
- }
-
- Button btnNewFolder = findViewById(R.id.uploader_cancel);
- btnNewFolder.setOnClickListener(this);
- mListView.setOnItemClickListener(this);
- }
- }
- protected void setupEmptyList() {
- mEmptyListContainer = findViewById(R.id.empty_list_view);
- mEmptyListMessage = findViewById(R.id.empty_list_view_text);
- mEmptyListHeadline = findViewById(R.id.empty_list_view_headline);
- mEmptyListIcon = findViewById(R.id.empty_list_icon);
- mEmptyListProgress = findViewById(R.id.empty_list_progress);
- mEmptyListProgress.getIndeterminateDrawable().setColorFilter(ThemeUtils.primaryColor(this),
- PorterDuff.Mode.SRC_IN);
- }
- public void setMessageForEmptyList(@StringRes final int headline, @StringRes final int message,
- @DrawableRes final int icon) {
- new Handler(Looper.getMainLooper()).post(() -> {
- if (mEmptyListContainer != null && mEmptyListMessage != null) {
- mEmptyListHeadline.setText(headline);
- mEmptyListMessage.setText(message);
- mEmptyListIcon.setImageDrawable(ThemeUtils.tintDrawable(icon, ThemeUtils.primaryColor(this, true)));
- mEmptyListIcon.setVisibility(View.VISIBLE);
- mEmptyListProgress.setVisibility(View.GONE);
- mEmptyListMessage.setVisibility(View.VISIBLE);
- }
- });
- }
- @Override
- public void onSavedCertificate() {
- startSyncFolderOperation(getCurrentDir());
- }
- private void startSyncFolderOperation(OCFile folder) {
- long currentSyncTime = System.currentTimeMillis();
- mSyncInProgress = true;
- // perform folder synchronization
- RemoteOperation syncFolderOp = new RefreshFolderOperation(folder,
- currentSyncTime,
- false,
- false,
- getStorageManager(),
- getAccount(),
- getApplicationContext()
- );
- syncFolderOp.execute(getAccount(), this, null, null);
- }
- private List<OCFile> sortFileList(List<OCFile> files) {
- FileSortOrder sortOrder = getSortOrder(this, mFile);
- return sortOrder.sortCloudFiles(files);
- }
- private String generatePath(Stack<String> dirs) {
- String full_path = "";
- for (String a : dirs) {
- full_path += a + "/";
- }
- return full_path;
- }
- private void prepareStreamsToUpload() {
- Intent intent = getIntent();
- if (Intent.ACTION_SEND.equals(intent.getAction())) {
- mStreamsToUpload = new ArrayList<>();
- mStreamsToUpload.add(intent.getParcelableExtra(Intent.EXTRA_STREAM));
- } else if (Intent.ACTION_SEND_MULTIPLE.equals(intent.getAction())) {
- mStreamsToUpload = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
- }
- if (mStreamsToUpload == null || mStreamsToUpload.isEmpty() || mStreamsToUpload.get(0) == null) {
- mStreamsToUpload = null;
- saveTextsFromIntent(intent);
- }
- }
- private void saveTextsFromIntent(Intent intent) {
- if (!MimeType.TEXT_PLAIN.equals(intent.getType())) {
- return;
- }
- mUploadFromTmpFile = true;
- mSubjectText = intent.getStringExtra(Intent.EXTRA_SUBJECT);
- if (mSubjectText == null) {
- mSubjectText = intent.getStringExtra(Intent.EXTRA_TITLE);
- if (mSubjectText == null) {
- mSubjectText = DateFormat.format("yyyyMMdd_kkmmss", Calendar.getInstance()).toString();
- }
- }
- mExtraText = intent.getStringExtra(Intent.EXTRA_TEXT);
- }
- private boolean somethingToUpload() {
- return (mStreamsToUpload != null && mStreamsToUpload.size() > 0 && mStreamsToUpload.get(0) != null ||
- mUploadFromTmpFile);
- }
- public void uploadFile(String tmpName, String filename) {
- FileUploader.UploadRequester requester = new FileUploader.UploadRequester();
- requester.uploadNewFile(
- getBaseContext(),
- getAccount(),
- tmpName,
- mFile.getRemotePath() + filename,
- FileUploader.LOCAL_BEHAVIOUR_COPY,
- null,
- true,
- UploadFileOperation.CREATED_BY_USER,
- false,
- false
- );
- finish();
- }
- public void uploadFiles() {
- UriUploader uploader = new UriUploader(
- this,
- mStreamsToUpload,
- mUploadPath,
- getAccount(),
- FileUploader.LOCAL_BEHAVIOUR_FORGET,
- true, // Show waiting dialog while file is being copied from private storage
- this // Copy temp task listener
- );
- UriUploader.UriUploaderResultCode resultCode = uploader.uploadUris();
- // Save the path to shared preferences; even if upload is not possible, user chose the folder
- PreferenceManager.setLastUploadPath(this, mUploadPath);
- if (resultCode == UriUploader.UriUploaderResultCode.OK) {
- finish();
- } else {
- int messageResTitle = R.string.uploader_error_title_file_cannot_be_uploaded;
- int messageResId = R.string.common_error_unknown;
- if (resultCode == UriUploader.UriUploaderResultCode.ERROR_NO_FILE_TO_UPLOAD) {
- messageResId = R.string.uploader_error_message_no_file_to_upload;
- messageResTitle = R.string.uploader_error_title_no_file_to_upload;
- } else if (resultCode == UriUploader.UriUploaderResultCode.ERROR_READ_PERMISSION_NOT_GRANTED) {
- messageResId = R.string.uploader_error_message_read_permission_not_granted;
- } else if (resultCode == UriUploader.UriUploaderResultCode.ERROR_UNKNOWN) {
- messageResId = R.string.common_error_unknown;
- }
- showErrorDialog(
- messageResId,
- messageResTitle
- );
- }
- }
- @Override
- public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
- super.onRemoteOperationFinish(operation, result);
- if (operation instanceof CreateFolderOperation) {
- onCreateFolderOperationFinish((CreateFolderOperation) operation, result);
- }
- }
- /**
- * Updates the view associated to the activity after the finish of an operation
- * trying create a new folder
- *
- * @param operation Creation operation performed.
- * @param result Result of the creation.
- */
- private void onCreateFolderOperationFinish(CreateFolderOperation operation,
- RemoteOperationResult result) {
- if (result.isSuccess()) {
- String remotePath = operation.getRemotePath().substring(0, operation.getRemotePath().length() - 1);
- String newFolder = remotePath.substring(remotePath.lastIndexOf('/') + 1);
- mParents.push(newFolder);
- populateDirectoryList();
- } else {
- try {
- DisplayUtils.showSnackMessage(
- this, ErrorMessageAdapter.getErrorCauseMessage(result, operation, getResources())
- );
- } catch (NotFoundException e) {
- Log_OC.e(TAG, "Error while trying to show fail message ", e);
- }
- }
- }
- /**
- * Loads the target folder initialize shown to the user.
- * <p/>
- * The target account has to be chosen before this method is called.
- */
- private void initTargetFolder() {
- if (getStorageManager() == null) {
- throw new IllegalStateException("Do not call this method before initializing mStorageManager");
- }
- if (mParents.empty()) {
- String lastPath = PreferenceManager.getLastUploadPath(this);
- // "/" equals root-directory
- if ("/".equals(lastPath)) {
- mParents.add("");
- } else {
- String[] dir_names = lastPath.split("/");
- mParents.clear();
- mParents.addAll(Arrays.asList(dir_names));
- }
- }
- // make sure that path still exists, if it doesn't pop the stack and try the previous path
- while (!getStorageManager().fileExists(generatePath(mParents)) && mParents.size() > 1) {
- mParents.pop();
- }
- }
- private boolean isHaveMultipleAccount() {
- return mAccountManager.getAccountsByType(MainApp.getAccountType(this)).length > 1;
- }
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- MenuInflater inflater = getMenuInflater();
- inflater.inflate(R.menu.receive_file_menu, menu);
- if (!isHaveMultipleAccount()) {
- MenuItem switchAccountMenu = menu.findItem(R.id.action_switch_account);
- switchAccountMenu.setVisible(false);
- }
- // tint search event
- final MenuItem item = menu.findItem(R.id.action_search);
- SearchView searchView = (SearchView) MenuItemCompat.getActionView(item);
- // hacky as no default way is provided
- int fontColor = ThemeUtils.fontColor(this);
- EditText editText = searchView.findViewById(android.support.v7.appcompat.R.id.search_src_text);
- editText.setHintTextColor(fontColor);
- editText.setTextColor(fontColor);
- ImageView searchClose = searchView.findViewById(android.support.v7.appcompat.R.id.search_close_btn);
- searchClose.setColorFilter(ThemeUtils.fontColor(this));
- ImageView searchButton = searchView.findViewById(android.support.v7.appcompat.R.id.search_button);
- searchButton.setColorFilter(ThemeUtils.fontColor(this));
- return true;
- }
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- boolean retval = true;
- switch (item.getItemId()) {
- case R.id.action_create_dir:
- CreateFolderDialogFragment dialog = CreateFolderDialogFragment.newInstance(mFile);
- dialog.show(getSupportFragmentManager(), CreateFolderDialogFragment.CREATE_FOLDER_FRAGMENT);
- break;
- case android.R.id.home:
- if (mParents.size() > SINGLE_PARENT) {
- onBackPressed();
- }
- break;
- case R.id.action_switch_account:
- showAccountChooserDialog();
- break;
- case R.id.action_sort:
- SortingOrderDialogFragment mSortingOrderDialogFragment = SortingOrderDialogFragment.newInstance(
- getSortOrder(this, mFile));
- mSortingOrderDialogFragment.show(getSupportFragmentManager(),
- SortingOrderDialogFragment.SORTING_ORDER_FRAGMENT);
- break;
- default:
- retval = super.onOptionsItemSelected(item);
- break;
- }
- return retval;
- }
- private OCFile getCurrentFolder(){
- OCFile file = mFile;
- if (file != null) {
- if (file.isFolder()) {
- return file;
- } else if (getStorageManager() != null) {
- return getStorageManager().getFileByPath(file.getParentRemotePath());
- }
- }
- return null;
- }
- private void browseToRoot() {
- OCFile root = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
- mFile = root;
- startSyncFolderOperation(root);
- }
- private class SyncBroadcastReceiver extends BroadcastReceiver {
- /**
- * {@link BroadcastReceiver} to enable syncing feedback in UI
- */
- @Override
- public void onReceive(Context context, Intent intent) {
- try {
- String event = intent.getAction();
- Log_OC.d(TAG, "Received broadcast " + event);
- String accountName = intent.getStringExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME);
- String syncFolderRemotePath = intent.getStringExtra(FileSyncAdapter.EXTRA_FOLDER_PATH);
- RemoteOperationResult syncResult = (RemoteOperationResult)
- DataHolderUtil.getInstance().retrieve(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
- boolean sameAccount = getAccount() != null && accountName.equals(getAccount().name)
- && getStorageManager() != null;
- if (sameAccount) {
- if (FileSyncAdapter.EVENT_FULL_SYNC_START.equals(event)) {
- mSyncInProgress = true;
- } else {
- OCFile currentFile = (mFile == null) ? null :
- getStorageManager().getFileByPath(mFile.getRemotePath());
- OCFile currentDir = (getCurrentFolder() == null) ? null :
- getStorageManager().getFileByPath(getCurrentFolder().getRemotePath());
- if (currentDir == null) {
- // current folder was removed from the server
- DisplayUtils.showSnackMessage(
- getActivity(),
- R.string.sync_current_folder_was_removed,
- getCurrentFolder().getFileName()
- );
- browseToRoot();
- } else {
- if (currentFile == null && !mFile.isFolder()) {
- // currently selected file was removed in the server, and now we know it
- currentFile = currentDir;
- }
- if (currentDir.getRemotePath().equals(syncFolderRemotePath)) {
- populateDirectoryList();
- }
- mFile = currentFile;
- }
- mSyncInProgress = !FileSyncAdapter.EVENT_FULL_SYNC_END.equals(event) &&
- !RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED.equals(event);
- if (RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED.equals(event)
- /// TODO refactor and make common
- && syncResult != null && !syncResult.isSuccess()) {
- if (syncResult.getCode() == ResultCode.UNAUTHORIZED ||
- (syncResult.isException() && syncResult.getException()
- instanceof AuthenticatorException)) {
- requestCredentialsUpdate(context);
- } else if (RemoteOperationResult.ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED.equals(syncResult.getCode())) {
- showUntrustedCertDialog(syncResult);
- }
- }
- }
- removeStickyBroadcast(intent);
- Log_OC.d(TAG, "Setting progress visibility to " + mSyncInProgress);
- }
- } catch (RuntimeException e) {
- // avoid app crashes after changing the serial id of RemoteOperationResult
- // in owncloud library with broadcast notifications pending to process
- removeStickyBroadcast(intent);
- DataHolderUtil.getInstance().delete(intent.getStringExtra(FileSyncAdapter.EXTRA_RESULT));
- }
- }
- }
- /**
- * Process the result of CopyAndUploadContentUrisTask
- */
- @Override
- public void onTmpFilesCopied(ResultCode result) {
- dismissLoadingDialog();
- finish();
- }
- /**
- * Show an error dialog, forcing the user to click a single button to exit the activity
- *
- * @param messageResId Resource id of the message to show in the dialog.
- * @param messageResTitle Resource id of the title to show in the dialog. 0 to show default alert message.
- * -1 to show no title.
- */
- private void showErrorDialog(int messageResId, int messageResTitle) {
- ConfirmationDialogFragment errorDialog = ConfirmationDialogFragment.newInstance(
- messageResId,
- new String[]{getString(R.string.app_name)}, // see uploader_error_message_* in strings.xml
- messageResTitle,
- R.string.common_back,
- -1,
- -1
- );
- errorDialog.setCancelable(false);
- errorDialog.setOnConfirmationListener(
- new ConfirmationDialogFragment.ConfirmationDialogFragmentListener() {
- @Override
- public void onConfirmation(String callerTag) {
- finish();
- }
- @Override
- public void onNeutral(String callerTag) {
- // not used at the moment
- }
- @Override
- public void onCancel(String callerTag) {
- // not used at the moment
- }
- }
- );
- errorDialog.show(getSupportFragmentManager(), FTAG_ERROR_FRAGMENT);
- }
- }
|