Package org.exoplatform.portal.webui.portal

Source Code of org.exoplatform.portal.webui.portal.UIPortalSelector

/**
* Copyright (C) 2009 eXo Platform SAS.
*
* This 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 software 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.exoplatform.portal.webui.portal;

import org.exoplatform.commons.utils.LazyPageList;
import org.exoplatform.portal.config.DataStorage;
import org.exoplatform.portal.config.Query;
import org.exoplatform.portal.config.UserACL;
import org.exoplatform.portal.config.model.PortalConfig;
import org.exoplatform.portal.pom.data.PortalData;
import org.exoplatform.portal.webui.container.UIContainer;
import org.exoplatform.portal.webui.workspace.UIMaskWorkspace;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.config.annotation.ComponentConfigs;
import org.exoplatform.webui.config.annotation.EventConfig;
import org.exoplatform.webui.core.UIGrid;

import java.util.Iterator;

/**
* Created by The eXo Platform SARL
* Author : Pham Thanh Tung
*          tung.pham@exoplatform.com
* May 25, 2007 
*/
@ComponentConfigs({
   @ComponentConfig(template = "app:/groovy/portal/webui/portal/UIChangePortal.gtmpl", events = @EventConfig(listeners = UIMaskWorkspace.CloseActionListener.class)),
   @ComponentConfig(id = "PortalSelector", type = UIGrid.class, template = "app:/groovy/portal/webui/portal/UIPortalSelector.gtmpl")})
public class UIPortalSelector extends UIContainer
{

   public static String[] BEAN_FEILD = {"creator", "name", "skin"};

   public static String[] SELECT_ACTIONS = {"SelectPortal"};

   public UIPortalSelector() throws Exception
   {
      setName("UIChangePortal");
      UIGrid uiGrid = addChild(UIGrid.class, "PortalSelector", null);
      uiGrid.configure("name", BEAN_FEILD, SELECT_ACTIONS);
      uiGrid.getUIPageIterator().setId("ChangePortalPageInterator");
      addChild(uiGrid.getUIPageIterator());
      uiGrid.getUIPageIterator().setRendered(false);
      DataStorage dataService = getApplicationComponent(DataStorage.class);
      Query<PortalData> query = new Query<PortalData>(null, null, null, null, PortalData.class);
      LazyPageList<PortalData> pageList = dataService.find(query);
      pageList.setPageSize(10);
      pageList = extractPermissedPortal(pageList);
      uiGrid.getUIPageIterator().setPageList(pageList);
   }

   private LazyPageList<PortalData> extractPermissedPortal(LazyPageList<PortalData> pageList) throws Exception
   {
      UserACL userACL = getApplicationComponent(UserACL.class);
      Iterator<PortalData> itr = pageList.getAll().iterator();
      while (itr.hasNext())
      {
         PortalData pConfig = itr.next();
         if (!userACL.hasPermission(new PortalConfig(pConfig)))
            itr.remove();
      }
      return pageList;
   }

}
TOP

Related Classes of org.exoplatform.portal.webui.portal.UIPortalSelector

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.