* Creates fragment entry with interactions based on mapping set in session
* @see org.apache.struts.action.Action#execute(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
*/
@Override
protected ActionForward duplicateBasedOnMappingSet(ActionMapping mapping, ActionForm form,HttpServletRequest req, HttpServletResponse resp){
FragmentEnterOrEditForm f = (FragmentEnterOrEditForm)form;
// get mappings from session
Object mappingSetFromSession = req.getSession().getAttribute("mappingSet");
if (!(mappingSetFromSession instanceof MappingSet)) {
throw new BugException("invalid mappingSet parameter: " + mappingSetFromSession);
}
MappingSet mappingSet = (MappingSet) mappingSetFromSession;
mappingSet.reload(locale, session);
Object oldInteractionListId = req.getSession().getAttribute("oldInteractionListId");
if (oldInteractionListId == null || !(oldInteractionListId instanceof Long)){
throw new InputException(getResources(req).getMessage(locale, "admin.entryNotAvailable"),"old fragment entry not found in session",null,null);
}
Fragment oldFragment = new SmsDbManager(locale,session).getFragment((Long)oldInteractionListId);
if (oldFragment == null){
throw new InputException(getResources(req).getMessage(locale, "admin.entryNotAvailable"),"old fragment entry #" + oldInteractionListId + " not found",null,null);
}
checkAccessRights(req,oldFragment.getGroup(),null);
Object newEntry = req.getSession().getAttribute("newInteractionList");
if (newEntry == null || !(newEntry instanceof Fragment)){
throw new InputException(getResources(req).getMessage(locale, "admin.entryNotAvailable"),"new fragment entry not found in session",null,null);
}
// reload references in current session
Fragment newFragment = (Fragment)newEntry;
f.initialize(newFragment,locale,session,getResources(req));
newFragment = new Fragment();
f.toEntry(newFragment, locale, session, getResources(req));
checkAccessRights(req, newFragment.getGroup(),null);
// group assignment is not editable => perform source to destination automatically
mappingSet.add(new Entry(oldFragment.getGroup()), new Entry(newFragment.getGroup()));