package gui.assets;
import gui.Gui;
import gui.PasswordPane;
import gui.models.PaymentsTableModel;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.Insets;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import javax.swing.table.TableRowSorter;
import controller.Controller;
import qora.assets.Asset;
import qora.payment.Payment;
import qora.transaction.Transaction;
import utils.BigDecimalStringComparator;
import utils.Pair;
@SuppressWarnings("serial")
public class MultiPaymentFrame extends JFrame
{
private Asset asset;
private List<Payment> payments;
private JTextField txtAccount;
private JButton sendButton;
private JTextField txtFee;
@SuppressWarnings("unchecked")
public MultiPaymentFrame(Asset asset, List<Payment> payments)
{
super("Qora - Pay Dividend");
this.asset = asset;
this.payments = payments;
//CLOSE
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
//ICON
List<Image> icons = new ArrayList<Image>();
icons.add(Toolkit.getDefaultToolkit().getImage("images/icons/icon16.png"));
icons.add(Toolkit.getDefaultToolkit().getImage("images/icons/icon32.png"));
icons.add(Toolkit.getDefaultToolkit().getImage("images/icons/icon64.png"));
icons.add(Toolkit.getDefaultToolkit().getImage("images/icons/icon128.png"));
this.setIconImages(icons);
//LAYOUT
this.setLayout(new GridBagLayout());
//PADDING
((JComponent) this.getContentPane()).setBorder(new EmptyBorder(5, 5, 5, 5));
//LABEL GBC
GridBagConstraints labelGBC = new GridBagConstraints();
labelGBC.insets = new Insets(5,5,5,5);
labelGBC.fill = GridBagConstraints.HORIZONTAL;
labelGBC.anchor = GridBagConstraints.NORTHWEST;
labelGBC.weightx = 0;
labelGBC.gridx = 0;
//COMBOBOX GBC
GridBagConstraints cbxGBC = new GridBagConstraints();
cbxGBC.insets = new Insets(5,5,5,5);
cbxGBC.fill = GridBagConstraints.NONE;
cbxGBC.anchor = GridBagConstraints.NORTHWEST;
cbxGBC.weightx = 0;
cbxGBC.gridx = 1;
//TEXTFIELD GBC
GridBagConstraints txtGBC = new GridBagConstraints();
txtGBC.insets = new Insets(5,5,5,5);
txtGBC.fill = GridBagConstraints.HORIZONTAL;
txtGBC.anchor = GridBagConstraints.NORTHWEST;
txtGBC.weightx = 1;
txtGBC.gridwidth = 2;
txtGBC.gridx = 1;
//BUTTON GBC
GridBagConstraints buttonGBC = new GridBagConstraints();
buttonGBC.insets = new Insets(5,5,5,5);
buttonGBC.fill = GridBagConstraints.NONE;
buttonGBC.anchor = GridBagConstraints.NORTHWEST;
buttonGBC.gridwidth = 2;
buttonGBC.gridx = 0;
//LABEL ACCOUNT
labelGBC.gridy = 0;
JLabel accountLabel = new JLabel("Account:");
this.add(accountLabel, labelGBC);
//TXT ACCOUNT
txtGBC.gridy = 0;
this.txtAccount = new JTextField(asset.getOwner().getAddress());
this.txtAccount.setEditable(false);
this.add(this.txtAccount, txtGBC);
//LABEL PAYMENTS
labelGBC.gridy = 1;
JLabel paymentsLabel = new JLabel("Payments:");
this.add(paymentsLabel, labelGBC);
//OPTIONS
txtGBC.gridy = 1;
PaymentsTableModel paymentsTableModel = new PaymentsTableModel(this.payments);
JTable table = Gui.createSortableTable(paymentsTableModel, 1);
TableRowSorter<PaymentsTableModel> sorter = (TableRowSorter<PaymentsTableModel>) table.getRowSorter();
sorter.setComparator(PaymentsTableModel.COLUMN_AMOUNT, new BigDecimalStringComparator());
this.add(new JScrollPane(table), txtGBC);
//LABEL FEE
labelGBC.gridy = 2;
JLabel feeLabel = new JLabel("Fee:");
this.add(feeLabel, labelGBC);
//TXT AMOUNT
txtGBC.gridy = 2;
txtFee = new JTextField();
BigDecimal fee = BigDecimal.ONE.setScale(8);
fee = fee.add(BigDecimal.valueOf(this.payments.size()).divide(BigDecimal.valueOf(5)));
txtFee.setText(fee.toPlainString());
this.add(txtFee, txtGBC);
//BUTTON GENERATE
buttonGBC.gridy = 3;
this.sendButton = new JButton("Send");
this.sendButton.setPreferredSize(new Dimension(160, 25));
this.sendButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
onSendClick();
}
});
this.add(this.sendButton, buttonGBC);
//PACK
this.pack();
this.setResizable(false);
this.setLocationRelativeTo(null);
this.setVisible(true);
}
public void onSendClick()
{
//DISABLE
this.sendButton.setEnabled(false);
//CHECK IF NETWORK OKE
if(Controller.getInstance().getStatus() != Controller.STATUS_OKE)
{
//NETWORK NOT OKE
JOptionPane.showMessageDialog(null, "You are unable to send a transaction while synchronizing or while having no connections!", "Error", JOptionPane.ERROR_MESSAGE);
//ENABLE
this.sendButton.setEnabled(true);
return;
}
//CHECK IF WALLET UNLOCKED
if(!Controller.getInstance().isWalletUnlocked())
{
//ASK FOR PASSWORD
String password = PasswordPane.showUnlockWalletDialog();
if(!Controller.getInstance().unlockWallet(password))
{
//WRONG PASSWORD
JOptionPane.showMessageDialog(null, "Invalid password", "Unlock Wallet", JOptionPane.ERROR_MESSAGE);
//ENABLE
this.sendButton.setEnabled(true);
return;
}
}
int parsing = 0;
try
{
//READ FEE
parsing = 2;
BigDecimal fee = new BigDecimal(txtFee.getText()).setScale(8);
//CHECK MIMIMUM FEE
if(fee.compareTo(Transaction.MINIMUM_FEE) == -1)
{
JOptionPane.showMessageDialog(new JFrame(), "Fee must be at least 1!", "Error", JOptionPane.ERROR_MESSAGE);
//ENABLE
this.sendButton.setEnabled(true);
return;
}
//CREATE MULTI PAYMENT
Pair<Transaction, Integer> result = Controller.getInstance().sendMultiPayment(Controller.getInstance().getPrivateKeyAccountByAddress(this.asset.getOwner().getAddress()), this.payments, fee);
//CHECK VALIDATE MESSAGE
switch(result.getB())
{
case Transaction.VALIDATE_OKE:
JOptionPane.showMessageDialog(new JFrame(), "Payment has been sent!", "Success", JOptionPane.INFORMATION_MESSAGE);
break;
case Transaction.INVALID_PAYMENTS_LENGTH:
JOptionPane.showMessageDialog(new JFrame(), "The amount of payments must be between (1-400)!", "Error", JOptionPane.ERROR_MESSAGE);
break;
case Transaction.INVALID_ADDRESS:
JOptionPane.showMessageDialog(new JFrame(), "Invalid address!", "Error", JOptionPane.ERROR_MESSAGE);
break;
case Transaction.NEGATIVE_AMOUNT:
JOptionPane.showMessageDialog(new JFrame(), "Amount must be positive!", "Error", JOptionPane.ERROR_MESSAGE);
break;
case Transaction.NEGATIVE_FEE:
JOptionPane.showMessageDialog(new JFrame(), "Fee must be at least 1!", "Error", JOptionPane.ERROR_MESSAGE);
break;
case Transaction.NO_BALANCE:
JOptionPane.showMessageDialog(new JFrame(), "Not enough balance!", "Error", JOptionPane.ERROR_MESSAGE);
break;
default:
JOptionPane.showMessageDialog(new JFrame(), "Unknown error!", "Error", JOptionPane.ERROR_MESSAGE);
break;
}
}
catch(Exception e)
{
//CHECK WHERE PARSING ERROR HAPPENED
switch(parsing)
{
case 2:
JOptionPane.showMessageDialog(new JFrame(), "Invalid fee!", "Error", JOptionPane.ERROR_MESSAGE);
break;
}
}
//ENABLE
this.sendButton.setEnabled(true);
}
}