All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.internet2.middleware.grouper.xml.importXml.XmlImportGsh Maven / Gradle / Ivy

There is a newer version: 5.13.5
Show newest version
/**
 * Copyright 2014 Internet2
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 Copyright (C) 2004-2007 University Corporation for Advanced Internet Development, Inc.
 Copyright 2004-2006 The University Of Bristol

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

package edu.internet2.middleware.grouper.xml.importXml;
import java.io.File;
import java.util.Map;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;

import edu.internet2.middleware.grouper.Group;
import edu.internet2.middleware.grouper.GrouperSession;
import edu.internet2.middleware.grouper.Membership;
import edu.internet2.middleware.grouper.Stem;
import edu.internet2.middleware.grouper.audit.GrouperEngineBuiltin;
import edu.internet2.middleware.grouper.cfg.GrouperConfig;
import edu.internet2.middleware.grouper.exception.GrouperSessionException;
import edu.internet2.middleware.grouper.hibernate.GrouperContext;
import edu.internet2.middleware.grouper.misc.GrouperSessionHandler;
import edu.internet2.middleware.grouper.misc.GrouperStartup;
import edu.internet2.middleware.grouper.util.GrouperUtil;
import edu.internet2.middleware.grouper.xml.export.XmlExportUtils;

/**
 * Utility class for importing data in XML import into the Groups Registry.
 * 

* This class reads an XML file representing all or part of a Groups Registry * and updates-or-creates the equivalent {@link Stem}s, {@link Group}s and * {@link Membership}s, etc (all data) *

* @author Chris Hyzer * @version $Id: XmlImporter.java,v 1.24 2009-11-11 16:48:11 mchyzer Exp $ * @since 1.0 */ public class XmlImportGsh { /** * */ private static final String NOPROMPT_ARG = "noprompt"; /** * */ public static final String RECORD_REPORT_ARG = "recordReport"; /** log */ @SuppressWarnings("unused") private static final Log LOG = GrouperUtil.getLog(XmlImportGsh.class); /** * Process an Xml file as the 'root' user. *

* @param args args[0] = name of Xml file to process * @since 1.1.0 */ public static void main(final String[] args) { //set this... GrouperContext.createNewDefaultContext(GrouperEngineBuiltin.IMPORT, false, true); if (XmlExportUtils.internal_wantsHelp(args)) { System.out.println( _getUsage() ); //System.exit(0); return; } final Map argsMap; try { argsMap = XmlExportUtils.internal_getXmlImportArgs(args); } catch (Exception e) { e.printStackTrace(); System.err.println(); System.err.println( _getUsage() ); //System.exit(1); return; } //make sure right db if(!Boolean.TRUE.equals(argsMap.get(NOPROMPT_ARG))) { GrouperUtil.promptUserAboutDbChanges("import data from xml", true); } GrouperStartup.runFromMain = true; GrouperStartup.startup(); GrouperSession.internal_callbackRootGrouperSession(new GrouperSessionHandler() { @Override public Object callback(GrouperSession grouperSession) throws GrouperSessionException { try { XmlImportMain xmlImportMain = new XmlImportMain(); if (Boolean.TRUE.equals(argsMap.get(RECORD_REPORT_ARG))) { xmlImportMain.setRecordReport(true); } xmlImportMain.setRecordReport(true); String fileName = (String)argsMap.get(XmlExportUtils.FILE_NAME_ARG); if (StringUtils.isBlank(fileName) || fileName.startsWith("-")) { throw new RuntimeException("Enter a file name"); } File file = new File(fileName); xmlImportMain.processXml(file); } catch (Exception e) { if (GrouperUtil.getFullStackTrace(e).contains("groupTypeUuid")) { System.err.println("ERROR: It appears you are trying to import an XML file that was exported from Grouper 2.1 or before. " + "This is not supported. Please upgrade instead using the procedure documented in the release notes."); } else { throw new RuntimeException(e); } } finally { GrouperSession.stopQuietly(grouperSession); } return null; } }); System.exit(0); return; } /** * * @return usage */ private static String _getUsage() { return "Usage:" + GrouperConfig.NL + "args: -h, Prints this message" + GrouperConfig.NL + "args: " + GrouperConfig.NL + " [-recordReport]" + GrouperConfig.NL + " [-noprompt] filename" + GrouperConfig.NL + "e.g. gsh -xmlimport f:/temp/prod.xml" + GrouperConfig.NL + GrouperConfig.NL + " -recordReport, Print a file which lists each insert/update" + GrouperConfig.NL + " In addition to import" + GrouperConfig.NL + " -noprompt, Do not prompt user to confirm the database that"+ GrouperConfig.NL + " will be updated" + GrouperConfig.NL + " filename, The file to import" + GrouperConfig.NL ; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy