Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
FLIPPED-AURORA
gin-vue-admin
提交
03773027
G
gin-vue-admin
项目概览
FLIPPED-AURORA
/
gin-vue-admin
大约 1 年 前同步成功
通知
345
Star
18155
Fork
5506
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
gin-vue-admin
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
03773027
编写于
6月 30, 2020
作者:
G
granty1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add operation record, and the user ID is not well thought out how to parse~
上级
80ffe7d4
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
9 addition
and
9 deletion
+9
-9
server/config.yaml
server/config.yaml
+4
-3
server/config/config.go
server/config/config.go
+1
-1
server/middleware/operation.go
server/middleware/operation.go
+3
-5
server/model/sys_operation_record.go
server/model/sys_operation_record.go
+1
-0
未找到文件。
server/config.yaml
浏览文件 @
03773027
...
...
@@ -58,9 +58,10 @@ log:
stdout
:
'
DEBUG'
file
:
'
DEBUG'
# operation configuration
# operation
record
configuration
operation
:
skip
_
paths
:
skip
-
paths
:
-
'
/base/login'
-
'
/base/register'
-
'
/sysOperationRecord/getSysOperationRecordList'
\ No newline at end of file
-
'
/sysOperationRecord/getSysOperationRecordList'
-
'
/sysOperationRecord/deleteSysOperationRecord'
\ No newline at end of file
server/config/config.go
浏览文件 @
03773027
...
...
@@ -73,5 +73,5 @@ type Sqlite struct {
}
type
Operation
struct
{
SkipPaths
[]
string
`mapstructure:
"skip_paths" json:"skip_paths" yaml: "username
"`
SkipPaths
[]
string
`mapstructure:
"skip-paths" json:"skipPaths" yaml:"skip-paths
"`
}
server/middleware/operation.go
浏览文件 @
03773027
...
...
@@ -2,7 +2,6 @@ package middleware
import
(
"bytes"
"fmt"
"gin-vue-admin/global"
"gin-vue-admin/model"
"gin-vue-admin/service"
...
...
@@ -35,10 +34,9 @@ func RecordRequestBody() gin.HandlerFunc {
func
OperationRecord
()
gin
.
HandlerFunc
{
return
gin
.
LoggerWithConfig
(
gin
.
LoggerConfig
{
Formatter
:
func
(
param
gin
.
LogFormatterParams
)
string
{
fmt
.
Println
(
global
.
GVA_CONFIG
.
Operation
.
SkipPaths
)
// 防止加载查询参数,再次过滤
for
_
,
v
:=
range
global
.
GVA_CONFIG
.
Operation
.
SkipPaths
{
if
strings
.
Contains
(
param
.
Path
,
v
)
{
fmt
.
Println
(
param
.
Path
)
return
""
}
}
...
...
@@ -49,7 +47,8 @@ func OperationRecord() gin.HandlerFunc {
Status
:
param
.
StatusCode
,
Latency
:
param
.
Latency
,
Agent
:
param
.
Request
.
UserAgent
(),
ErrorMessage
:
string
(
body
),
ErrorMessage
:
param
.
ErrorMessage
,
Body
:
string
(
body
),
UserId
:
int
(
userId
),
})
if
err
!=
nil
{
...
...
@@ -57,7 +56,6 @@ func OperationRecord() gin.HandlerFunc {
}
return
""
},
// 暂时没考虑好
Output
:
nil
,
SkipPaths
:
global
.
GVA_CONFIG
.
Operation
.
SkipPaths
,
})
...
...
server/model/sys_operation_record.go
浏览文件 @
03773027
...
...
@@ -16,5 +16,6 @@ type SysOperationRecord struct {
Latency
time
.
Duration
`json:"latency" form:"latency" gorm:"column:latency;comment:''"`
Agent
string
`json:"agent" form:"agent" gorm:"column:agent;comment:''"`
ErrorMessage
string
`json:"error_message" form:"error_message" gorm:"column:error_message;comment:''"`
Body
string
`json:"body" form:"body" gorm:"column:body;comment:'请求Body'"`
UserId
int
`json:"user_id" form:"user_id" gorm:"column:user_id;comment:''"`
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录