2 * jSite - a tool for uploading websites into Freenet
3 * Copyright (C) 2006 David Roden
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 package de.todesbaum.jsite.gui;
22 import java.awt.BorderLayout;
24 import java.awt.GridBagConstraints;
25 import java.awt.GridBagLayout;
26 import java.awt.Insets;
27 import java.awt.Toolkit;
28 import java.awt.datatransfer.Clipboard;
29 import java.awt.datatransfer.ClipboardOwner;
30 import java.awt.datatransfer.StringSelection;
31 import java.awt.datatransfer.Transferable;
32 import java.awt.event.ActionEvent;
33 import java.awt.event.KeyEvent;
34 import java.text.DateFormat;
35 import java.text.MessageFormat;
36 import java.util.Date;
38 import javax.swing.AbstractAction;
39 import javax.swing.Action;
40 import javax.swing.JButton;
41 import javax.swing.JComponent;
42 import javax.swing.JLabel;
43 import javax.swing.JOptionPane;
44 import javax.swing.JPanel;
45 import javax.swing.JProgressBar;
46 import javax.swing.JTextField;
47 import javax.swing.SwingUtilities;
49 import de.todesbaum.jsite.application.Freenet7Interface;
50 import de.todesbaum.jsite.application.InsertListener;
51 import de.todesbaum.jsite.application.Project;
52 import de.todesbaum.jsite.application.ProjectInserter;
53 import de.todesbaum.jsite.i18n.I18n;
54 import de.todesbaum.jsite.i18n.I18nContainer;
55 import de.todesbaum.util.swing.TWizard;
56 import de.todesbaum.util.swing.TWizardPage;
59 * @author David Roden <droden@gmail.com>
62 public class ProjectInsertPage extends TWizardPage implements InsertListener, ClipboardOwner {
64 protected ProjectInserter projectInserter;
66 protected Action copyURIAction;
67 protected JTextField requestURITextField;
68 protected JLabel startTimeLabel;
69 protected JProgressBar progressBar;
70 protected long startTime = 0;
72 public ProjectInsertPage(final TWizard wizard) {
76 setHeading(I18n.getMessage("jsite.insert.heading"));
77 setDescription(I18n.getMessage("jsite.insert.description"));
78 I18nContainer.getInstance().registerRunnable(new Runnable() {
81 setHeading(I18n.getMessage("jsite.insert.heading"));
82 setDescription(I18n.getMessage("jsite.insert.description"));
85 projectInserter = new ProjectInserter();
86 projectInserter.addInsertListener(this);
89 private void createActions() {
90 copyURIAction = new AbstractAction(I18n.getMessage("jsite.project.action.copy-uri")) {
91 public void actionPerformed(ActionEvent actionEvent) {
95 copyURIAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project.action.copy-uri.tooltip"));
96 copyURIAction.putValue(Action.MNEMONIC_KEY, KeyEvent.VK_U);
97 copyURIAction.setEnabled(false);
99 I18nContainer.getInstance().registerRunnable(new Runnable() {
102 copyURIAction.putValue(Action.NAME, I18n.getMessage("jsite.project.action.copy-uri"));
103 copyURIAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project.action.copy-uri.tooltip"));
108 private void pageInit() {
109 setLayout(new BorderLayout(12, 12));
110 add(createProjectInsertPanel(), BorderLayout.CENTER);
113 private JComponent createProjectInsertPanel() {
114 JComponent projectInsertPanel = new JPanel(new GridBagLayout());
116 requestURITextField = new JTextField();
117 requestURITextField.setEditable(false);
119 startTimeLabel = new JLabel();
121 progressBar = new JProgressBar(0, 1);
122 progressBar.setStringPainted(true);
123 progressBar.setValue(0);
125 final JLabel projectInformationLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.insert.project-information") + "</b></html>");
126 projectInsertPanel.add(projectInformationLabel, new GridBagConstraints(0, 0, 2, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
127 final JLabel requestURILabel = new JLabel(I18n.getMessage("jsite.insert.request-uri") + ":");
128 projectInsertPanel.add(requestURILabel, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 18, 0, 0), 0, 0));
129 projectInsertPanel.add(requestURITextField, new GridBagConstraints(1, 1, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
130 final JLabel startTimeLeftLabel = new JLabel(I18n.getMessage("jsite.insert.start-time") + ":");
131 projectInsertPanel.add(startTimeLeftLabel, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 18, 0, 0), 0, 0));
132 projectInsertPanel.add(startTimeLabel, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
133 final JLabel progressLabel = new JLabel(I18n.getMessage("jsite.insert.progress") + ":");
134 projectInsertPanel.add(progressLabel, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 18, 0, 0), 0, 0));
135 projectInsertPanel.add(progressBar, new GridBagConstraints(1, 3, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
136 projectInsertPanel.add(new JButton(copyURIAction), new GridBagConstraints(0, 4, 2, 1, 0.0, 0.0, GridBagConstraints.LINE_END, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
138 I18nContainer.getInstance().registerRunnable(new Runnable() {
141 projectInformationLabel.setText("<html><b>" + I18n.getMessage("jsite.insert.project-information") + "</b></html>");
142 requestURILabel.setText(I18n.getMessage("jsite.insert.request-uri") + ":");
143 startTimeLeftLabel.setText(I18n.getMessage("jsite.insert.start-time") + ":");
144 if (startTime != 0) {
145 startTimeLabel.setText(DateFormat.getDateTimeInstance().format(new Date(startTime)));
147 startTimeLabel.setText("");
149 progressLabel.setText(I18n.getMessage("jsite.insert.progress") + ":");
153 return projectInsertPanel;
160 public void pageAdded(TWizard wizard) {
161 this.wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous"));
162 this.wizard.setPreviousEnabled(false);
163 this.wizard.setNextName(I18n.getMessage("jsite.wizard.next"));
164 this.wizard.setQuitName(I18n.getMessage("jsite.wizard.quit"));
167 public void startInsert() {
168 wizard.setNextEnabled(false);
169 copyURIAction.setEnabled(false);
170 progressBar.setValue(0);
171 progressBar.setFont(progressBar.getFont().deriveFont(Font.PLAIN));
172 projectInserter.start();
179 public void setDebug(boolean debug) {
180 projectInserter.setDebug(debug);
185 * The project to set.
187 public void setProject(final Project project) {
188 projectInserter.setProject(project);
189 SwingUtilities.invokeLater(new Runnable() {
192 requestURITextField.setText(project.getFinalRequestURI(1));
197 public void setFreenetInterface(Freenet7Interface freenetInterface) {
198 projectInserter.setFreenetInterface(freenetInterface);
202 // INTERFACE InsertListener
208 public void projectInsertStarted(final Project project) {
209 startTime = System.currentTimeMillis();
210 SwingUtilities.invokeLater(new Runnable() {
213 startTimeLabel.setText(DateFormat.getDateTimeInstance().format(new Date(startTime)));
221 public void projectURIGenerated(Project project, final String uri) {
222 SwingUtilities.invokeLater(new Runnable() {
224 copyURIAction.setEnabled(true);
225 requestURITextField.setText(uri);
233 public void projectInsertProgress(Project project, final int succeeded, final int failed, final int fatal, final int total, final boolean finalized) {
234 SwingUtilities.invokeLater(new Runnable() {
237 progressBar.setMaximum(total);
238 progressBar.setValue(succeeded + failed + fatal);
239 int progress = (succeeded + failed + fatal) * 100 / total;
240 StringBuilder progressString = new StringBuilder();
241 progressString.append(progress).append("% (");
242 progressString.append(succeeded + failed + fatal).append("/").append(total);
243 progressString.append(")");
244 progressBar.setString(progressString.toString());
246 progressBar.setFont(progressBar.getFont().deriveFont(Font.BOLD));
255 public void projectInsertFinished(Project project, boolean success, Throwable cause) {
257 JOptionPane.showMessageDialog(this, I18n.getMessage("jsite.insert.inserted"), null, JOptionPane.INFORMATION_MESSAGE);
260 JOptionPane.showMessageDialog(this, I18n.getMessage("jsite.insert.insert-failed"), null, JOptionPane.ERROR_MESSAGE);
262 JOptionPane.showMessageDialog(this, MessageFormat.format(I18n.getMessage("jsite.insert.insert-failed-with-cause"), cause.getMessage()), null, JOptionPane.ERROR_MESSAGE);
265 SwingUtilities.invokeLater(new Runnable() {
268 progressBar.setValue(progressBar.getMaximum());
269 progressBar.setString("Done");
270 wizard.setNextEnabled(true);
271 wizard.setQuitEnabled(true);
280 protected void actionCopyURI() {
281 Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
282 clipboard.setContents(new StringSelection(requestURITextField.getText()), this);
286 // INTERFACE ClipboardOwner
292 public void lostOwnership(Clipboard clipboard, Transferable contents) {