/*************************************************************************** * Copyright (C) 2003-2007 eXo Platform SAS. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program 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 this program; if not, see<http://www.gnu.org/licenses/>. ***************************************************************************/ package org.exoplatform.forum.webui; import org.exoplatform.container.ExoContainerContext; import org.exoplatform.forum.ForumUtils; import org.exoplatform.forum.common.webui.UIPopupAction; import org.exoplatform.forum.common.webui.UIPopupContainer; import org.exoplatform.forum.common.webui.WebUIUtils; import org.exoplatform.forum.service.ForumService; import org.exoplatform.forum.service.UserProfile; import org.exoplatform.forum.webui.popup.UIAutoPruneForm; import org.exoplatform.forum.webui.popup.UIBBCodeManagerForm; import org.exoplatform.forum.webui.popup.UIBanIPForumManagerForm; import org.exoplatform.forum.webui.popup.UICategoryForm; import org.exoplatform.forum.webui.popup.UICensorKeywordForm; import org.exoplatform.forum.webui.popup.UIExportForm; import org.exoplatform.forum.webui.popup.UIForumForm; import org.exoplatform.forum.webui.popup.UIForumUserSettingForm; import org.exoplatform.forum.webui.popup.UIImportForm; import org.exoplatform.forum.webui.popup.UIModerationForum; import org.exoplatform.forum.webui.popup.UIModeratorManagementForm; import org.exoplatform.forum.webui.popup.UINotificationForm; import org.exoplatform.forum.webui.popup.UIPrivateMessageForm; import org.exoplatform.forum.webui.popup.UIShowBookMarkForm; import org.exoplatform.forum.webui.popup.UISortSettingForm; import org.exoplatform.web.application.ApplicationMessage; import org.exoplatform.webui.config.annotation.ComponentConfig; import org.exoplatform.webui.config.annotation.EventConfig; import org.exoplatform.webui.core.UIContainer; import org.exoplatform.webui.event.Event; import org.exoplatform.webui.event.EventListener; import java.util.ArrayList; import java.util.List; @ComponentConfig( template = "app:/templates/forum/webui/UIForumActionBar.gtmpl", events = { @EventConfig(listeners = UIForumActionBar.AddCategoryActionListener.class), @EventConfig(listeners = UIForumActionBar.AddForumActionListener.class), @EventConfig(listeners = UIForumActionBar.ManageModeratorActionListener.class), @EventConfig(listeners = UIForumActionBar.EditProfileActionListener.class), @EventConfig(listeners = UIForumActionBar.OpenBookMarkActionListener.class), @EventConfig(listeners = UIForumActionBar.PrivateMessageActionListener.class), @EventConfig(listeners = UIForumActionBar.ModerationActionListener.class), @EventConfig(listeners = UIForumActionBar.ImportCategoryActionListener.class), @EventConfig(listeners = UIForumActionBar.ExportCategoryActionListener.class), @EventConfig(listeners = UIForumActionBar.SortSettingActionListener.class), @EventConfig(listeners = UIForumActionBar.CensorKeywordActionListener.class), @EventConfig(listeners = UIForumActionBar.NotificationActionListener.class), @EventConfig(listeners = UIForumActionBar.BBCodeManagerActionListener.class), @EventConfig(listeners = UIForumActionBar.AutoPruneActionListener.class), @EventConfig(listeners = UIForumActionBar.ReloadActionListener.class), @EventConfig(listeners = UIForumActionBar.OpenIPBanActionListener.class) } ) public class UIForumActionBar extends UIContainer { private UserProfile userProfile; private ForumService forumService; private boolean isSpace = false; private static final String RELOAD = "RELOAD".intern(); public UIForumActionBar() throws Exception { forumService = (ForumService) ExoContainerContext.getCurrentContainer().getComponentInstanceOfType(ForumService.class); } private UserProfile getUserProfile() { UIForumPortlet forumPortlet = (UIForumPortlet) getParent(); userProfile = forumPortlet.getUserProfile(); isSpace = !ForumUtils.isEmpty(forumPortlet.getForumIdOfSpace()); return userProfile; } protected boolean isSpace() { return isSpace; } protected String[] getActionMenu() { return (ForumUtils.enableIPLogging()) ? (new String[] { "SortSetting", "CensorKeyword", "Notification", "BBCodeManager", "AutoPrune", "OpenIPBan", "ExportCategory", "ImportCategory" }) : (new String[] { "SortSetting", "CensorKeyword", "Notification", "BBCodeManager", "AutoPrune", "ExportCategory", "ImportCategory" }); } protected int getTotalJobWattingForModerator() throws Exception { return forumService.getJobWattingForModeratorByUser(this.userProfile.getUserId()); } protected long getNewMessage() { try { String username = this.userProfile.getUserId(); return forumService.getNewPrivateMessage(username); } catch (Exception e) { return -1; } } public String getCometdContextName() { return ((UIForumPortlet) this.getParent()).getCometdContextName(); } public String getUserToken() { return ((UIForumPortlet) this.getParent()).getUserToken(); } protected void initJavaScripts() { List<String> scripts = new ArrayList<String>(); String moreLabel = WebUIUtils.getLabel(getId(), "More"); scripts.add("forumPortlet.loadMoreForumActionBar('" + getId() + "', '" + moreLabel + "');"); if(getUserProfile().getUserRole() <=1) { scripts.add("forumPortlet.visibleAction('"+getId()+"');"); StringBuilder init = new StringBuilder("forumJob.init('"); init.append(userProfile.getUserId()).append("', '") .append(getUserToken()).append("', '") .append(getCometdContextName()).append("');"); ForumUtils.addScripts("ForumTotalJob", "forumJob", init.toString()) .require("SHARED/jquery_cometd", "cometd"); } ForumUtils.addScripts("UIForumPortlet", "forumPortlet", scripts.toArray(new String[]{})); } static public class PrivateMessageActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIPrivateMessageForm messageForm = popupContainer.addChild(UIPrivateMessageForm.class, null, null); messageForm.setUserProfile(uiActionBar.userProfile); messageForm.setFullMessage(true); popupContainer.setId("PrivateMessageForm"); popupAction.activate(popupContainer, 820, 550); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); if (RELOAD.equals(event.getRequestContext().getRequestParameter(OBJECTID))) { forumPortlet.removeCacheUserProfile(); uiActionBar.getUserProfile(); event.getRequestContext().addUIComponentToUpdateByAjax(uiActionBar); } } } static public class ReloadActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); forumPortlet.removeCacheUserProfile(); uiActionBar.getUserProfile(); event.getRequestContext().addUIComponentToUpdateByAjax(uiActionBar); } } static public class ModerationActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIModerationForum messageForm = popupContainer.addChild(UIModerationForum.class, null, null); messageForm.setUserProfile(uiActionBar.userProfile); popupContainer.setId("ModerationForum"); popupAction.activate(popupContainer, 650, 480); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class AddCategoryActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UICategoryForm categoryForm = popupContainer.addChild(UICategoryForm.class, null, null); categoryForm.setSpaceGroupId(forumPortlet.getSpaceGroupId()); popupContainer.setId("AddCategoryForm"); popupAction.activate(popupContainer, 665, 380); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class ImportCategoryActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); popupContainer.addChild(UIImportForm.class, null, null); popupContainer.setId("FORUMImportCategoryForm"); popupAction.activate(popupContainer, 500, 160); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class ExportCategoryActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIExportForm exportForm = popupContainer.addChild(UIExportForm.class, null, null); exportForm.setObjectId(null); popupContainer.setId("FORUMExportCategoryForm"); popupAction.activate(popupContainer, 500, 400); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class AddForumActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); if (uiActionBar.forumService.getCategories(false).size() > 0) { UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIForumForm forumForm = popupContainer.addChild(UIForumForm.class, null, null); forumForm.setMode(false); forumForm.initForm(forumPortlet.getSpaceGroupId()); UICategory category = forumPortlet.findFirstComponentOfType(UICategory.class); if (category != null && category.isRendered()) { forumForm.setCategoryValue(category.getCategoryId(), true); } else { forumForm.setCategoryValue(ForumUtils.EMPTY_STR, true); } forumForm.setForumUpdate(false); forumForm.setActionBar(true); popupContainer.setId("AddNewForumForm"); popupAction.activate(popupContainer, 650, 480); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } else { event.getRequestContext().getUIApplication() .addMessage(new ApplicationMessage("UIForumActionBar.msg.notCategory", null, ApplicationMessage.WARNING)); return; } } } static public class ManageModeratorActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIModeratorManagementForm managementForm = popupContainer.addChild(UIModeratorManagementForm.class, null, null); popupContainer.setId("UIModeratorManagement"); popupAction.activate(popupContainer, 760, 350); // managementForm.initialForm(); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class EditProfileActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.prepareForNewForm(); UIForumUserSettingForm forumUserSettingForm = popupContainer.addChild(UIForumUserSettingForm.class, null, null); popupContainer.setId("ForumUserSettingForm"); forumUserSettingForm.activate(); popupAction.activate(popupContainer, 700, 480); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class OpenBookMarkActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIForumPortlet forumPortlet = uiActionBar.getParent(); UIPopupAction popupAction = forumPortlet.getChild(UIPopupAction.class); UIShowBookMarkForm bookMarkForm = popupAction.createUIComponent(UIShowBookMarkForm.class, null, null); popupAction.activate(bookMarkForm, 520, 360); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class SortSettingActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UISortSettingForm sortSettingForm = popupAction.createUIComponent(UISortSettingForm.class, null, null); sortSettingForm.setInitForm(); popupAction.activate(sortSettingForm, 520, 220); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class CensorKeywordActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UICensorKeywordForm censorKeywordForm = popupAction.createUIComponent(UICensorKeywordForm.class, null, null); censorKeywordForm.setInitForm(); popupAction.activate(censorKeywordForm, 520, 220); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class NotificationActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UINotificationForm notificationForm = popupAction.createUIComponent(UINotificationForm.class, null, null); notificationForm.setInitForm(); popupAction.activate(notificationForm, 720, 450); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class BBCodeManagerActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); UIBBCodeManagerForm codeManagerForm = popupContainer.addChild(UIBBCodeManagerForm.class, null, null); codeManagerForm.loadBBCodes(true); popupContainer.setId("BBCodeManagerForm"); popupAction.activate(popupContainer, 650, 400); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class AutoPruneActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); popupContainer.addChild(UIAutoPruneForm.class, null, null); popupContainer.setId("AutoPruneForm"); popupAction.activate(popupContainer, 750, 400); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } static public class OpenIPBanActionListener extends EventListener<UIForumActionBar> { public void execute(Event<UIForumActionBar> event) throws Exception { UIForumActionBar uiActionBar = event.getSource(); UIPopupAction popupAction = ((UIForumPortlet) uiActionBar.getParent()).getChild(UIPopupAction.class); UIPopupContainer popupContainer = popupAction.createUIComponent(UIPopupContainer.class, null, null); popupContainer.addChild(UIBanIPForumManagerForm.class, null, null); popupContainer.setId("BanIPForumManagerForm"); popupAction.activate(popupContainer, 430, 500); event.getRequestContext().addUIComponentToUpdateByAjax(popupAction); } } }