2017-07-24 16:24:21 +01:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
2017-07-26 10:50:26 +01:00
|
|
|
// Package audit records user events.
|
|
|
|
package audit
|
2017-07-24 16:24:21 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2017-07-26 10:50:26 +01:00
|
|
|
"github.com/documize/community/core/env"
|
2017-07-24 16:24:21 +01:00
|
|
|
"github.com/documize/community/domain"
|
2017-07-26 10:50:26 +01:00
|
|
|
"github.com/documize/community/model/audit"
|
2017-07-24 16:24:21 +01:00
|
|
|
)
|
|
|
|
|
2017-07-26 10:50:26 +01:00
|
|
|
// Scope provides data access to MySQL.
|
|
|
|
type Scope struct {
|
|
|
|
Runtime *env.Runtime
|
|
|
|
}
|
|
|
|
|
2017-07-24 16:24:21 +01:00
|
|
|
// Record adds event entry for specified user.
|
2017-07-26 10:50:26 +01:00
|
|
|
func (s Scope) Record(ctx domain.RequestContext, t audit.EventType) {
|
|
|
|
e := audit.AppEvent{}
|
|
|
|
e.OrgID = ctx.OrgID
|
|
|
|
e.UserID = ctx.UserID
|
2017-07-24 16:24:21 +01:00
|
|
|
e.Created = time.Now().UTC()
|
2017-07-26 10:50:26 +01:00
|
|
|
e.IP = ctx.ClientIP
|
2017-07-24 16:24:21 +01:00
|
|
|
e.Type = string(t)
|
|
|
|
|
|
|
|
tx, err := s.Runtime.Db.Beginx()
|
|
|
|
if err != nil {
|
2017-08-03 10:00:24 +01:00
|
|
|
s.Runtime.Log.Error("transaction", err)
|
2017-07-24 16:24:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
stmt, err := tx.Preparex("INSERT INTO userevent (orgid, userid, eventtype, ip, created) VALUES (?, ?, ?, ?, ?)")
|
|
|
|
if err != nil {
|
|
|
|
tx.Rollback()
|
2017-08-03 10:00:24 +01:00
|
|
|
s.Runtime.Log.Error("prepare audit insert", err)
|
2017-07-24 16:24:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = stmt.Exec(e.OrgID, e.UserID, e.Type, e.IP, e.Created)
|
|
|
|
if err != nil {
|
|
|
|
tx.Rollback()
|
2017-08-03 10:00:24 +01:00
|
|
|
s.Runtime.Log.Error("execute audit insert", err)
|
2017-07-24 16:24:21 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
stmt.Close()
|
|
|
|
tx.Commit()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|