?? cmsimportversion4.java
字號:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/importexport/CmsImportVersion4.java,v $
* Date : $Date: 2006/03/27 14:52:53 $
* Version: $Revision: 1.87 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.importexport;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsResource;
import org.opencms.file.types.I_CmsResourceType;
import org.opencms.i18n.CmsMessageContainer;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.report.I_CmsReport;
import org.opencms.security.CmsRole;
import org.opencms.security.I_CmsPasswordHandler;
import org.opencms.security.I_CmsPrincipal;
import org.opencms.util.CmsDateUtil;
import org.opencms.util.CmsUUID;
import java.io.File;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipFile;
import org.apache.commons.logging.Log;
import org.dom4j.Document;
import org.dom4j.Element;
/**
* Implementation of the OpenCms Import Interface ({@link org.opencms.importexport.I_CmsImport}) for
* the import version 4.<p>
*
* This import format is used in OpenCms since 5.1.6.<p>
*
* @author Michael Emmerich
* @author Thomas Weckert
*
* @version $Revision: 1.87 $
*
* @since 6.0.0
*
* @see org.opencms.importexport.A_CmsImport
*/
public class CmsImportVersion4 extends A_CmsImport {
/** The version number of this import implementation.<p> */
private static final int IMPORT_VERSION = 4;
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsImportVersion4.class);
/**
* Creates a new CmsImportVerion4 object.<p>
*/
public CmsImportVersion4() {
m_convertToXmlPage = true;
}
/**
* @see org.opencms.importexport.I_CmsImport#getVersion()
* @return the version number of this import implementation
*/
public int getVersion() {
return CmsImportVersion4.IMPORT_VERSION;
}
/**
* @see org.opencms.importexport.I_CmsImport#importResources(org.opencms.file.CmsObject, java.lang.String, org.opencms.report.I_CmsReport, java.io.File, java.util.zip.ZipFile, org.dom4j.Document)
*/
public void importResources(
CmsObject cms,
String importPath,
I_CmsReport report,
File importResource,
ZipFile importZip,
Document docXml) throws CmsImportExportException {
// initialize the import
initialize();
m_cms = cms;
m_importPath = importPath;
m_report = report;
m_importResource = importResource;
m_importZip = importZip;
m_docXml = docXml;
m_importingChannelData = false;
m_linkStorage = new HashMap();
m_linkPropertyStorage = new HashMap();
try {
// first import the user information
if (cms.hasRole(CmsRole.ACCOUNT_MANAGER)) {
importGroups();
importUsers();
}
// now import the VFS resources
readResourcesFromManifest();
convertPointerToSiblings();
} finally {
cleanUp();
}
}
/**
* Imports a single user.<p>
* @param name user name
* @param description user description
* @param flags user flags
* @param password user password
* @param firstname firstname of the user
* @param lastname lastname of the user
* @param email user email
* @param address user address
* @param type user type
* @param userInfo user info
* @param userGroups user groups
*
* @throws CmsImportExportException in case something goes wrong
*/
protected void importUser(
String name,
String description,
String flags,
String password,
String firstname,
String lastname,
String email,
String address,
String type,
Map userInfo,
List userGroups) throws CmsImportExportException {
boolean convert = false;
Map config = OpenCms.getPasswordHandler().getConfiguration();
if (config != null && config.containsKey(I_CmsPasswordHandler.CONVERT_DIGEST_ENCODING)) {
convert = Boolean.valueOf((String)config.get(I_CmsPasswordHandler.CONVERT_DIGEST_ENCODING)).booleanValue();
}
if (convert) {
password = convertDigestEncoding(password);
}
super.importUser(
name,
description,
flags,
password,
firstname,
lastname,
email,
address,
type,
userInfo,
userGroups);
}
/**
* Convert a given timestamp from a String format to a long value.<p>
*
* The timestamp is either the string representation of a long value (old export format)
* or a user-readable string format.
*
* @param timestamp timestamp to convert
* @return long value of the timestamp
*/
private long convertTimestamp(String timestamp) {
long value = 0;
// try to parse the timestamp string
// if it successes, its an old style long value
try {
value = Long.parseLong(timestamp);
} catch (NumberFormatException e) {
// the timestamp was in in a user-readable string format, create the long value form it
try {
value = CmsDateUtil.parseHeaderDate(timestamp);
} catch (ParseException pe) {
value = System.currentTimeMillis();
}
}
return value;
}
/**
* Imports a resource (file or folder) into the cms.<p>
*
* @param source the path to the source-file
* @param destination the path to the destination-file in the cms
* @param type the resource type name of the file
* @param uuidresource the resource uuid of the resource
* @param datelastmodified the last modification date of the resource
* @param userlastmodified the user who made the last modifications to the resource
* @param datecreated the creation date of the resource
* @param usercreated the user who created
* @param datereleased the release date of the resource
* @param dateexpired the expire date of the resource
* @param flags the flags of the resource
* @param properties a list with properties for this resource
*
* @return imported resource
*/
private CmsResource importResource(
String source,
String destination,
I_CmsResourceType type,
String uuidresource,
long datelastmodified,
String userlastmodified,
long datecreated,
String usercreated,
long datereleased,
long dateexpired,
String flags,
List properties) {
byte[] content = null;
CmsResource result = null;
try {
// get the file content
if (source != null) {
content = getFileBytes(source);
}
int size = 0;
if (content != null) {
size = content.length;
}
// get UUIDs for the user
CmsUUID newUserlastmodified;
CmsUUID newUsercreated;
// check if user created and user lastmodified are valid users in this system.
// if not, use the current user
try {
newUserlastmodified = m_cms.readUser(userlastmodified).getId();
} catch (CmsException e) {
newUserlastmodified = m_cms.getRequestContext().currentUser().getId();
// datelastmodified = System.currentTimeMillis();
}
try {
newUsercreated = m_cms.readUser(usercreated).getId();
} catch (CmsException e) {
newUsercreated = m_cms.getRequestContext().currentUser().getId();
// datecreated = System.currentTimeMillis();
}
// get UUIDs for the resource and content
CmsUUID newUuidresource = null;
if ((uuidresource != null) && (!type.isFolder())) {
// create a UUID from the provided string
newUuidresource = new CmsUUID(uuidresource);
} else {
// folders get always a new resource record UUID
newUuidresource = new CmsUUID();
}
// create a new CmsResource
CmsResource resource = new CmsResource(
new CmsUUID(), // structure ID is always a new UUID
newUuidresource,
destination,
type.getTypeId(),
type.isFolder(),
new Integer(flags).intValue(),
m_cms.getRequestContext().currentProject().getId(),
CmsResource.STATE_NEW,
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -