Dictionary/src/java/org/thdl/lex/commands/RemoveCommand.java

166 lines
4.9 KiB
Java

package org.thdl.lex.commands;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.thdl.lex.LexComponentRepository;
import org.thdl.lex.LexConstants;
import org.thdl.lex.LexLogger;
import org.thdl.lex.LexQuery;
import org.thdl.lex.LexRepositoryException;
import org.thdl.lex.LexUser;
import org.thdl.lex.UserSessionManager;
import org.thdl.lex.Visit;
import org.thdl.lex.component.AnalyticalNote;
import org.thdl.lex.component.ILexComponent;
import org.thdl.lex.component.ITerm;
import org.thdl.lex.component.LexComponentException;
import org.thdl.lex.component.Translatable;
/**
* Description of the Class
*
* @author travis
* @created October 6, 2003
*/
public class RemoveCommand extends LexCommand implements Command {
private boolean termMode;
/**
* Sets the termMode attribute of the GetFormCommand object
*
* @param termMode
* The new termMode value
*/
public void setTermMode(boolean termMode) {
this.termMode = termMode;
}
/**
* Gets the termMode attribute of the GetFormCommand object
*
* @return The termMode value
*/
public boolean isTermMode() {
return termMode;
}
//helper methods
/**
* Description of the Method
*
* @param req
* Description of the Parameter
* @param component
* Description of the Parameter
* @return Description of the Return Value
* @exception CommandException
* Description of the Exception
*/
public String execute(HttpServletRequest req, ILexComponent component)
throws CommandException {
String msg = null;
String next = getNext();
Visit visit = UserSessionManager.getInstance().getVisit(
req.getSession(true));
try {
HttpSession ses = req.getSession(false);
if (null == ses) {
throw new CommandException(
"Could not remove component, user's session has expired");
}
LexUser user = visit.getUser();
LexQuery query = visit.getQuery();
ITerm term = query.getEntry();
LexComponentRepository.update(term);
if (CommandToken.isValid(req) && validate(user, component)) {
if (isTermMode()) {
term.setDeleted(Boolean.TRUE);
LexComponentRepository.update(term);
query.setEntry(null);
} else if (component instanceof AnalyticalNote) {
LexLogger
.debug("Debugging Component before inserting analytical note");
LexLogger.debugComponent(component);
ILexComponent parent = term.findParent(component
.getParentId());
List notes = parent.getAnalyticalNotes();
notes.remove(component);
} else if (component instanceof Translatable
&& null != ((Translatable) component)
.getTranslationOf()) {
Translatable translation = (Translatable) component;
LexLogger
.debug("Checking translation state before looking for its source");
LexLogger.debugComponent(translation);
Translatable source = null;
try {
source = (Translatable) translation.getClass()
.newInstance();
} catch (Exception e) {
throw new CommandException(e);
}
source.setMetaId(translation.getTranslationOf());
source.setParentId(translation.getParentId());
source = (Translatable) term.findChild(source);
LexLogger
.debug("Checking source state before looking for its translation list");
LexLogger.debugComponent(source);
List translationList = source.getTranslations();
ILexComponent doomedComponent = (ILexComponent) translationList
.get(translationList.indexOf(translation));
doomedComponent.setDeleted(Boolean.TRUE);
LexComponentRepository.update(doomedComponent);
translationList.remove(doomedComponent);
LexComponentRepository.update(term);
} else {
LexLogger
.debug("Checking component state from updateCommand BEFORE component assignment");
LexLogger.debugComponent(component);
ILexComponent doomedComponent = term.findChild(component);
doomedComponent.setDeleted(Boolean.TRUE);
LexComponentRepository.update(doomedComponent);
term.removeChild(doomedComponent);
LexComponentRepository.update(term);
}
msg = "Successfully removed component";
} else {
msg = CommandToken.isValid(req) ? "Unauthorized update attempted"
: "Invalid reload attempted.";
}
return next;
} catch (LexComponentException e) {
throw new CommandException("Command had trouble processing "
+ component, e);
} catch (LexRepositoryException e) {
throw new CommandException("Command had trouble processing "
+ component, e);
} finally {
req.setAttribute(LexConstants.MESSAGE_REQ_ATTR, msg);
}
}
//constructors
/**
* Constructor for the GetFormCommand object
*
* @param next
* Description of the Parameter
* @param termMode
* Description of the Parameter
*/
public RemoveCommand(String next, Boolean termMode) {
super(next);
setTermMode(termMode.booleanValue());
}
}