blob: 0b094929980e3fae59dd6740aa2ffe728bc8da46 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.lenya.cms.publication;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.avalon.framework.logger.AbstractLogEnabled;
import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.avalon.framework.service.ServiceSelector;
import org.apache.lenya.cms.cocoon.components.context.ContextUtility;
import org.apache.lenya.cms.repository.Session;
/**
* A publication.
* @version $Id$
*/
public class PublicationImpl extends AbstractLogEnabled implements Publication {
private PublicationConfiguration delegate;
protected ServiceManager manager;
private DocumentFactory factory;
protected PublicationImpl(ServiceManager manager, DocumentFactory factory,
PublicationConfiguration delegate) {
this.delegate = delegate;
this.manager = manager;
this.factory = factory;
}
public boolean exists() {
return delegate.exists();
}
public String getBreadcrumbPrefix() {
return delegate.getBreadcrumbPrefix();
}
public String getContentDir() {
return delegate.getContentDir();
}
public File getContentDirectory(String area) {
return delegate.getContentDirectory(area);
}
public String getContentURI(String area) {
return delegate.getContentURI(area);
}
public String getDefaultLanguage() {
return delegate.getDefaultLanguage();
}
public File getDirectory() {
return delegate.getDirectory();
}
private DocumentBuilder documentBuilder;
public DocumentBuilder getDocumentBuilder() {
if (this.documentBuilder == null) {
ServiceSelector selector = null;
try {
selector = (ServiceSelector) this.manager.lookup(DocumentBuilder.ROLE + "Selector");
this.documentBuilder = (DocumentBuilder) selector.select(delegate.getDocumentBuilderHint());
} catch (Exception e) {
throw new RuntimeException(e);
}
}
return this.documentBuilder;
}
public String getId() {
return delegate.getId();
}
public String getInstantiatorHint() {
return delegate.getInstantiatorHint();
}
public String[] getLanguages() {
return delegate.getLanguages();
}
public DocumentIdToPathMapper getPathMapper() {
return delegate.getPathMapper();
}
public Proxy getProxy(Document document, boolean isSslProtected) {
return getProxy(document.getArea(), isSslProtected);
}
public Proxy getProxy(String area, boolean isSslProtected) {
return delegate.getProxy(area, isSslProtected);
}
private String contextPath;
protected String getContextPath() {
if (this.contextPath == null) {
ContextUtility context = null;
try {
context = (ContextUtility) this.manager.lookup(ContextUtility.ROLE);
this.contextPath = context.getRequest().getContextPath();
} catch (ServiceException e) {
throw new RuntimeException(e);
}
finally {
if (context != null) {
this.manager.release(context);
}
}
}
return this.contextPath;
}
private List allResourceTypes;
public String[] getResourceTypeNames() {
if (this.allResourceTypes == null) {
this.allResourceTypes = new ArrayList();
this.allResourceTypes.addAll(Arrays.asList(this.delegate.getResourceTypeNames()));
String templateId = getTemplateId();
if (templateId != null) {
try {
Publication template = getFactory().getPublication(templateId);
String[] templateTypes = template.getResourceTypeNames();
this.allResourceTypes.addAll(Arrays.asList(templateTypes));
} catch (PublicationException e) {
throw new RuntimeException(e);
}
}
}
return (String[]) this.allResourceTypes.toArray(new String[this.allResourceTypes.size()]);
}
public File getServletContext() {
return delegate.getServletContext();
}
public String getSiteManagerHint() {
return delegate.getSiteManagerHint();
}
public String getSourceURI() {
return delegate.getSourceURI();
}
public String getTemplateId() {
return delegate.getTemplateId();
}
public String getWorkflowSchema(ResourceType resourceType) {
String schema = this.delegate.getWorkflowSchema(resourceType);
if (schema == null && getTemplateId() != null) {
String templateId = getTemplateId();
try {
Publication template = getFactory().getPublication(templateId);
schema = template.getWorkflowSchema(resourceType);
} catch (PublicationException e) {
throw new RuntimeException(e);
}
}
return schema;
}
public void setDefaultLanguage(String language) {
delegate.setDefaultLanguage(language);
}
public void setPathMapper(DefaultDocumentIdToPathMapper mapper) {
delegate.setPathMapper(mapper);
}
private Map areas = new HashMap();
public Area getArea(String name) throws PublicationException {
if (!this.areas.containsKey(name)) {
Area area = new AreaImpl(this.manager, this.factory, this, name);
this.areas.put(name, area);
}
return (Area) this.areas.get(name);
}
public String[] getAreaNames() {
return delegate.getAreaNames();
}
public DocumentFactory getFactory() {
return this.factory;
}
public boolean equals(Object obj) {
if (!getClass().isInstance(obj)) {
return false;
}
return ((Publication) obj).getId().equals(getId());
}
public int hashCode() {
return getId().hashCode();
}
public String toString() {
return getId();
}
public String getName() {
return delegate.getName();
}
public Session getSession() {
return getFactory().getSession();
}
public void addLanguage(String language) {
this.delegate.addLanguage(language);
}
public String[] getModuleNames() {
return this.delegate.getModuleNames();
}
public void removeLanguage(String language) {
this.delegate.removeLanguage(language);
}
public void saveConfiguration() {
this.delegate.saveConfiguration();
}
public void setName(String name) {
this.delegate.setName(name);
}
}