2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-10-23 01:59:13 -04:00
|
|
|
|
|
|
|
package logger
|
|
|
|
|
2021-07-13 12:39:13 -04:00
|
|
|
import (
|
|
|
|
"github.com/minio/minio/internal/config"
|
|
|
|
"github.com/minio/minio/internal/logger/target/http"
|
|
|
|
)
|
2019-10-23 01:59:13 -04:00
|
|
|
|
|
|
|
// Legacy envs
|
|
|
|
const (
|
2020-04-28 18:20:40 -04:00
|
|
|
legacyEnvAuditLoggerHTTPEndpoint = "MINIO_AUDIT_LOGGER_HTTP_ENDPOINT"
|
|
|
|
legacyEnvLoggerHTTPEndpoint = "MINIO_LOGGER_HTTP_ENDPOINT"
|
2019-10-23 01:59:13 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// SetLoggerHTTPAudit - helper for migrating older config to newer KV format.
|
2021-07-13 12:39:13 -04:00
|
|
|
func SetLoggerHTTPAudit(scfg config.Config, k string, args http.Config) {
|
2019-11-13 20:38:05 -05:00
|
|
|
if !args.Enabled {
|
|
|
|
// Do not enable audit targets, if not enabled
|
|
|
|
return
|
|
|
|
}
|
|
|
|
scfg[config.AuditWebhookSubSys][k] = config.KVS{
|
2019-11-20 18:10:24 -05:00
|
|
|
config.KV{
|
2019-12-04 18:32:37 -05:00
|
|
|
Key: config.Enable,
|
|
|
|
Value: config.EnableOn,
|
2019-11-20 18:10:24 -05:00
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: Endpoint,
|
2023-08-03 05:47:07 -04:00
|
|
|
Value: args.Endpoint.String(),
|
2019-11-20 18:10:24 -05:00
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: AuthToken,
|
|
|
|
Value: args.AuthToken,
|
|
|
|
},
|
2019-10-23 01:59:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetLoggerHTTP helper for migrating older config to newer KV format.
|
2021-07-13 12:39:13 -04:00
|
|
|
func SetLoggerHTTP(scfg config.Config, k string, args http.Config) {
|
2019-11-13 20:38:05 -05:00
|
|
|
if !args.Enabled {
|
|
|
|
// Do not enable logger http targets, if not enabled
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
scfg[config.LoggerWebhookSubSys][k] = config.KVS{
|
2019-11-20 18:10:24 -05:00
|
|
|
config.KV{
|
2019-12-04 18:32:37 -05:00
|
|
|
Key: config.Enable,
|
|
|
|
Value: config.EnableOn,
|
2019-11-20 18:10:24 -05:00
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: Endpoint,
|
2023-08-03 05:47:07 -04:00
|
|
|
Value: args.Endpoint.String(),
|
2019-11-20 18:10:24 -05:00
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: AuthToken,
|
|
|
|
Value: args.AuthToken,
|
|
|
|
},
|
2019-10-23 01:59:13 -04:00
|
|
|
}
|
|
|
|
}
|