Set version number to 0.8.
[jSite.git] / src / de / todesbaum / jsite / main / Main.java
1 /*
2  * jSite - a tool for uploading websites into Freenet
3  * Copyright (C) 2006-2009 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.main;
21
22 import java.awt.event.ActionEvent;
23 import java.awt.event.ActionListener;
24 import java.io.File;
25 import java.io.IOException;
26 import java.text.MessageFormat;
27 import java.util.Date;
28 import java.util.HashMap;
29 import java.util.Locale;
30 import java.util.Map;
31 import java.util.Set;
32 import java.util.Map.Entry;
33 import java.util.logging.ConsoleHandler;
34 import java.util.logging.Handler;
35 import java.util.logging.Level;
36 import java.util.logging.Logger;
37
38 import javax.swing.AbstractAction;
39 import javax.swing.Action;
40 import javax.swing.ButtonGroup;
41 import javax.swing.Icon;
42 import javax.swing.JList;
43 import javax.swing.JMenu;
44 import javax.swing.JMenuBar;
45 import javax.swing.JOptionPane;
46 import javax.swing.JPanel;
47 import javax.swing.JRadioButtonMenuItem;
48 import javax.swing.event.ListSelectionEvent;
49 import javax.swing.event.ListSelectionListener;
50
51 import de.todesbaum.jsite.application.FileOption;
52 import de.todesbaum.jsite.application.Freenet7Interface;
53 import de.todesbaum.jsite.application.Node;
54 import de.todesbaum.jsite.application.Project;
55 import de.todesbaum.jsite.application.UpdateChecker;
56 import de.todesbaum.jsite.application.UpdateListener;
57 import de.todesbaum.jsite.gui.NodeManagerListener;
58 import de.todesbaum.jsite.gui.NodeManagerPage;
59 import de.todesbaum.jsite.gui.PreferencesPage;
60 import de.todesbaum.jsite.gui.ProjectFilesPage;
61 import de.todesbaum.jsite.gui.ProjectInsertPage;
62 import de.todesbaum.jsite.gui.ProjectPage;
63 import de.todesbaum.jsite.i18n.I18n;
64 import de.todesbaum.jsite.i18n.I18nContainer;
65 import de.todesbaum.util.image.IconLoader;
66 import de.todesbaum.util.swing.TWizard;
67 import de.todesbaum.util.swing.TWizardPage;
68 import de.todesbaum.util.swing.WizardListener;
69
70 /**
71  * The main class that ties together everything.
72  *
73  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
74  */
75 public class Main implements ActionListener, ListSelectionListener, WizardListener, NodeManagerListener, UpdateListener {
76
77         /** The logger. */
78         @SuppressWarnings("unused")
79         private static final Logger logger = Logger.getLogger(Main.class.getName());
80
81         /** The version. */
82         private static final Version VERSION = new Version(0, 8);
83
84         /** The configuration. */
85         private Configuration configuration;
86
87         /** The freenet interface. */
88         private Freenet7Interface freenetInterface = new Freenet7Interface();
89
90         /** The update checker. */
91         private final UpdateChecker updateChecker;
92
93         /** The jSite icon. */
94         private Icon jSiteIcon;
95
96         /**
97          * Enumeration for all possible pages.
98          *
99          * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
100          */
101         private static enum PageType {
102
103                 /** The node manager page. */
104                 PAGE_NODE_MANAGER,
105
106                 /** The project page. */
107                 PAGE_PROJECTS,
108
109                 /** The project files page. */
110                 PAGE_PROJECT_FILES,
111
112                 /** The project insert page. */
113                 PAGE_INSERT_PROJECT,
114
115                 /** The preferences page. */
116                 PAGE_PREFERENCES
117
118         }
119
120         /** The supported locales. */
121         private static final Locale[] SUPPORTED_LOCALES = new Locale[] { Locale.ENGLISH, Locale.GERMAN, Locale.FRENCH, Locale.ITALIAN, new Locale("pl") };
122
123         /** The actions that switch the language. */
124         private Map<Locale, Action> languageActions = new HashMap<Locale, Action>();
125
126         /** The “manage nodes” action. */
127         private Action manageNodeAction;
128
129         /** The “preferences” action. */
130         private Action optionsPreferencesAction;
131
132         /** The “check for updates” action. */
133         private Action checkForUpdatesAction;
134
135         /** The “about jSite” action. */
136         private Action aboutAction;
137
138         /** The wizard. */
139         private TWizard wizard;
140
141         /** The node menu. */
142         private JMenu nodeMenu;
143
144         /** The currently selected node. */
145         private Node selectedNode;
146
147         /** Mapping from page type to page. */
148         private final Map<PageType, TWizardPage> pages = new HashMap<PageType, TWizardPage>();
149
150         /**
151          * Creates a new core with the default configuration file.
152          */
153         private Main() {
154                 this(null);
155         }
156
157         /**
158          * Creates a new core with the given configuration from the given file.
159          *
160          * @param configFilename
161          *            The name of the configuration file
162          */
163         private Main(String configFilename) {
164                 if (configFilename != null) {
165                         configuration = new Configuration(configFilename);
166                 } else {
167                         configuration = new Configuration();
168                 }
169                 Locale.setDefault(configuration.getLocale());
170                 I18n.setLocale(configuration.getLocale());
171                 if (!configuration.createLockFile()) {
172                         int option = JOptionPane.showOptionDialog(null, I18n.getMessage("jsite.main.already-running"), "", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, new Object[] { I18n.getMessage("jsite.main.already-running.override"), I18n.getMessage("jsite.wizard.quit") }, I18n.getMessage("jsite.wizard.quit"));
173                         if (option != 0) {
174                                 throw new IllegalStateException("Lockfile override not active, refusing start.");
175                         }
176                         configuration.removeLockfileOnExit();
177                 }
178                 wizard = new TWizard();
179                 createActions();
180                 wizard.setJMenuBar(createMenuBar());
181                 wizard.setQuitName(I18n.getMessage("jsite.wizard.quit"));
182                 wizard.setPreviousEnabled(false);
183                 wizard.setNextEnabled(true);
184                 wizard.addWizardListener(this);
185                 jSiteIcon = IconLoader.loadIcon("/jsite-icon.png");
186                 wizard.setIcon(jSiteIcon);
187
188                 updateChecker = new UpdateChecker(freenetInterface);
189                 updateChecker.addUpdateListener(this);
190                 updateChecker.start();
191
192                 initPages();
193                 showPage(PageType.PAGE_PROJECTS);
194         }
195
196         /**
197          * Creates all actions.
198          */
199         private void createActions() {
200                 for (final Locale locale : SUPPORTED_LOCALES) {
201                         languageActions.put(locale, new AbstractAction(I18n.getMessage("jsite.menu.language." + locale.getLanguage()), IconLoader.loadIcon("/flag-" + locale.getLanguage() + ".png")) {
202
203                                 @SuppressWarnings("synthetic-access")
204                                 public void actionPerformed(ActionEvent actionEvent) {
205                                         switchLanguage(locale);
206                                 }
207                         });
208                 }
209                 manageNodeAction = new AbstractAction(I18n.getMessage("jsite.menu.nodes.manage-nodes")) {
210
211                         @SuppressWarnings("synthetic-access")
212                         public void actionPerformed(ActionEvent actionEvent) {
213                                 showPage(PageType.PAGE_NODE_MANAGER);
214                                 wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous"));
215                                 wizard.setNextName(I18n.getMessage("jsite.wizard.next"));
216                         }
217                 };
218                 optionsPreferencesAction = new AbstractAction(I18n.getMessage("jsite.menu.options.preferences")) {
219
220                         /**
221                          * {@inheritDoc}
222                          */
223                         @Override
224                         @SuppressWarnings("synthetic-access")
225                         public void actionPerformed(ActionEvent actionEvent) {
226                                 optionsPreferences();
227                         }
228                 };
229                 checkForUpdatesAction = new AbstractAction(I18n.getMessage("jsite.menu.help.check-for-updates")) {
230
231                         /**
232                          * {@inheritDoc}
233                          */
234                         @SuppressWarnings("synthetic-access")
235                         public void actionPerformed(ActionEvent actionEvent) {
236                                 showLatestUpdate();
237                         }
238                 };
239                 aboutAction = new AbstractAction(I18n.getMessage("jsite.menu.help.about")) {
240
241                         @SuppressWarnings("synthetic-access")
242                         public void actionPerformed(ActionEvent e) {
243                                 JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.about.message"), getVersion().toString()), null, JOptionPane.INFORMATION_MESSAGE, jSiteIcon);
244                         }
245                 };
246
247                 I18nContainer.getInstance().registerRunnable(new Runnable() {
248
249                         @SuppressWarnings("synthetic-access")
250                         public void run() {
251                                 manageNodeAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.nodes.manage-nodes"));
252                                 optionsPreferencesAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.options.preferences"));
253                                 checkForUpdatesAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.help.check-for-updates"));
254                                 aboutAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.help.about"));
255                         }
256                 });
257         }
258
259         /**
260          * Creates the menu bar.
261          *
262          * @return The menu bar
263          */
264         private JMenuBar createMenuBar() {
265                 JMenuBar menuBar = new JMenuBar();
266                 final JMenu languageMenu = new JMenu(I18n.getMessage("jsite.menu.languages"));
267                 menuBar.add(languageMenu);
268                 ButtonGroup languageButtonGroup = new ButtonGroup();
269                 for (Locale locale : SUPPORTED_LOCALES) {
270                         Action languageAction = languageActions.get(locale);
271                         JRadioButtonMenuItem menuItem = new JRadioButtonMenuItem(languageActions.get(locale));
272                         if (locale.equals(Locale.getDefault())) {
273                                 menuItem.setSelected(true);
274                         }
275                         languageAction.putValue("menuItem", menuItem);
276                         languageButtonGroup.add(menuItem);
277                         languageMenu.add(menuItem);
278                 }
279                 nodeMenu = new JMenu(I18n.getMessage("jsite.menu.nodes"));
280                 menuBar.add(nodeMenu);
281                 selectedNode = configuration.getSelectedNode();
282                 nodesUpdated(configuration.getNodes());
283
284                 final JMenu optionsMenu = new JMenu(I18n.getMessage("jsite.menu.options"));
285                 menuBar.add(optionsMenu);
286                 optionsMenu.add(optionsPreferencesAction);
287
288                 /* evil hack to right-align the help menu */
289                 JPanel panel = new JPanel();
290                 panel.setOpaque(false);
291                 menuBar.add(panel);
292
293                 final JMenu helpMenu = new JMenu(I18n.getMessage("jsite.menu.help"));
294                 menuBar.add(helpMenu);
295                 helpMenu.add(checkForUpdatesAction);
296                 helpMenu.add(aboutAction);
297
298                 I18nContainer.getInstance().registerRunnable(new Runnable() {
299
300                         @SuppressWarnings("synthetic-access")
301                         public void run() {
302                                 languageMenu.setText(I18n.getMessage("jsite.menu.languages"));
303                                 nodeMenu.setText(I18n.getMessage("jsite.menu.nodes"));
304                                 optionsMenu.setText(I18n.getMessage("jsite.menu.options"));
305                                 helpMenu.setText(I18n.getMessage("jsite.menu.help"));
306                                 for (Map.Entry<Locale, Action> languageActionEntry : languageActions.entrySet()) {
307                                         languageActionEntry.getValue().putValue(Action.NAME, I18n.getMessage("jsite.menu.language." + languageActionEntry.getKey().getLanguage()));
308                                 }
309                         }
310                 });
311
312                 return menuBar;
313         }
314
315         /**
316          * Initializes all pages.
317          */
318         private void initPages() {
319                 NodeManagerPage nodeManagerPage = new NodeManagerPage(wizard);
320                 nodeManagerPage.setName("page.node-manager");
321                 nodeManagerPage.addNodeManagerListener(this);
322                 nodeManagerPage.setNodes(configuration.getNodes());
323                 pages.put(PageType.PAGE_NODE_MANAGER, nodeManagerPage);
324
325                 ProjectPage projectPage = new ProjectPage(wizard);
326                 projectPage.setName("page.project");
327                 projectPage.setProjects(configuration.getProjects());
328                 projectPage.setFreenetInterface(freenetInterface);
329                 projectPage.addListSelectionListener(this);
330                 pages.put(PageType.PAGE_PROJECTS, projectPage);
331
332                 ProjectFilesPage projectFilesPage = new ProjectFilesPage(wizard);
333                 projectFilesPage.setName("page.project.files");
334                 pages.put(PageType.PAGE_PROJECT_FILES, projectFilesPage);
335
336                 ProjectInsertPage projectInsertPage = new ProjectInsertPage(wizard);
337                 projectInsertPage.setName("page.project.insert");
338                 projectInsertPage.setFreenetInterface(freenetInterface);
339                 pages.put(PageType.PAGE_INSERT_PROJECT, projectInsertPage);
340
341                 PreferencesPage preferencesPage = new PreferencesPage(wizard);
342                 preferencesPage.setName("page.preferences");
343                 preferencesPage.setTempDirectory(configuration.getTempDirectory());
344                 pages.put(PageType.PAGE_PREFERENCES, preferencesPage);
345         }
346
347         /**
348          * Shows the page with the given type.
349          *
350          * @param pageType
351          *            The page type to show
352          */
353         private void showPage(PageType pageType) {
354                 wizard.setPreviousEnabled(pageType.ordinal() > 0);
355                 wizard.setNextEnabled(pageType.ordinal() < (pages.size() - 1));
356                 wizard.setPage(pages.get(pageType));
357                 wizard.setTitle(pages.get(pageType).getHeading() + " - jSite");
358         }
359
360         /**
361          * Saves the configuration.
362          *
363          * @return <code>true</code> if the configuration could be saved,
364          *         <code>false</code> otherwise
365          */
366         private boolean saveConfiguration() {
367                 NodeManagerPage nodeManagerPage = (NodeManagerPage) pages.get(PageType.PAGE_NODE_MANAGER);
368                 configuration.setNodes(nodeManagerPage.getNodes());
369                 if (selectedNode != null) {
370                         configuration.setSelectedNode(selectedNode);
371                 }
372
373                 ProjectPage projectPage = (ProjectPage) pages.get(PageType.PAGE_PROJECTS);
374                 configuration.setProjects(projectPage.getProjects());
375
376                 PreferencesPage preferencesPage = (PreferencesPage) pages.get(PageType.PAGE_PREFERENCES);
377                 configuration.setTempDirectory(preferencesPage.getTempDirectory());
378
379                 return configuration.save();
380         }
381
382         /**
383          * Finds a supported locale for the given locale.
384          *
385          * @param forLocale
386          *            The locale to find a supported locale for
387          * @return The supported locale that was found, or the default locale if no
388          *         supported locale could be found
389          */
390         private Locale findSupportedLocale(Locale forLocale) {
391                 for (Locale locale : SUPPORTED_LOCALES) {
392                         if (locale.equals(forLocale)) {
393                                 return locale;
394                         }
395                 }
396                 for (Locale locale : SUPPORTED_LOCALES) {
397                         if (locale.getCountry().equals(forLocale.getCountry()) && locale.getLanguage().equals(forLocale.getLanguage())) {
398                                 return locale;
399                         }
400                 }
401                 for (Locale locale : SUPPORTED_LOCALES) {
402                         if (locale.getLanguage().equals(forLocale.getLanguage())) {
403                                 return locale;
404                         }
405                 }
406                 return SUPPORTED_LOCALES[0];
407         }
408
409         /**
410          * Returns the version.
411          *
412          * @return The version
413          */
414         public static final Version getVersion() {
415                 return VERSION;
416         }
417
418         //
419         // ACTIONS
420         //
421
422         /**
423          * Switches the language of the interface to the given locale.
424          *
425          * @param locale
426          *            The locale to switch to
427          */
428         private void switchLanguage(Locale locale) {
429                 Locale supportedLocale = findSupportedLocale(locale);
430                 Action languageAction = languageActions.get(supportedLocale);
431                 JRadioButtonMenuItem menuItem = (JRadioButtonMenuItem) languageAction.getValue("menuItem");
432                 menuItem.setSelected(true);
433                 I18n.setLocale(supportedLocale);
434                 for (Runnable i18nRunnable : I18nContainer.getInstance()) {
435                         try {
436                                 i18nRunnable.run();
437                         } catch (Throwable t) {
438                                 /* we probably shouldn't swallow this. */
439                         }
440                 }
441                 wizard.setPage(wizard.getPage());
442                 configuration.setLocale(supportedLocale);
443         }
444
445         /**
446          * Shows a dialog with general preferences.
447          */
448         private void optionsPreferences() {
449                 showPage(PageType.PAGE_PREFERENCES);
450                 optionsPreferencesAction.setEnabled(false);
451                 wizard.setNextEnabled(true);
452                 wizard.setNextName(I18n.getMessage("jsite.wizard.next"));
453         }
454
455         /**
456          * Shows a dialog box that shows the last version that was found by the
457          * {@link UpdateChecker}.
458          */
459         private void showLatestUpdate() {
460                 Version latestVersion = updateChecker.getLatestVersion();
461                 int versionDifference = latestVersion.compareTo(VERSION);
462                 if (versionDifference > 0) {
463                         JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.update-checker.latest-version.newer.message"), VERSION, latestVersion), I18n.getMessage("jsite.update-checker.latest-version.title"), JOptionPane.INFORMATION_MESSAGE);
464                 } else if (versionDifference < 0) {
465                         JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.update-checker.latest-version.older.message"), VERSION, latestVersion), I18n.getMessage("jsite.update-checker.latest-version.title"), JOptionPane.INFORMATION_MESSAGE);
466                 } else {
467                         JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.update-checker.latest-version.okay.message"), VERSION, latestVersion), I18n.getMessage("jsite.update-checker.latest-version.title"), JOptionPane.INFORMATION_MESSAGE);
468                 }
469         }
470
471         //
472         // INTERFACE ListSelectionListener
473         //
474
475         /**
476          * {@inheritDoc}
477          */
478         public void valueChanged(ListSelectionEvent e) {
479                 JList list = (JList) e.getSource();
480                 int selectedRow = list.getSelectedIndex();
481                 wizard.setNextEnabled(selectedRow > -1);
482         }
483
484         //
485         // INTERFACE WizardListener
486         //
487
488         /**
489          * {@inheritDoc}
490          */
491         public void wizardNextPressed(TWizard wizard) {
492                 String pageName = wizard.getPage().getName();
493                 if ("page.node-manager".equals(pageName)) {
494                         showPage(PageType.PAGE_PROJECTS);
495                 } else if ("page.project".equals(pageName)) {
496                         ProjectPage projectPage = (ProjectPage) wizard.getPage();
497                         Project project = projectPage.getSelectedProject();
498                         if ((project.getLocalPath() == null) || (project.getLocalPath().trim().length() == 0)) {
499                                 JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project.warning.no-local-path"), null, JOptionPane.ERROR_MESSAGE);
500                                 return;
501                         }
502                         if ((project.getPath() == null) || (project.getPath().trim().length() == 0)) {
503                                 JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project.warning.no-path"), null, JOptionPane.ERROR_MESSAGE);
504                                 return;
505                         }
506                         ((ProjectFilesPage) pages.get(PageType.PAGE_PROJECT_FILES)).setProject(project);
507                         ((ProjectInsertPage) pages.get(PageType.PAGE_INSERT_PROJECT)).setProject(project);
508                         showPage(PageType.PAGE_PROJECT_FILES);
509                 } else if ("page.project.files".equals(pageName)) {
510                         ProjectPage projectPage = (ProjectPage) pages.get(PageType.PAGE_PROJECTS);
511                         Project project = projectPage.getSelectedProject();
512                         if (selectedNode == null) {
513                                 JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.no-node-selected"), null, JOptionPane.ERROR_MESSAGE);
514                                 return;
515                         }
516                         if ((project.getIndexFile() == null) || (project.getIndexFile().length() == 0)) {
517                                 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.empty-index"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) {
518                                         return;
519                                 }
520                         } else {
521                                 File indexFile = new File(project.getLocalPath(), project.getIndexFile());
522                                 if (!indexFile.exists()) {
523                                         JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.index-missing"), null, JOptionPane.ERROR_MESSAGE);
524                                         return;
525                                 }
526                         }
527                         String indexFile = project.getIndexFile();
528                         boolean hasIndexFile = (indexFile != null);
529                         if (hasIndexFile && !project.getFileOption(indexFile).getContainer().equals("")) {
530                                 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.container-index"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) {
531                                         return;
532                                 }
533                         }
534                         if (hasIndexFile && !project.getFileOption(indexFile).getMimeType().equals("text/html")) {
535                                 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.index-not-html"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) {
536                                         return;
537                                 }
538                         }
539                         Map<String, FileOption> fileOptions = project.getFileOptions();
540                         Set<Entry<String, FileOption>> fileOptionEntries = fileOptions.entrySet();
541                         for (Entry<String, FileOption> fileOptionEntry : fileOptionEntries) {
542                                 FileOption fileOption = fileOptionEntry.getValue();
543                                 if (!fileOption.isInsert() && ((fileOption.getCustomKey().length() == 0) || "CHK@".equals(fileOption.getCustomKey()))) {
544                                         JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.project-files.no-custom-key"), fileOptionEntry.getKey()), null, JOptionPane.ERROR_MESSAGE);
545                                         return;
546                                 }
547                         }
548                         boolean nodeRunning = false;
549                         try {
550                                 nodeRunning = freenetInterface.isNodePresent();
551                         } catch (IOException e) {
552                                 /* ignore. */
553                         }
554                         if (!nodeRunning) {
555                                 JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.no-node-running"), null, JOptionPane.ERROR_MESSAGE);
556                                 return;
557                         }
558                         configuration.save();
559                         showPage(PageType.PAGE_INSERT_PROJECT);
560                         ProjectInsertPage projectInsertPage = (ProjectInsertPage) pages.get(PageType.PAGE_INSERT_PROJECT);
561                         String tempDirectory = ((PreferencesPage) pages.get(PageType.PAGE_PREFERENCES)).getTempDirectory();
562                         projectInsertPage.setTempDirectory(tempDirectory);
563                         projectInsertPage.startInsert();
564                         nodeMenu.setEnabled(false);
565                         optionsPreferencesAction.setEnabled(false);
566                 } else if ("page.project.insert".equals(pageName)) {
567                         showPage(PageType.PAGE_PROJECTS);
568                         nodeMenu.setEnabled(true);
569                         optionsPreferencesAction.setEnabled(true);
570                 } else if ("page.preferences".equals(pageName)) {
571                         showPage(PageType.PAGE_PROJECTS);
572                         optionsPreferencesAction.setEnabled(true);
573                 }
574         }
575
576         /**
577          * {@inheritDoc}
578          */
579         public void wizardPreviousPressed(TWizard wizard) {
580                 String pageName = wizard.getPage().getName();
581                 if ("page.project".equals(pageName)) {
582                         showPage(PageType.PAGE_NODE_MANAGER);
583                 } else if ("page.project.files".equals(pageName)) {
584                         showPage(PageType.PAGE_PROJECTS);
585                 } else if ("page.project.insert".equals(pageName)) {
586                         showPage(PageType.PAGE_PROJECT_FILES);
587                 }
588         }
589
590         /**
591          * {@inheritDoc}
592          */
593         public void wizardQuitPressed(TWizard wizard) {
594                 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.quit.question"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE) == JOptionPane.OK_OPTION) {
595                         if (saveConfiguration()) {
596                                 System.exit(0);
597                         }
598                         if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.quit.config-not-saved"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) == JOptionPane.OK_OPTION) {
599                                 System.exit(0);
600                         }
601                 }
602         }
603
604         //
605         // INTERFACE NodeManagerListener
606         //
607
608         /**
609          * {@inheritDoc}
610          */
611         public void nodesUpdated(Node[] nodes) {
612                 nodeMenu.removeAll();
613                 ButtonGroup nodeButtonGroup = new ButtonGroup();
614                 Node newSelectedNode = null;
615                 for (Node node : nodes) {
616                         JRadioButtonMenuItem nodeMenuItem = new JRadioButtonMenuItem(node.getName());
617                         nodeMenuItem.putClientProperty("Node", node);
618                         nodeMenuItem.addActionListener(this);
619                         nodeButtonGroup.add(nodeMenuItem);
620                         if (node.equals(selectedNode)) {
621                                 newSelectedNode = node;
622                                 nodeMenuItem.setSelected(true);
623                         }
624                         nodeMenu.add(nodeMenuItem);
625                 }
626                 nodeMenu.addSeparator();
627                 nodeMenu.add(manageNodeAction);
628                 selectedNode = newSelectedNode;
629                 freenetInterface.setNode(selectedNode);
630         }
631
632         /**
633          * {@inheritDoc}
634          */
635         public void actionPerformed(ActionEvent e) {
636                 Object source = e.getSource();
637                 if (source instanceof JRadioButtonMenuItem) {
638                         JRadioButtonMenuItem menuItem = (JRadioButtonMenuItem) source;
639                         Node node = (Node) menuItem.getClientProperty("Node");
640                         selectedNode = node;
641                         freenetInterface.setNode(selectedNode);
642                 }
643         }
644
645         //
646         // INTERFACE UpdateListener
647         //
648
649         /**
650          * {@inheritDoc}
651          */
652         public void foundUpdateData(Version foundVersion, long versionTimestamp) {
653                 if (foundVersion.compareTo(VERSION) > 0) {
654                         JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.update-checker.found-version.message"), foundVersion.toString(), new Date(versionTimestamp)), I18n.getMessage("jsite.update-checker.found-version.title"), JOptionPane.INFORMATION_MESSAGE);
655                 }
656         }
657
658         //
659         // MAIN METHOD
660         //
661
662         /**
663          * Main method that is called by the VM.
664          *
665          * @param args
666          *            The command-line arguments
667          */
668         public static void main(String[] args) {
669                 /* initialize logger. */
670                 Logger logger = Logger.getLogger("de.todesbaum");
671                 Handler handler = new ConsoleHandler();
672                 logger.addHandler(handler);
673                 String configFilename = null;
674                 boolean nextIsConfigFilename = false;
675                 for (String argument : args) {
676                         if (nextIsConfigFilename) {
677                                 configFilename = argument;
678                                 nextIsConfigFilename = false;
679                         }
680                         if ("--help".equals(argument)) {
681                                 printHelp();
682                                 return;
683                         } else if ("--debug".equals(argument)) {
684                                 logger.setLevel(Level.ALL);
685                                 handler.setLevel(Level.ALL);
686                         } else if ("--config-file".equals(argument)) {
687                                 nextIsConfigFilename = true;
688                         }
689                 }
690                 if (nextIsConfigFilename) {
691                         System.out.println("--config-file needs parameter!");
692                         return;
693                 }
694                 new Main(configFilename);
695         }
696
697         /**
698          * Prints a small syntax help.
699          */
700         private static void printHelp() {
701                 System.out.println("--help\tshows this cruft");
702                 System.out.println("--debug\tenables some debug output");
703                 System.out.println("--config-file <file>\tuse specified configuration file");
704         }
705
706 }