admin activity logger added
[mir.git] / source / mircoders / servlet / ServletModuleLocalizer.java
index 9c58d9f..e4badfa 100755 (executable)
-package mircoders.servlet;
-
-import java.util.*;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-
-import mir.servlet.*;
-import mir.entity.adapter.*;
-import mircoders.global.*;
-import mircoders.localizer.*;
-import mircoders.storage.*;
-import mircoders.entity.*;
-
-public class ServletModuleLocalizer extends ServletModule {
-  private static ServletModuleLocalizer instance = new ServletModuleLocalizer();
-
-  public static ServletModule getInstance() { return instance; }
-
-  public void commentoperation(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
-  {
-    try {
-      String operationKey = req.getParameter("operation");
-      String commentId = req.getParameter("commentid");
-      EntityComment comment = (EntityComment) DatabaseComment.getInstance().selectById(commentId);
-      MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation =
-          (MirAdminInterfaceLocalizer.MirSimpleEntityOperation)
-          MirGlobal.localizer().adminInterface().simpleCommentOperations().get(operationKey);
-
-      EntityAdapter adapter = MirGlobal.localizer().dataModel().adapterModel().makeEntityAdapter("comment", comment);
-
-      operation.perform( adapter );
-
-      res.sendRedirect(req.getParameter("returnuri"));
-    }
-    catch (Throwable t) {
-      t.printStackTrace(System.out);
-      throw new ServletModuleException(t.getMessage());
-    }
-  }
+/*\r
+ * Copyright (C) 2001, 2002 The Mir-coders group\r
+ *\r
+ * This file is part of Mir.\r
+ *\r
+ * Mir is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * Mir is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with Mir; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
+ *\r
+ * In addition, as a special exception, The Mir-coders gives permission to link\r
+ * the code of this program with  any library licensed under the Apache Software License,\r
+ * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library\r
+ * (or with modified versions of the above that use the same license as the above),\r
+ * and distribute linked combinations including the two.  You must obey the\r
+ * GNU General Public License in all respects for all of the code used other than\r
+ * the above mentioned libraries.  If you modify this file, you may extend this\r
+ * exception to your version of the file, but you are not obligated to do so.\r
+ * If you do not wish to do so, delete this exception statement from your version.\r
+ */\r
+package mircoders.servlet;\r
+\r
+import java.util.HashMap;\r
+import java.util.List;\r
+import java.util.Map;\r
+import java.util.Vector;\r
+import javax.servlet.http.HttpServletRequest;\r
+import javax.servlet.http.HttpServletResponse;\r
+\r
+import mir.entity.adapter.EntityAdapter;\r
+import mir.log.LoggerWrapper;\r
+import mir.servlet.ServletModule;\r
+import mir.servlet.ServletModuleExc;\r
+import mir.util.StringRoutines;\r
+import mircoders.entity.EntityComment;\r
+import mircoders.entity.EntityContent;\r
+import mircoders.entity.EntityUsers;\r
+import mircoders.global.MirGlobal;\r
+import mircoders.localizer.MirAdminInterfaceLocalizer;\r
+import mircoders.module.ModuleComment;\r
+import mircoders.module.ModuleContent;\r
+import mircoders.storage.DatabaseComment;\r
+import mircoders.storage.DatabaseContent;\r
+\r
+public class ServletModuleLocalizer extends ServletModule {\r
+  private static ServletModuleLocalizer instance = new ServletModuleLocalizer();\r
+  public static ServletModule getInstance() { return instance; }\r
+\r
+  private ModuleContent contentModule;\r
+  private ModuleComment commentModule;\r
+  private List administerOperations;\r
+\r
+  private ServletModuleLocalizer() {\r
+    try {\r
+      logger = new LoggerWrapper("ServletModule.Localizer");\r
+\r
+      contentModule = new ModuleContent(DatabaseContent.getInstance());\r
+      commentModule = new ModuleComment(DatabaseComment.getInstance());\r
+\r
+      administerOperations = new Vector();\r
+\r
+      String settings[] = configuration.getStringArray("Mir.Localizer.Admin.AdministerOperations");\r
+\r
+      if (settings!=null) {\r
+        for (int i = 0; i < settings.length; i++) {\r
+          String setting = settings[i].trim();\r
+\r
+          if (setting.length() > 0) {\r
+            List parts = StringRoutines.splitString(setting, ":");\r
+            if (parts.size() != 2) {\r
+              logger.error("config error: " + settings[i] + ", 2 parts expected");\r
+            }\r
+            else {\r
+              Map entry = new HashMap();\r
+              entry.put("name", (String) parts.get(0));\r
+              entry.put("url", (String) parts.get(1));\r
+              administerOperations.add(entry);\r
+            }\r
+          }\r
+        }\r
+      }\r
+    }\r
+    catch (Exception e) {\r
+      logger.error("ServletModuleLocalizer could not be initialized: " + e.getMessage());\r
+    }\r
+\r
+\r
+  }\r
+\r
+  public void performCommentOperation(HttpServletRequest aRequest, String anId, String anOperation) {\r
+    MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation;\r
+    EntityAdapter comment;\r
+    EntityComment entity;\r
+\r
+    try {\r
+      entity = (EntityComment) commentModule.getById(anId);\r
+\r
+      if (entity != null) {\r
+        MirGlobal.performCommentOperation(ServletHelper.getUser(aRequest), entity, anOperation);\r
+        logger.info("Operation " + anOperation + " successfully performed on comment " + anId);\r
+        logAdminUsage(aRequest, "comment."+anId, "operation " + anOperation + " performed");\r
+      }\r
+      else {\r
+        logger.error("Error while performing " + anOperation + " on comment " + anId + ": comment is null");\r
+      }\r
+    }\r
+    catch (Throwable e) {\r
+      logger.error("Error while performing " + anOperation + " on comment " + anId + ": " + e.getMessage());\r
+    }\r
+  }\r
+\r
+  public void commentoperation(HttpServletRequest aRequest, HttpServletResponse aResponse) throws ServletModuleExc {\r
+    String commentIdString = aRequest.getParameter("id");\r
+    String operationString = aRequest.getParameter("operation");\r
+    String returnUrlString = aRequest.getParameter("returnurl");\r
+\r
+    performCommentOperation(aRequest, commentIdString, operationString);\r
+\r
+    redirect(aResponse, returnUrlString);\r
+  }\r
+\r
+  public void commentoperationbatch(HttpServletRequest aRequest, HttpServletResponse aResponse) throws ServletModuleExc {\r
+    String returnUrlString = aRequest.getParameter("returnurl");\r
+\r
+    String[] operations = aRequest.getParameterValues("operation");\r
+\r
+    if (operations!=null) {\r
+      for (int i = 0; i < operations.length; i++) {\r
+        if (operations[i].length() > 0) {\r
+          List parts = StringRoutines.splitString(operations[i], ";");\r
+\r
+          if (parts.size() != 2) {\r
+            logger.error("commentoperationbatch: operation string invalid: " +\r
+                         operations[i]);\r
+          }\r
+          else {\r
+            String commentIdString = (String) parts.get(0);\r
+            String operationString = (String) parts.get(1);\r
+\r
+            performCommentOperation(aRequest, commentIdString, operationString);\r
+          }\r
+        }\r
+      }\r
+    }\r
+\r
+    redirect(aResponse, returnUrlString);\r
+  }\r
+\r
+  public void performArticleOperation(HttpServletRequest aRequest, String anId, String anOperation) {\r
+    MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation;\r
+    EntityAdapter article;\r
+    EntityContent entity;\r
+\r
+    try {\r
+      entity = (EntityContent) contentModule.getById(anId);\r
+\r
+      if (entity != null) {\r
+        MirGlobal.performArticleOperation(ServletHelper.getUser(aRequest), entity, anOperation);\r
+        logger.info("Operation " + anOperation + " successfully performed on article " + anId);\r
+        logAdminUsage(aRequest, "article."+anId, "operation " + anOperation + " performed");\r
+      }\r
+      else {\r
+        logger.error("Error while performing " + anOperation + " on article " + anId + ": article is null");\r
+      }\r
+    }\r
+    catch (Throwable e) {\r
+      logger.error("Error while performing " + anOperation + " on article " + anId + ": " + e.getMessage());\r
+    }\r
+  }\r
+\r
+  public void articleoperation(HttpServletRequest aRequest, HttpServletResponse aResponse) throws ServletModuleExc {\r
+    String articleIdString = aRequest.getParameter("articleid");\r
+    String operationString = aRequest.getParameter("operation");\r
+    String returnUrlString = aRequest.getParameter("returnurl");\r
+\r
+    performArticleOperation(aRequest, articleIdString, operationString);\r
+    redirect(aResponse, returnUrlString);\r
+  }\r
+\r
+  public void articleoperationbatch(HttpServletRequest aRequest, HttpServletResponse aResponse) throws ServletModuleExc {\r
+    String returnUrlString = aRequest.getParameter("returnurl");\r
+\r
+    String[] operations = aRequest.getParameterValues("operation");\r
+\r
+    if (operations!=null) {\r
+\r
+      for (int i = 0; i < operations.length; i++) {\r
+        if (operations[i].length() > 0) {\r
+          List parts = StringRoutines.splitString(operations[i], ";");\r
+\r
+          if (parts.size() != 2) {\r
+            logger.error("articleoperationbatch: operation string invalid: " + operations[i]);\r
+          }\r
+          else {\r
+            String articleIdString = (String) parts.get(0);\r
+            String operationString = (String) parts.get(1);\r
+\r
+            performArticleOperation(aRequest, articleIdString, operationString);\r
+          }\r
+        }\r
+      }\r
+    }\r
+\r
+    redirect(aResponse, returnUrlString);\r
+  }\r
+\r
+  public List getAdministerOperations() throws ServletModuleExc {\r
+    return administerOperations;\r
+  }\r
 }
\ No newline at end of file