2011-06-30 18:05:29 +02:00
|
|
|
#include "walletmodel.h"
|
|
|
|
#include "guiconstants.h"
|
|
|
|
#include "optionsmodel.h"
|
|
|
|
#include "addresstablemodel.h"
|
|
|
|
#include "transactiontablemodel.h"
|
|
|
|
|
|
|
|
#include "headers.h"
|
2012-02-14 13:14:43 +01:00
|
|
|
#include "db.h" // for BackupWallet
|
2011-06-30 18:05:29 +02:00
|
|
|
|
|
|
|
#include <QTimer>
|
2011-07-16 19:01:05 +02:00
|
|
|
#include <QSet>
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-29 14:36:35 +02:00
|
|
|
WalletModel::WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *parent) :
|
|
|
|
QObject(parent), wallet(wallet), optionsModel(optionsModel), addressTableModel(0),
|
2011-07-17 14:06:43 +02:00
|
|
|
transactionTableModel(0),
|
2011-08-23 20:08:42 +02:00
|
|
|
cachedBalance(0), cachedUnconfirmedBalance(0), cachedNumTransactions(0),
|
|
|
|
cachedEncryptionStatus(Unencrypted)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
// Until signal notifications is built into the bitcoin core,
|
|
|
|
// simply update everything after polling using a timer.
|
|
|
|
QTimer *timer = new QTimer(this);
|
|
|
|
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
|
|
|
|
timer->start(MODEL_UPDATE_DELAY);
|
|
|
|
|
|
|
|
addressTableModel = new AddressTableModel(wallet, this);
|
|
|
|
transactionTableModel = new TransactionTableModel(wallet, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 WalletModel::getBalance() const
|
|
|
|
{
|
|
|
|
return wallet->GetBalance();
|
|
|
|
}
|
|
|
|
|
2011-07-11 20:42:10 +02:00
|
|
|
qint64 WalletModel::getUnconfirmedBalance() const
|
|
|
|
{
|
|
|
|
return wallet->GetUnconfirmedBalance();
|
|
|
|
}
|
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
int WalletModel::getNumTransactions() const
|
|
|
|
{
|
|
|
|
int numTransactions = 0;
|
2011-09-02 18:02:22 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_wallet)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
numTransactions = wallet->mapWallet.size();
|
|
|
|
}
|
|
|
|
return numTransactions;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::update()
|
|
|
|
{
|
2011-07-17 14:06:43 +02:00
|
|
|
qint64 newBalance = getBalance();
|
|
|
|
qint64 newUnconfirmedBalance = getUnconfirmedBalance();
|
|
|
|
int newNumTransactions = getNumTransactions();
|
2011-08-23 20:08:42 +02:00
|
|
|
EncryptionStatus newEncryptionStatus = getEncryptionStatus();
|
2011-07-17 14:06:43 +02:00
|
|
|
|
|
|
|
if(cachedBalance != newBalance || cachedUnconfirmedBalance != newUnconfirmedBalance)
|
|
|
|
emit balanceChanged(newBalance, newUnconfirmedBalance);
|
|
|
|
|
|
|
|
if(cachedNumTransactions != newNumTransactions)
|
|
|
|
emit numTransactionsChanged(newNumTransactions);
|
|
|
|
|
2011-08-23 20:08:42 +02:00
|
|
|
if(cachedEncryptionStatus != newEncryptionStatus)
|
|
|
|
emit encryptionStatusChanged(newEncryptionStatus);
|
|
|
|
|
2011-07-17 14:06:43 +02:00
|
|
|
cachedBalance = newBalance;
|
|
|
|
cachedUnconfirmedBalance = newUnconfirmedBalance;
|
|
|
|
cachedNumTransactions = newNumTransactions;
|
2011-06-30 18:05:29 +02:00
|
|
|
|
|
|
|
addressTableModel->update();
|
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
bool WalletModel::validateAddress(const QString &address)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-26 15:38:31 +02:00
|
|
|
CBitcoinAddress addressParsed(address.toStdString());
|
|
|
|
return addressParsed.IsValid();
|
2011-07-16 19:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipient> &recipients)
|
|
|
|
{
|
|
|
|
qint64 total = 0;
|
|
|
|
QSet<QString> setAddress;
|
|
|
|
QString hex;
|
|
|
|
|
|
|
|
if(recipients.empty())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return OK;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
// Pre-check input data for validity
|
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-26 15:38:31 +02:00
|
|
|
if(!validateAddress(rcp.address))
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
|
|
|
return InvalidAddress;
|
|
|
|
}
|
|
|
|
setAddress.insert(rcp.address);
|
|
|
|
|
|
|
|
if(rcp.amount <= 0)
|
|
|
|
{
|
|
|
|
return InvalidAmount;
|
|
|
|
}
|
|
|
|
total += rcp.amount;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if(recipients.size() > setAddress.size())
|
|
|
|
{
|
|
|
|
return DuplicateAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(total > getBalance())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
return AmountExceedsBalance;
|
|
|
|
}
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if((total + nTransactionFee) > getBalance())
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return SendCoinsReturn(AmountWithFeeExceedsBalance, nTransactionFee);
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CRITICAL_BLOCK(cs_main)
|
2011-09-02 18:02:22 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_wallet)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
// Sendmany
|
2011-12-21 22:33:19 +01:00
|
|
|
std::vector<std::pair<CScript, int64> > vecSend;
|
2011-07-16 19:01:05 +02:00
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
|
|
|
{
|
|
|
|
CScript scriptPubKey;
|
|
|
|
scriptPubKey.SetBitcoinAddress(rcp.address.toStdString());
|
|
|
|
vecSend.push_back(make_pair(scriptPubKey, rcp.amount));
|
|
|
|
}
|
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
CWalletTx wtx;
|
2011-07-16 19:01:05 +02:00
|
|
|
CReserveKey keyChange(wallet);
|
2011-12-21 22:33:19 +01:00
|
|
|
int64 nFeeRequired = 0;
|
2011-07-16 19:01:05 +02:00
|
|
|
bool fCreated = wallet->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired);
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
if(!fCreated)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
if((total + nFeeRequired) > wallet->GetBalance())
|
|
|
|
{
|
|
|
|
return SendCoinsReturn(AmountWithFeeExceedsBalance, nFeeRequired);
|
|
|
|
}
|
|
|
|
return TransactionCreationFailed;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
if(!ThreadSafeAskFee(nFeeRequired, tr("Sending...").toStdString(), NULL))
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
|
|
|
return Aborted;
|
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
if(!wallet->CommitTransaction(wtx, keyChange))
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
return TransactionCommitFailed;
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2011-07-16 19:01:05 +02:00
|
|
|
hex = QString::fromStdString(wtx.GetHash().GetHex());
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add addresses that we've sent to to the address book
|
2011-07-16 19:01:05 +02:00
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2011-07-16 19:01:05 +02:00
|
|
|
std::string strAddress = rcp.address.toStdString();
|
2011-09-02 18:02:22 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_wallet)
|
2011-07-16 19:01:05 +02:00
|
|
|
{
|
|
|
|
if (!wallet->mapAddressBook.count(strAddress))
|
|
|
|
wallet->SetAddressBookName(strAddress, rcp.label.toStdString());
|
|
|
|
}
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
2011-07-30 19:28:41 +02:00
|
|
|
|
|
|
|
// Update our model of the address table
|
2011-07-30 19:21:46 +02:00
|
|
|
addressTableModel->updateList();
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
return SendCoinsReturn(OK, 0, hex);
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
OptionsModel *WalletModel::getOptionsModel()
|
|
|
|
{
|
|
|
|
return optionsModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddressTableModel *WalletModel::getAddressTableModel()
|
|
|
|
{
|
|
|
|
return addressTableModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionTableModel *WalletModel::getTransactionTableModel()
|
|
|
|
{
|
|
|
|
return transactionTableModel;
|
|
|
|
}
|
2011-07-02 13:45:59 +02:00
|
|
|
|
2011-08-23 20:08:42 +02:00
|
|
|
WalletModel::EncryptionStatus WalletModel::getEncryptionStatus() const
|
|
|
|
{
|
|
|
|
if(!wallet->IsCrypted())
|
|
|
|
{
|
|
|
|
return Unencrypted;
|
|
|
|
}
|
|
|
|
else if(wallet->IsLocked())
|
|
|
|
{
|
|
|
|
return Locked;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Unlocked;
|
|
|
|
}
|
|
|
|
}
|
2011-08-24 22:07:26 +02:00
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::setWalletEncrypted(bool encrypted, const SecureString &passphrase)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
if(encrypted)
|
|
|
|
{
|
|
|
|
// Encrypt
|
|
|
|
return wallet->EncryptWallet(passphrase);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Decrypt -- TODO; not supported yet
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::setWalletLocked(bool locked, const SecureString &passPhrase)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
if(locked)
|
|
|
|
{
|
|
|
|
// Lock
|
|
|
|
return wallet->Lock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Unlock
|
|
|
|
return wallet->Unlock(passPhrase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-26 07:02:04 +01:00
|
|
|
bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureString &newPass)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
bool retval;
|
2011-09-02 18:02:22 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_wallet)
|
2011-08-24 22:07:26 +02:00
|
|
|
{
|
|
|
|
wallet->Lock(); // Make sure wallet is locked before attempting pass change
|
|
|
|
retval = wallet->ChangeWalletPassphrase(oldPass, newPass);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-02-14 13:14:43 +01:00
|
|
|
bool WalletModel::backupWallet(const QString &filename)
|
|
|
|
{
|
|
|
|
return BackupWallet(*wallet, filename.toLocal8Bit().data());
|
|
|
|
}
|
|
|
|
|
2011-08-24 22:07:26 +02:00
|
|
|
// WalletModel::UnlockContext implementation
|
|
|
|
WalletModel::UnlockContext WalletModel::requestUnlock()
|
|
|
|
{
|
|
|
|
bool was_locked = getEncryptionStatus() == Locked;
|
|
|
|
if(was_locked)
|
|
|
|
{
|
|
|
|
// Request UI to unlock wallet
|
|
|
|
emit requireUnlock();
|
|
|
|
}
|
|
|
|
// If wallet is still locked, unlock was failed or cancelled, mark context as invalid
|
|
|
|
bool valid = getEncryptionStatus() != Locked;
|
|
|
|
|
|
|
|
return UnlockContext(this, valid, was_locked);
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::UnlockContext::UnlockContext(WalletModel *wallet, bool valid, bool relock):
|
|
|
|
wallet(wallet),
|
|
|
|
valid(valid),
|
|
|
|
relock(relock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModel::UnlockContext::~UnlockContext()
|
|
|
|
{
|
|
|
|
if(valid && relock)
|
|
|
|
{
|
|
|
|
wallet->setWalletLocked(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModel::UnlockContext::CopyFrom(const UnlockContext& rhs)
|
|
|
|
{
|
|
|
|
// Transfer context; old object no longer relocks wallet
|
|
|
|
*this = rhs;
|
|
|
|
rhs.relock = false;
|
|
|
|
}
|