/src/org/opencms/ui/apps/dbmanager/CmsImportFile.java

http://github.com/alkacon/opencms-core · Java · 110 lines · 39 code · 14 blank · 57 comment · 2 complexity · 071a11d3bfa82d1a384a42df948313d3 MD5 · raw file

  1. /*
  2. * This library is part of OpenCms -
  3. * the Open Source Content Management System
  4. *
  5. * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * For further information about Alkacon Software, please see the
  18. * company website: http://www.alkacon.com
  19. *
  20. * For further information about OpenCms, please see the
  21. * project website: http://www.opencms.org
  22. *
  23. * You should have received a copy of the GNU Lesser General Public
  24. * License along with this library; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26. */
  27. package org.opencms.ui.apps.dbmanager;
  28. import org.opencms.configuration.CmsConfigurationException;
  29. import org.opencms.main.OpenCms;
  30. import org.opencms.module.CmsModule;
  31. import org.opencms.module.CmsModuleDependency;
  32. import org.opencms.module.CmsModuleImportExportHandler;
  33. import org.opencms.module.CmsModuleManager;
  34. import java.util.List;
  35. /**
  36. *
  37. */
  38. public class CmsImportFile {
  39. /**Path of the file (on the server).*/
  40. private String m_path;
  41. /**Module in OpenCms.*/
  42. private CmsModule m_module;
  43. /**
  44. * public constructor.<p>
  45. *
  46. * @param path of the file
  47. */
  48. public CmsImportFile(String path) {
  49. m_path = path;
  50. }
  51. /**
  52. * Gets the module to import.<p>
  53. *
  54. * @return the CmsModule
  55. */
  56. public CmsModule getModule() {
  57. return m_module;
  58. }
  59. /**
  60. * Gets the path of the file.<p>
  61. *
  62. * @return the server path
  63. */
  64. public String getPath() {
  65. return m_path;
  66. }
  67. /**
  68. *
  69. *Class to load and validate import module file.<p>
  70. *
  71. * @throws CmsConfigurationException gets thrown when validation fails
  72. */
  73. public void loadAndValidate() throws CmsConfigurationException {
  74. CmsModule module = CmsModuleImportExportHandler.readModuleFromImport(m_path);
  75. m_module = module;
  76. List<CmsModuleDependency> dependencies = OpenCms.getModuleManager().checkDependencies(
  77. module,
  78. CmsModuleManager.DEPENDENCY_MODE_IMPORT);
  79. if (!dependencies.isEmpty()) {
  80. StringBuffer dep = new StringBuffer(32);
  81. for (int i = 0; i < dependencies.size(); i++) {
  82. CmsModuleDependency dependency = dependencies.get(i);
  83. dep.append("\n - ");
  84. dep.append(dependency.getName());
  85. dep.append(" (Version: ");
  86. dep.append(dependency.getVersion());
  87. dep.append(")");
  88. }
  89. // throw new CmsConfigurationException(
  90. // org.opencms.ui.apps.Messages.get().container(
  91. // org.opencms.ui.apps.Messages.ERR_MODULEMANAGER_ACTION_MODULE_DEPENDENCY_2,
  92. // m_path,
  93. // new String(dep)));
  94. }
  95. }
  96. }