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()));
// Create duplicated command entries according to the original execution order
CommandEntryManager commandEntryManager = new CommandEntryManager(locale,session);
SortedSet<CommandEntry> newCommandEntries = new TreeSet<CommandEntry>(new CommandEntryManager.CommandEntryComparator());
Set<CommandEntry> oldCommandEntries = oldFragment.getCommandEntries();
SortedSet<CommandEntry> sortedOldCommandEntries = new TreeSet<CommandEntry>(new CommandEntryManager.CommandEntryComparator());
sortedOldCommandEntries.addAll(oldCommandEntries);
for (CommandEntry oldCommandEntry : sortedOldCommandEntries) {
CommandEntryExtender extender = commandEntryManager.createCommandEntryExtender(oldCommandEntry);
CommandEntry duplicatedCommandEntry = extender.duplicateCommandEntry(newFragment.getGroup(),mappingSet);
Set<InteractionList> fragments = new TreeSet<InteractionList>();
fragments.add(newFragment);
duplicatedCommandEntry.setInteractionLists(fragments);
commandEntryManager.create(duplicatedCommandEntry); // also sets the ID for sorting
newCommandEntries.add(duplicatedCommandEntry);
}
newFragment.setCommandEntries(newCommandEntries);
SmsDbManager smsDbManager = new SmsDbManager(locale,session);
smsDbManager.createFragment(newFragment);
return mapping.findForward("duplicated");
}