| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | // Copyright (c) 2015-2022 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/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2023-02-16 14:09:46 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | 	"net/url" | 
					
						
							|  |  |  | 	"strings" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 08:53:08 +08:00
										 |  |  | 	"github.com/minio/madmin-go/v3" | 
					
						
							| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | 	minio "github.com/minio/minio-go/v7" | 
					
						
							|  |  |  | 	"github.com/minio/minio-go/v7/pkg/credentials" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type warmBackendMinIO struct { | 
					
						
							|  |  |  | 	warmBackendS3 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var _ WarmBackend = (*warmBackendMinIO)(nil) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-16 14:09:46 +08:00
										 |  |  | func newWarmBackendMinIO(conf madmin.TierMinIO, tier string) (*warmBackendMinIO, error) { | 
					
						
							| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | 	u, err := url.Parse(conf.Endpoint) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	creds := credentials.NewStaticV4(conf.AccessKey, conf.SecretKey, "") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getRemoteTierTargetInstanceTransportOnce.Do(func() { | 
					
						
							| 
									
										
										
										
											2022-12-13 12:31:21 +08:00
										 |  |  | 		getRemoteTierTargetInstanceTransport = NewHTTPTransportWithTimeout(10 * time.Minute) | 
					
						
							| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | 	}) | 
					
						
							|  |  |  | 	opts := &minio.Options{ | 
					
						
							|  |  |  | 		Creds:     creds, | 
					
						
							|  |  |  | 		Secure:    u.Scheme == "https", | 
					
						
							|  |  |  | 		Transport: getRemoteTierTargetInstanceTransport, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	client, err := minio.New(u.Host, opts) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-02-16 14:09:46 +08:00
										 |  |  | 	client.SetAppInfo(fmt.Sprintf("minio-tier-%s", tier), ReleaseTag) | 
					
						
							| 
									
										
										
										
											2023-02-15 05:19:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	core := &minio.Core{Client: client} | 
					
						
							| 
									
										
										
										
											2022-04-12 04:24:40 +08:00
										 |  |  | 	return &warmBackendMinIO{ | 
					
						
							|  |  |  | 		warmBackendS3{ | 
					
						
							|  |  |  | 			client: client, | 
					
						
							|  |  |  | 			core:   core, | 
					
						
							|  |  |  | 			Bucket: conf.Bucket, | 
					
						
							|  |  |  | 			Prefix: strings.TrimSuffix(conf.Prefix, slashSeparator), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, nil | 
					
						
							|  |  |  | } |