remove subversion $Id$ tags
[jSite.git] / src / de / todesbaum / jsite / gui / ProjectInsertPage.java
1 /*
2  * jSite - a tool for uploading websites into Freenet
3  * Copyright (C) 2006 David Roden
4  *
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.
9  *
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.
14  *
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.
18  */
19
20 package de.todesbaum.jsite.gui;
21
22 import java.awt.BorderLayout;
23 import java.awt.Font;
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;
37
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;
48
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;
57
58 /**
59  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
60  */
61 public class ProjectInsertPage extends TWizardPage implements InsertListener, ClipboardOwner {
62
63         protected ProjectInserter projectInserter;
64
65         protected Action copyURIAction;
66         protected JTextField requestURITextField;
67         protected JLabel startTimeLabel;
68         protected JProgressBar progressBar;
69         protected long startTime = 0;
70
71         public ProjectInsertPage(final TWizard wizard) {
72                 super(wizard);
73                 createActions();
74                 pageInit();
75                 setHeading(I18n.getMessage("jsite.insert.heading"));
76                 setDescription(I18n.getMessage("jsite.insert.description"));
77                 I18nContainer.getInstance().registerRunnable(new Runnable() {
78
79                         public void run() {
80                                 setHeading(I18n.getMessage("jsite.insert.heading"));
81                                 setDescription(I18n.getMessage("jsite.insert.description"));
82                         }
83                 });
84                 projectInserter = new ProjectInserter();
85                 projectInserter.addInsertListener(this);
86         }
87
88         private void createActions() {
89                 copyURIAction = new AbstractAction(I18n.getMessage("jsite.project.action.copy-uri")) {
90                         public void actionPerformed(ActionEvent actionEvent) {
91                                 actionCopyURI();
92                         }
93                 };
94                 copyURIAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project.action.copy-uri.tooltip"));
95                 copyURIAction.putValue(Action.MNEMONIC_KEY, KeyEvent.VK_U);
96                 copyURIAction.setEnabled(false);
97
98                 I18nContainer.getInstance().registerRunnable(new Runnable() {
99
100                         public void run() {
101                                 copyURIAction.putValue(Action.NAME, I18n.getMessage("jsite.project.action.copy-uri"));
102                                 copyURIAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project.action.copy-uri.tooltip"));
103                         }
104                 });
105         }
106
107         private void pageInit() {
108                 setLayout(new BorderLayout(12, 12));
109                 add(createProjectInsertPanel(), BorderLayout.CENTER);
110         }
111
112         private JComponent createProjectInsertPanel() {
113                 JComponent projectInsertPanel = new JPanel(new GridBagLayout());
114
115                 requestURITextField = new JTextField();
116                 requestURITextField.setEditable(false);
117
118                 startTimeLabel = new JLabel();
119
120                 progressBar = new JProgressBar(0, 1);
121                 progressBar.setStringPainted(true);
122                 progressBar.setValue(0);
123
124                 final JLabel projectInformationLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.insert.project-information") + "</b></html>");
125                 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));
126                 final JLabel requestURILabel = new JLabel(I18n.getMessage("jsite.insert.request-uri") + ":");
127                 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));
128                 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));
129                 final JLabel startTimeLeftLabel = new JLabel(I18n.getMessage("jsite.insert.start-time") + ":");
130                 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));
131                 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));
132                 final JLabel progressLabel = new JLabel(I18n.getMessage("jsite.insert.progress") + ":");
133                 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));
134                 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));
135                 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));
136
137                 I18nContainer.getInstance().registerRunnable(new Runnable() {
138
139                         public void run() {
140                                 projectInformationLabel.setText("<html><b>" + I18n.getMessage("jsite.insert.project-information") + "</b></html>");
141                                 requestURILabel.setText(I18n.getMessage("jsite.insert.request-uri") + ":");
142                                 startTimeLeftLabel.setText(I18n.getMessage("jsite.insert.start-time") + ":");
143                                 if (startTime != 0) {
144                                         startTimeLabel.setText(DateFormat.getDateTimeInstance().format(new Date(startTime)));
145                                 } else {
146                                         startTimeLabel.setText("");
147                                 }
148                                 progressLabel.setText(I18n.getMessage("jsite.insert.progress") + ":");
149                         }
150                 });
151
152                 return projectInsertPanel;
153         }
154
155         /**
156          * {@inheritDoc}
157          */
158         @Override
159         public void pageAdded(TWizard wizard) {
160                 this.wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous"));
161                 this.wizard.setPreviousEnabled(false);
162                 this.wizard.setNextName(I18n.getMessage("jsite.wizard.next"));
163                 this.wizard.setQuitName(I18n.getMessage("jsite.wizard.quit"));
164         }
165
166         public void startInsert() {
167                 wizard.setNextEnabled(false);
168                 copyURIAction.setEnabled(false);
169                 progressBar.setValue(0);
170                 progressBar.setString(I18n.getMessage("jsite.insert.starting"));
171                 progressBar.setFont(progressBar.getFont().deriveFont(Font.PLAIN));
172                 projectInserter.start();
173         }
174
175         /**
176          * @param debug
177          *            The debug to set.
178          */
179         public void setDebug(boolean debug) {
180                 projectInserter.setDebug(debug);
181         }
182
183         /**
184          * @param project
185          *            The project to set.
186          */
187         public void setProject(final Project project) {
188                 projectInserter.setProject(project);
189                 SwingUtilities.invokeLater(new Runnable() {
190
191                         public void run() {
192                                 requestURITextField.setText(project.getFinalRequestURI(1));
193                         }
194                 });
195         }
196
197         public void setFreenetInterface(Freenet7Interface freenetInterface) {
198                 projectInserter.setFreenetInterface(freenetInterface);
199         }
200
201         //
202         // INTERFACE InsertListener
203         //
204
205         /**
206          * {@inheritDoc}
207          */
208         public void projectInsertStarted(final Project project) {
209                 startTime = System.currentTimeMillis();
210                 SwingUtilities.invokeLater(new Runnable() {
211
212                         public void run() {
213                                 startTimeLabel.setText(DateFormat.getDateTimeInstance().format(new Date(startTime)));
214                         }
215                 });
216         }
217
218         /**
219          * {@inheritDoc}
220          */
221         public void projectURIGenerated(Project project, final String uri) {
222                 SwingUtilities.invokeLater(new Runnable() {
223                         public void run() {
224                                 copyURIAction.setEnabled(true);
225                                 requestURITextField.setText(uri);
226                         }
227                 });
228         }
229
230         /**
231          * {@inheritDoc}
232          */
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() {
235
236                         public void run() {
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());
245                                 if (finalized) {
246                                         progressBar.setFont(progressBar.getFont().deriveFont(Font.BOLD));
247                                 }
248                         }
249                 });
250         }
251
252         /**
253          * {@inheritDoc}
254          */
255         public void projectInsertFinished(Project project, boolean success, Throwable cause) {
256                 if (success) {
257                         JOptionPane.showMessageDialog(this, I18n.getMessage("jsite.insert.inserted"), null, JOptionPane.INFORMATION_MESSAGE);
258                 } else {
259                         if (cause == null) {
260                                 JOptionPane.showMessageDialog(this, I18n.getMessage("jsite.insert.insert-failed"), null, JOptionPane.ERROR_MESSAGE);
261                         } else {
262                                 JOptionPane.showMessageDialog(this, MessageFormat.format(I18n.getMessage("jsite.insert.insert-failed-with-cause"), cause.getMessage()), null, JOptionPane.ERROR_MESSAGE);
263                         }
264                 }
265                 SwingUtilities.invokeLater(new Runnable() {
266
267                         public void run() {
268                                 progressBar.setValue(progressBar.getMaximum());
269                                 progressBar.setString(I18n.getMessage("jsite.insert.done"));
270                                 wizard.setNextEnabled(true);
271                                 wizard.setQuitEnabled(true);
272                         }
273                 });
274         }
275
276         //
277         // ACTIONS
278         //
279
280         protected void actionCopyURI() {
281                 Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
282                 clipboard.setContents(new StringSelection(requestURITextField.getText()), this);
283         }
284
285         //
286         // INTERFACE ClipboardOwner
287         //
288
289         /**
290          * {@inheritDoc}
291          */
292         public void lostOwnership(Clipboard clipboard, Transferable contents) {
293         }
294
295 }