[MM-64686] Expose audit logging functionality via plugin API (#31204)

This commit exposes audit logging functionality to plugins via the plugin API, allowing plugins to create and log audit records. Additionally, it addresses a gob encoding issue that could cause plugin crashes when audit data contains nil pointers or unregistered types.
Этот коммит содержится в:
David Krauser
2025-06-25 20:37:32 -04:00
коммит произвёл GitHub
родитель efb960a160
Коммит aaa62a40ae
68 изменённых файлов: 878 добавлений и 750 удалений

Просмотреть файл

@@ -18,7 +18,7 @@ import (
"github.com/mattermost/mattermost/server/public/shared/mlog"
)
func TestAudit_LogRecord(t *testing.T) {
func TestAudit_LogAuditRecord(t *testing.T) {
userId := model.NewId()
testCases := []struct {
description string
@@ -28,7 +28,7 @@ func TestAudit_LogRecord(t *testing.T) {
{
"empty record",
func(audit Audit) {
rec := Record{}
rec := model.AuditRecord{}
audit.LogRecord(mlog.LvlAuditAPI, rec)
},
[]string{
@@ -43,7 +43,7 @@ func TestAudit_LogRecord(t *testing.T) {
usr.Username = "TestABC"
usr.Password = "hello_world"
rec := Record{}
rec := model.AuditRecord{}
rec.AddEventObjectType("user")
rec.EventName = "User.Update"
rec.AddEventPriorState(usr)