| 
									
										
										
										
											2016-04-22 11:07:47 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2016 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-22 11:07:47 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	xhttp "github.com/minio/minio/cmd/http" | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | // VolInfo - represents volume stat information.
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | type VolInfo struct { | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 	// Name of the volume.
 | 
					
						
							|  |  |  | 	Name string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Date and time when the volume was created.
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 	Created time.Time | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-15 04:49:10 +08:00
										 |  |  | // FilesInfo represent a list of files, additionally
 | 
					
						
							|  |  |  | // indicates if the list is last.
 | 
					
						
							|  |  |  | type FilesInfo struct { | 
					
						
							|  |  |  | 	Files       []FileInfo | 
					
						
							|  |  |  | 	IsTruncated bool | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | // FileInfo - represents file stat information.
 | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | type FileInfo struct { | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 	// Name of the volume.
 | 
					
						
							|  |  |  | 	Volume string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Name of the file.
 | 
					
						
							|  |  |  | 	Name string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Date and time when the file was last modified.
 | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | 	ModTime time.Time | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Total file size.
 | 
					
						
							|  |  |  | 	Size int64 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// File mode bits.
 | 
					
						
							|  |  |  | 	Mode os.FileMode | 
					
						
							| 
									
										
										
										
											2019-05-15 04:49:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// File metadata
 | 
					
						
							|  |  |  | 	Metadata map[string]string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// All the parts per object.
 | 
					
						
							|  |  |  | 	Parts []ObjectPartInfo | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Quorum int | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // ToObjectInfo converts FileInfo into objectInfo.
 | 
					
						
							|  |  |  | func (entry FileInfo) ToObjectInfo() ObjectInfo { | 
					
						
							|  |  |  | 	var objInfo ObjectInfo | 
					
						
							|  |  |  | 	if HasSuffix(entry.Name, SlashSeparator) { | 
					
						
							|  |  |  | 		objInfo = ObjectInfo{ | 
					
						
							|  |  |  | 			Bucket: entry.Volume, | 
					
						
							|  |  |  | 			Name:   entry.Name, | 
					
						
							|  |  |  | 			IsDir:  true, | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		objInfo = ObjectInfo{ | 
					
						
							|  |  |  | 			IsDir:           false, | 
					
						
							|  |  |  | 			Bucket:          entry.Volume, | 
					
						
							|  |  |  | 			Name:            entry.Name, | 
					
						
							|  |  |  | 			ModTime:         entry.ModTime, | 
					
						
							|  |  |  | 			Size:            entry.Size, | 
					
						
							|  |  |  | 			ContentType:     entry.Metadata["content-type"], | 
					
						
							|  |  |  | 			ContentEncoding: entry.Metadata["content-encoding"], | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Extract etag from metadata.
 | 
					
						
							|  |  |  | 		objInfo.ETag = extractETag(entry.Metadata) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// All the parts per object.
 | 
					
						
							|  |  |  | 		objInfo.Parts = entry.Parts | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// etag/md5Sum has already been extracted. We need to
 | 
					
						
							|  |  |  | 		// remove to avoid it from appearing as part of
 | 
					
						
							|  |  |  | 		// response headers. e.g, X-Minio-* or X-Amz-*.
 | 
					
						
							|  |  |  | 		objInfo.UserDefined = cleanMetadata(entry.Metadata) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Update storage class
 | 
					
						
							|  |  |  | 		if sc, ok := entry.Metadata[xhttp.AmzStorageClass]; ok { | 
					
						
							|  |  |  | 			objInfo.StorageClass = sc | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			objInfo.StorageClass = globalMinioDefaultStorageClass | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return objInfo | 
					
						
							|  |  |  | } |