1
22
23 package com.liferay.portal.editor.fckeditor;
24
25 import com.liferay.portal.editor.fckeditor.command.Command;
26 import com.liferay.portal.editor.fckeditor.command.CommandArgument;
27 import com.liferay.portal.editor.fckeditor.command.CommandFactory;
28 import com.liferay.portal.kernel.util.ParamUtil;
29 import com.liferay.portal.theme.ThemeDisplay;
30 import com.liferay.portal.util.WebKeys;
31
32 import javax.servlet.http.HttpServletRequest;
33 import javax.servlet.http.HttpServletResponse;
34
35 import org.apache.commons.logging.Log;
36 import org.apache.commons.logging.LogFactory;
37 import org.apache.struts.action.Action;
38 import org.apache.struts.action.ActionForm;
39 import org.apache.struts.action.ActionForward;
40 import org.apache.struts.action.ActionMapping;
41
42
48 public class ConnectorAction extends Action {
49
50 public ActionForward execute(
51 ActionMapping mapping, ActionForm form, HttpServletRequest req,
52 HttpServletResponse res)
53 throws Exception {
54
55 try {
56 String command = req.getParameter("Command");
57 String type = req.getParameter("Type");
58 String currentFolder = req.getParameter("CurrentFolder");
59 String newFolder = ParamUtil.getString(req, "NewFolderName");
60
61 if (_log.isDebugEnabled()) {
62 _log.debug("Command " + command);
63 _log.debug("Type " + type);
64 _log.debug("Current folder " + currentFolder);
65 _log.debug("New folder " + newFolder);
66 }
67
68 ThemeDisplay themeDisplay =
69 (ThemeDisplay)req.getAttribute(WebKeys.THEME_DISPLAY);
70
71 CommandArgument arg = new CommandArgument(
72 command, type, currentFolder, newFolder, themeDisplay, req);
73
74 Command commandObj = CommandFactory.getCommand(command);
75
76 commandObj.execute(arg, req, res);
77 }
78 catch (Exception e) {
79 _log.error(e, e);
80 }
81
82 return null;
83 }
84
85 private static Log _log = LogFactory.getLog(ConnectorAction.class);
86
87 }