| 
									
										
										
										
											2021-04-19 03:41:13 +08: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 13:59:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package logger | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-14 00:39:13 +08:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"github.com/minio/minio/internal/config" | 
					
						
							|  |  |  | 	"github.com/minio/minio/internal/logger/target/http" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Legacy envs
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2020-04-29 06:20:40 +08:00
										 |  |  | 	legacyEnvAuditLoggerHTTPEndpoint = "MINIO_AUDIT_LOGGER_HTTP_ENDPOINT" | 
					
						
							|  |  |  | 	legacyEnvLoggerHTTPEndpoint      = "MINIO_LOGGER_HTTP_ENDPOINT" | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetLoggerHTTPAudit - helper for migrating older config to newer KV format.
 | 
					
						
							| 
									
										
										
										
											2021-07-14 00:39:13 +08:00
										 |  |  | func SetLoggerHTTPAudit(scfg config.Config, k string, args http.Config) { | 
					
						
							| 
									
										
										
										
											2019-11-14 09:38:05 +08:00
										 |  |  | 	if !args.Enabled { | 
					
						
							|  |  |  | 		// Do not enable audit targets, if not enabled
 | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	scfg[config.AuditWebhookSubSys][k] = config.KVS{ | 
					
						
							| 
									
										
										
										
											2019-11-21 07:10:24 +08:00
										 |  |  | 		config.KV{ | 
					
						
							| 
									
										
										
										
											2019-12-05 07:32:37 +08:00
										 |  |  | 			Key:   config.Enable, | 
					
						
							|  |  |  | 			Value: config.EnableOn, | 
					
						
							| 
									
										
										
										
											2019-11-21 07:10:24 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		config.KV{ | 
					
						
							|  |  |  | 			Key:   Endpoint, | 
					
						
							|  |  |  | 			Value: args.Endpoint, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		config.KV{ | 
					
						
							|  |  |  | 			Key:   AuthToken, | 
					
						
							|  |  |  | 			Value: args.AuthToken, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetLoggerHTTP helper for migrating older config to newer KV format.
 | 
					
						
							| 
									
										
										
										
											2021-07-14 00:39:13 +08:00
										 |  |  | func SetLoggerHTTP(scfg config.Config, k string, args http.Config) { | 
					
						
							| 
									
										
										
										
											2019-11-14 09:38:05 +08:00
										 |  |  | 	if !args.Enabled { | 
					
						
							|  |  |  | 		// Do not enable logger http targets, if not enabled
 | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	scfg[config.LoggerWebhookSubSys][k] = config.KVS{ | 
					
						
							| 
									
										
										
										
											2019-11-21 07:10:24 +08:00
										 |  |  | 		config.KV{ | 
					
						
							| 
									
										
										
										
											2019-12-05 07:32:37 +08:00
										 |  |  | 			Key:   config.Enable, | 
					
						
							|  |  |  | 			Value: config.EnableOn, | 
					
						
							| 
									
										
										
										
											2019-11-21 07:10:24 +08:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		config.KV{ | 
					
						
							|  |  |  | 			Key:   Endpoint, | 
					
						
							|  |  |  | 			Value: args.Endpoint, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		config.KV{ | 
					
						
							|  |  |  | 			Key:   AuthToken, | 
					
						
							|  |  |  | 			Value: args.AuthToken, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2019-10-23 13:59:13 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |