Package org.olat.home.site

Source Code of org.olat.home.site.HomeSiteDef

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.home.site;

import java.util.List;

import org.olat.core.extensions.ExtensionResource;
import org.olat.core.extensions.OLATExtension;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.navigation.SiteDefinition;
import org.olat.core.gui.control.navigation.SiteInstance;
import org.olat.core.logging.AssertException;
import org.olat.home.GuestHomeSite;

/**
* Initial Date:  12.07.2005 <br>
*
* @author Felix Jost
*/
public class HomeSiteDef implements SiteDefinition, OLATExtension {

  /**
   *
   */
  public HomeSiteDef() {
    super();
  }

  /**
   * @see org.olat.core.extensions.OLATExtension#getName()
   */
  public String getName() {
    return "homesite";
  }

 

  /**
   * @see org.olat.core.extensions.OLATExtension#getExtensionResources()
   */
  public List getExtensionResources() {
    // no ressources, part of main css
    return null;
  }

  /**
   * @see org.olat.core.extensions.OLATExtension#getExtensionCSS()
   */
  public ExtensionResource getExtensionCSS() {
    // no ressources, part of main css
    return null;
  }

  /**
   * @see org.olat.core.extensions.OLATExtension#setup()
   */
  public void setup() {
    // not used   
  }

  /**
   * @see org.olat.core.extensions.OLATExtension#tearDown()
   */
  public void tearDown() {
    // not used
  }
 
  /**
   * @see org.olat.navigation.SiteDefinition#createSite(org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public SiteInstance createSite(UserRequest ureq, WindowControl wControl) {
    SiteInstance si = null;
    if (ureq == null) throw new AssertException("HomeSiteDef.createSite: ureq was null");
    if (ureq.getUserSession() == null) throw new AssertException("HomeSiteDef.createSite: ureq.getUserSession() was null");
    if (ureq.getUserSession().getRoles() == null) throw new AssertException("HomeSiteDef.createSite: ureq.getUserSession().getRoles() was null");
    if (ureq.getUserSession().getRoles().isGuestOnly()) {
      // guest see this site (restricted rights and navigation)
      si = new GuestHomeSite(ureq.getLocale());
    } else { // all others see a normal homesite
      si = new HomeSite(ureq.getLocale());
    }
    return si;
  }

}
TOP

Related Classes of org.olat.home.site.HomeSiteDef

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.