All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.anotheria.anosite.gen.asresourcedata.action.EditFileLinkAction Maven / Gradle / Ivy
/**
********************************************************************************
*** EditFileLinkAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.asresourcedata.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionForward;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.maf.bean.FormBean;
import java.util.List;
import java.util.ArrayList;
import net.anotheria.anosite.gen.asresourcedata.bean.EditFileLinkFB;
import net.anotheria.anosite.gen.asresourcedata.data.FileLink;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperUtil;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperRegistry;
import net.anotheria.anodoc.query2.QueryProperty;
import net.anotheria.asg.util.bean.LinkToMeBean;
import net.anotheria.anosite.gen.assitedata.data.MediaLink;
import net.anotheria.anosite.gen.assitedata.data.Script;
import net.anotheria.asg.data.LockableObject;
public class EditFileLinkAction extends ShowFileLinksAction{
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditAction
// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateEditActionMethod
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
String id = getStringParameter(req, PARAM_ID);
EditFileLinkFB form = new EditFileLinkFB() ;
FileLink filelink = getASResourceDataService().getFileLink(id);
checkFileLinks(filelink, req);
if(filelink instanceof LockableObject && !((LockableObject)filelink).isLocked() && isAutoLockingEnabled())
lockFileLinks(filelink, req);
form.setId(filelink.getId());
form.setName(filelink.getName());
form.setTitle(filelink.getTitle());
form.setFile(filelink.getFile());
form.setLocked(((LockableObject)filelink).isLocked());
form.setLockerId(((LockableObject)filelink).getLockerId());
form.setLockingTime(net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)filelink).getLockingTime()) + " automatic unlock expected AT : " + net.anotheria.util.NumberUtils.makeISO8601TimestampString(((LockableObject)filelink).getLockingTime() + getLockingTimeout()));
addBeanToRequest(req, "objectId" , filelink.getId());
addBeanToRequest(req, "EditASResourceDataFileLinkForm" , form);
addBeanToRequest(req, "objectInfoString" , filelink.getObjectInfo().toString());
addBeanToRequest(req, "apply.label.prefix", "Apply");
addBeanToRequest(req, "save.label.prefix", "Save");
addFieldExplanations(req, filelink);
// Generating back link handling...
List linksToMe = findLinksToCurrentDocument(filelink.getId());
if (linksToMe.size()>0)
req.setAttribute("linksToMe", linksToMe);
return mapping.findForward("success");
}
private void addFieldExplanations(HttpServletRequest req, FileLink filelink) {
if (!CMSViewHelperRegistry.getCMSViewHelpers("ASResourceData.FileLink").isEmpty()) {
String fieldDescription = null;
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASResourceData.FileLink", filelink, "name");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.name", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASResourceData.FileLink", filelink, "title");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.title", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASResourceData.FileLink", filelink, "file");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.file", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASResourceData.FileLink", filelink, "size");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.size", fieldDescription);
} //
} //addFieldExplanations END
private List findLinksToCurrentDocument(String documentId){
List ret = new ArrayList();
try{
ret.addAll(findLinkToCurrentDocumentInASSiteDataMediaLinkFile(documentId));
}catch(Exception ignored){
}
try{
ret.addAll(findLinkToCurrentDocumentInASSiteDataScriptFile(documentId));
}catch(Exception ignored){
}
return ret;
}
private List findLinkToCurrentDocumentInASSiteDataMediaLinkFile(String documentId) throws net.anotheria.anosite.gen.assitedata.service.ASSiteDataServiceException{
List ret = new ArrayList();
QueryProperty p = new QueryProperty(MediaLink.LINK_PROP_FILE, documentId);
// temporarly - replacy with query property
List list = getASSiteDataService().getMediaLinksByProperty(p.getName(), p.getValue());
for (MediaLink doc : list ){
ret.add(new LinkToMeBean(doc, "file"));
}
return ret;
}
private List findLinkToCurrentDocumentInASSiteDataScriptFile(String documentId) throws net.anotheria.anosite.gen.assitedata.service.ASSiteDataServiceException{
List ret = new ArrayList();
QueryProperty p = new QueryProperty(Script.LINK_PROP_FILE, documentId);
// temporarly - replacy with query property
List