Package org.olat.repository

Source Code of org.olat.repository.RepoJumpInReceptionist

/**
* 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.repository;

import org.olat.core.dispatcher.DispatcherAction;
import org.olat.core.dispatcher.jumpin.JumpInHandlerFactory;
import org.olat.core.dispatcher.jumpin.JumpInReceptionist;
import org.olat.core.dispatcher.jumpin.JumpInResult;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.helpers.Settings;
import org.olat.core.id.OLATResourceable;

/**
* Description: <br>
*
* Initial Date: 23.02.2005 <br>
* @author Felix Jost
*/
public class RepoJumpInHandlerFactory implements JumpInHandlerFactory {
  private static final String CONST_RID = "rid";
  static final String CONST_PAR = "par";
  private static final String CONST_EXTLINK = "repo/go";

  /**
   *
   */
  public RepoJumpInHandlerFactory() {
  // nothing to do
  }

  /**
   * @see org.olat.core.dispatcher.jumpin.JumpInHandlerFactory#createJumpInHandler(org.olat.core.gui.UserRequest)
   */
  public JumpInReceptionist createJumpInHandler(UserRequest ureq) {
    RepositoryManager rm = RepositoryManager.getInstance();
    //e.g. http://localhost/olat/auth/repo/go?rid=123
    String constRID = ureq.getParameter(CONST_RID);
    if (constRID == null) return null;
    Long repoKey = null;
    try {
      repoKey = new Long(constRID.trim());
    } catch (NumberFormatException nfe) {
      return null;
    }
    RepositoryEntry re = rm.lookupRepositoryEntry(repoKey);
    if (re == null) { // no repoentry with this key found
      return null;
    }
    String displayName = re.getDisplayname();
    OLATResourceable ores = re.getOlatResource();
    return new RepoJumpInReceptionist(displayName, ores, re);

  }

  /**
   * Build a dispatch URI which a user can use to call re directly by entering
   * the dispatch URI into his/her browser location bar.
   *
   * @param re
   * @return Complete dispatch URI.
   */
  public static String buildRepositoryDispatchURI(RepositoryEntry re) {
    return buildRepositoryDispatchURI(re, null);
  }

  //TODO DOCU + use this in NodeEditController
  public static String buildRepositoryDispatchURI(RepositoryEntry re, String initialViewIdentifyer) {
    StringBuilder sb = new StringBuilder();
    sb.append(Settings.getServerContextPathURI()).append(DispatcherAction.PATH_AUTHENTICATED).append(CONST_EXTLINK).append("?").append(CONST_RID)
        .append("=").append(re.getKey());
    if (initialViewIdentifyer != null) {
      sb.append("&").append(CONST_PAR).append("=").append(initialViewIdentifyer);
    }
    return sb.toString();
  }
 
 
}

class RepoJumpInReceptionist implements JumpInReceptionist {
  /**
   *
   */
  private final String title;
  private final OLATResourceable ores;
  private final RepositoryEntry re;

  /**
   * @param title
   * @param ores
   * @param re
   */
  public RepoJumpInReceptionist(String title, OLATResourceable ores, RepositoryEntry re) {
    this.title = title;
    this.ores = ores;
    this.re = re;
   
  }
  /**
   * @see org.olat.core.dispatcher.jumpin.JumpInReceptionist#getTitle()
   */
  public String getTitle() {
    return title;
  }

  /**
   * @see org.olat.core.dispatcher.jumpin.JumpInReceptionist#getOLATResourceable()
   */
  public OLATResourceable getOLATResourceable() {
    return ores;
  }

  /**
   * @see org.olat.core.dispatcher.jumpin.JumpInReceptionist#createController(org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public JumpInResult createJumpInResult(UserRequest ureq, WindowControl wControl) {
    String initialViewId = ureq.getParameter(RepoJumpInHandlerFactory.CONST_PAR);
    Controller resC = RepositoyUIFactory.createLaunchController(re, initialViewId, ureq, wControl);
    return new JumpInResult(resC, initialViewId);
  }
 
  /**
   * @see org.olat.core.dispatcher.jumpin.JumpInReceptionist#extractActiveViewId(org.olat.core.gui.UserRequest)
   */
  public String extractActiveViewId(UserRequest ureq) {
    String initialViewId = ureq.getParameter(RepoJumpInHandlerFactory.CONST_PAR);
    return initialViewId;
  }
 
}
TOP

Related Classes of org.olat.repository.RepoJumpInReceptionist

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.