2014-03-01 11:13:32 +01:00
|
|
|
package com.rarchives.ripme.ui;
|
|
|
|
|
2014-04-07 02:26:30 +02:00
|
|
|
import java.awt.CheckboxMenuItem;
|
2014-03-02 10:12:20 +01:00
|
|
|
import java.awt.Color;
|
2014-03-02 08:28:37 +01:00
|
|
|
import java.awt.Container;
|
2014-03-02 03:08:16 +01:00
|
|
|
import java.awt.Desktop;
|
2014-03-02 10:12:20 +01:00
|
|
|
import java.awt.Dimension;
|
2014-04-07 08:11:37 +02:00
|
|
|
import java.awt.Font;
|
2014-03-02 08:28:37 +01:00
|
|
|
import java.awt.GridBagConstraints;
|
|
|
|
import java.awt.GridBagLayout;
|
2014-04-07 02:26:30 +02:00
|
|
|
import java.awt.Image;
|
|
|
|
import java.awt.MenuItem;
|
|
|
|
import java.awt.PopupMenu;
|
|
|
|
import java.awt.SystemTray;
|
|
|
|
import java.awt.TrayIcon;
|
2014-04-08 06:57:18 +02:00
|
|
|
import java.awt.TrayIcon.MessageType;
|
2014-03-01 11:13:32 +01:00
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
import java.awt.event.ActionListener;
|
2014-04-07 02:26:30 +02:00
|
|
|
import java.awt.event.ItemEvent;
|
|
|
|
import java.awt.event.ItemListener;
|
2014-04-08 06:57:18 +02:00
|
|
|
import java.awt.event.MouseAdapter;
|
|
|
|
import java.awt.event.MouseEvent;
|
|
|
|
import java.awt.event.WindowAdapter;
|
|
|
|
import java.awt.event.WindowEvent;
|
2014-03-01 11:13:32 +01:00
|
|
|
import java.io.File;
|
2014-04-27 19:09:52 +02:00
|
|
|
import java.io.IOException;
|
2014-03-09 08:59:36 +01:00
|
|
|
import java.net.MalformedURLException;
|
2014-04-27 19:09:52 +02:00
|
|
|
import java.net.URI;
|
2014-03-01 11:13:32 +01:00
|
|
|
import java.net.URL;
|
2014-04-27 19:09:52 +02:00
|
|
|
import java.util.List;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-04-07 02:26:30 +02:00
|
|
|
import javax.imageio.ImageIO;
|
2014-03-08 21:22:49 +01:00
|
|
|
import javax.swing.DefaultListModel;
|
2014-04-07 02:26:30 +02:00
|
|
|
import javax.swing.ImageIcon;
|
2014-03-01 11:13:32 +01:00
|
|
|
import javax.swing.JButton;
|
2014-04-06 01:57:54 +02:00
|
|
|
import javax.swing.JCheckBox;
|
2014-04-06 11:41:04 +02:00
|
|
|
import javax.swing.JFileChooser;
|
2014-03-01 11:13:32 +01:00
|
|
|
import javax.swing.JFrame;
|
|
|
|
import javax.swing.JLabel;
|
2014-03-02 10:12:20 +01:00
|
|
|
import javax.swing.JList;
|
2014-04-07 02:26:30 +02:00
|
|
|
import javax.swing.JOptionPane;
|
2014-03-02 03:08:16 +01:00
|
|
|
import javax.swing.JPanel;
|
2014-03-02 08:28:37 +01:00
|
|
|
import javax.swing.JProgressBar;
|
|
|
|
import javax.swing.JScrollPane;
|
2014-03-01 11:13:32 +01:00
|
|
|
import javax.swing.JTextField;
|
2014-03-02 08:28:37 +01:00
|
|
|
import javax.swing.JTextPane;
|
2014-03-09 08:59:36 +01:00
|
|
|
import javax.swing.ListSelectionModel;
|
2014-03-08 21:22:49 +01:00
|
|
|
import javax.swing.SwingUtilities;
|
2014-04-07 02:26:30 +02:00
|
|
|
import javax.swing.UIManager;
|
2014-03-02 08:28:37 +01:00
|
|
|
import javax.swing.border.EmptyBorder;
|
2014-06-08 04:54:36 +02:00
|
|
|
import javax.swing.event.DocumentEvent;
|
|
|
|
import javax.swing.event.DocumentListener;
|
2014-07-30 16:48:52 +02:00
|
|
|
import javax.swing.event.ListDataEvent;
|
|
|
|
import javax.swing.event.ListDataListener;
|
2014-03-02 10:12:20 +01:00
|
|
|
import javax.swing.text.BadLocationException;
|
|
|
|
import javax.swing.text.SimpleAttributeSet;
|
|
|
|
import javax.swing.text.StyleConstants;
|
|
|
|
import javax.swing.text.StyledDocument;
|
2014-03-02 03:08:16 +01:00
|
|
|
|
|
|
|
import org.apache.log4j.Logger;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractRipper;
|
2014-03-02 03:08:16 +01:00
|
|
|
import com.rarchives.ripme.utils.Utils;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-09 09:20:22 +01:00
|
|
|
/**
|
|
|
|
* Everything UI-related starts and ends here.
|
|
|
|
*/
|
2014-03-13 20:18:35 +01:00
|
|
|
public class MainWindow implements Runnable, RipStatusHandler {
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-02 03:08:16 +01:00
|
|
|
private static final Logger logger = Logger.getLogger(MainWindow.class);
|
2014-03-09 08:59:36 +01:00
|
|
|
|
2014-07-30 16:48:52 +02:00
|
|
|
private boolean isRipping = false; // Flag to indicate if we're ripping something
|
|
|
|
|
2014-03-01 11:13:32 +01:00
|
|
|
private static JFrame mainFrame;
|
|
|
|
private static JTextField ripTextfield;
|
2014-04-18 07:11:37 +02:00
|
|
|
private static JButton ripButton,
|
|
|
|
stopButton;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-02 03:08:16 +01:00
|
|
|
private static JLabel statusLabel;
|
2014-03-02 08:28:37 +01:00
|
|
|
private static JButton openButton;
|
|
|
|
private static JProgressBar statusProgress;
|
|
|
|
|
2014-03-02 10:12:20 +01:00
|
|
|
// Log
|
|
|
|
private static JButton optionLog;
|
|
|
|
private static JPanel logPanel;
|
|
|
|
private static JTextPane logText;
|
|
|
|
private static JScrollPane logTextScroll;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-02 10:12:20 +01:00
|
|
|
// History
|
|
|
|
private static JButton optionHistory;
|
|
|
|
private static JPanel historyPanel;
|
|
|
|
private static JList historyList;
|
2014-03-08 21:22:49 +01:00
|
|
|
private static DefaultListModel historyListModel;
|
2014-03-02 10:12:20 +01:00
|
|
|
private static JScrollPane historyListScroll;
|
2014-03-09 08:59:36 +01:00
|
|
|
private static JPanel historyButtonPanel;
|
2014-03-08 21:22:49 +01:00
|
|
|
private static JButton historyButtonRemove,
|
|
|
|
historyButtonClear,
|
|
|
|
historyButtonRerip;
|
2014-03-02 10:12:20 +01:00
|
|
|
|
2014-07-30 16:48:52 +02:00
|
|
|
// Queue
|
|
|
|
private static JButton optionQueue;
|
|
|
|
private static JPanel queuePanel;
|
|
|
|
private static JList queueList;
|
|
|
|
private static DefaultListModel queueListModel;
|
|
|
|
private static JScrollPane queueListScroll;
|
|
|
|
|
2014-03-02 10:12:20 +01:00
|
|
|
// Configuration
|
|
|
|
private static JButton optionConfiguration;
|
|
|
|
private static JPanel configurationPanel;
|
2014-04-05 10:39:10 +02:00
|
|
|
private static JButton configUpdateButton;
|
|
|
|
private static JLabel configUpdateLabel;
|
2014-04-06 01:57:54 +02:00
|
|
|
private static JTextField configTimeoutText;
|
|
|
|
private static JTextField configThreadsText;
|
|
|
|
private static JCheckBox configOverwriteCheckbox;
|
2014-04-06 11:41:04 +02:00
|
|
|
private static JLabel configSaveDirLabel;
|
|
|
|
private static JButton configSaveDirButton;
|
|
|
|
private static JTextField configRetriesText;
|
2014-04-07 08:11:37 +02:00
|
|
|
private static JCheckBox configAutoupdateCheckbox;
|
2014-05-11 09:38:15 +02:00
|
|
|
private static JCheckBox configPlaySound;
|
2014-05-26 09:31:58 +02:00
|
|
|
private static JCheckBox configSaveOrderCheckbox;
|
2014-06-02 05:00:19 +02:00
|
|
|
private static JCheckBox configShowPopup;
|
2014-06-12 07:21:09 +02:00
|
|
|
private static JCheckBox configSaveLogs;
|
2014-06-28 18:47:46 +02:00
|
|
|
private static JCheckBox configSaveURLsOnly;
|
2014-07-25 09:48:52 +02:00
|
|
|
private static JCheckBox configSaveAlbumTitles;
|
2014-04-06 11:41:04 +02:00
|
|
|
|
2014-04-08 06:57:18 +02:00
|
|
|
private static TrayIcon trayIcon;
|
2014-04-07 08:11:37 +02:00
|
|
|
private static MenuItem trayMenuMain;
|
2014-04-07 02:26:30 +02:00
|
|
|
private static MenuItem trayMenuAbout;
|
|
|
|
private static MenuItem trayMenuExit;
|
|
|
|
private static CheckboxMenuItem trayMenuAutorip;
|
|
|
|
|
|
|
|
private static Image mainIcon;
|
2014-04-18 06:43:34 +02:00
|
|
|
|
|
|
|
private static AbstractRipper ripper;
|
2014-04-07 02:26:30 +02:00
|
|
|
|
2014-03-01 11:13:32 +01:00
|
|
|
public MainWindow() {
|
2014-04-06 12:27:30 +02:00
|
|
|
mainFrame = new JFrame("RipMe v" + UpdateUtils.getThisJarVersion());
|
2014-03-01 11:13:32 +01:00
|
|
|
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
2014-04-07 02:26:30 +02:00
|
|
|
mainFrame.setResizable(false);
|
2014-03-02 08:28:37 +01:00
|
|
|
mainFrame.setLayout(new GridBagLayout());
|
|
|
|
|
|
|
|
createUI(mainFrame.getContentPane());
|
2014-03-08 21:22:49 +01:00
|
|
|
loadHistory();
|
2014-03-02 08:28:37 +01:00
|
|
|
setupHandlers();
|
2014-04-06 11:41:04 +02:00
|
|
|
|
|
|
|
Thread shutdownThread = new Thread() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-04-07 02:26:30 +02:00
|
|
|
shutdownCleanup();
|
2014-04-06 11:41:04 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
Runtime.getRuntime().addShutdownHook(shutdownThread);
|
2014-04-07 08:11:37 +02:00
|
|
|
|
|
|
|
if (Utils.getConfigBoolean("auto.update", true)) {
|
|
|
|
upgradeProgram();
|
|
|
|
}
|
|
|
|
|
2014-08-01 19:31:23 +02:00
|
|
|
boolean autoripEnabled = Utils.getConfigBoolean("clipboard.autorip", false);
|
|
|
|
ClipboardUtils.setClipboardAutoRip(autoripEnabled);
|
|
|
|
trayMenuAutorip.setState(autoripEnabled);
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 08:11:37 +02:00
|
|
|
public void upgradeProgram() {
|
|
|
|
if (!configurationPanel.isVisible()) {
|
|
|
|
optionConfiguration.doClick();
|
|
|
|
}
|
|
|
|
Runnable r = new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
UpdateUtils.updateProgram(configUpdateLabel);
|
|
|
|
}
|
|
|
|
};
|
2014-04-29 15:17:49 +02:00
|
|
|
new Thread(r).start();
|
2014-04-07 08:11:37 +02:00
|
|
|
}
|
|
|
|
|
2014-03-01 11:13:32 +01:00
|
|
|
public void run() {
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-03-01 11:13:32 +01:00
|
|
|
mainFrame.setLocationRelativeTo(null);
|
|
|
|
mainFrame.setVisible(true);
|
|
|
|
}
|
2014-04-06 11:41:04 +02:00
|
|
|
|
2014-04-07 02:26:30 +02:00
|
|
|
public void shutdownCleanup() {
|
2014-04-06 11:41:04 +02:00
|
|
|
Utils.setConfigBoolean("file.overwrite", configOverwriteCheckbox.isSelected());
|
|
|
|
Utils.setConfigInteger("threads.size", Integer.parseInt(configThreadsText.getText()));
|
|
|
|
Utils.setConfigInteger("download.retries", Integer.parseInt(configRetriesText.getText()));
|
|
|
|
Utils.setConfigInteger("download.timeout", Integer.parseInt(configTimeoutText.getText()));
|
2014-04-07 02:26:30 +02:00
|
|
|
Utils.setConfigBoolean("clipboard.autorip", ClipboardUtils.getClipboardAutoRip());
|
2014-04-07 08:11:37 +02:00
|
|
|
Utils.setConfigBoolean("auto.update", configAutoupdateCheckbox.isSelected());
|
2014-05-11 09:38:15 +02:00
|
|
|
Utils.setConfigBoolean("play.sound", configPlaySound.isSelected());
|
2014-05-26 09:31:58 +02:00
|
|
|
Utils.setConfigBoolean("download.save_order", configSaveOrderCheckbox.isSelected());
|
2014-06-02 05:00:19 +02:00
|
|
|
Utils.setConfigBoolean("download.show_popup", configShowPopup.isSelected());
|
2014-06-12 07:21:09 +02:00
|
|
|
Utils.setConfigBoolean("log.save", configSaveLogs.isSelected());
|
2014-06-28 18:47:46 +02:00
|
|
|
Utils.setConfigBoolean("urls_only.save", configSaveURLsOnly.isSelected());
|
2014-07-25 09:48:52 +02:00
|
|
|
Utils.setConfigBoolean("album_titles.save", configSaveAlbumTitles.isSelected());
|
2014-04-07 02:26:30 +02:00
|
|
|
saveHistory();
|
2014-04-06 11:41:04 +02:00
|
|
|
Utils.saveConfig();
|
|
|
|
}
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-13 20:38:11 +01:00
|
|
|
private void status(String text) {
|
2014-04-04 10:08:04 +02:00
|
|
|
statusWithColor(text, Color.BLACK);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void error(String text) {
|
|
|
|
statusWithColor(text, Color.RED);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void statusWithColor(String text, Color color) {
|
|
|
|
statusLabel.setForeground(color);
|
2014-03-02 03:08:16 +01:00
|
|
|
statusLabel.setText(text);
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void pack() {
|
|
|
|
SwingUtilities.invokeLater(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
mainFrame.pack();
|
|
|
|
}
|
|
|
|
});
|
2014-03-02 08:28:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void createUI(Container pane) {
|
2014-04-08 06:57:18 +02:00
|
|
|
setupTrayIcon();
|
2014-04-07 02:26:30 +02:00
|
|
|
|
2014-03-02 08:28:37 +01:00
|
|
|
EmptyBorder emptyBorder = new EmptyBorder(5, 5, 5, 5);
|
|
|
|
GridBagConstraints gbc = new GridBagConstraints();
|
2014-03-02 10:12:20 +01:00
|
|
|
gbc.fill = GridBagConstraints.BOTH;
|
|
|
|
gbc.weightx = 2; gbc.ipadx = 2; gbc.gridx = 0;
|
|
|
|
gbc.weighty = 2; gbc.ipady = 2; gbc.gridy = 0;
|
2014-04-06 06:54:22 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("[!] Exception setting system theme:", e);
|
|
|
|
}
|
2014-03-02 08:28:37 +01:00
|
|
|
|
|
|
|
ripTextfield = new JTextField("", 20);
|
2014-05-26 09:43:47 +02:00
|
|
|
ripTextfield.addMouseListener(new ContextMenuMouseListener());
|
2014-04-18 07:11:37 +02:00
|
|
|
ImageIcon ripIcon = new ImageIcon(mainIcon);
|
2014-04-07 08:11:37 +02:00
|
|
|
ripButton = new JButton("<html><font size=\"5\"><b>Rip</b></font></html>", ripIcon);
|
2014-04-18 07:11:37 +02:00
|
|
|
stopButton = new JButton("<html><font size=\"5\"><b>Stop</b></font></html>");
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(false);
|
2014-04-18 07:11:37 +02:00
|
|
|
try {
|
|
|
|
Image stopIcon = ImageIO.read(getClass().getClassLoader().getResource("stop.png"));
|
|
|
|
stopButton.setIcon(new ImageIcon(stopIcon));
|
|
|
|
} catch (Exception e) { }
|
2014-03-02 08:28:37 +01:00
|
|
|
JPanel ripPanel = new JPanel(new GridBagLayout());
|
|
|
|
ripPanel.setBorder(emptyBorder);
|
|
|
|
|
2014-03-08 21:22:49 +01:00
|
|
|
gbc.gridx = 0; ripPanel.add(new JLabel("URL:", JLabel.RIGHT), gbc);
|
|
|
|
gbc.gridx = 1; ripPanel.add(ripTextfield, gbc);
|
|
|
|
gbc.gridx = 2; ripPanel.add(ripButton, gbc);
|
2014-07-30 16:48:52 +02:00
|
|
|
gbc.gridx = 3; ripPanel.add(stopButton, gbc);
|
2014-03-02 08:28:37 +01:00
|
|
|
|
|
|
|
statusLabel = new JLabel("Inactive");
|
2014-03-02 10:12:20 +01:00
|
|
|
statusLabel.setHorizontalAlignment(JLabel.CENTER);
|
2014-03-02 08:28:37 +01:00
|
|
|
openButton = new JButton();
|
|
|
|
openButton.setVisible(false);
|
|
|
|
JPanel statusPanel = new JPanel(new GridBagLayout());
|
|
|
|
statusPanel.setBorder(emptyBorder);
|
2014-03-02 10:12:20 +01:00
|
|
|
|
2014-04-08 04:48:53 +02:00
|
|
|
gbc.gridx = 0; statusPanel.add(statusLabel, gbc);
|
|
|
|
gbc.gridy = 1; statusPanel.add(openButton, gbc);
|
2014-04-08 06:57:18 +02:00
|
|
|
gbc.gridy = 0;
|
2014-03-02 08:28:37 +01:00
|
|
|
|
|
|
|
JPanel progressPanel = new JPanel(new GridBagLayout());
|
|
|
|
progressPanel.setBorder(emptyBorder);
|
|
|
|
statusProgress = new JProgressBar(0, 100);
|
|
|
|
progressPanel.add(statusProgress, gbc);
|
2014-03-02 10:12:20 +01:00
|
|
|
|
|
|
|
JPanel optionsPanel = new JPanel(new GridBagLayout());
|
|
|
|
optionsPanel.setBorder(emptyBorder);
|
|
|
|
optionLog = new JButton("Log");
|
|
|
|
optionHistory = new JButton("History");
|
2014-07-30 16:48:52 +02:00
|
|
|
optionQueue = new JButton("Queue");
|
2014-03-02 10:12:20 +01:00
|
|
|
optionConfiguration = new JButton("Configuration");
|
2014-04-18 06:43:34 +02:00
|
|
|
try {
|
|
|
|
Image icon;
|
|
|
|
icon = ImageIO.read(getClass().getClassLoader().getResource("comment.png"));
|
|
|
|
optionLog.setIcon(new ImageIcon(icon));
|
|
|
|
icon = ImageIO.read(getClass().getClassLoader().getResource("time.png"));
|
|
|
|
optionHistory.setIcon(new ImageIcon(icon));
|
2014-07-30 16:48:52 +02:00
|
|
|
icon = ImageIO.read(getClass().getClassLoader().getResource("list.png"));
|
|
|
|
optionQueue.setIcon(new ImageIcon(icon));
|
2014-04-18 06:43:34 +02:00
|
|
|
icon = ImageIO.read(getClass().getClassLoader().getResource("gear.png"));
|
|
|
|
optionConfiguration.setIcon(new ImageIcon(icon));
|
|
|
|
} catch (Exception e) { }
|
2014-03-08 21:22:49 +01:00
|
|
|
gbc.gridx = 0; optionsPanel.add(optionLog, gbc);
|
|
|
|
gbc.gridx = 1; optionsPanel.add(optionHistory, gbc);
|
2014-07-30 16:48:52 +02:00
|
|
|
gbc.gridx = 2; optionsPanel.add(optionQueue, gbc);
|
|
|
|
gbc.gridx = 3; optionsPanel.add(optionConfiguration, gbc);
|
2014-03-02 10:12:20 +01:00
|
|
|
|
|
|
|
logPanel = new JPanel(new GridBagLayout());
|
2014-03-02 08:28:37 +01:00
|
|
|
logPanel.setBorder(emptyBorder);
|
2014-03-02 10:12:20 +01:00
|
|
|
logText = new JTextPaneNoWrap();
|
|
|
|
logTextScroll = new JScrollPane(logText);
|
|
|
|
logPanel.setVisible(false);
|
2014-03-11 09:29:26 +01:00
|
|
|
logPanel.setPreferredSize(new Dimension(300, 250));
|
2014-03-02 10:12:20 +01:00
|
|
|
logPanel.add(logTextScroll, gbc);
|
2014-03-08 20:27:30 +01:00
|
|
|
|
2014-03-02 10:12:20 +01:00
|
|
|
historyPanel = new JPanel(new GridBagLayout());
|
|
|
|
historyPanel.setBorder(emptyBorder);
|
|
|
|
historyPanel.setVisible(false);
|
2014-03-11 09:29:26 +01:00
|
|
|
historyPanel.setPreferredSize(new Dimension(300, 250));
|
2014-03-08 21:22:49 +01:00
|
|
|
historyListModel = new DefaultListModel();
|
|
|
|
historyList = new JList(historyListModel);
|
2014-03-09 08:59:36 +01:00
|
|
|
historyList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
|
2014-03-12 07:54:36 +01:00
|
|
|
historyListScroll = new JScrollPane(historyList,
|
|
|
|
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
|
|
|
|
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
|
2014-03-08 21:22:49 +01:00
|
|
|
historyButtonRemove = new JButton("Remove");
|
|
|
|
historyButtonClear = new JButton("Clear");
|
|
|
|
historyButtonRerip = new JButton("Re-rip All");
|
|
|
|
gbc.gridx = 0;
|
2014-03-11 09:29:26 +01:00
|
|
|
JPanel historyListPanel = new JPanel(new GridBagLayout());
|
|
|
|
historyListPanel.add(historyListScroll, gbc);
|
2014-07-30 16:48:52 +02:00
|
|
|
gbc.ipady = 180;
|
2014-03-11 09:29:26 +01:00
|
|
|
historyPanel.add(historyListPanel, gbc);
|
2014-04-04 10:08:04 +02:00
|
|
|
gbc.ipady = 0;
|
2014-03-09 08:59:36 +01:00
|
|
|
historyButtonPanel = new JPanel(new GridBagLayout());
|
2014-03-11 09:29:26 +01:00
|
|
|
historyButtonPanel.setPreferredSize(new Dimension(300, 10));
|
2014-03-08 21:22:49 +01:00
|
|
|
historyButtonPanel.setBorder(emptyBorder);
|
|
|
|
gbc.gridx = 0; historyButtonPanel.add(historyButtonRemove, gbc);
|
|
|
|
gbc.gridx = 1; historyButtonPanel.add(historyButtonClear, gbc);
|
|
|
|
gbc.gridx = 2; historyButtonPanel.add(historyButtonRerip, gbc);
|
|
|
|
gbc.gridy = 1; gbc.gridx = 0;
|
|
|
|
historyPanel.add(historyButtonPanel, gbc);
|
2014-04-05 10:39:10 +02:00
|
|
|
|
2014-07-30 16:48:52 +02:00
|
|
|
queuePanel = new JPanel(new GridBagLayout());
|
|
|
|
queuePanel.setBorder(emptyBorder);
|
|
|
|
queuePanel.setVisible(false);
|
|
|
|
queuePanel.setPreferredSize(new Dimension(300, 250));
|
|
|
|
queueListModel = new DefaultListModel();
|
|
|
|
queueList = new JList(queueListModel);
|
|
|
|
queueList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
|
|
|
|
queueListScroll = new JScrollPane(queueList,
|
|
|
|
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
|
|
|
|
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
|
|
|
|
gbc.gridx = 0;
|
|
|
|
JPanel queueListPanel = new JPanel(new GridBagLayout());
|
|
|
|
queueListPanel.add(queueListScroll, gbc);
|
|
|
|
queuePanel.add(queueListPanel, gbc);
|
|
|
|
gbc.ipady = 0;
|
|
|
|
|
2014-03-02 10:12:20 +01:00
|
|
|
configurationPanel = new JPanel(new GridBagLayout());
|
|
|
|
configurationPanel.setBorder(emptyBorder);
|
|
|
|
configurationPanel.setVisible(false);
|
2014-03-11 09:29:26 +01:00
|
|
|
configurationPanel.setPreferredSize(new Dimension(300, 250));
|
2014-03-02 10:12:20 +01:00
|
|
|
// TODO Configuration components
|
2014-04-05 10:39:10 +02:00
|
|
|
configUpdateButton = new JButton("Check for updates");
|
2014-04-06 01:57:54 +02:00
|
|
|
configUpdateLabel = new JLabel("Current version: " + UpdateUtils.getThisJarVersion(), JLabel.RIGHT);
|
|
|
|
JLabel configThreadsLabel = new JLabel("Maximum download threads:", JLabel.RIGHT);
|
2014-04-06 11:41:04 +02:00
|
|
|
JLabel configTimeoutLabel = new JLabel("Timeout (in milliseconds):", JLabel.RIGHT);
|
|
|
|
JLabel configRetriesLabel = new JLabel("Retry download count:", JLabel.RIGHT);
|
2014-04-06 01:57:54 +02:00
|
|
|
configThreadsText = new JTextField(Integer.toString(Utils.getConfigInteger("threads.size", 3)));
|
2014-04-06 11:41:04 +02:00
|
|
|
configTimeoutText = new JTextField(Integer.toString(Utils.getConfigInteger("download.timeout", 60000)));
|
|
|
|
configRetriesText = new JTextField(Integer.toString(Utils.getConfigInteger("download.retries", 3)));
|
2014-04-06 01:57:54 +02:00
|
|
|
configOverwriteCheckbox = new JCheckBox("Overwrite existing files?", Utils.getConfigBoolean("file.overwrite", false));
|
|
|
|
configOverwriteCheckbox.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configOverwriteCheckbox.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-04-07 08:11:37 +02:00
|
|
|
configAutoupdateCheckbox = new JCheckBox("Auto-update?", Utils.getConfigBoolean("auto.update", true));
|
|
|
|
configAutoupdateCheckbox.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configAutoupdateCheckbox.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-05-11 09:38:15 +02:00
|
|
|
configPlaySound = new JCheckBox("Sound when rip completes", Utils.getConfigBoolean("play.sound", false));
|
|
|
|
configPlaySound.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configPlaySound.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-06-12 07:21:09 +02:00
|
|
|
configSaveOrderCheckbox = new JCheckBox("Preserve order", Utils.getConfigBoolean("download.save_order", true));
|
2014-05-26 09:31:58 +02:00
|
|
|
configSaveOrderCheckbox.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configSaveOrderCheckbox.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-06-02 05:00:19 +02:00
|
|
|
configShowPopup = new JCheckBox("Notification when rip starts", Utils.getConfigBoolean("download.show_popup", false));
|
|
|
|
configShowPopup.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configShowPopup.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-06-12 07:21:09 +02:00
|
|
|
configSaveLogs = new JCheckBox("Save logs", Utils.getConfigBoolean("log.save", false));
|
|
|
|
configSaveLogs.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configSaveLogs.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-06-28 18:47:46 +02:00
|
|
|
configSaveURLsOnly = new JCheckBox("Save URLs only", Utils.getConfigBoolean("urls_only.save", false));
|
|
|
|
configSaveURLsOnly.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configSaveURLsOnly.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-07-25 09:48:52 +02:00
|
|
|
configSaveAlbumTitles = new JCheckBox("Save album titles", Utils.getConfigBoolean("album_titles.save", true));
|
|
|
|
configSaveAlbumTitles.setHorizontalAlignment(JCheckBox.RIGHT);
|
|
|
|
configSaveAlbumTitles.setHorizontalTextPosition(JCheckBox.LEFT);
|
2014-04-06 11:41:04 +02:00
|
|
|
configSaveDirLabel = new JLabel();
|
|
|
|
try {
|
|
|
|
String workingDir = (Utils.shortenPath(Utils.getWorkingDirectory()));
|
|
|
|
configSaveDirLabel.setText(workingDir);
|
|
|
|
} catch (Exception e) { }
|
|
|
|
configSaveDirLabel.setToolTipText(configSaveDirLabel.getText());
|
|
|
|
configSaveDirLabel.setHorizontalAlignment(JLabel.RIGHT);
|
2014-07-30 16:48:52 +02:00
|
|
|
configSaveDirButton = new JButton("Select Save Directory...");
|
2014-04-06 01:57:54 +02:00
|
|
|
gbc.gridy = 0; gbc.gridx = 0; configurationPanel.add(configUpdateLabel, gbc);
|
|
|
|
gbc.gridx = 1; configurationPanel.add(configUpdateButton, gbc);
|
2014-04-07 08:11:37 +02:00
|
|
|
gbc.gridy = 1; gbc.gridx = 0; configurationPanel.add(configAutoupdateCheckbox, gbc);
|
|
|
|
gbc.gridy = 2; gbc.gridx = 0; configurationPanel.add(configThreadsLabel, gbc);
|
2014-04-06 01:57:54 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configThreadsText, gbc);
|
2014-04-07 08:11:37 +02:00
|
|
|
gbc.gridy = 3; gbc.gridx = 0; configurationPanel.add(configTimeoutLabel, gbc);
|
2014-04-06 11:41:04 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configTimeoutText, gbc);
|
2014-04-07 08:11:37 +02:00
|
|
|
gbc.gridy = 4; gbc.gridx = 0; configurationPanel.add(configRetriesLabel, gbc);
|
2014-04-06 11:41:04 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configRetriesText, gbc);
|
2014-04-07 08:11:37 +02:00
|
|
|
gbc.gridy = 5; gbc.gridx = 0; configurationPanel.add(configOverwriteCheckbox, gbc);
|
2014-06-12 07:21:09 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configSaveOrderCheckbox, gbc);
|
2014-05-11 09:38:15 +02:00
|
|
|
gbc.gridy = 6; gbc.gridx = 0; configurationPanel.add(configPlaySound, gbc);
|
2014-06-12 07:21:09 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configSaveLogs, gbc);
|
|
|
|
gbc.gridy = 7; gbc.gridx = 0; configurationPanel.add(configShowPopup, gbc);
|
2014-06-28 18:47:46 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configSaveURLsOnly, gbc);
|
2014-07-25 09:48:52 +02:00
|
|
|
gbc.gridy = 8; gbc.gridx = 0; configurationPanel.add(configSaveAlbumTitles, gbc);
|
|
|
|
gbc.gridy = 9; gbc.gridx = 0; configurationPanel.add(configSaveDirLabel, gbc);
|
2014-04-06 11:41:04 +02:00
|
|
|
gbc.gridx = 1; configurationPanel.add(configSaveDirButton, gbc);
|
2014-04-06 01:57:54 +02:00
|
|
|
|
2014-03-08 21:22:49 +01:00
|
|
|
gbc.gridy = 0; pane.add(ripPanel, gbc);
|
|
|
|
gbc.gridy = 1; pane.add(statusPanel, gbc);
|
|
|
|
gbc.gridy = 2; pane.add(progressPanel, gbc);
|
|
|
|
gbc.gridy = 3; pane.add(optionsPanel, gbc);
|
|
|
|
gbc.gridy = 4; pane.add(logPanel, gbc);
|
|
|
|
gbc.gridy = 5; pane.add(historyPanel, gbc);
|
2014-07-30 16:48:52 +02:00
|
|
|
gbc.gridy = 5; pane.add(queuePanel, gbc);
|
2014-03-08 21:22:49 +01:00
|
|
|
gbc.gridy = 5; pane.add(configurationPanel, gbc);
|
2014-03-02 08:28:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void setupHandlers() {
|
|
|
|
ripButton.addActionListener(new RipButtonHandler());
|
2014-04-04 10:08:04 +02:00
|
|
|
ripTextfield.addActionListener(new RipButtonHandler());
|
2014-06-08 04:54:36 +02:00
|
|
|
ripTextfield.getDocument().addDocumentListener(new DocumentListener() {
|
|
|
|
@Override
|
|
|
|
public void removeUpdate(DocumentEvent e) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void insertUpdate(DocumentEvent e) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void changedUpdate(DocumentEvent e) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
private void update() {
|
|
|
|
try {
|
2014-06-11 05:22:28 +02:00
|
|
|
String urlText = ripTextfield.getText().trim();
|
2014-06-12 08:01:16 +02:00
|
|
|
if (!urlText.startsWith("http")) {
|
2014-06-08 04:54:36 +02:00
|
|
|
urlText = "http://" + urlText;
|
|
|
|
}
|
|
|
|
URL url = new URL(urlText);
|
|
|
|
AbstractRipper ripper = AbstractRipper.getRipper(url);
|
|
|
|
statusWithColor(ripper.getHost() + " album detected", Color.GREEN);
|
|
|
|
} catch (Exception e) {
|
|
|
|
statusWithColor("Can't rip this URL", Color.RED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-18 07:11:37 +02:00
|
|
|
stopButton.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
if (ripper != null) {
|
|
|
|
ripper.stop();
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(false);
|
2014-04-18 07:11:37 +02:00
|
|
|
statusProgress.setValue(0);
|
|
|
|
statusProgress.setVisible(false);
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-04-18 07:11:37 +02:00
|
|
|
statusProgress.setValue(0);
|
|
|
|
status("Ripping interrupted");
|
|
|
|
appendLog("Ripper interrupted", Color.RED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-03-02 10:12:20 +01:00
|
|
|
optionLog.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
logPanel.setVisible(!logPanel.isVisible());
|
|
|
|
historyPanel.setVisible(false);
|
2014-07-30 16:48:52 +02:00
|
|
|
queuePanel.setVisible(false);
|
2014-03-02 10:12:20 +01:00
|
|
|
configurationPanel.setVisible(false);
|
2014-04-08 04:48:53 +02:00
|
|
|
optionLog.setFont(optionLog.getFont().deriveFont(Font.BOLD));
|
2014-04-07 08:11:37 +02:00
|
|
|
optionHistory.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-07-30 16:48:52 +02:00
|
|
|
optionQueue.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-04-07 08:11:37 +02:00
|
|
|
optionConfiguration.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-03-02 10:12:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
optionHistory.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
logPanel.setVisible(false);
|
|
|
|
historyPanel.setVisible(!historyPanel.isVisible());
|
2014-07-30 16:48:52 +02:00
|
|
|
queuePanel.setVisible(false);
|
2014-03-02 10:12:20 +01:00
|
|
|
configurationPanel.setVisible(false);
|
2014-04-07 08:11:37 +02:00
|
|
|
optionLog.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-04-08 04:48:53 +02:00
|
|
|
optionHistory.setFont(optionLog.getFont().deriveFont(Font.BOLD));
|
2014-07-30 16:48:52 +02:00
|
|
|
optionQueue.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
|
|
|
optionConfiguration.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
|
|
|
pack();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
optionQueue.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
logPanel.setVisible(false);
|
|
|
|
historyPanel.setVisible(false);
|
|
|
|
queuePanel.setVisible(!queuePanel.isVisible());
|
|
|
|
configurationPanel.setVisible(false);
|
|
|
|
optionLog.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
|
|
|
optionHistory.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
|
|
|
optionQueue.setFont(optionLog.getFont().deriveFont(Font.BOLD));
|
2014-04-07 08:11:37 +02:00
|
|
|
optionConfiguration.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-03-02 10:12:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
optionConfiguration.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
logPanel.setVisible(false);
|
|
|
|
historyPanel.setVisible(false);
|
2014-07-30 16:48:52 +02:00
|
|
|
queuePanel.setVisible(false);
|
2014-03-02 10:12:20 +01:00
|
|
|
configurationPanel.setVisible(!configurationPanel.isVisible());
|
2014-04-07 08:11:37 +02:00
|
|
|
optionLog.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
|
|
|
optionHistory.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-07-30 16:48:52 +02:00
|
|
|
optionQueue.setFont(optionLog.getFont().deriveFont(Font.PLAIN));
|
2014-04-08 04:48:53 +02:00
|
|
|
optionConfiguration.setFont(optionLog.getFont().deriveFont(Font.BOLD));
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-03-02 10:12:20 +01:00
|
|
|
}
|
|
|
|
});
|
2014-03-09 08:59:36 +01:00
|
|
|
historyButtonRemove.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
int[] indices = historyList.getSelectedIndices();
|
|
|
|
for (int i = indices.length - 1; i >= 0; i--) {
|
|
|
|
historyListModel.remove(indices[i]);
|
|
|
|
}
|
|
|
|
saveHistory();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
historyButtonClear.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
historyListModel.clear();
|
|
|
|
saveHistory();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Re-rip all history
|
|
|
|
historyButtonRerip.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
2014-08-01 19:20:42 +02:00
|
|
|
for (int i = 0; i < historyListModel.size(); i++) {
|
|
|
|
HistoryEntry entry = (HistoryEntry) historyListModel.get(i);
|
|
|
|
queueListModel.addElement(entry.url);
|
|
|
|
}
|
2014-03-09 08:59:36 +01:00
|
|
|
}
|
|
|
|
});
|
2014-04-05 10:39:10 +02:00
|
|
|
configUpdateButton.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
2014-04-06 01:57:54 +02:00
|
|
|
Thread t = new Thread() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
UpdateUtils.updateProgram(configUpdateLabel);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
t.start();
|
2014-04-05 10:39:10 +02:00
|
|
|
}
|
|
|
|
});
|
2014-04-06 11:41:04 +02:00
|
|
|
configSaveDirButton.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
JFileChooser jfc = new JFileChooser(Utils.getWorkingDirectory());
|
|
|
|
jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
|
|
|
|
int returnVal = jfc.showDialog(null, "select directory");
|
|
|
|
if (returnVal != JFileChooser.APPROVE_OPTION) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
File chosenFile = jfc.getSelectedFile();
|
|
|
|
String chosenPath = null;
|
|
|
|
try {
|
|
|
|
chosenPath = chosenFile.getCanonicalPath();
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("Error while getting selected path: ", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
configSaveDirLabel.setText(Utils.shortenPath(chosenPath));
|
|
|
|
Utils.setConfigString("rips.directory", chosenPath);
|
|
|
|
}
|
2014-05-26 05:10:49 +02:00
|
|
|
});
|
|
|
|
configOverwriteCheckbox.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
Utils.setConfigBoolean("file.overwrite", configOverwriteCheckbox.isSelected());
|
|
|
|
}
|
2014-04-06 11:41:04 +02:00
|
|
|
});
|
2014-05-26 09:31:58 +02:00
|
|
|
configSaveOrderCheckbox.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
Utils.setConfigBoolean("download.save_order", configSaveOrderCheckbox.isSelected());
|
|
|
|
}
|
|
|
|
});
|
2014-06-12 07:21:09 +02:00
|
|
|
configSaveLogs.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
Utils.setConfigBoolean("log.save", configSaveLogs.isSelected());
|
|
|
|
Utils.configureLogger();
|
|
|
|
}
|
|
|
|
});
|
2014-06-28 18:47:46 +02:00
|
|
|
configSaveURLsOnly.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
Utils.setConfigBoolean("urls_only.save", configSaveURLsOnly.isSelected());
|
|
|
|
Utils.configureLogger();
|
|
|
|
}
|
|
|
|
});
|
2014-07-25 09:48:52 +02:00
|
|
|
configSaveAlbumTitles.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
Utils.setConfigBoolean("album_titles.save", configSaveAlbumTitles.isSelected());
|
|
|
|
Utils.configureLogger();
|
|
|
|
}
|
|
|
|
});
|
2014-07-30 16:48:52 +02:00
|
|
|
queueListModel.addListDataListener(new ListDataListener() {
|
|
|
|
@Override
|
|
|
|
public void intervalAdded(ListDataEvent arg0) {
|
|
|
|
if (queueListModel.size() > 0) {
|
|
|
|
optionQueue.setText("Queue (" + queueListModel.size() + ")");
|
|
|
|
} else {
|
|
|
|
optionQueue.setText("Queue");
|
|
|
|
}
|
|
|
|
if (!isRipping) {
|
|
|
|
ripNextAlbum();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void contentsChanged(ListDataEvent arg0) { }
|
|
|
|
@Override
|
|
|
|
public void intervalRemoved(ListDataEvent arg0) { }
|
|
|
|
});
|
2014-03-02 10:12:20 +01:00
|
|
|
}
|
2014-04-08 06:57:18 +02:00
|
|
|
|
|
|
|
private void setupTrayIcon() {
|
|
|
|
mainFrame.addWindowListener(new WindowAdapter() {
|
|
|
|
public void windowActivated(WindowEvent e) { trayMenuMain.setLabel("Hide"); }
|
|
|
|
public void windowDeactivated(WindowEvent e) { trayMenuMain.setLabel("Show"); }
|
|
|
|
public void windowDeiconified(WindowEvent e) { trayMenuMain.setLabel("Hide"); }
|
|
|
|
public void windowIconified(WindowEvent e) { trayMenuMain.setLabel("Show"); }
|
|
|
|
});
|
|
|
|
PopupMenu trayMenu = new PopupMenu();
|
|
|
|
trayMenuMain = new MenuItem("Hide");
|
|
|
|
trayMenuMain.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
toggleTrayClick();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
trayMenuAbout = new MenuItem("About " + mainFrame.getTitle());
|
|
|
|
trayMenuAbout.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
2014-04-27 19:09:52 +02:00
|
|
|
StringBuilder about = new StringBuilder();
|
|
|
|
about.append("<html><h1>")
|
|
|
|
.append(mainFrame.getTitle())
|
|
|
|
.append("</h1>");
|
|
|
|
about.append("Download albums from various websites:");
|
|
|
|
try {
|
|
|
|
List<String> rippers = Utils.getListOfAlbumRippers();
|
|
|
|
about.append("<ul>");
|
|
|
|
for (String ripper : rippers) {
|
|
|
|
about.append("<li>");
|
|
|
|
ripper = ripper.substring(ripper.lastIndexOf('.') + 1);
|
|
|
|
if (ripper.contains("Ripper")) {
|
|
|
|
ripper = ripper.substring(0, ripper.indexOf("Ripper"));
|
|
|
|
}
|
|
|
|
about.append(ripper);
|
|
|
|
about.append("</li>");
|
|
|
|
}
|
|
|
|
about.append("</ul>");
|
|
|
|
} catch (Exception e) { }
|
|
|
|
about.append("<br>And download videos from video sites:");
|
|
|
|
try {
|
|
|
|
List<String> rippers = Utils.getListOfVideoRippers();
|
|
|
|
about.append("<ul>");
|
|
|
|
for (String ripper : rippers) {
|
|
|
|
about.append("<li>");
|
|
|
|
ripper = ripper.substring(ripper.lastIndexOf('.') + 1);
|
|
|
|
if (ripper.contains("Ripper")) {
|
|
|
|
ripper = ripper.substring(0, ripper.indexOf("Ripper"));
|
|
|
|
}
|
|
|
|
about.append(ripper);
|
|
|
|
about.append("</li>");
|
|
|
|
}
|
|
|
|
about.append("</ul>");
|
|
|
|
} catch (Exception e) { }
|
|
|
|
|
|
|
|
about.append("Do you want to visit the project homepage on Github?");
|
|
|
|
about.append("</html>");
|
|
|
|
int response = JOptionPane.showConfirmDialog(null,
|
|
|
|
about.toString(),
|
2014-04-08 06:57:18 +02:00
|
|
|
mainFrame.getTitle(),
|
2014-04-27 19:09:52 +02:00
|
|
|
JOptionPane.YES_NO_OPTION,
|
2014-04-08 06:57:18 +02:00
|
|
|
JOptionPane.PLAIN_MESSAGE,
|
|
|
|
new ImageIcon(mainIcon));
|
2014-04-27 19:09:52 +02:00
|
|
|
if (response == JOptionPane.YES_OPTION) {
|
|
|
|
try {
|
|
|
|
Desktop.getDesktop().browse(URI.create("http://github.com/4pr0n/ripme"));
|
|
|
|
} catch (IOException e) {
|
|
|
|
logger.error("Exception while opening project home page", e);
|
|
|
|
}
|
|
|
|
}
|
2014-04-08 06:57:18 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
trayMenuExit = new MenuItem("Exit");
|
|
|
|
trayMenuExit.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
trayMenuAutorip = new CheckboxMenuItem("Clipboard Autorip");
|
|
|
|
trayMenuAutorip.addItemListener(new ItemListener() {
|
|
|
|
@Override
|
|
|
|
public void itemStateChanged(ItemEvent arg0) {
|
|
|
|
ClipboardUtils.setClipboardAutoRip(trayMenuAutorip.getState());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
trayMenu.add(trayMenuMain);
|
|
|
|
trayMenu.add(trayMenuAbout);
|
|
|
|
trayMenu.addSeparator();
|
|
|
|
trayMenu.add(trayMenuAutorip);
|
|
|
|
trayMenu.addSeparator();
|
|
|
|
trayMenu.add(trayMenuExit);
|
|
|
|
try {
|
|
|
|
mainIcon = ImageIO.read(getClass().getClassLoader().getResource("icon.png"));
|
|
|
|
trayIcon = new TrayIcon(mainIcon);
|
|
|
|
trayIcon.setToolTip(mainFrame.getTitle());
|
|
|
|
trayIcon.setImageAutoSize(true);
|
|
|
|
trayIcon.setPopupMenu(trayMenu);
|
|
|
|
SystemTray.getSystemTray().add(trayIcon);
|
|
|
|
trayIcon.addMouseListener(new MouseAdapter() {
|
|
|
|
@Override
|
|
|
|
public void mouseClicked(MouseEvent e) {
|
|
|
|
toggleTrayClick();
|
|
|
|
if (mainFrame.getExtendedState() != JFrame.NORMAL) {
|
|
|
|
mainFrame.setExtendedState(JFrame.NORMAL);
|
|
|
|
}
|
|
|
|
mainFrame.setAlwaysOnTop(true);
|
|
|
|
mainFrame.setAlwaysOnTop(false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void toggleTrayClick() {
|
|
|
|
if (mainFrame.getExtendedState() == JFrame.ICONIFIED
|
|
|
|
|| !mainFrame.isActive()
|
|
|
|
|| !mainFrame.isVisible()) {
|
|
|
|
mainFrame.setVisible(true);
|
|
|
|
mainFrame.setAlwaysOnTop(true);
|
|
|
|
mainFrame.setAlwaysOnTop(false);
|
|
|
|
trayMenuMain.setLabel("Hide");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mainFrame.setVisible(false);
|
|
|
|
trayMenuMain.setLabel("Show");
|
|
|
|
}
|
|
|
|
}
|
2014-03-02 10:12:20 +01:00
|
|
|
|
2014-03-08 21:22:49 +01:00
|
|
|
private void appendLog(final String text, final Color color) {
|
2014-03-13 20:18:35 +01:00
|
|
|
SimpleAttributeSet sas = new SimpleAttributeSet();
|
|
|
|
StyleConstants.setForeground(sas, color);
|
|
|
|
StyledDocument sd = logText.getStyledDocument();
|
|
|
|
try {
|
2014-04-22 08:04:33 +02:00
|
|
|
synchronized (this) {
|
|
|
|
sd.insertString(sd.getLength(), text + "\n", sas);
|
|
|
|
}
|
2014-03-13 20:18:35 +01:00
|
|
|
} catch (BadLocationException e) { }
|
|
|
|
|
|
|
|
logText.setCaretPosition(sd.getLength());
|
2014-03-08 21:22:49 +01:00
|
|
|
}
|
2014-06-28 18:47:46 +02:00
|
|
|
|
2014-03-08 21:22:49 +01:00
|
|
|
private void loadHistory() {
|
2014-08-01 19:31:23 +02:00
|
|
|
History history = new History();
|
2014-07-30 16:48:52 +02:00
|
|
|
File historyFile = new File("history.json");
|
|
|
|
if (historyFile.exists()) {
|
|
|
|
try {
|
|
|
|
logger.info("Loading history from history.json");
|
|
|
|
history.fromFile("history.json");
|
|
|
|
} catch (IOException e) {
|
|
|
|
logger.error("Failed to load history from file history.json", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logger.info("Loading history from configuration");
|
|
|
|
history.fromList(Utils.getConfigList("download.history"));
|
|
|
|
}
|
2014-08-01 19:20:42 +02:00
|
|
|
for (HistoryEntry entry : history.toList()) {
|
2014-07-30 16:48:52 +02:00
|
|
|
historyListModel.addElement(entry);
|
2014-03-08 21:22:49 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-02 10:12:20 +01:00
|
|
|
|
2014-03-08 21:22:49 +01:00
|
|
|
private void saveHistory() {
|
2014-08-01 19:31:23 +02:00
|
|
|
History history = new History();
|
|
|
|
for (int i = 0; i < historyListModel.size(); i++) {
|
|
|
|
history.add( (HistoryEntry) historyListModel.get(i) );
|
|
|
|
}
|
2014-07-30 16:48:52 +02:00
|
|
|
try {
|
|
|
|
history.toFile("history.json");
|
|
|
|
} catch (IOException e) {
|
|
|
|
logger.error("Failed to save history to file history.json", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void ripNextAlbum() {
|
|
|
|
isRipping = true;
|
|
|
|
if (queueListModel.size() == 0) {
|
|
|
|
// End of queue
|
|
|
|
isRipping = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String nextAlbum = (String) queueListModel.remove(0);
|
|
|
|
if (queueListModel.size() == 0) {
|
|
|
|
optionQueue.setText("Queue");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
optionQueue.setText("Queue (" + queueListModel.size() + ")");
|
|
|
|
}
|
|
|
|
Thread t = ripAlbum(nextAlbum);
|
|
|
|
if (t == null) {
|
|
|
|
try {
|
|
|
|
Thread.sleep(500);
|
|
|
|
} catch (InterruptedException ie) {
|
|
|
|
logger.error("Interrupted while waiting to rip next album", ie);
|
|
|
|
}
|
|
|
|
ripNextAlbum();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
t.start();
|
|
|
|
}
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 08:59:36 +01:00
|
|
|
private Thread ripAlbum(String urlString) {
|
2014-04-22 08:04:33 +02:00
|
|
|
//shutdownCleanup();
|
2014-04-08 04:48:53 +02:00
|
|
|
if (!logPanel.isVisible()) {
|
|
|
|
optionLog.doClick();
|
|
|
|
}
|
2014-05-26 09:31:58 +02:00
|
|
|
urlString = urlString.trim();
|
2014-04-04 09:38:40 +02:00
|
|
|
if (urlString.toLowerCase().startsWith("gonewild:")) {
|
|
|
|
urlString = "http://gonewild.com/user/" + urlString.substring(urlString.indexOf(':') + 1);
|
|
|
|
}
|
|
|
|
if (!urlString.startsWith("http")) {
|
|
|
|
urlString = "http://" + urlString;
|
|
|
|
}
|
2014-03-09 08:59:36 +01:00
|
|
|
URL url = null;
|
|
|
|
try {
|
|
|
|
url = new URL(urlString);
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
logger.error("[!] Could not generate URL for '" + urlString + "'", e);
|
2014-04-04 10:08:04 +02:00
|
|
|
error("Given URL is not valid, expecting http://website.com/page/...");
|
2014-03-09 08:59:36 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(true);
|
2014-03-09 08:59:36 +01:00
|
|
|
statusProgress.setValue(100);
|
|
|
|
openButton.setVisible(false);
|
|
|
|
statusLabel.setVisible(true);
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-04-07 02:26:30 +02:00
|
|
|
boolean failed = false;
|
2014-03-09 08:59:36 +01:00
|
|
|
try {
|
2014-04-07 02:26:30 +02:00
|
|
|
ripper = AbstractRipper.getRipper(url);
|
2014-06-11 05:22:28 +02:00
|
|
|
ripper.setup();
|
2014-03-09 08:59:36 +01:00
|
|
|
} catch (Exception e) {
|
2014-04-07 02:26:30 +02:00
|
|
|
failed = true;
|
2014-06-14 08:14:24 +02:00
|
|
|
logger.error("Could not find ripper for URL " + url, e);
|
2014-07-30 16:48:52 +02:00
|
|
|
error(e.getMessage());
|
2014-04-07 02:26:30 +02:00
|
|
|
}
|
|
|
|
if (!failed) {
|
|
|
|
try {
|
2014-07-20 09:59:22 +02:00
|
|
|
mainFrame.setTitle("Ripping - RipMe v" + UpdateUtils.getThisJarVersion());
|
2014-04-07 02:26:30 +02:00
|
|
|
status("Starting rip...");
|
|
|
|
ripper.setObserver((RipStatusHandler) this);
|
|
|
|
Thread t = new Thread(ripper);
|
2014-06-02 05:00:19 +02:00
|
|
|
if (configShowPopup.isSelected() &&
|
|
|
|
(!mainFrame.isVisible() || !mainFrame.isActive())) {
|
2014-04-08 06:57:18 +02:00
|
|
|
mainFrame.toFront();
|
|
|
|
mainFrame.setAlwaysOnTop(true);
|
|
|
|
trayIcon.displayMessage(mainFrame.getTitle(), "Started ripping " + ripper.getURL().toExternalForm(), MessageType.INFO);
|
|
|
|
mainFrame.setAlwaysOnTop(false);
|
|
|
|
}
|
2014-04-07 02:26:30 +02:00
|
|
|
return t;
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("[!] Error while ripping: " + e.getMessage(), e);
|
|
|
|
error("Unable to rip this URL: " + e.getMessage());
|
|
|
|
}
|
2014-03-09 08:59:36 +01:00
|
|
|
}
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(false);
|
2014-04-07 02:26:30 +02:00
|
|
|
statusProgress.setValue(0);
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-04-07 02:26:30 +02:00
|
|
|
return null;
|
2014-03-09 08:59:36 +01:00
|
|
|
}
|
|
|
|
|
2014-03-01 11:13:32 +01:00
|
|
|
class RipButtonHandler implements ActionListener {
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
2014-07-30 16:48:52 +02:00
|
|
|
if (!queueListModel.contains(ripTextfield.getText())) {
|
|
|
|
queueListModel.add(queueListModel.size(), ripTextfield.getText());
|
|
|
|
ripTextfield.setText("");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!isRipping) {
|
|
|
|
ripNextAlbum();
|
|
|
|
}
|
|
|
|
}
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-13 20:18:35 +01:00
|
|
|
|
|
|
|
private class StatusEvent implements Runnable {
|
|
|
|
private final AbstractRipper ripper;
|
|
|
|
private final RipStatusMessage msg;
|
2014-03-01 11:13:32 +01:00
|
|
|
|
2014-03-13 20:18:35 +01:00
|
|
|
public StatusEvent(AbstractRipper ripper, RipStatusMessage msg) {
|
|
|
|
this.ripper = ripper;
|
|
|
|
this.msg = msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void run() {
|
|
|
|
handleEvent(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-22 08:04:33 +02:00
|
|
|
private synchronized void handleEvent(StatusEvent evt) {
|
2014-04-18 07:11:37 +02:00
|
|
|
if (ripper.isStopped()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-03-13 20:18:35 +01:00
|
|
|
RipStatusMessage msg = evt.msg;
|
|
|
|
|
|
|
|
int completedPercent = evt.ripper.getCompletionPercentage();
|
|
|
|
statusProgress.setValue(completedPercent);
|
2014-04-20 09:12:48 +02:00
|
|
|
statusProgress.setVisible(true);
|
2014-03-13 20:18:35 +01:00
|
|
|
status( evt.ripper.getStatusText() );
|
|
|
|
|
|
|
|
switch(msg.getStatus()) {
|
|
|
|
case LOADING_RESOURCE:
|
|
|
|
case DOWNLOAD_STARTED:
|
|
|
|
appendLog( "Downloading: " + (String) msg.getObject(), Color.BLACK);
|
|
|
|
break;
|
|
|
|
case DOWNLOAD_COMPLETE:
|
|
|
|
appendLog( "Completed: " + (String) msg.getObject(), Color.GREEN);
|
|
|
|
break;
|
|
|
|
case DOWNLOAD_ERRORED:
|
|
|
|
appendLog( "Error: " + (String) msg.getObject(), Color.RED);
|
|
|
|
break;
|
|
|
|
case DOWNLOAD_WARN:
|
|
|
|
appendLog( "Warn: " + (String) msg.getObject(), Color.ORANGE);
|
|
|
|
break;
|
2014-05-05 07:40:53 +02:00
|
|
|
|
|
|
|
case RIP_ERRORED:
|
|
|
|
appendLog( "Error: " + (String) msg.getObject(), Color.RED);
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(false);
|
2014-05-05 07:40:53 +02:00
|
|
|
statusProgress.setValue(0);
|
|
|
|
statusProgress.setVisible(false);
|
|
|
|
openButton.setVisible(false);
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-05-05 07:40:53 +02:00
|
|
|
statusWithColor("Error: " + (String) msg.getObject(), Color.RED);
|
|
|
|
break;
|
2014-03-13 20:18:35 +01:00
|
|
|
|
|
|
|
case RIP_COMPLETE:
|
2014-08-01 19:20:42 +02:00
|
|
|
boolean alreadyInHistory = false;
|
|
|
|
String url = ripper.getURL().toExternalForm();
|
|
|
|
for (int i = 0; i < historyListModel.size(); i++) {
|
|
|
|
HistoryEntry entry = (HistoryEntry) historyListModel.get(i);
|
|
|
|
if (entry.url.equals(url)) {
|
|
|
|
alreadyInHistory = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!alreadyInHistory) {
|
|
|
|
HistoryEntry entry = new HistoryEntry();
|
|
|
|
entry.url = url;
|
|
|
|
try {
|
|
|
|
entry.title = ripper.getAlbumTitle(ripper.getURL());
|
|
|
|
} catch (MalformedURLException e) { }
|
|
|
|
historyListModel.addElement(entry);
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|
2014-05-11 09:38:15 +02:00
|
|
|
if (configPlaySound.isSelected()) {
|
|
|
|
Utils.playSound("camera.wav");
|
|
|
|
}
|
2014-03-13 20:18:35 +01:00
|
|
|
saveHistory();
|
2014-07-30 16:48:52 +02:00
|
|
|
stopButton.setEnabled(false);
|
2014-04-08 04:48:53 +02:00
|
|
|
statusProgress.setValue(0);
|
|
|
|
statusProgress.setVisible(false);
|
2014-03-13 20:18:35 +01:00
|
|
|
openButton.setVisible(true);
|
|
|
|
File f = (File) msg.getObject();
|
2014-04-06 11:41:04 +02:00
|
|
|
String prettyFile = Utils.shortenPath(f);
|
2014-03-13 20:18:35 +01:00
|
|
|
openButton.setText("Open " + prettyFile);
|
2014-07-20 09:59:22 +02:00
|
|
|
mainFrame.setTitle("RipMe v" + UpdateUtils.getThisJarVersion());
|
2014-04-18 06:43:34 +02:00
|
|
|
try {
|
|
|
|
Image folderIcon = ImageIO.read(getClass().getClassLoader().getResource("folder.png"));
|
|
|
|
openButton.setIcon(new ImageIcon(folderIcon));
|
2014-04-18 07:11:37 +02:00
|
|
|
} catch (Exception e) { }
|
2014-03-13 20:18:35 +01:00
|
|
|
appendLog( "Rip complete, saved to " + prettyFile, Color.GREEN);
|
|
|
|
openButton.setActionCommand(f.toString());
|
|
|
|
openButton.addActionListener(new ActionListener() {
|
|
|
|
@Override
|
|
|
|
public void actionPerformed(ActionEvent event) {
|
|
|
|
try {
|
|
|
|
Desktop.getDesktop().open(new File(event.getActionCommand()));
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-06-13 05:41:45 +02:00
|
|
|
pack();
|
2014-07-30 16:48:52 +02:00
|
|
|
ripNextAlbum();
|
2014-04-20 07:41:11 +02:00
|
|
|
break;
|
|
|
|
case COMPLETED_BYTES:
|
|
|
|
// Update completed bytes
|
|
|
|
break;
|
|
|
|
case TOTAL_BYTES:
|
|
|
|
// Update total bytes
|
|
|
|
break;
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-13 20:18:35 +01:00
|
|
|
|
|
|
|
public void update(AbstractRipper ripper, RipStatusMessage message) {
|
|
|
|
StatusEvent event = new StatusEvent(ripper, message);
|
|
|
|
SwingUtilities.invokeLater(event);
|
|
|
|
}
|
2014-03-02 10:12:20 +01:00
|
|
|
|
2014-03-02 10:30:52 +01:00
|
|
|
/** Simple TextPane that allows horizontal scrolling. */
|
2014-03-02 10:12:20 +01:00
|
|
|
class JTextPaneNoWrap extends JTextPane {
|
2014-03-02 10:30:52 +01:00
|
|
|
private static final long serialVersionUID = 1L;
|
2014-03-13 20:18:35 +01:00
|
|
|
|
|
|
|
@Override
|
2014-03-02 10:12:20 +01:00
|
|
|
public boolean getScrollableTracksViewportWidth() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-04-07 02:26:30 +02:00
|
|
|
|
|
|
|
public static void ripAlbumStatic(String url) {
|
2014-05-26 09:31:58 +02:00
|
|
|
ripTextfield.setText(url.trim());
|
2014-04-07 02:26:30 +02:00
|
|
|
ripButton.doClick();
|
|
|
|
}
|
2014-03-01 11:13:32 +01:00
|
|
|
}
|