/src/org/opencms/file/collectors/CmsAddCategoriesPostCreateHandler.java

http://github.com/alkacon/opencms-core · Java · 111 lines · 44 code · 10 blank · 57 comment · 9 complexity · 4c7d6093e7c852db7534bb55c02e7211 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.file.collectors;
  28. import org.opencms.file.CmsObject;
  29. import org.opencms.file.CmsResource;
  30. import org.opencms.lock.CmsLockUtil;
  31. import org.opencms.main.CmsException;
  32. import org.opencms.relations.CmsCategory;
  33. import org.opencms.relations.CmsCategoryService;
  34. import java.util.Arrays;
  35. import java.util.List;
  36. /**
  37. * A post create handler that adds categories to newly created resources (that are not a copy of an existing resource).<p>
  38. *
  39. * To configure it for adding the categories with category paths "cat1/subcat1/", "cat1/subcat2/" and "cat2/"
  40. * add the attribute
  41. * <code>postCreateHandler="org.opencms.file.collectors.CmsAddCategoriesPostCreateHandler|cat1/subcat1/,cat1/subcat2/,cat2/"</code>
  42. * to the tag that provides the create option (i.e., <cms:contentload>, <cms:edit> or <cms:display>.<p>
  43. *
  44. * Instead of providing category paths, one can also use site or root paths of the folders representing the categories.
  45. * If a category path starts with "/" it is assumed to be site or root path. Otherwise it is treated as category path, i.e.,
  46. * the path without the category repositories base path.<p>
  47. *
  48. * @see I_CmsCollectorPostCreateHandler for more information on where post create handlers can be configured.
  49. */
  50. public class CmsAddCategoriesPostCreateHandler implements I_CmsCollectorPostCreateHandler {
  51. /**
  52. * @see org.opencms.file.collectors.I_CmsCollectorPostCreateHandler#onCreate(org.opencms.file.CmsObject, org.opencms.file.CmsResource, boolean)
  53. */
  54. public void onCreate(CmsObject cms, CmsResource createdResource, boolean copyMode) {
  55. // there are no categories configured that should be added. Just return without modifying the created resource.
  56. return;
  57. }
  58. /**
  59. * Adds the categories specified via <code>config</code> to the newly created resource iff not in copy mode.
  60. *
  61. * @param cms the current user's CMS context
  62. * @param createdResource the resource which has been created
  63. * @param copyMode <code>true</code> if the user chose one of the elements in the collector list as a model
  64. * @param config a comma separted list of category, site or root paths that specify the categories to be added to the created resource
  65. * if <code>copyMode</code> is <code>false</code>.
  66. *
  67. * @see org.opencms.file.collectors.I_CmsCollectorPostCreateHandler#onCreate(org.opencms.file.CmsObject, org.opencms.file.CmsResource, boolean, java.lang.String)
  68. */
  69. public void onCreate(CmsObject cms, CmsResource createdResource, boolean copyMode, String config) {
  70. if ((null != config) && !copyMode) {
  71. List<String> cats = Arrays.asList(config.split(","));
  72. CmsCategoryService catService = CmsCategoryService.getInstance();
  73. try {
  74. try (AutoCloseable c = CmsLockUtil.withLockedResources(cms, createdResource)) {
  75. String sitePath = cms.getRequestContext().getSitePath(createdResource);
  76. for (String catPath : cats) {
  77. if (!catPath.isEmpty()) {
  78. try {
  79. CmsCategory cat;
  80. if (catPath.startsWith("/")) { // assume we have a site or rootpath
  81. cat = catService.getCategory(cms, catPath);
  82. } else { // assume we have the category path
  83. cat = catService.readCategory(cms, catPath, sitePath);
  84. }
  85. if (null != cat) {
  86. catService.addResourceToCategory(cms, sitePath, cat);
  87. }
  88. } catch (CmsException e) {
  89. // TODO Auto-generated catch block
  90. e.printStackTrace();
  91. }
  92. }
  93. }
  94. }
  95. } catch (Exception e1) {
  96. // TODO Auto-generated catch block
  97. e1.printStackTrace();
  98. }
  99. }
  100. }
  101. }