123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * @author Chris Narkiewicz <hello@ezaquarii.com>
- * Copyright (C) 2017 Tobias Kaminsky
- * Copyright (C) 2017 Nextcloud GmbH.
- * Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * at your option) any later version.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.activity;
- import android.content.Context;
- import android.content.Intent;
- import android.os.Bundle;
- import com.nextcloud.client.account.User;
- import com.nextcloud.client.jobs.BackgroundJobManager;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.ui.fragment.FileFragment;
- import com.owncloud.android.ui.fragment.contactsbackup.BackupFragment;
- import com.owncloud.android.ui.fragment.contactsbackup.BackupListFragment;
- import javax.inject.Inject;
- import androidx.drawerlayout.widget.DrawerLayout;
- import androidx.fragment.app.FragmentManager;
- import androidx.fragment.app.FragmentTransaction;
- /**
- * This activity shows all settings for contact backup/restore
- */
- public class ContactsPreferenceActivity extends FileActivity implements FileFragment.ContainerActivity {
- public static final String TAG = ContactsPreferenceActivity.class.getSimpleName();
- public static final String EXTRA_FILE = "FILE";
- public static final String EXTRA_USER = "USER";
- /**
- * Warning: default for this extra is different between this activity and {@link BackupFragment}
- */
- public static final String EXTRA_SHOW_SIDEBAR = "SHOW_SIDEBAR";
- public static final String PREFERENCE_CONTACTS_AUTOMATIC_BACKUP = "PREFERENCE_CONTACTS_AUTOMATIC_BACKUP";
- public static final String PREFERENCE_CONTACTS_LAST_BACKUP = "PREFERENCE_CONTACTS_LAST_BACKUP";
- public static final String BACKUP_TO_LIST = "BACKUP_TO_LIST";
- @Inject BackgroundJobManager backgroundJobManager;
- public static void startActivity(Context context) {
- Intent intent = new Intent(context, ContactsPreferenceActivity.class);
- context.startActivity(intent);
- }
- public static void startActivityWithContactsFile(Context context, User user, OCFile file) {
- Intent intent = new Intent(context, ContactsPreferenceActivity.class);
- intent.putExtra(EXTRA_FILE, file);
- intent.putExtra(EXTRA_USER, user);
- context.startActivity(intent);
- }
- public static void startActivityWithoutSidebar(Context context) {
- Intent intent = new Intent(context, ContactsPreferenceActivity.class);
- intent.putExtra(EXTRA_SHOW_SIDEBAR, false);
- context.startActivity(intent);
- }
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.contacts_preference);
- // setup toolbar
- setupToolbar();
- // setup drawer
- //setupDrawer(R.id.nav_contacts); // TODO needed?
- // show sidebar?
- boolean showSidebar = getIntent().getBooleanExtra(EXTRA_SHOW_SIDEBAR, true);
- if (!showSidebar) {
- setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
- if (getSupportActionBar() != null) {
- getSupportActionBar().setDisplayHomeAsUpEnabled(true);
- }
- if (mDrawerToggle != null) {
- mDrawerToggle.setDrawerIndicatorEnabled(false);
- }
- }
- Intent intent = getIntent();
- if (savedInstanceState == null) {
- FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
- if (intent == null || intent.getParcelableExtra(EXTRA_FILE) == null ||
- intent.getParcelableExtra(EXTRA_USER) == null) {
- BackupFragment fragment = BackupFragment.create(showSidebar);
- transaction.add(R.id.frame_container, fragment);
- } else {
- OCFile file = intent.getParcelableExtra(EXTRA_FILE);
- User user = intent.getParcelableExtra(EXTRA_USER);
- BackupListFragment contactListFragment = BackupListFragment.newInstance(file, user);
- transaction.add(R.id.frame_container, contactListFragment);
- }
- transaction.commit();
- }
- }
- @Override
- public void showDetails(OCFile file) {
- // not needed
- }
- @Override
- public void showDetails(OCFile file, int activeTab) {
- // not needed
- }
- @Override
- public void onBrowsedDownTo(OCFile folder) {
- // not needed
- }
- @Override
- public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
- // not needed
- }
- @Override
- public void onBackPressed() {
- if (getSupportFragmentManager().findFragmentByTag(BackupListFragment.TAG) != null) {
- getSupportFragmentManager().popBackStack(BACKUP_TO_LIST, FragmentManager.POP_BACK_STACK_INCLUSIVE);
- } else {
- finish();
- }
- }
- }
|