Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deploy
diff options
context:
space:
mode:
authorRobert van Gent <rvangent@google.com>2019-05-03 23:28:35 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-05-04 10:31:34 +0300
commitf330e869e42dc782a48c045aea5d29a134e225cb (patch)
tree5fea85a381fecee3824b74b7f413f55a1cb11164 /deploy
parentf2b5d4de346b9fb3fbf286eaf511a0f885bccc9c (diff)
deploy: compute MD5 by reading if List didn't provide one
Diffstat (limited to 'deploy')
-rw-r--r--deploy/deploy.go31
1 files changed, 21 insertions, 10 deletions
diff --git a/deploy/deploy.go b/deploy/deploy.go
index 5cc529f7e..6ba348dd8 100644
--- a/deploy/deploy.go
+++ b/deploy/deploy.go
@@ -19,7 +19,6 @@ import (
"context"
"crypto/md5"
"fmt"
- "golang.org/x/text/unicode/norm"
"io"
"mime"
"os"
@@ -33,6 +32,7 @@ import (
"github.com/pkg/errors"
"github.com/spf13/afero"
jww "github.com/spf13/jwalterweatherman"
+ "golang.org/x/text/unicode/norm"
"gocloud.dev/blob"
_ "gocloud.dev/blob/azureblob" // import
@@ -418,6 +418,23 @@ func walkRemote(ctx context.Context, bucket *blob.Bucket) (map[string]*blob.List
if err != nil {
return nil, err
}
+ // If the remote didn't give us an MD5, compute one.
+ // This can happen for some providers (e.g., fileblob, which uses the
+ // local filesystem), but not for the most common Cloud providers
+ // (S3, GCS, Azure). Although, it can happen for S3 if the blob was uploaded
+ // via a multi-part upload.
+ // Although it's unfortunate to have to read the file, it's likely better
+ // than assuming a delta and re-uploading it.
+ if len(obj.MD5) == 0 {
+ r, err := bucket.NewReader(ctx, obj.Key, nil)
+ if err == nil {
+ h := md5.New()
+ if _, err := io.Copy(h, r); err == nil {
+ obj.MD5 = h.Sum(nil)
+ }
+ r.Close()
+ }
+ }
retval[obj.Key] = obj
}
return retval, nil
@@ -494,15 +511,9 @@ func findDiffs(localFiles map[string]*localFile, remoteFiles map[string]*blob.Li
upload = true
reason = reasonSize
} else if len(remoteFile.MD5) == 0 {
- // TODO: This can happen if the remote provider doesn't return an MD5
- // hash for the blob from their "list" command. This is common for
- // some providers (e.g., fileblob, which uses the local filesystem),
- // but not for the biggest Cloud providers (S3, GCS, Azure). Although,
- // it can happen for S3 if the blob was originally uploaded as a
- // multi-part upload (shouldn't happen when using "hugo deploy").
- // For now, we treat this as an MD5 mismatch and re-upload. An
- // alternative would be to read entire the remote blob and compute the
- // MD5 hash.
+ // This shouldn't happen unless the remote didn't give us an MD5 hash
+ // from List, AND we failed to compute one by reading the remote file.
+ // Default to considering the files different.
upload = true
reason = reasonMD5Missing
} else if !bytes.Equal(lf.MD5(), remoteFile.MD5) {