Android Open Source - neoscoin-wallet Import Keys Activity






From Project

Back to project page neoscoin-wallet.

License

The source code is released under:

GNU General Public License

If you think the Android project neoscoin-wallet listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2013-2014 the original author or authors.
 *//from w ww.ja v a2  s. c  o m
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 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 de.schildbach.wallet.ui;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.util.List;

import android.app.AlertDialog;
import android.app.Dialog;
import android.content.ContentResolver;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
import android.content.DialogInterface.OnClickListener;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.EditText;

import com.google.bitcoin.core.ECKey;
import com.google.bitcoin.core.Wallet;

import de.schildbach.wallet.Constants;
import de.schildbach.wallet.util.Crypto;
import de.schildbach.wallet.util.WalletUtils;
import katastrophos.neoscoin.wallet.R;

/**
 * @author Andreas Schildbach
 */
public final class ImportKeysActivity extends AbstractWalletActivity
{
  private static final int DIALOG_IMPORT_KEYS = 0;

  private Wallet wallet;
  private ContentResolver contentResolver;

  private Uri backupFileUri;

  @Override
  protected void onCreate(final Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);

    wallet = getWalletApplication().getWallet();
    contentResolver = getContentResolver();

    backupFileUri = getIntent().getData();

    showDialog(DIALOG_IMPORT_KEYS);
  }

  @Override
  protected Dialog onCreateDialog(final int id)
  {
    if (id == DIALOG_IMPORT_KEYS)
      return createImportKeysDialog();
    else
      throw new IllegalArgumentException();
  }

  @Override
  protected void onPrepareDialog(final int id, final Dialog dialog)
  {
    if (id == DIALOG_IMPORT_KEYS)
      prepareImportKeysDialog(dialog);
  }

  private Dialog createImportKeysDialog()
  {
    final View view = getLayoutInflater().inflate(R.layout.import_keys_from_content_dialog, null);
    final EditText passwordView = (EditText) view.findViewById(R.id.import_keys_from_content_dialog_password);

    final DialogBuilder dialog = new DialogBuilder(this);
    dialog.setTitle(R.string.import_keys_dialog_title);
    dialog.setView(view);
    dialog.setPositiveButton(R.string.import_keys_dialog_button_import, new OnClickListener()
    {
      @Override
      public void onClick(final DialogInterface dialog, final int which)
      {
        final String password = passwordView.getText().toString().trim();
        passwordView.setText(null); // get rid of it asap

        try
        {
          final InputStream is = contentResolver.openInputStream(backupFileUri);
          importPrivateKeys(is, password);
        }
        catch (final FileNotFoundException x)
        {
          // should not happen
          throw new RuntimeException(x);
        }
      }
    });
    dialog.setNegativeButton(R.string.button_cancel, new OnClickListener()
    {
      @Override
      public void onClick(final DialogInterface dialog, final int which)
      {
        passwordView.setText(null); // get rid of it asap
        finish();
      }
    });
    dialog.setOnCancelListener(new OnCancelListener()
    {
      @Override
      public void onCancel(final DialogInterface dialog)
      {
        passwordView.setText(null); // get rid of it asap
        finish();
      }
    });

    return dialog.create();
  }

  private void prepareImportKeysDialog(final Dialog dialog)
  {
    final AlertDialog alertDialog = (AlertDialog) dialog;

    final EditText passwordView = (EditText) alertDialog.findViewById(R.id.import_keys_from_content_dialog_password);
    passwordView.setText(null);

    final ImportDialogButtonEnablerListener dialogButtonEnabler = new ImportDialogButtonEnablerListener(passwordView, alertDialog)
    {
      @Override
      protected boolean hasFile()
      {
        return true;
      }
    };
    passwordView.addTextChangedListener(dialogButtonEnabler);

    final CheckBox showView = (CheckBox) alertDialog.findViewById(R.id.import_keys_from_content_dialog_show);
    showView.setOnCheckedChangeListener(new ShowPasswordCheckListener(passwordView));
  }

  private void importPrivateKeys(final InputStream is, final String password)
  {
    try
    {
      final BufferedReader cipherIn = new BufferedReader(new InputStreamReader(is, Constants.UTF_8));
      final StringBuilder cipherText = new StringBuilder();
      while (true)
      {
        final String line = cipherIn.readLine();
        if (line == null)
          break;

        cipherText.append(line);
      }
      cipherIn.close();

      final String plainText = Crypto.decrypt(cipherText.toString(), password.toCharArray());
      final Reader plainReader = new StringReader(plainText);

      final BufferedReader keyReader = new BufferedReader(plainReader);
      final List<ECKey> importedKeys = WalletUtils.readKeys(keyReader);
      keyReader.close();

      final int numKeysToImport = importedKeys.size();
      final int numKeysImported = wallet.addKeys(importedKeys);

      final DialogBuilder dialog = new DialogBuilder(this);
      final StringBuilder message = new StringBuilder();
      if (numKeysImported > 0)
        message.append(getString(R.string.import_keys_dialog_success_imported, numKeysImported));
      if (numKeysImported < numKeysToImport)
      {
        if (message.length() > 0)
          message.append('\n');
        message.append(getString(R.string.import_keys_dialog_success_existing, numKeysToImport - numKeysImported));
      }
      if (numKeysImported > 0)
      {
        if (message.length() > 0)
          message.append("\n\n");
        message.append(getString(R.string.import_keys_dialog_success_reset));
      }
      dialog.setMessage(message);
      if (numKeysImported > 0)
      {
        dialog.setPositiveButton(R.string.import_keys_dialog_button_reset_blockchain, new DialogInterface.OnClickListener()
        {
          @Override
          public void onClick(final DialogInterface dialog, final int id)
          {
            getWalletApplication().resetBlockchain();
            finish();
          }
        });
        dialog.setNegativeButton(R.string.button_dismiss, finishListener);
      }
      else
      {
        dialog.singleDismissButton(finishListener);
      }
      dialog.setOnCancelListener(finishListener);
      dialog.show();

      log.info("imported " + numKeysImported + " of " + numKeysToImport + " private keys");
    }
    catch (final IOException x)
    {
      final DialogBuilder dialog = DialogBuilder.warn(this, R.string.import_export_keys_dialog_failure_title);
      dialog.setMessage(getString(R.string.import_keys_dialog_failure, x.getMessage()));
      dialog.setPositiveButton(R.string.button_dismiss, finishListener).setOnCancelListener(finishListener);
      dialog.setNegativeButton(R.string.button_retry, new DialogInterface.OnClickListener()
      {
        @Override
        public void onClick(final DialogInterface dialog, final int id)
        {
          showDialog(DIALOG_IMPORT_KEYS);
        }
      });
      dialog.show();

      log.info("problem reading private keys", x);
    }
  }

  private class FinishListener implements DialogInterface.OnClickListener, DialogInterface.OnCancelListener
  {
    @Override
    public void onClick(final DialogInterface dialog, final int which)
    {
      finish();
    }

    @Override
    public void onCancel(final DialogInterface dialog)
    {
      finish();
    }
  }

  private final FinishListener finishListener = new FinishListener();
}




Java Source Code List

de.schildbach.wallet.AddressBookProvider.java
de.schildbach.wallet.Configuration.java
de.schildbach.wallet.Constants.java
de.schildbach.wallet.ExchangeRatesProvider.java
de.schildbach.wallet.PaymentIntent.java
de.schildbach.wallet.WalletApplication.java
de.schildbach.wallet.WalletBalanceWidgetProvider.java
de.schildbach.wallet.camera.CameraManager.java
de.schildbach.wallet.integration.android.BitcoinIntegration.java
de.schildbach.wallet.integration.sample.SampleActivity.java
de.schildbach.wallet.offline.AcceptBluetoothService.java
de.schildbach.wallet.offline.AcceptBluetoothThread.java
de.schildbach.wallet.offline.DirectPaymentTask.java
de.schildbach.wallet.service.AutosyncReceiver.java
de.schildbach.wallet.service.BlockchainServiceImpl.java
de.schildbach.wallet.service.BlockchainService.java
de.schildbach.wallet.ui.AboutActivity.java
de.schildbach.wallet.ui.AbstractBindServiceActivity.java
de.schildbach.wallet.ui.AbstractOnDemandServiceActivity.java
de.schildbach.wallet.ui.AbstractWalletActivity.java
de.schildbach.wallet.ui.AddressAndLabel.java
de.schildbach.wallet.ui.AddressBookActivity.java
de.schildbach.wallet.ui.BlockListFragment.java
de.schildbach.wallet.ui.CurrencyAmountView.java
de.schildbach.wallet.ui.CurrencyCalculatorLink.java
de.schildbach.wallet.ui.CurrencySymbolDrawable.java
de.schildbach.wallet.ui.CurrencyTextView.java
de.schildbach.wallet.ui.DialogBuilder.java
de.schildbach.wallet.ui.EditAddressBookEntryFragment.java
de.schildbach.wallet.ui.ExchangeRateLoader.java
de.schildbach.wallet.ui.ExchangeRatesActivity.java
de.schildbach.wallet.ui.ExchangeRatesFragment.java
de.schildbach.wallet.ui.FileAdapter.java
de.schildbach.wallet.ui.HelpDialogFragment.java
de.schildbach.wallet.ui.ImportDialogButtonEnablerListener.java
de.schildbach.wallet.ui.ImportKeysActivity.java
de.schildbach.wallet.ui.InputParser.java
de.schildbach.wallet.ui.NetworkMonitorActivity.java
de.schildbach.wallet.ui.PeerListFragment.java
de.schildbach.wallet.ui.PreferencesActivity.java
de.schildbach.wallet.ui.ProgressDialogFragment.java
de.schildbach.wallet.ui.ReportIssueDialogBuilder.java
de.schildbach.wallet.ui.RequestCoinsActivity.java
de.schildbach.wallet.ui.RequestCoinsFragment.java
de.schildbach.wallet.ui.RequestPaymentRequestTask.java
de.schildbach.wallet.ui.ScanActivity.java
de.schildbach.wallet.ui.ScannerView.java
de.schildbach.wallet.ui.SendCoinsActivity.java
de.schildbach.wallet.ui.SendCoinsFragment.java
de.schildbach.wallet.ui.SendCoinsOfflineTask.java
de.schildbach.wallet.ui.SendCoinsQrActivity.java
de.schildbach.wallet.ui.SendingAddressesFragment.java
de.schildbach.wallet.ui.ShowPasswordCheckListener.java
de.schildbach.wallet.ui.TransactionActivity.java
de.schildbach.wallet.ui.TransactionFragment.java
de.schildbach.wallet.ui.TransactionsListAdapter.java
de.schildbach.wallet.ui.TransactionsListFragment.java
de.schildbach.wallet.ui.WalletActionsFragment.java
de.schildbach.wallet.ui.WalletActivity.java
de.schildbach.wallet.ui.WalletAddressFragment.java
de.schildbach.wallet.ui.WalletAddressesAdapter.java
de.schildbach.wallet.ui.WalletAddressesFragment.java
de.schildbach.wallet.ui.WalletBalanceFragment.java
de.schildbach.wallet.ui.WalletBalanceLoader.java
de.schildbach.wallet.ui.WalletDisclaimerFragment.java
de.schildbach.wallet.ui.WalletTransactionsFragment.java
de.schildbach.wallet.util.AbstractClipboardManager.java
de.schildbach.wallet.util.Base43.java
de.schildbach.wallet.util.BitmapFragment.java
de.schildbach.wallet.util.Bluetooth.java
de.schildbach.wallet.util.CircularProgressView.java
de.schildbach.wallet.util.CrashReporter.java
de.schildbach.wallet.util.Crypto.java
de.schildbach.wallet.util.GenericUtils.java
de.schildbach.wallet.util.HttpGetThread.java
de.schildbach.wallet.util.Io.java
de.schildbach.wallet.util.Iso8601Format.java
de.schildbach.wallet.util.LinuxSecureRandom.java
de.schildbach.wallet.util.Nfc.java
de.schildbach.wallet.util.PaymentProtocol.java
de.schildbach.wallet.util.Qr.java
de.schildbach.wallet.util.ThrottlingWalletChangeListener.java
de.schildbach.wallet.util.ViewPagerTabs.java
de.schildbach.wallet.util.WalletUtils.java