淺談管理系統(tǒng)操作日志設(shè)計(附操作日志類)
管理系統(tǒng)的操作日志如何做成通用的模塊一直是個讓我頭疼的問題,不過看了博客園里的某篇文章后,現(xiàn)在基本解決了。
相關(guān)文章鏈接:《系統(tǒng)操作日志設(shè)計》
在開始做之前,必須把兩個日志分清楚,那就是普通操作日志和業(yè)務(wù)操作日志,這兩者有何區(qū)別?
在我理解,普通操作日志就是單表的操作記錄,而業(yè)務(wù)操作日志則就是一系列的普通操作日志的集合。
打個比方,用戶需要購買一樣寶貝,已經(jīng)到了下單那步,下單就是個業(yè)務(wù),這個業(yè)務(wù)背后就是一系列的業(yè)務(wù),如:生成訂單 → 生成商品快照 → 發(fā)送一條站內(nèi)信 → 刪除購物車?yán)飳?yīng)寶貝。
這樣一個下單操作就包含了4部分,可以把這4部分看成是4張表,分別對這4張表進(jìn)行對應(yīng)的操作,就實現(xiàn)了業(yè)務(wù)。
但今天我要講的不是業(yè)務(wù)操作日志,因為不同項目的業(yè)務(wù)不盡相同,所以它無法做成通用模塊,而我要講的,就是普通操作日志。
上面解釋了一大段,下面干貨就要亮相了,先洗把臉清醒下。
首先,哪些地方需要記錄操作日志?執(zhí)行insert、update、delete這3個操作的時候,就需要進(jìn)行日志,而日志執(zhí)行的先后順序如下
順序清楚后,就來看下我寫的一份日志操作類吧,***版隨便謝謝的,重復(fù)代碼有點多,還未來得及優(yōu)化。
- class LOG{
- protected $primaryid;
- protected $tbid;
- protected $tbname;
- protected $keys;
- protected $values;
- /**
- * 參數(shù)說明
- * int $tbid 查詢指定表的id
- * string $tbname 數(shù)據(jù)庫表名
- */
- public function insert($tbid, $tbname){
- global $db;
- //查詢表注釋
- $db->query('show table status where name = "'.$tbname.'"');
- $tb = $db->fetch();
- //插入日志主表
- $returnid = $db->insert(0, 2, 'tb_log', array(
- 'adminid = '.$_SESSION['admin']['id'],
- 'type = 1',
- 'tableid = '.$tbid,
- 'tablename = "'.$tbname.'"',
- 'comment = "'.$tb['Comment'].'"',
- 'dt = now()'
- ));
- //查詢字段注釋
- $db->query('show full columns from '.$tbname);
- $tb = $db->fetchAll();
- foreach($tb as $v){
- $commentArray[$v['Field']] = $v['Comment'];
- }
- //查詢所有字段信息,插入日志從表
- $rs = $db->select(0, 1, $tbname, '*', 'and tbid = '.$tbid);
- $keys = array_keys($rs);
- $values = array_values($rs);
- for($i = 0; $i < count($keys); $i++){
- $db->insert(0, 0, 'tb_log_content', array(
- 'logid = '.$returnid,
- 'tbkey = "'.$keys[$i].'"',
- 'tbvalue = "'.$values[$i].'"',
- 'comment = "'.$commentArray[$keys[$i]].'"'
- ));
- }
- }
- public function updateStart($tbid, $tbname){
- global $db;
- //查詢表注釋
- $db->query('show table status where name = "'.$tbname.'"');
- $tb = $db->fetch();
- //插入日志主表
- $returnid = $db->insert(0, 2, 'tb_log', array(
- 'adminid = '.$_SESSION['admin']['id'],
- 'type = 2',
- 'tableid = '.$tbid,
- 'tablename = "'.$tbname.'"',
- 'comment = "'.$tb['Comment'].'"',
- 'dt = now()'
- ));
- //查詢修改前數(shù)據(jù)信息
- $rs = $db->select(0, 1, $tbname, '*', 'and tbid = '.$tbid);
- $keys = array_keys($rs);
- $values = array_values($rs);
- $this->primaryid = $returnid;
- $this->tbid = $tbid;
- $this->tbname = $tbname;
- $this->keys = $keys;
- $this->values = $values;
- }
- public function updateEnd(){
- global $db;
- //查詢字段注釋
- $db->query('show full columns from '.$this->tbname);
- $tb = $db->fetchAll();
- foreach($tb as $v){
- $commentArray[$v['Field']] = $v['Comment'];
- }
- //查詢修改后數(shù)據(jù)信息
- $rs = $db->select(0, 1, $this->tbname, '*', 'and tbid = '.$this->tbid);
- $currentvalues = array_values($rs);
- //前后信息進(jìn)行比較
- for($i = 0; $i < count($currentvalues); $i++){
- if($this->values[$i] !== $currentvalues[$i]){
- $db->insert(0, 0, 'tb_log_content', array(
- 'logid = '.$this->primaryid,
- 'tbkey = "'.$this->keys[$i].'"',
- 'tbvalue = "'.$this->values[$i].'"',
- 'currenttbvalue = "'.$currentvalues[$i].'"',
- 'comment = "'.$commentArray[$this->keys[$i]].'"'
- ));
- }
- }
- }
- public function delete($tbid, $tbname){
- global $db;
- //查詢表注釋
- $db->query('show table status where name = "'.$tbname.'"');
- $tb = $db->fetch();
- //插入日志主表
- $returnid = $db->insert(0, 2, 'tb_log', array(
- 'adminid = '.$_SESSION['admin']['id'],
- 'type = 3',
- 'tableid = '.$tbid,
- 'tablename = "'.$tbname.'"',
- 'comment = "'.$tb['Comment'].'"',
- 'dt = now()'
- ));
- //查詢字段注釋
- $db->query('show full columns from '.$tbname);
- $tb = $db->fetchAll();
- foreach($tb as $v){
- $commentArray[$v['Field']] = $v['Comment'];
- }
- //查詢所有字段信息,插入日志從表
- $rs = $db->select(0, 1, $tbname, '*', 'and tbid = '.$tbid);
- $keys = array_keys($rs);
- $values = array_values($rs);
- for($i = 0; $i < count($keys); $i++){
- $db->insert(0, 0, 'tb_log_content', array(
- 'logid = '.$returnid,
- 'tbkey = "'.$keys[$i].'"',
- 'tbvalue = "'.$values[$i].'"',
- 'comment = "'.$commentArray[$keys[$i]].'"'
- ));
- }
- }
- }
使用前,需要引入數(shù)據(jù)庫操作類,這是我之前寫的一份,可參考《全新的PDO數(shù)據(jù)庫操作類(僅適用Mysql)》。
引入之后,就可以開始使用了。
select
- $log->insert(82, 'tb_member');
update
- $log->updateStart(82, 'tb_member');
- //中間放更新操作代碼
- $log->updateEnd();
delete
- $log->delete(82, 'tb_member');
可以看到,一共只需要兩個參數(shù)即可,分別是表ID(主鍵)和表名稱。
另外需要強(qiáng)調(diào)一點,表注釋和字段注釋一定要完整,因為記錄的信息包含注釋,目的就是為了查閱的時候能清楚哪個字段是干什么用的。
下面就看下成品吧
***把表結(jié)構(gòu)分享下,一共2張表,一張主表一張從表,主表記錄操作表及操作人等信息,從表記錄操作的表字段信息。
- -- ----------------------------
- -- Table structure for `tb_log`
- -- ----------------------------
- CREATE TABLE `tb_log` (
- `tbid` bigint(20) NOT NULL AUTO_INCREMENT,
- `adminid` bigint(20) DEFAULT NULL COMMENT '管理員id',
- `type` tinyint(4) DEFAULT '1' COMMENT '操作類型:1新增2修改3刪除',
- `tableid` bigint(20) DEFAULT NULL,
- `tablename` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '表名',
- `comment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
- `dt` datetime DEFAULT NULL,
- PRIMARY KEY (`tbid`)
- ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
- -- ----------------------------
- -- Table structure for `tb_log_content`
- -- ----------------------------
- CREATE TABLE `tb_log_content` (
- `tbid` bigint(20) NOT NULL AUTO_INCREMENT,
- `logid` bigint(20) DEFAULT NULL,
- `tbkey` longtext COLLATE utf8_unicode_ci,
- `tbvalue` longtext COLLATE utf8_unicode_ci,
- `currenttbvalue` longtext COLLATE utf8_unicode_ci,
- `comment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`tbid`)
- ) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
原文鏈接:http://www.cnblogs.com/hooray/archive/2012/09/05/2672133.html
【編輯推薦】