1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 13:25:13 -04:00
v2fly/common/log/access.go

50 lines
1.1 KiB
Go
Raw Normal View History

2015-10-09 11:43:27 -04:00
package log
2016-01-18 06:31:27 -05:00
import (
"github.com/v2ray/v2ray-core/common/serial"
)
2015-10-11 08:46:12 -04:00
// AccessStatus is the status of an access request from clients.
2015-10-09 11:43:27 -04:00
type AccessStatus string
const (
AccessAccepted = AccessStatus("accepted")
AccessRejected = AccessStatus("rejected")
)
2015-12-05 15:10:14 -05:00
var (
accessLoggerInstance logWriter = &noOpLogWriter{}
)
2015-10-09 11:43:27 -04:00
type accessLog struct {
2016-01-18 06:31:27 -05:00
From serial.String
To serial.String
2015-10-09 11:43:27 -04:00
Status AccessStatus
2016-01-18 06:31:27 -05:00
Reason serial.String
2015-10-09 11:43:27 -04:00
}
2015-12-05 15:10:14 -05:00
func (this *accessLog) String() string {
2016-01-18 06:31:27 -05:00
return this.From.String() + " " + string(this.Status) + " " + this.To.String() + " " + this.Reason.String()
2015-10-09 11:43:27 -04:00
}
2015-10-11 08:46:12 -04:00
// InitAccessLogger initializes the access logger to write into the give file.
2015-12-05 15:10:14 -05:00
func InitAccessLogger(file string) error {
logger, err := newFileLogWriter(file)
if err != nil {
2016-01-18 06:24:33 -05:00
Error("Failed to create access logger on file (", file, "): ", file, err)
2015-12-05 15:10:14 -05:00
return err
2015-10-09 11:43:27 -04:00
}
2015-12-05 15:10:14 -05:00
accessLoggerInstance = logger
return nil
2015-10-09 11:43:27 -04:00
}
2015-10-11 08:46:12 -04:00
// Access writes an access log.
2016-01-18 06:31:27 -05:00
func Access(from, to serial.String, status AccessStatus, reason serial.String) {
2015-12-05 15:10:14 -05:00
accessLoggerInstance.Log(&accessLog{
From: from,
To: to,
Status: status,
Reason: reason,
})
2015-10-09 11:43:27 -04:00
}