blob: 0fe4febfccbabf0e6dda94d2fb21ccc522fe67b8 [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.usecase;
import org.apache.lenya.cms.publication.Document;
import org.apache.lenya.cms.publication.Session;
/**
* <p>
* Extends AbstractUsecase with document helper methods.
* </p>
* <p>
* Some parameters are initialized by default:
* </p>
* <ul>
* <li><code>document</code>- the document</li>
* </ul>
*/
public class DocumentUsecase extends AbstractUsecase {
protected static final String DOCUMENT = "document";
protected static final String TARGET_DOCUMENT = "private.targetDocument";
/**
* Ctor.
*/
public DocumentUsecase() {
super();
}
/**
* @see org.apache.lenya.cms.usecase.AbstractUsecase#doCheckPreconditions()
*/
protected void doCheckPreconditions() throws Exception {
super.doCheckPreconditions();
if (getSourceDocument() == null) {
addErrorMessage("This usecase can only be invoked on documents!");
}
}
/*
* public void setParameter(String name, Object value) { if (name.equals(SOURCE_URL)) {
* setSourceURL((String) value); } else { super.setParameter(name, value); } }
*/
/**
* @see org.apache.lenya.cms.usecase.Usecase#setSourceURL(java.lang.String) public void
* setSourceURL(String url) { try { DocumentFactory factory = getDocumentFactory(); if
* (factory.isDocument(url)) { Document document = factory.getFromURL(url);
* setParameter(DOCUMENT, document); } } catch (Exception e) { throw new
* RuntimeException(e); } super.setParameter(SOURCE_URL, url); }
*/
/**
* Returns the source document.
* @return A document.
*/
protected Document getSourceDocument() {
Document doc = (Document) getParameter(DOCUMENT);
Session session = getSession();
//florent : remove a part of this test because document don't still handle his session...
//really not sure of consequences, have to understand and find a test
//if (doc == null || doc.getSession() != session) {
if (doc == null) {
String sourceUrl = getParameterAsString(SOURCE_URL);
if (session.getUriHandler().isDocument(sourceUrl)) {
doc = session.getUriHandler().getDocument(sourceUrl);
setParameter(DOCUMENT, doc);
}
}
return doc;
}
/**
* Sets the target document for the case that the usecase execution succeeded (see
* {@link #getTargetDocument(boolean)}).
* @param document A document.
*/
protected void setTargetDocument(Document document) {
setParameter(TARGET_DOCUMENT, document);
}
/**
* Returns the document to be redirected to after the usecase has been completed. If the
* parameter <code>success</code> is false, the source document is returned (override this
* method to change this behaviour).
* @param success If the usecase was successfully completed.
* @return A document.
*/
protected Document getTargetDocument(boolean success) {
if (success) {
return (Document) getParameter(TARGET_DOCUMENT, getSourceDocument());
} else {
return getSourceDocument();
}
}
/**
* If {@link #setTargetDocument(Document)}was not called, the URL of the source document (
* {@link #getSourceDocument()}) is returned.
* @see org.apache.lenya.cms.usecase.Usecase#getTargetURL(boolean)
*/
public String getTargetURL(boolean success) {
Document document = getTargetDocument(success);
String documentUrl = document.getCanonicalDocumentURL();
/* florent : cause of changes in document api, remove when ok
* String url = "/" + document.getPublication().getId() + "/" + document.getArea()
+ documentUrl;*/
String url = "/" + document.getPublicationId() + "/" + document.getArea()
+ documentUrl;
return url + getExitQueryString();
}
/**
* @see org.apache.lenya.cms.usecase.AbstractUsecase#getSourceURL()
*/
public String getSourceURL() {
Document doc = getSourceDocument();
if (doc == null || !doc.hasLink()) {
return super.getSourceURL();
}
return doc.getCanonicalWebappURL();
}
/**
* @see org.apache.lenya.cms.usecase.AbstractUsecase#setDefaultTargetURL(java.lang.String)
*/
protected void setDefaultTargetURL(String url) {
Document target = getSession().getUriHandler().getDocument(url);
setParameter(TARGET_DOCUMENT, target);
}
/**
* @see org.apache.lenya.cms.usecase.AbstractUsecase#initParameters() protected void
* initParameters() { super.initParameters();
*
* setParameter(DOCUMENT, getSourceDocument()); }
*/
}