297 lines
8.4 KiB
Go
297 lines
8.4 KiB
Go
package repository
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"be.ems/src/framework/datasource"
|
|
"be.ems/src/framework/logger"
|
|
"be.ems/src/framework/utils/parse"
|
|
"be.ems/src/framework/utils/repo"
|
|
"be.ems/src/modules/system/model"
|
|
)
|
|
|
|
// 实例化数据层 SysLogOperateImpl 结构体
|
|
var NewSysLogOperateImpl = &SysLogOperateImpl{
|
|
selectSql: `select
|
|
oper_id, title, business_type, method, request_method, operator_type, oper_name, dept_name,
|
|
oper_url, oper_ip, oper_location, oper_param, oper_msg, status, oper_time, cost_time
|
|
from sys_log_operate`,
|
|
|
|
resultMap: map[string]string{
|
|
"oper_id": "OperID",
|
|
"title": "Title",
|
|
"business_type": "BusinessType",
|
|
"method": "Method",
|
|
"request_method": "RequestMethod",
|
|
"operator_type": "OperatorType",
|
|
"oper_name": "OperName",
|
|
"dept_name": "DeptName",
|
|
"oper_url": "OperURL",
|
|
"oper_ip": "OperIP",
|
|
"oper_location": "OperLocation",
|
|
"oper_param": "OperParam",
|
|
"oper_msg": "OperMsg",
|
|
"status": "Status",
|
|
"oper_time": "OperTime",
|
|
"cost_time": "CostTime",
|
|
},
|
|
}
|
|
|
|
// SysLogOperateImpl 操作日志表 数据层处理
|
|
type SysLogOperateImpl struct {
|
|
// 查询视图对象SQL
|
|
selectSql string
|
|
// 结果字段与实体映射
|
|
resultMap map[string]string
|
|
}
|
|
|
|
// convertResultRows 将结果记录转实体结果组
|
|
func (r *SysLogOperateImpl) convertResultRows(rows []map[string]any) []model.SysLogOperate {
|
|
arr := make([]model.SysLogOperate, 0)
|
|
for _, row := range rows {
|
|
SysLogOperate := model.SysLogOperate{}
|
|
for key, value := range row {
|
|
if keyMapper, ok := r.resultMap[key]; ok {
|
|
repo.SetFieldValue(&SysLogOperate, keyMapper, value)
|
|
}
|
|
}
|
|
arr = append(arr, SysLogOperate)
|
|
}
|
|
return arr
|
|
}
|
|
|
|
// SelectSysLogOperatePage 分页查询系统操作日志集合
|
|
func (r *SysLogOperateImpl) SelectSysLogOperatePage(query map[string]any) map[string]any {
|
|
// 查询条件拼接
|
|
var conditions []string
|
|
var params []any
|
|
if v, ok := query["title"]; ok && v != "" {
|
|
conditions = append(conditions, "title like concat(?, '%')")
|
|
params = append(params, strings.TrimSpace(v.(string)))
|
|
}
|
|
if v, ok := query["businessType"]; ok && v != "" {
|
|
conditions = append(conditions, "business_type = ?")
|
|
params = append(params, v)
|
|
}
|
|
if v, ok := query["operName"]; ok && v != "" {
|
|
conditions = append(conditions, "oper_name like concat(?, '%')")
|
|
params = append(params, strings.TrimSpace(v.(string)))
|
|
}
|
|
if v, ok := query["status"]; ok && v != "" {
|
|
conditions = append(conditions, "status = ?")
|
|
params = append(params, v)
|
|
}
|
|
beginTime, ok := query["beginTime"]
|
|
if !ok {
|
|
beginTime, ok = query["params[beginTime]"]
|
|
}
|
|
if ok && beginTime != "" {
|
|
conditions = append(conditions, "oper_time >= ?")
|
|
params = append(params, parse.Number(beginTime.(string)))
|
|
}
|
|
endTime, ok := query["endTime"]
|
|
if !ok {
|
|
endTime, ok = query["params[endTime]"]
|
|
}
|
|
if ok && endTime != "" {
|
|
conditions = append(conditions, "oper_time <= ?")
|
|
params = append(params, parse.Number(endTime.(string)))
|
|
}
|
|
|
|
// 构建查询条件语句
|
|
whereSql := ""
|
|
if len(conditions) > 0 {
|
|
whereSql += " where " + strings.Join(conditions, " and ")
|
|
}
|
|
|
|
// 查询结果
|
|
result := map[string]any{
|
|
"total": 0,
|
|
"rows": []model.SysLogOperate{},
|
|
}
|
|
|
|
// 查询数量 长度为0直接返回
|
|
totalSql := "select count(1) as 'total' from sys_log_operate"
|
|
totalRows, err := datasource.RawDB("", totalSql+whereSql, params)
|
|
if err != nil {
|
|
logger.Errorf("total err => %v", err)
|
|
return result
|
|
}
|
|
total := parse.Number(totalRows[0]["total"])
|
|
if total == 0 {
|
|
return result
|
|
} else {
|
|
result["total"] = total
|
|
}
|
|
|
|
// 分页
|
|
pageNum, pageSize := repo.PageNumSize(query["pageNum"], query["pageSize"])
|
|
pageSql := " order by oper_id desc limit ?,? "
|
|
params = append(params, pageNum*pageSize)
|
|
params = append(params, pageSize)
|
|
|
|
// 查询数据
|
|
querySql := r.selectSql + whereSql + pageSql
|
|
results, err := datasource.RawDB("", querySql, params)
|
|
if err != nil {
|
|
logger.Errorf("query err => %v", err)
|
|
return result
|
|
}
|
|
|
|
// 转换实体
|
|
result["rows"] = r.convertResultRows(results)
|
|
return result
|
|
}
|
|
|
|
// SelectSysLogOperateList 查询系统操作日志集合
|
|
func (r *SysLogOperateImpl) SelectSysLogOperateList(SysLogOperate model.SysLogOperate) []model.SysLogOperate {
|
|
// 查询条件拼接
|
|
var conditions []string
|
|
var params []any
|
|
if SysLogOperate.Title != "" {
|
|
conditions = append(conditions, "title like concat(?, '%')")
|
|
params = append(params, SysLogOperate.Title)
|
|
}
|
|
if SysLogOperate.BusinessType != "" {
|
|
conditions = append(conditions, "business_type = ?")
|
|
params = append(params, SysLogOperate.BusinessType)
|
|
}
|
|
if SysLogOperate.OperName != "" {
|
|
conditions = append(conditions, "oper_name like concat(?, '%')")
|
|
params = append(params, SysLogOperate.OperName)
|
|
}
|
|
if SysLogOperate.Status != "" {
|
|
conditions = append(conditions, "status = ?")
|
|
params = append(params, SysLogOperate.Status)
|
|
}
|
|
|
|
// 构建查询条件语句
|
|
whereSql := ""
|
|
if len(conditions) > 0 {
|
|
whereSql += " where " + strings.Join(conditions, " and ")
|
|
}
|
|
|
|
// 查询数据
|
|
querySql := r.selectSql + whereSql
|
|
results, err := datasource.RawDB("", querySql, params)
|
|
if err != nil {
|
|
logger.Errorf("query err => %v", err)
|
|
return []model.SysLogOperate{}
|
|
}
|
|
|
|
// 转换实体
|
|
return r.convertResultRows(results)
|
|
}
|
|
|
|
// SelectSysLogOperateById 查询操作日志详细
|
|
func (r *SysLogOperateImpl) SelectSysLogOperateById(operId string) model.SysLogOperate {
|
|
querySql := r.selectSql + " where oper_id = ?"
|
|
results, err := datasource.RawDB("", querySql, []any{operId})
|
|
if err != nil {
|
|
logger.Errorf("query err => %v", err)
|
|
return model.SysLogOperate{}
|
|
}
|
|
// 转换实体
|
|
rows := r.convertResultRows(results)
|
|
if len(rows) > 0 {
|
|
return rows[0]
|
|
}
|
|
return model.SysLogOperate{}
|
|
}
|
|
|
|
// InsertSysLogOperate 新增操作日志
|
|
func (r *SysLogOperateImpl) InsertSysLogOperate(SysLogOperate model.SysLogOperate) string {
|
|
// 参数拼接
|
|
params := make(map[string]any)
|
|
params["oper_time"] = time.Now().UnixMilli()
|
|
if SysLogOperate.Title != "" {
|
|
params["title"] = SysLogOperate.Title
|
|
}
|
|
if SysLogOperate.BusinessType != "" {
|
|
params["business_type"] = SysLogOperate.BusinessType
|
|
}
|
|
if SysLogOperate.Method != "" {
|
|
params["method"] = SysLogOperate.Method
|
|
}
|
|
if SysLogOperate.RequestMethod != "" {
|
|
params["request_method"] = SysLogOperate.RequestMethod
|
|
}
|
|
if SysLogOperate.OperatorType != "" {
|
|
params["operator_type"] = SysLogOperate.OperatorType
|
|
}
|
|
if SysLogOperate.DeptName != "" {
|
|
params["dept_name"] = SysLogOperate.DeptName
|
|
}
|
|
if SysLogOperate.OperName != "" {
|
|
params["oper_name"] = SysLogOperate.OperName
|
|
}
|
|
if SysLogOperate.OperURL != "" {
|
|
params["oper_url"] = SysLogOperate.OperURL
|
|
}
|
|
if SysLogOperate.OperIP != "" {
|
|
params["oper_ip"] = SysLogOperate.OperIP
|
|
}
|
|
if SysLogOperate.OperLocation != "" {
|
|
params["oper_location"] = SysLogOperate.OperLocation
|
|
}
|
|
if SysLogOperate.OperParam != "" {
|
|
params["oper_param"] = SysLogOperate.OperParam
|
|
}
|
|
if SysLogOperate.OperMsg != "" {
|
|
params["oper_msg"] = SysLogOperate.OperMsg
|
|
}
|
|
if SysLogOperate.Status != "" {
|
|
params["status"] = SysLogOperate.Status
|
|
}
|
|
if SysLogOperate.CostTime > 0 {
|
|
params["cost_time"] = SysLogOperate.CostTime
|
|
}
|
|
|
|
// 构建执行语句
|
|
keys, placeholder, values := repo.KeyPlaceholderValueByInsert(params)
|
|
sql := "insert into sys_log_operate (" + strings.Join(keys, ",") + ")values(" + placeholder + ")"
|
|
|
|
db := datasource.DefaultDB()
|
|
// 开启事务
|
|
tx := db.Begin()
|
|
// 执行插入
|
|
err := tx.Exec(sql, values...).Error
|
|
if err != nil {
|
|
logger.Errorf("insert row : %v", err.Error())
|
|
tx.Rollback()
|
|
return ""
|
|
}
|
|
// 获取生成的自增 ID
|
|
var insertedID string
|
|
err = tx.Raw("select last_insert_id()").Row().Scan(&insertedID)
|
|
if err != nil {
|
|
logger.Errorf("insert last id : %v", err.Error())
|
|
tx.Rollback()
|
|
return ""
|
|
}
|
|
// 提交事务
|
|
tx.Commit()
|
|
return insertedID
|
|
}
|
|
|
|
// DeleteSysLogOperateByIds 批量删除系统操作日志
|
|
func (r *SysLogOperateImpl) DeleteSysLogOperateByIds(operIds []string) int64 {
|
|
placeholder := repo.KeyPlaceholderByQuery(len(operIds))
|
|
sql := "delete from sys_log_operate where oper_id in (" + placeholder + ")"
|
|
parameters := repo.ConvertIdsSlice(operIds)
|
|
results, err := datasource.ExecDB("", sql, parameters)
|
|
if err != nil {
|
|
logger.Errorf("delete err => %v", err)
|
|
return 0
|
|
}
|
|
return results
|
|
}
|
|
|
|
// CleanSysLogOperate 清空操作日志
|
|
func (r *SysLogOperateImpl) CleanSysLogOperate() error {
|
|
sql := "truncate table sys_log_operate"
|
|
_, err := datasource.ExecDB("", sql, []any{})
|
|
return err
|
|
}
|