Package org.olat.search.ui

Source Code of org.olat.search.ui.SearchControllerFactory

/**
* 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) frentix GmbH<br>
* http://www.frentix.com<br>
* <p>
*/

package org.olat.search.ui;

import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import org.olat.basesecurity.ManagerFactory;
import org.olat.core.commons.services.search.ResultDocument;
import org.olat.core.commons.services.search.ui.ResultController;
import org.olat.core.commons.services.search.ui.ResultControllerCreator;
import org.olat.core.commons.services.search.ui.SearchController;
import org.olat.core.commons.services.search.ui.SearchServiceUIFactory;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.form.flexible.impl.Form;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.translator.Translator;
import org.olat.core.id.Identity;
import org.olat.core.id.User;
import org.olat.core.id.UserConstants;
import org.olat.core.id.context.BusinessControl;
import org.olat.core.logging.OLog;
import org.olat.core.logging.Tracing;
import org.olat.core.util.Util;
import org.olat.course.CourseFactory;
import org.olat.course.ICourse;
import org.olat.course.nodes.CourseNode;
import org.olat.group.BusinessGroup;
import org.olat.group.BusinessGroupManagerImpl;
import org.olat.repository.RepositoryEntry;
import org.olat.repository.RepositoryManager;
import org.olat.search.service.document.ContextHelpDocument;

/**
* Description:<br>
*
* <P>
* Initial Date:  3 dec. 2009 <br>
* @author srosse, stephane.rosse@frentix.com
*/
public class SearchControllerFactory implements SearchServiceUIFactory {
  private static final OLog log = Tracing.createLoggerFor(SearchControllerFactory.class);
 
  private final Map<String,ResultControllerCreator> resultControllerCreator = new HashMap<String,ResultControllerCreator>();
 
  public void addResultControllerCreator(ResultControllerCreator creator) {
    resultControllerCreator.put(creator.getFileType(), creator);
  }
 
  @Override
  public SearchController createInputController(UserRequest ureq, WindowControl wControl, DisplayOption displayOption, Form mainForm) {
    String resourceUrl = null;
    BusinessControl bc = wControl.getBusinessControl();
    if (bc != null) {
      resourceUrl = bc.getAsString();
    }
   
    SearchInputController searchCtrl;
    if (mainForm == null) {
      searchCtrl = new SearchInputController(ureq, wControl, resourceUrl, displayOption);
    } else {
      searchCtrl = new SearchInputController(ureq, wControl, resourceUrl, displayOption, mainForm);
    }
    return searchCtrl;
  }

  @Override
  public SearchController createSearchController(UserRequest ureq, WindowControl wControl) {
    String resourceUrl = null;
    BusinessControl bc = wControl.getBusinessControl();
    if (bc != null) {
      resourceUrl = bc.getAsString();
    }
    return new ResultsSearchController(ureq, wControl, resourceUrl);
  }
 
  @Override
  public ResultController createController(UserRequest ureq, WindowControl wControl, Form mainForm, ResultDocument document) {
    String documentType = document.getDocumentType();
    if(resultControllerCreator.containsKey(documentType)) {
      ResultControllerCreator creator = resultControllerCreator.get(documentType);
      return creator.createController(ureq, wControl, mainForm, document);
    }
   
    ResultController ctrl;
    if(ContextHelpDocument.TYPE.equals(documentType)) {
      ctrl = new ContextHelpResultController(ureq, wControl, mainForm, document);
    } else {
      ctrl = new StandardResultController(ureq, wControl, mainForm, document);
    }
    return ctrl;
  }
 
 
 
  @Override
  public String getBusinessPathLabel(String token, List<String> allTokens, Locale locale) {
    try {
      String[] splitted = token.split("[:]");
      if(splitted != null && splitted.length == 2) {
        String tokenType = splitted[0];
        String tokenKey = splitted[1];
        if ("RepositoryEntry".equals(tokenType)) {
          RepositoryEntry re = RepositoryManager.getInstance().lookupRepositoryEntry(Long.parseLong(tokenKey));
          return re.getDisplayname();
        }
        if ("CourseNode".equals(tokenType)) {
          String repoKey = allTokens.get(0).split("[:]")[1];
          RepositoryEntry re = RepositoryManager.getInstance().lookupRepositoryEntry(Long.parseLong(repoKey));
          ICourse course = CourseFactory.loadCourse(re.getOlatResource());
          CourseNode courseNode = course.getRunStructure().getNode(tokenKey);
          return courseNode.getShortTitle();
        }
        if ("Identity".equals(tokenType)) {
          Identity identity  = ManagerFactory.getManager().loadIdentityByKey(Long.parseLong(tokenKey));
          User user = identity.getUser();
          return user.getProperty(UserConstants.LASTNAME, locale) + " " + user.getProperty(UserConstants.FIRSTNAME, locale) ;
        }
        if ("BusinessGroup".equals(tokenType)) {
          BusinessGroup bg =BusinessGroupManagerImpl.getInstance().loadBusinessGroup(Long.parseLong(tokenKey), true);
          return bg.getName();
        }
       
        Translator translator = Util.createPackageTranslator(this.getClass(), locale);
        String translated = translator.translate(tokenType);
        if (translated == null || translated.length() > 64) {
          return token;//no translation, translator return an error
        }
        return translated;
      }
    } catch (Exception ex) {
      log.warn("Problem to decipher business path token: " + token, ex);
    }
    return token;
  }
}
TOP

Related Classes of org.olat.search.ui.SearchControllerFactory

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.