2019-05-01 16:25:06 -04:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
//go:build !nodeploy
|
2020-10-23 03:03:41 -04:00
|
|
|
// +build !nodeploy
|
|
|
|
|
2019-05-01 16:25:06 -04:00
|
|
|
package deploy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-07-08 08:00:45 -04:00
|
|
|
"net/url"
|
2019-05-01 16:25:06 -04:00
|
|
|
"time"
|
|
|
|
|
2022-04-28 13:43:30 -04:00
|
|
|
"github.com/aws/aws-sdk-go-v2/aws"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/cloudfront"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/cloudfront/types"
|
2024-02-07 12:24:02 -05:00
|
|
|
"github.com/gohugoio/hugo/deploy/deployconfig"
|
2023-08-21 09:09:15 -04:00
|
|
|
gcaws "gocloud.dev/aws"
|
2019-05-01 16:25:06 -04:00
|
|
|
)
|
|
|
|
|
2024-01-31 15:41:04 -05:00
|
|
|
// V2ConfigFromURLParams will fail for any unknown params, so we need to remove them.
|
|
|
|
// This is a mysterious API, but inspecting the code the known params are:
|
|
|
|
var v2ConfigValidParams = map[string]bool{
|
|
|
|
"endpoint": true,
|
|
|
|
"region": true,
|
|
|
|
"profile": true,
|
|
|
|
"awssdk": true,
|
|
|
|
}
|
|
|
|
|
2019-05-01 16:25:06 -04:00
|
|
|
// InvalidateCloudFront invalidates the CloudFront cache for distributionID.
|
2023-07-08 08:00:45 -04:00
|
|
|
// Uses AWS credentials config from the bucket URL.
|
2024-02-07 12:24:02 -05:00
|
|
|
func InvalidateCloudFront(ctx context.Context, target *deployconfig.Target) error {
|
2023-07-08 08:00:45 -04:00
|
|
|
u, err := url.Parse(target.URL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-01-31 15:41:04 -05:00
|
|
|
vals := u.Query()
|
|
|
|
|
|
|
|
// Remove any unknown params.
|
|
|
|
for k := range vals {
|
|
|
|
if !v2ConfigValidParams[k] {
|
|
|
|
vals.Del(k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg, err := gcaws.V2ConfigFromURLParams(ctx, vals)
|
2019-05-01 16:25:06 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-04-28 13:43:30 -04:00
|
|
|
cf := cloudfront.NewFromConfig(cfg)
|
2019-05-01 16:25:06 -04:00
|
|
|
req := &cloudfront.CreateInvalidationInput{
|
2023-07-08 08:00:45 -04:00
|
|
|
DistributionId: aws.String(target.CloudFrontDistributionID),
|
2022-04-28 13:43:30 -04:00
|
|
|
InvalidationBatch: &types.InvalidationBatch{
|
2019-05-01 16:25:06 -04:00
|
|
|
CallerReference: aws.String(time.Now().Format("20060102150405")),
|
2022-04-28 13:43:30 -04:00
|
|
|
Paths: &types.Paths{
|
|
|
|
Items: []string{"/*"},
|
|
|
|
Quantity: aws.Int32(1),
|
2019-05-01 16:25:06 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2022-04-28 13:43:30 -04:00
|
|
|
_, err = cf.CreateInvalidation(ctx, req)
|
2019-05-01 16:25:06 -04:00
|
|
|
return err
|
|
|
|
}
|