Dépôt officiel du code source de l'ERP OpenConcerto
Rev 149 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
*
* The contents of this file are subject to the terms of the GNU General Public License Version 3
* only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
* copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each file.
*/
package org.openconcerto.sql.ui;
import org.openconcerto.sql.Configuration;
import org.openconcerto.sql.PropsConfiguration;
import org.openconcerto.sql.TM;
import org.openconcerto.sql.users.User;
import org.openconcerto.sql.users.UserManager;
import org.openconcerto.sql.users.rights.UserRights;
import org.openconcerto.sql.users.rights.UserRightsManager;
import org.openconcerto.ui.FormLayouter;
import org.openconcerto.ui.component.HTMLTextField;
import org.openconcerto.utils.BaseDirs;
import org.openconcerto.utils.ProductInfo;
import org.openconcerto.utils.SystemInfo;
import org.openconcerto.utils.Tuple2;
import org.openconcerto.utils.cc.IFactory;
import org.openconcerto.utils.i18n.I18nUtils;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import javax.swing.JLabel;
import javax.swing.JPanel;
/**
* A panel displaying various software informations.
*
* @author Sylvain CUAZ
* @see Configuration
*/
public class SoftwareInfoPanel extends JPanel {
public static enum Info {
RIGHTS, USER, APP_NAME, APP_VERSION, SECURE_LINK, DB_URL, DIRS
}
public static final IFactory<String> FACTORY = new IFactory<String>() {
@Override
public String createChecked() {
return get(false, Locale.ENGLISH).toString();
}
};
public static Map<Info, String> get(final boolean html, final Locale locale) {
final Map<Info, String> res = new HashMap<Info, String>();
final UserRightsManager userRightsManager = UserRightsManager.getInstance();
res.put(Info.RIGHTS, org.openconcerto.utils.i18n.TM.tr(locale, I18nUtils.getYesNoKey(userRightsManager != null)));
final User user = UserManager.getUser();
if (user != null) {
final UserRights userRights = UserRightsManager.getCurrentUserRights();
res.put(Info.USER, user.toString() + (userRights.isSuperUser() ? " (superuser)" : ""));
}
final Configuration conf = Configuration.getInstance();
final PropsConfiguration propsConf;
final ProductInfo productInfo;
if (conf instanceof PropsConfiguration) {
propsConf = (PropsConfiguration) conf;
productInfo = propsConf.getProductInfo();
} else {
propsConf = null;
productInfo = ProductInfo.getInstance();
}
final String name, version;
if (productInfo == null) {
name = TM.tr(locale, "infoPanel.noAppName");
version = TM.tr(locale, "infoPanel.noVersion");
} else {
name = productInfo.getName();
version = productInfo.getProperty(ProductInfo.VERSION, TM.tr(locale, "infoPanel.noVersion"));
}
res.put(Info.APP_NAME, name);
res.put(Info.APP_VERSION, version);
if (propsConf != null && propsConf.isUsingSSH()) {
final Tuple2<String, Integer> serverAddressAndPort = propsConf.parseServerAddressAndPort();
res.put(Info.SECURE_LINK, "localhost:" + propsConf.getTunnelLocalPort() + " ⟷ (" + propsConf.getWanHostAndPort() + ") " + serverAddressAndPort.get0() + ":" + serverAddressAndPort.get1());
}
if (conf != null)
res.put(Info.DB_URL, conf.getSystemRoot().getDataSource().getUrl());
if (conf != null) {
final String logs = propsConf == null ? "" : " ; " + SystemInfo.getLink(TM.tr(locale, "infoPanel.logs"), propsConf.getLogDir().toURI(), html);
final BaseDirs baseDirs = conf.getBaseDirs();
String dirs = " ; " + SystemInfo.getLink(TM.tr(locale, "infoPanel.dataDir"), baseDirs.getAppDataFolder().toURI(), html);
dirs = dirs + " ; " + SystemInfo.getLink(TM.tr(locale, "infoPanel.prefsDir"), baseDirs.getPreferencesFolder().toURI(), html);
dirs = dirs + " ; " + SystemInfo.getLink(TM.tr(locale, "infoPanel.cacheDir"), baseDirs.getCacheFolder().toURI(), html);
res.put(Info.DIRS, SystemInfo.getLink(TM.tr(locale, "infoPanel.docs"), conf.getWD().toURI(), html) + logs + dirs);
}
return res;
}
private final FormLayouter l;
public SoftwareInfoPanel(final Locale locale) {
this.l = new FormLayouter(this, 1);
this.refresh(locale);
}
public final void refresh(final Locale locale) {
this.l.clear();
final Map<Info, String> infos = get(true, locale);
this.l.add(TM.tr(locale, "infoPanel.rights"), new JLabel(infos.get(Info.RIGHTS)));
final String user = infos.get(Info.USER);
if (user != null) {
this.l.add(org.openconcerto.utils.i18n.TM.tr(locale, "user"), new JLabel(user));
}
this.l.add(TM.tr(locale, "infoPanel.appName"), new JLabel(infos.get(Info.APP_NAME)));
this.l.add(TM.tr(locale, "infoPanel.version"), new JLabel(infos.get(Info.APP_VERSION)));
final String secureLink = infos.get(Info.SECURE_LINK);
if (secureLink != null) {
this.l.add(TM.tr(locale, "infoPanel.secureLink"), new JLabel(secureLink));
}
final JLabel dbURL = new JLabel(infos.get(Info.DB_URL));
if (dbURL != null)
this.l.add(TM.tr(locale, "infoPanel.dbURL"), dbURL);
final String dirs = infos.get(Info.DIRS);
if (dirs != null)
this.l.add(TM.tr(locale, "infoPanel.dirs"), new HTMLTextField(dirs));
this.l.getComponent().revalidate();
}
}