You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.8 KiB
84 lines
2.8 KiB
/*
|
|
* MinIO Cloud Storage, (C) 2018 MinIO, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package audit
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
xhttp "github.com/minio/minio/cmd/http"
|
|
"github.com/minio/minio/pkg/handlers"
|
|
)
|
|
|
|
// Version - represents the current version of audit log structure.
|
|
const Version = "1"
|
|
|
|
// Entry - audit entry logs.
|
|
type Entry struct {
|
|
Version string `json:"version"`
|
|
DeploymentID string `json:"deploymentid,omitempty"`
|
|
Time string `json:"time"`
|
|
API struct {
|
|
Name string `json:"name,omitempty"`
|
|
Bucket string `json:"bucket,omitempty"`
|
|
Object string `json:"object,omitempty"`
|
|
Status string `json:"status,omitempty"`
|
|
StatusCode int `json:"statusCode,omitempty"`
|
|
TimeToFirstByte string `json:"timeToFirstByte,omitempty"`
|
|
TimeToResponse string `json:"timeToResponse,omitempty"`
|
|
} `json:"api"`
|
|
RemoteHost string `json:"remotehost,omitempty"`
|
|
RequestID string `json:"requestID,omitempty"`
|
|
UserAgent string `json:"userAgent,omitempty"`
|
|
ReqClaims map[string]interface{} `json:"requestClaims,omitempty"`
|
|
ReqQuery map[string]string `json:"requestQuery,omitempty"`
|
|
ReqHeader map[string]string `json:"requestHeader,omitempty"`
|
|
RespHeader map[string]string `json:"responseHeader,omitempty"`
|
|
}
|
|
|
|
// ToEntry - constructs an audit entry object.
|
|
func ToEntry(w http.ResponseWriter, r *http.Request, reqClaims map[string]interface{}, deploymentID string) Entry {
|
|
reqQuery := make(map[string]string)
|
|
for k, v := range r.URL.Query() {
|
|
reqQuery[k] = strings.Join(v, ",")
|
|
}
|
|
reqHeader := make(map[string]string)
|
|
for k, v := range r.Header {
|
|
reqHeader[k] = strings.Join(v, ",")
|
|
}
|
|
respHeader := make(map[string]string)
|
|
for k, v := range w.Header() {
|
|
respHeader[k] = strings.Join(v, ",")
|
|
}
|
|
respHeader[xhttp.ETag] = strings.Trim(respHeader[xhttp.ETag], `"`)
|
|
|
|
entry := Entry{
|
|
Version: Version,
|
|
DeploymentID: deploymentID,
|
|
RemoteHost: handlers.GetSourceIP(r),
|
|
RequestID: w.Header().Get(xhttp.AmzRequestID),
|
|
UserAgent: r.UserAgent(),
|
|
Time: time.Now().UTC().Format(time.RFC3339Nano),
|
|
ReqQuery: reqQuery,
|
|
ReqHeader: reqHeader,
|
|
ReqClaims: reqClaims,
|
|
RespHeader: respHeader,
|
|
}
|
|
|
|
return entry
|
|
}
|
|
|