| 
									
										
										
										
											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/>.
 | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2020-05-22 05:12:52 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2019-04-02 03:19:52 +08:00
										 |  |  | 	"regexp" | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2018-03-16 04:03:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	xhttp "github.com/minio/minio/cmd/http" | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/bucket/lifecycle" | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-02 03:19:52 +08:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	etagRegex = regexp.MustCompile("\"*?([^\"]*?)\"*?$") | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:38:34 +08:00
										 |  |  | // Validates the preconditions for CopyObjectPart, returns true if CopyObjectPart
 | 
					
						
							|  |  |  | // operation should not proceed. Preconditions supported are:
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-modified-since
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-unmodified-since
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-match
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-none-match
 | 
					
						
							| 
									
										
										
										
											2020-07-18 04:01:22 +08:00
										 |  |  | func checkCopyObjectPartPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo) bool { | 
					
						
							|  |  |  | 	return checkCopyObjectPreconditions(ctx, w, r, objInfo) | 
					
						
							| 
									
										
										
										
											2017-02-01 01:38:34 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | // Validates the preconditions for CopyObject, returns true if CopyObject operation should not proceed.
 | 
					
						
							|  |  |  | // Preconditions supported are:
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-modified-since
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-unmodified-since
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-match
 | 
					
						
							|  |  |  | //  x-amz-copy-source-if-none-match
 | 
					
						
							| 
									
										
										
										
											2020-07-18 04:01:22 +08:00
										 |  |  | func checkCopyObjectPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo) bool { | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	// Return false for methods other than GET and HEAD.
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	if r.Method != http.MethodPut { | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// If the object doesn't have a modtime (IsZero), or the modtime
 | 
					
						
							|  |  |  | 	// is obviously garbage (Unix time == 0), then ignore modtimes
 | 
					
						
							|  |  |  | 	// and don't process the If-Modified-Since header.
 | 
					
						
							|  |  |  | 	if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Headers to be set of object content is not going to be written to the client.
 | 
					
						
							|  |  |  | 	writeHeaders := func() { | 
					
						
							|  |  |  | 		// set common headers
 | 
					
						
							|  |  |  | 		setCommonHeaders(w) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// set object-related metadata headers
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 		w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat)) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 		if objInfo.ETag != "" { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 			w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""} | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// x-amz-copy-source-if-modified-since: Return the object only if it has been modified
 | 
					
						
							|  |  |  | 	// since the specified time otherwise return 412 (precondition failed).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifModifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfModifiedSince) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	if ifModifiedSinceHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 		if givenTime, err := time.Parse(http.TimeFormat, ifModifiedSinceHeader); err == nil { | 
					
						
							|  |  |  | 			if !ifModifiedSince(objInfo.ModTime, givenTime) { | 
					
						
							|  |  |  | 				// If the object is not modified since the specified time.
 | 
					
						
							|  |  |  | 				writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 				return true | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// x-amz-copy-source-if-unmodified-since : Return the object only if it has not been
 | 
					
						
							|  |  |  | 	// modified since the specified time, otherwise return a 412 (precondition failed).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifUnmodifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfUnmodifiedSince) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	if ifUnmodifiedSinceHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 		if givenTime, err := time.Parse(http.TimeFormat, ifUnmodifiedSinceHeader); err == nil { | 
					
						
							|  |  |  | 			if ifModifiedSince(objInfo.ModTime, givenTime) { | 
					
						
							|  |  |  | 				// If the object is modified since the specified time.
 | 
					
						
							|  |  |  | 				writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 				return true | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// x-amz-copy-source-if-match : Return the object only if its entity tag (ETag) is the
 | 
					
						
							|  |  |  | 	// same as the one specified; otherwise return a 412 (precondition failed).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifMatchETagHeader := r.Header.Get(xhttp.AmzCopySourceIfMatch) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	if ifMatchETagHeader != "" { | 
					
						
							| 
									
										
										
										
											2020-07-18 04:01:22 +08:00
										 |  |  | 		if !isETagEqual(objInfo.ETag, ifMatchETagHeader) { | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 			// If the object ETag does not match with the specified ETag.
 | 
					
						
							|  |  |  | 			writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If-None-Match : Return the object only if its entity tag (ETag) is different from the
 | 
					
						
							|  |  |  | 	// one specified otherwise, return a 304 (not modified).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifNoneMatchETagHeader := r.Header.Get(xhttp.AmzCopySourceIfNoneMatch) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	if ifNoneMatchETagHeader != "" { | 
					
						
							| 
									
										
										
										
											2020-07-18 04:01:22 +08:00
										 |  |  | 		if isETagEqual(objInfo.ETag, ifNoneMatchETagHeader) { | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 			// If the object ETag matches with the specified ETag.
 | 
					
						
							|  |  |  | 			writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Object content should be written to http.ResponseWriter
 | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Validates the preconditions. Returns true if GET/HEAD operation should not proceed.
 | 
					
						
							|  |  |  | // Preconditions supported are:
 | 
					
						
							|  |  |  | //  If-Modified-Since
 | 
					
						
							|  |  |  | //  If-Unmodified-Since
 | 
					
						
							|  |  |  | //  If-Match
 | 
					
						
							|  |  |  | //  If-None-Match
 | 
					
						
							| 
									
										
										
										
											2020-04-21 13:01:59 +08:00
										 |  |  | func checkPreconditions(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo, opts ObjectOptions) bool { | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	// Return false for methods other than GET and HEAD.
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	if r.Method != http.MethodGet && r.Method != http.MethodHead { | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-12 10:24:34 +08:00
										 |  |  | 	// If the object doesn't have a modtime (IsZero), or the modtime
 | 
					
						
							|  |  |  | 	// is obviously garbage (Unix time == 0), then ignore modtimes
 | 
					
						
							|  |  |  | 	// and don't process the If-Modified-Since header.
 | 
					
						
							|  |  |  | 	if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Headers to be set of object content is not going to be written to the client.
 | 
					
						
							|  |  |  | 	writeHeaders := func() { | 
					
						
							|  |  |  | 		// set common headers
 | 
					
						
							|  |  |  | 		setCommonHeaders(w) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// set object-related metadata headers
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 		w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat)) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 		if objInfo.ETag != "" { | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 			w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""} | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-04-21 13:01:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Check if the part number is correct.
 | 
					
						
							| 
									
										
										
										
											2020-06-11 00:22:15 +08:00
										 |  |  | 	if opts.PartNumber > 1 && opts.PartNumber > len(objInfo.Parts) { | 
					
						
							| 
									
										
										
										
											2021-01-23 04:09:24 +08:00
										 |  |  | 		// According to S3 we don't need to set any object information here.
 | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartNumber), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2020-04-21 13:01:59 +08:00
										 |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	// If-Modified-Since : Return the object only if it has been modified since the specified time,
 | 
					
						
							|  |  |  | 	// otherwise return a 304 (not modified).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifModifiedSinceHeader := r.Header.Get(xhttp.IfModifiedSince) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	if ifModifiedSinceHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 		if givenTime, err := time.Parse(http.TimeFormat, ifModifiedSinceHeader); err == nil { | 
					
						
							|  |  |  | 			if !ifModifiedSince(objInfo.ModTime, givenTime) { | 
					
						
							|  |  |  | 				// If the object is not modified since the specified time.
 | 
					
						
							|  |  |  | 				writeHeaders() | 
					
						
							|  |  |  | 				w.WriteHeader(http.StatusNotModified) | 
					
						
							|  |  |  | 				return true | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If-Unmodified-Since : Return the object only if it has not been modified since the specified
 | 
					
						
							|  |  |  | 	// time, otherwise return a 412 (precondition failed).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifUnmodifiedSinceHeader := r.Header.Get(xhttp.IfUnmodifiedSince) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	if ifUnmodifiedSinceHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 		if givenTime, err := time.Parse(http.TimeFormat, ifUnmodifiedSinceHeader); err == nil { | 
					
						
							|  |  |  | 			if ifModifiedSince(objInfo.ModTime, givenTime) { | 
					
						
							|  |  |  | 				// If the object is modified since the specified time.
 | 
					
						
							|  |  |  | 				writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | 				return true | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If-Match : Return the object only if its entity tag (ETag) is the same as the one specified;
 | 
					
						
							|  |  |  | 	// otherwise return a 412 (precondition failed).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifMatchETagHeader := r.Header.Get(xhttp.IfMatch) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	if ifMatchETagHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 		if !isETagEqual(objInfo.ETag, ifMatchETagHeader) { | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 			// If the object ETag does not match with the specified ETag.
 | 
					
						
							|  |  |  | 			writeHeaders() | 
					
						
							| 
									
										
										
										
											2021-04-30 10:01:43 +08:00
										 |  |  | 			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL, guessIsBrowserReq(r)) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If-None-Match : Return the object only if its entity tag (ETag) is different from the
 | 
					
						
							|  |  |  | 	// one specified otherwise, return a 304 (not modified).
 | 
					
						
							| 
									
										
										
										
											2019-07-03 13:34:32 +08:00
										 |  |  | 	ifNoneMatchETagHeader := r.Header.Get(xhttp.IfNoneMatch) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	if ifNoneMatchETagHeader != "" { | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 		if isETagEqual(objInfo.ETag, ifNoneMatchETagHeader) { | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 			// If the object ETag matches with the specified ETag.
 | 
					
						
							|  |  |  | 			writeHeaders() | 
					
						
							|  |  |  | 			w.WriteHeader(http.StatusNotModified) | 
					
						
							|  |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Object content should be written to http.ResponseWriter
 | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // returns true if object was modified after givenTime.
 | 
					
						
							| 
									
										
										
										
											2017-04-13 03:34:57 +08:00
										 |  |  | func ifModifiedSince(objTime time.Time, givenTime time.Time) bool { | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | 	// The Date-Modified header truncates sub-second precision, so
 | 
					
						
							|  |  |  | 	// use mtime < t+1s instead of mtime <= t to check for unmodified.
 | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 	return objTime.After(givenTime.Add(1 * time.Second)) | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // canonicalizeETag returns ETag with leading and trailing double-quotes removed,
 | 
					
						
							|  |  |  | // if any present
 | 
					
						
							|  |  |  | func canonicalizeETag(etag string) string { | 
					
						
							| 
									
										
										
										
											2019-04-02 03:19:52 +08:00
										 |  |  | 	return etagRegex.ReplaceAllString(etag, "$1") | 
					
						
							| 
									
										
										
										
											2016-07-11 08:32:59 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // isETagEqual return true if the canonical representations of two ETag strings
 | 
					
						
							|  |  |  | // are equal, false otherwise
 | 
					
						
							|  |  |  | func isETagEqual(left, right string) bool { | 
					
						
							|  |  |  | 	return canonicalizeETag(left) == canonicalizeETag(right) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-27 14:27:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // setPutObjHeaders sets all the necessary headers returned back
 | 
					
						
							|  |  |  | // upon a success Put/Copy/CompleteMultipart/Delete requests
 | 
					
						
							|  |  |  | // to activate delete only headers set delete as true
 | 
					
						
							|  |  |  | func setPutObjHeaders(w http.ResponseWriter, objInfo ObjectInfo, delete bool) { | 
					
						
							|  |  |  | 	// We must not use the http.Header().Set method here because some (broken)
 | 
					
						
							|  |  |  | 	// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
 | 
					
						
							|  |  |  | 	// Therefore, we have to set the ETag directly as map entry.
 | 
					
						
							|  |  |  | 	if objInfo.ETag != "" && !delete { | 
					
						
							|  |  |  | 		w.Header()[xhttp.ETag] = []string{`"` + objInfo.ETag + `"`} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set the relevant version ID as part of the response header.
 | 
					
						
							|  |  |  | 	if objInfo.VersionID != "" { | 
					
						
							|  |  |  | 		w.Header()[xhttp.AmzVersionID] = []string{objInfo.VersionID} | 
					
						
							|  |  |  | 		// If version is a deleted marker, set this header as well
 | 
					
						
							|  |  |  | 		if objInfo.DeleteMarker && delete { // only returned during delete object
 | 
					
						
							|  |  |  | 			w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(objInfo.DeleteMarker)} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-11 14:00:42 +08:00
										 |  |  | 	if objInfo.Bucket != "" && objInfo.Name != "" { | 
					
						
							| 
									
										
										
										
											2020-10-09 03:32:32 +08:00
										 |  |  | 		if lc, err := globalLifecycleSys.Get(objInfo.Bucket); err == nil && !delete { | 
					
						
							|  |  |  | 			ruleID, expiryTime := lc.PredictExpiryTime(lifecycle.ObjectOpts{ | 
					
						
							|  |  |  | 				Name:         objInfo.Name, | 
					
						
							|  |  |  | 				UserTags:     objInfo.UserTags, | 
					
						
							|  |  |  | 				VersionID:    objInfo.VersionID, | 
					
						
							|  |  |  | 				ModTime:      objInfo.ModTime, | 
					
						
							|  |  |  | 				IsLatest:     objInfo.IsLatest, | 
					
						
							|  |  |  | 				DeleteMarker: objInfo.DeleteMarker, | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 			if !expiryTime.IsZero() { | 
					
						
							|  |  |  | 				w.Header()[xhttp.AmzExpiration] = []string{ | 
					
						
							|  |  |  | 					fmt.Sprintf(`expiry-date="%s", rule-id="%s"`, expiryTime.Format(http.TimeFormat), ruleID), | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-05-22 05:12:52 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |