OSDN Git Service

Merge branch 'skinnable-master'
[nucleus-jp/nucleus-next.git] / nucleus / libs / ACTIONLOG.php
index f38e583..8c4f1e0 100644 (file)
@@ -1,7 +1,8 @@
+<<<<<<< HEAD
 <?php\r
 /*\r
  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
- * Copyright (C) 2002-2009 The Nucleus Group\r
+ * Copyright (C) 2002-2012 The Nucleus Group\r
  *\r
  * This program is free software; you can redistribute it and/or\r
  * modify it under the terms of the GNU General Public License\r
@@ -13,7 +14,7 @@
  * Actionlog class for Nucleus\r
  *\r
  * @license http://nucleuscms.org/license.txt GNU General Public License\r
- * @copyright Copyright (C) 2002-2009 The Nucleus Group\r
+ * @copyright Copyright (C) 2002-2012 The Nucleus Group\r
  * @version $Id: ACTIONLOG.php 1470 2010-11-29 22:10:16Z ftruscot $\r
  */\r
 define('ERROR',1);             // only errors\r
@@ -22,10 +23,10 @@ define('INFO',3);           // info, errors and warnings
 define('DEBUG',4);             // everything\r
 $CONF['LogLevel'] = INFO;\r
 \r
-class ACTIONLOG\r
+class ActionLog\r
 {\r
        /**\r
-        * ACTIONLOG::add()\r
+        * ActionLog::add()\r
         * Method to add a message to the action log\r
         * \r
         * @static\r
@@ -48,11 +49,9 @@ class ACTIONLOG
                        $message = "[" . $member->getDisplayName() . "] " . $message;\r
                }\r
                \r
-               $message = sql_real_escape_string($message);            // add slashes\r
-               $timestamp = date("Y-m-d H:i:s",time());        // format timestamp\r
-               $query = "INSERT INTO %s (timestamp, message) VALUES ('%s', '%s')";\r
-               $query = sprintf($query, sql_table('actionlog'), $timestamp, $message);\r
-               sql_query($query);\r
+               $query = "INSERT INTO %s (timestamp, message) VALUES (%s, %s)";\r
+               $query = sprintf($query, sql_table('actionlog'), DB::formatDateTime(), DB::quoteValue($message));\r
+               DB::execute($query);\r
                \r
                self::trimLog();\r
                return;\r
@@ -64,11 +63,11 @@ class ACTIONLOG
        function clear() {\r
                global $manager;\r
 \r
-               $query = 'DELETE FROM ' . sql_table('actionlog');\r
+               $query = sprintf('DELETE FROM %s', sql_table('actionlog'));\r
 \r
                $manager->notify('ActionLogCleared',array());\r
 \r
-               return sql_query($query);\r
+               return DB::execute($query) !== FALSE;\r
        }\r
 \r
        /**\r
@@ -83,14 +82,18 @@ class ACTIONLOG
                // trim\r
                $checked = 1;\r
 \r
-               $iTotal = quickQuery('SELECT COUNT(*) AS result FROM ' . sql_table('actionlog'));\r
+               $query = sprintf('SELECT COUNT(*) AS result FROM %s', sql_table('actionlog'));\r
+               $iTotal = DB::getValue($query);\r
 \r
                // if size > 500, drop back to about 250\r
                $iMaxSize = 500;\r
                $iDropSize = 250;\r
                if ($iTotal > $iMaxSize) {\r
-                       $tsChop = quickQuery('SELECT timestamp as result FROM ' . sql_table('actionlog') . ' ORDER BY timestamp DESC LIMIT '.$iDropSize.',1');\r
-                       sql_query('DELETE FROM ' . sql_table('actionlog') . ' WHERE timestamp < \'' . $tsChop . '\'');\r
+                       $query = sprintf('SELECT timestamp as result FROM %s ORDER BY timestamp DESC LIMIT %d,1',\r
+                               sql_table('actionlog'), intval($iDropSize));\r
+                       $tsChop = DB::getValue($query);\r
+                       $query = sprintf("DELETE FROM %s WHERE timestamp < '%s'", sql_table('actionlog'), $tsChop);\r
+                       DB::execute($query);\r
                }\r
 \r
        }\r
@@ -98,3 +101,108 @@ class ACTIONLOG
 }\r
 \r
 ?>\r
+=======
+<?php
+/*
+ * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
+ * Copyright (C) 2002-2009 The Nucleus Group
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * (see nucleus/documentation/index.html#license for more info)
+ */
+/**
+ * Actionlog class for Nucleus
+ *
+ * @license http://nucleuscms.org/license.txt GNU General Public License
+ * @copyright Copyright (C) 2002-2009 The Nucleus Group
+ * @version $Id: ACTIONLOG.php 1822 2012-05-04 13:47:22Z sakamocchi $
+ */
+define('ERROR',1);             // only errors
+define('WARNING',2);   // errors and warnings
+define('INFO',3);              // info, errors and warnings
+define('DEBUG',4);             // everything
+$CONF['LogLevel'] = INFO;
+
+class ActionLog
+{
+       /**
+        * ActionLog::add()
+        * Method to add a message to the action log
+        * 
+        * @static
+        * @param       Integer $level  log level
+        * @param       String  $message        log message
+        * @return      
+        * 
+        */
+       function add($level, $message)
+       {
+               global $member, $CONF;
+               
+               if ( $CONF['LogLevel'] < $level )
+               {
+                       return;
+               }
+               
+               if ( $member && $member->isLoggedIn() )
+               {
+                       $message = "[" . $member->getDisplayName() . "] " . $message;
+               }
+               
+               $query = "INSERT INTO %s (timestamp, message) VALUES (%s, %s)";
+               $query = sprintf($query, sql_table('actionlog'), DB::formatDateTime(), DB::quoteValue($message));
+               DB::execute($query);
+               
+               self::trimLog();
+               return;
+       }
+       
+       /**
+         * (Static) Method to clear the whole action log
+         */
+       function clear() {
+               global $manager;
+
+               $query = sprintf('DELETE FROM %s', sql_table('actionlog'));
+
+               $data = array();
+               $manager->notify('ActionLogCleared', $data);
+
+               return DB::execute($query) !== FALSE;
+       }
+
+       /**
+         * (Static) Method to trim the action log (from over 500 back to 250 entries)
+         */
+       function trimLog() {
+               static $checked = 0;
+
+               // only check once per run
+               if ($checked) return;
+
+               // trim
+               $checked = 1;
+
+               $query = sprintf('SELECT COUNT(*) AS result FROM %s', sql_table('actionlog'));
+               $iTotal = DB::getValue($query);
+
+               // if size > 500, drop back to about 250
+               $iMaxSize = 500;
+               $iDropSize = 250;
+               if ($iTotal > $iMaxSize) {
+                       $query = sprintf('SELECT timestamp as result FROM %s ORDER BY timestamp DESC LIMIT %d,1',
+                               sql_table('actionlog'), intval($iDropSize));
+                       $tsChop = DB::getValue($query);
+                       $query = sprintf("DELETE FROM %s WHERE timestamp < '%s'", sql_table('actionlog'), $tsChop);
+                       DB::execute($query);
+               }
+
+       }
+
+}
+
+?>
+>>>>>>> skinnable-master