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"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/service/cloudfront"
|
2023-08-21 09:09:15 -04:00
|
|
|
gcaws "gocloud.dev/aws"
|
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.
|
|
|
|
func InvalidateCloudFront(ctx context.Context, target *Target) error {
|
|
|
|
u, err := url.Parse(target.URL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
sess, _, err := gcaws.NewSessionFromURLParams(u.Query())
|
2019-05-01 16:25:06 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req := &cloudfront.CreateInvalidationInput{
|
2023-07-08 08:00:45 -04:00
|
|
|
DistributionId: aws.String(target.CloudFrontDistributionID),
|
2019-05-01 16:25:06 -04:00
|
|
|
InvalidationBatch: &cloudfront.InvalidationBatch{
|
|
|
|
CallerReference: aws.String(time.Now().Format("20060102150405")),
|
|
|
|
Paths: &cloudfront.Paths{
|
|
|
|
Items: []*string{aws.String("/*")},
|
|
|
|
Quantity: aws.Int64(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
_, err = cloudfront.New(sess).CreateInvalidationWithContext(ctx, req)
|
|
|
|
return err
|
|
|
|
}
|