|
@@ -2,11 +2,8 @@ package com.gxzc.zen.logging.aop
|
|
|
|
|
|
import com.alibaba.dubbo.common.logger.LoggerFactory
|
|
|
import com.baomidou.mybatisplus.toolkit.PluginUtils
|
|
|
-import com.gxzc.zen.common.properties.PlatformProperties
|
|
|
import com.gxzc.zen.logging.constants.LogConstants
|
|
|
-import com.gxzc.zen.logging.model.LogDB
|
|
|
import com.gxzc.zen.logging.util.MQLogUtil
|
|
|
-import com.gxzc.zen.umps.util.SSOUtil
|
|
|
import net.sf.jsqlparser.parser.CCJSqlParserUtil
|
|
|
import net.sf.jsqlparser.schema.Table
|
|
|
import net.sf.jsqlparser.statement.delete.Delete
|
|
@@ -20,7 +17,6 @@ import org.apache.ibatis.mapping.MappedStatement
|
|
|
import org.apache.ibatis.mapping.SqlCommandType
|
|
|
import org.apache.ibatis.plugin.*
|
|
|
import org.apache.ibatis.reflection.SystemMetaObject
|
|
|
-import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.stereotype.Component
|
|
|
import java.sql.Connection
|
|
|
import java.util.*
|
|
@@ -43,12 +39,9 @@ open class LogDBInterceptor : Interceptor {
|
|
|
private val tableNameMapping = ConcurrentHashMap<String, String>()
|
|
|
}
|
|
|
|
|
|
- @Autowired
|
|
|
- private lateinit var platformProperties: PlatformProperties
|
|
|
-
|
|
|
override fun intercept(invocation: Invocation): Any {
|
|
|
logger.debug("操作数据库日志记录开始...")
|
|
|
- val startTime = System.currentTimeMillis()
|
|
|
+ val startTime = Date()
|
|
|
val statementHandler = PluginUtils.realTarget(invocation.target) as StatementHandler
|
|
|
val metaObject = SystemMetaObject.forObject(statementHandler)
|
|
|
// 获取SQL操作类型
|
|
@@ -58,25 +51,12 @@ open class LogDBInterceptor : Interceptor {
|
|
|
return invocation.proceed()
|
|
|
}
|
|
|
|
|
|
- // 构造消息体
|
|
|
- val platformId = platformProperties.id!!
|
|
|
- var account: String? = null
|
|
|
- var accountName: String? = null
|
|
|
- try {
|
|
|
- account = SSOUtil.getCurAccount()!!
|
|
|
- accountName = SSOUtil.getCurUserInfo()!!.username
|
|
|
- } catch (e: Throwable) {
|
|
|
- }
|
|
|
- val logDB = LogDB().apply {
|
|
|
- this.platformId = platformId
|
|
|
- this.operatorAccount = account
|
|
|
- this.operatorName = accountName
|
|
|
- this.operatorTime = Date()
|
|
|
- }
|
|
|
- // 设定sql
|
|
|
- logDB.sql = boundSql.sql
|
|
|
+ // 消息构造
|
|
|
+ val type: Int
|
|
|
+ val sql = boundSql.sql
|
|
|
|
|
|
- val statement = CCJSqlParserUtil.parse(logDB.sql)
|
|
|
+
|
|
|
+ val statement = CCJSqlParserUtil.parse(sql)
|
|
|
|
|
|
var dbName: String? = null
|
|
|
var tableName: String? = null
|
|
@@ -87,19 +67,19 @@ open class LogDBInterceptor : Interceptor {
|
|
|
SqlCommandType.SELECT -> {
|
|
|
val plainSelect = (statement as Select).selectBody as PlainSelect
|
|
|
table = (plainSelect.fromItem as Table)
|
|
|
- logDB.type = LogConstants.DB_TYPE_SELECT
|
|
|
+ type = LogConstants.DB_TYPE_SELECT
|
|
|
}
|
|
|
SqlCommandType.DELETE -> {
|
|
|
table = (statement as Delete).table
|
|
|
- logDB.type = LogConstants.DB_TYPE_DELETE
|
|
|
+ type = LogConstants.DB_TYPE_DELETE
|
|
|
}
|
|
|
SqlCommandType.INSERT -> {
|
|
|
table = (statement as Insert).table
|
|
|
- logDB.type = LogConstants.DB_TYPE_INSERT
|
|
|
+ type = LogConstants.DB_TYPE_INSERT
|
|
|
}
|
|
|
SqlCommandType.UPDATE -> {
|
|
|
table = (statement as Update).tables[0]
|
|
|
- logDB.type = LogConstants.DB_TYPE_UPDATE
|
|
|
+ type = LogConstants.DB_TYPE_UPDATE
|
|
|
}
|
|
|
else -> {
|
|
|
// 直接跳过
|
|
@@ -116,16 +96,12 @@ open class LogDBInterceptor : Interceptor {
|
|
|
tableName = tableArr[1]
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- // tableId & tableName
|
|
|
- val connection = invocation.args[0] as Connection
|
|
|
- logDB.tableId = tableName
|
|
|
- logDB.tableName = getTableNameCN(tableName, connection, dbName)
|
|
|
+ // 执行
|
|
|
+ val result = invocation.proceed()
|
|
|
|
|
|
// 发消息
|
|
|
- MQLogUtil.logDB(logDB)
|
|
|
- logger.debug("操作数据库日志记录结束,耗时: ${System.currentTimeMillis() - startTime} ms")
|
|
|
- return invocation.proceed()
|
|
|
+ MQLogUtil.logDB(type, sql, tableName, getTableNameCN(tableName, invocation.args[0] as Connection, dbName), startTime)
|
|
|
+ return result
|
|
|
}
|
|
|
|
|
|
override fun plugin(target: Any): Any {
|