/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <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 the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <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> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.search.service.document.file; import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; import org.apache.lucene.document.Document; import org.dom4j.Element; import org.olat.core.logging.OLog; import org.olat.core.logging.Tracing; import org.olat.core.util.StringHelper; import org.olat.core.util.vfs.VFSLeaf; import org.olat.ims.resources.IMSLoader; import org.olat.search.model.OlatDocument; import org.olat.search.service.SearchResourceContext; /** * * Description:<br> * For indexing the metadatas of scorm packaging * * <P> * Initial Date: 11 dec. 2009 <br> * @author srosse, stephane.rosse@frentix.com */ public class IMSMetadataDocument extends OlatDocument { private static final long serialVersionUID = 7056634173187546351L; private static Set<String> stopWords = new HashSet<String>(); private static final OLog log = Tracing.createLoggerFor(IMSMetadataDocument.class); static { stopWords.add("LOMv1.0"); stopWords.add("yes"); stopWords.add("NA"); } public static Document createDocument(SearchResourceContext searchResourceContext, VFSLeaf fManifest) { IMSMetadataDocument document = new IMSMetadataDocument(); document.setResourceUrl(searchResourceContext.getResourceUrl()); if (log.isDebug()) log.debug("MM: URL=" + document.getResourceUrl()); document.setLastChange(new Date(fManifest.getLastModified())); document.setDocumentType(searchResourceContext.getDocumentType()); if (StringHelper.containsNonWhitespace(searchResourceContext.getTitle())) { document.setTitle(searchResourceContext.getTitle()); } else { document.setTitle(fManifest.getName()); } document.setParentContextType(searchResourceContext.getParentContextType()); document.setParentContextName(searchResourceContext.getParentContextName()); Element rootElement = IMSLoader.loadIMSDocument(fManifest).getRootElement(); StringBuilder sb = new StringBuilder(); collectLangString(sb, rootElement); document.setContent(sb.toString()); return document.getLuceneDocument(); } private static void collectLangString(StringBuilder sb, Element element) { if("langstring".equals(element.getName())) { String content = element.getText(); if(!stopWords.contains(content)) { sb.append(content).append(' '); } } @SuppressWarnings("rawtypes") List children = element.elements(); for(int i=0; i<children.size(); i++) { Element child = (Element)children.get(i); collectLangString(sb, child); } } }