/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.dgmodule.controller.action; import java.io.File; import java.util.EventObject; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.JFileChooser; import org.openflexo.foundation.action.FlexoActionInitializer; import org.openflexo.foundation.cg.CGObject; import org.openflexo.foundation.cg.DGRepository; import org.openflexo.foundation.cg.action.ExportDocumentationTemplates; import org.openflexo.localization.FlexoLocalization; import org.openflexo.swing.FlexoFileChooser; import org.openflexo.toolbox.FileUtils; import org.openflexo.view.FlexoFrame; import org.openflexo.view.controller.ActionInitializer; import org.openflexo.view.controller.ControllerActionInitializer; import org.openflexo.view.controller.FlexoController; public class ExportDocumentationTemplatesInitializer extends ActionInitializer<ExportDocumentationTemplates, DGRepository, CGObject> { private static final Logger logger = Logger.getLogger(ControllerActionInitializer.class.getPackage().getName()); ExportDocumentationTemplatesInitializer(DGControllerActionInitializer actionInitializer) { super(ExportDocumentationTemplates.actionType, actionInitializer); } @Override protected DGControllerActionInitializer getControllerActionInitializer() { return (DGControllerActionInitializer) super.getControllerActionInitializer(); } @Override protected FlexoActionInitializer<ExportDocumentationTemplates> getDefaultInitializer() { return new FlexoActionInitializer<ExportDocumentationTemplates>() { @Override public boolean run(EventObject e, ExportDocumentationTemplates action) { FlexoFileChooser chooser = new FlexoFileChooser(FlexoFrame.getActiveFrame()); chooser.setDialogType(JFileChooser.SAVE_DIALOG); chooser.setDialogTitle(FlexoLocalization.localizedForKey("save_as_zip")); chooser.setFileFilterAsString("*.zip"); int returnVal = chooser.showSaveDialog(null); if (returnVal == JFileChooser.APPROVE_OPTION) { if (isValidProjectName(chooser.getSelectedFile().getName())) { File dest = chooser.getSelectedFile(); if (!dest.getName().toLowerCase().endsWith(".zip")) { dest = new File(dest.getAbsolutePath() + ".zip"); } action.setZipFile(dest); return true; } else { if (logger.isLoggable(Level.WARNING)) { logger.warning("Invalid file name. The following characters are not allowed: " + FileUtils.BAD_CHARACTERS_FOR_FILE_NAME_REG_EXP); } FlexoController.notify(FlexoLocalization.localizedForKey("file_name_cannot_contain_\\___&_#_{_}_[_]_%_~")); } } return false; } private boolean isValidProjectName(String absolutePath) { return absolutePath != null && absolutePath.trim().length() > 0 && !FileUtils.BAD_CHARACTERS_FOR_FILE_NAME_PATTERN.matcher(absolutePath).find(); } }; } }