| 
									
										
										
										
											2016-06-03 03:18:56 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2016 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-06-03 03:18:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | import "path" | 
					
						
							| 
									
										
										
										
											2016-06-03 03:18:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Returns if the prefix is a multipart upload.
 | 
					
						
							|  |  |  | func (fs fsObjects) isMultipartUpload(bucket, prefix string) bool { | 
					
						
							|  |  |  | 	_, err := fs.storage.StatFile(bucket, pathJoin(prefix, uploadsJSONFile)) | 
					
						
							|  |  |  | 	return err == nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Checks whether bucket exists.
 | 
					
						
							|  |  |  | func (fs fsObjects) isBucketExist(bucket string) bool { | 
					
						
							|  |  |  | 	// Check whether bucket exists.
 | 
					
						
							|  |  |  | 	_, err := fs.storage.StatVol(bucket) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if err == errVolumeNotFound { | 
					
						
							|  |  |  | 			return false | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		errorIf(err, "Stat failed on bucket "+bucket+".") | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // isUploadIDExists - verify if a given uploadID exists and is valid.
 | 
					
						
							|  |  |  | func (fs fsObjects) isUploadIDExists(bucket, object, uploadID string) bool { | 
					
						
							| 
									
										
										
										
											2016-11-23 05:15:06 +08:00
										 |  |  | 	uploadIDPath := path.Join(bucket, object, uploadID) | 
					
						
							|  |  |  | 	_, err := fs.storage.StatFile(minioMetaMultipartBucket, path.Join(uploadIDPath, fsMetaJSONFile)) | 
					
						
							| 
									
										
										
										
											2016-06-03 03:18:56 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if err == errFileNotFound { | 
					
						
							|  |  |  | 			return false | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-11-23 05:15:06 +08:00
										 |  |  | 		errorIf(err, "Unable to access upload id "+pathJoin(minioMetaMultipartBucket, uploadIDPath)) | 
					
						
							| 
									
										
										
										
											2016-06-03 03:18:56 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // writeUploadJSON - create `uploads.json` or update it with new uploadID.
 | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | func (fs fsObjects) updateUploadJSON(bucket, object string, uCh uploadIDChange) error { | 
					
						
							| 
									
										
										
										
											2016-11-23 05:15:06 +08:00
										 |  |  | 	uploadsPath := path.Join(bucket, object, uploadsJSONFile) | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 	uniqueID := getUUID() | 
					
						
							| 
									
										
										
										
											2016-11-21 06:25:43 +08:00
										 |  |  | 	tmpUploadsPath := uniqueID | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 	uploadsJSON, err := readUploadsJSON(bucket, object, fs.storage) | 
					
						
							|  |  |  | 	if errorCause(err) == errFileNotFound { | 
					
						
							|  |  |  | 		// If file is not found, we assume a default (empty)
 | 
					
						
							|  |  |  | 		// upload info.
 | 
					
						
							|  |  |  | 		uploadsJSON, err = newUploadsV1("fs"), nil | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 	// update the uploadsJSON struct
 | 
					
						
							|  |  |  | 	if !uCh.isRemove { | 
					
						
							|  |  |  | 		// Add the uploadID
 | 
					
						
							|  |  |  | 		uploadsJSON.AddUploadID(uCh.uploadID, uCh.initiated) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// Remove the upload ID
 | 
					
						
							|  |  |  | 		uploadsJSON.RemoveUploadID(uCh.uploadID) | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// update the file or delete it?
 | 
					
						
							|  |  |  | 	if len(uploadsJSON.Uploads) > 0 { | 
					
						
							|  |  |  | 		err = writeUploadJSON(&uploadsJSON, uploadsPath, tmpUploadsPath, fs.storage) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// no uploads, so we delete the file.
 | 
					
						
							| 
									
										
										
										
											2016-11-23 05:15:06 +08:00
										 |  |  | 		if err = fs.storage.DeleteFile(minioMetaMultipartBucket, uploadsPath); err != nil { | 
					
						
							|  |  |  | 			return toObjectErr(traceError(err), minioMetaMultipartBucket, uploadsPath) | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-31 00:27:29 +08:00
										 |  |  | 	return err | 
					
						
							| 
									
										
										
										
											2016-06-29 17:10:40 +08:00
										 |  |  | } |