/*
* UnpublishDialogHandler.java
*
* This work is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This work is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* Copyright (c) 2004-2005 Per Cederberg. All rights reserved.
*/
package org.liquidsite.app.admin;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.liquidsite.app.admin.view.AdminView;
import org.liquidsite.core.content.Content;
import org.liquidsite.core.content.ContentException;
import org.liquidsite.core.content.ContentSecurityException;
import org.liquidsite.core.content.User;
import org.liquidsite.core.web.FormValidationException;
import org.liquidsite.core.web.FormValidator;
import org.liquidsite.core.web.Request;
/**
* The unpublish request handler. This class handles the unpublish
* dialog workflow for content objects.
*
* @author Per Cederberg, <per at percederberg dot net>
* @version 1.0
*/
class UnpublishDialogHandler extends AdminDialogHandler {
/**
* The form validator.
*/
private FormValidator validator = new FormValidator();
/**
* Creates a new unpublish request handler.
*/
public UnpublishDialogHandler() {
super("index.html", "unpublish.html", true);
initialize();
}
/**
* Initializes the form validator.
*/
private void initialize() {
SimpleDateFormat df;
String error;
validator.addRequiredConstraint("date", "No unpublish date specified");
error = "Date format should be 'YYYY-MM-DD HH:MM'";
df = new SimpleDateFormat("yyyy-MM-dd HH:mm");
validator.addDateConstraint("date", df, error);
}
/**
* Displays a form for the specified workflow step. This method
* will NOT be called when returning to the start page.
*
* @param request the request object
* @param step the workflow step
*
* @throws ContentException if the database couldn't be accessed
* properly
* @throws ContentSecurityException if the user didn't have the
* required permissions
*/
protected void displayStep(Request request, int step)
throws ContentException, ContentSecurityException {
Content content = (Content) AdminUtils.getReference(request);
AdminView.DIALOG.viewUnpublish(request, content);
}
/**
* Validates a form for the specified workflow step. If the form
* validation fails in this step, the form page for the workflow
* step will be displayed again with an 'error' attribute
* containing the message in the validation exception.
*
* @param request the request object
* @param step the workflow step
*
* @throws FormValidationException if the form request data
* validation failed
*/
protected void validateStep(Request request, int step)
throws FormValidationException {
validator.validate(request);
}
/**
* Handles a validated form for the specified workflow step. This
* method returns the next workflow step, i.e. the step used when
* calling the display method. If the special zero (0) workflow
* step is returned, the workflow is assumed to have terminated.
* Note that this method also allows additional validation to
* occur. By returning the incoming workflow step number and
* setting the appropriate request attributes the same results as
* in the normal validate method can be achieved. For recoverable
* errors, this is the recommended course of action.
*
* @param request the request object
* @param step the workflow step
*
* @return the next workflow step, or
* zero (0) if the workflow has finished
*
* @throws ContentException if the database couldn't be accessed
* properly
* @throws ContentSecurityException if the user didn't have the
* required permissions
*/
protected int handleStep(Request request, int step)
throws ContentException, ContentSecurityException {
Content content = (Content) AdminUtils.getReference(request);
User user = request.getUser();
String date;
content.setRevisionNumber(content.getRevisionNumber() + 1);
try {
date = request.getParameter("date");
content.setOfflineDate(AdminUtils.parseDate(user, date));
} catch (ParseException e) {
content.setOfflineDate(new Date());
}
content.setComment(request.getParameter("comment"));
content.save(user);
return 0;
}
}