2018-12-20 14:22:03 -05: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.
|
|
|
|
|
2020-10-23 03:03:41 -04:00
|
|
|
// +build !nodeploy
|
|
|
|
|
2018-12-20 14:22:03 -05:00
|
|
|
package deploy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
|
2020-02-27 01:26:05 -05:00
|
|
|
"github.com/gobwas/glob"
|
2018-12-20 14:22:03 -05:00
|
|
|
"github.com/gohugoio/hugo/config"
|
2020-02-27 01:26:05 -05:00
|
|
|
hglob "github.com/gohugoio/hugo/hugofs/glob"
|
2020-08-03 13:06:18 -04:00
|
|
|
"github.com/gohugoio/hugo/media"
|
2018-12-20 14:22:03 -05:00
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
)
|
|
|
|
|
|
|
|
const deploymentConfigKey = "deployment"
|
|
|
|
|
|
|
|
// deployConfig is the complete configuration for deployment.
|
|
|
|
type deployConfig struct {
|
|
|
|
Targets []*target
|
|
|
|
Matchers []*matcher
|
2019-05-03 12:30:46 -04:00
|
|
|
Order []string
|
|
|
|
|
2020-08-03 13:06:18 -04:00
|
|
|
ordering []*regexp.Regexp // compiled Order
|
|
|
|
mediaTypes media.Types
|
2018-12-20 14:22:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type target struct {
|
|
|
|
Name string
|
|
|
|
URL string
|
2019-05-01 16:25:06 -04:00
|
|
|
|
|
|
|
CloudFrontDistributionID string
|
2019-10-03 08:46:27 -04:00
|
|
|
|
|
|
|
// GoogleCloudCDNOrigin specifies the Google Cloud project and CDN origin to
|
|
|
|
// invalidate when deploying this target. It is specified as <project>/<origin>.
|
|
|
|
GoogleCloudCDNOrigin string
|
2020-02-27 01:26:05 -05:00
|
|
|
|
|
|
|
// Optional patterns of files to include/exclude for this target.
|
|
|
|
// Parsed using github.com/gobwas/glob.
|
|
|
|
Include string
|
|
|
|
Exclude string
|
|
|
|
|
|
|
|
// Parsed versions of Include/Exclude.
|
|
|
|
includeGlob glob.Glob
|
|
|
|
excludeGlob glob.Glob
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tgt *target) parseIncludeExclude() error {
|
|
|
|
var err error
|
|
|
|
if tgt.Include != "" {
|
|
|
|
tgt.includeGlob, err = hglob.GetGlob(tgt.Include)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid deployment.target.include %q: %v", tgt.Include, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if tgt.Exclude != "" {
|
|
|
|
tgt.excludeGlob, err = hglob.GetGlob(tgt.Exclude)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid deployment.target.exclude %q: %v", tgt.Exclude, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2018-12-20 14:22:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// matcher represents configuration to be applied to files whose paths match
|
|
|
|
// a specified pattern.
|
|
|
|
type matcher struct {
|
|
|
|
// Pattern is the string pattern to match against paths.
|
2019-05-03 19:38:05 -04:00
|
|
|
// Matching is done against paths converted to use / as the path separator.
|
2018-12-20 14:22:03 -05:00
|
|
|
Pattern string
|
|
|
|
|
|
|
|
// CacheControl specifies caching attributes to use when serving the blob.
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
|
2019-05-31 12:55:48 -04:00
|
|
|
CacheControl string
|
2018-12-20 14:22:03 -05:00
|
|
|
|
|
|
|
// ContentEncoding specifies the encoding used for the blob's content, if any.
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding
|
2019-05-31 12:55:48 -04:00
|
|
|
ContentEncoding string
|
2018-12-20 14:22:03 -05:00
|
|
|
|
|
|
|
// ContentType specifies the MIME type of the blob being written.
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type
|
2019-05-31 12:55:48 -04:00
|
|
|
ContentType string
|
2018-12-20 14:22:03 -05:00
|
|
|
|
|
|
|
// Gzip determines whether the file should be gzipped before upload.
|
|
|
|
// If so, the ContentEncoding field will automatically be set to "gzip".
|
|
|
|
Gzip bool
|
|
|
|
|
|
|
|
// Force indicates that matching files should be re-uploaded. Useful when
|
|
|
|
// other route-determined metadata (e.g., ContentType) has changed.
|
|
|
|
Force bool
|
|
|
|
|
|
|
|
// re is Pattern compiled.
|
|
|
|
re *regexp.Regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *matcher) Matches(path string) bool {
|
|
|
|
return m.re.MatchString(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode creates a config from a given Hugo configuration.
|
|
|
|
func decodeConfig(cfg config.Provider) (deployConfig, error) {
|
2020-08-03 13:06:18 -04:00
|
|
|
var (
|
|
|
|
mediaTypesConfig []map[string]interface{}
|
|
|
|
dcfg deployConfig
|
|
|
|
)
|
|
|
|
|
2018-12-20 14:22:03 -05:00
|
|
|
if !cfg.IsSet(deploymentConfigKey) {
|
|
|
|
return dcfg, nil
|
|
|
|
}
|
|
|
|
if err := mapstructure.WeakDecode(cfg.GetStringMap(deploymentConfigKey), &dcfg); err != nil {
|
|
|
|
return dcfg, err
|
|
|
|
}
|
2020-02-27 01:26:05 -05:00
|
|
|
for _, tgt := range dcfg.Targets {
|
|
|
|
if err := tgt.parseIncludeExclude(); err != nil {
|
|
|
|
return dcfg, err
|
|
|
|
}
|
|
|
|
}
|
2018-12-20 14:22:03 -05:00
|
|
|
var err error
|
|
|
|
for _, m := range dcfg.Matchers {
|
|
|
|
m.re, err = regexp.Compile(m.Pattern)
|
|
|
|
if err != nil {
|
|
|
|
return dcfg, fmt.Errorf("invalid deployment.matchers.pattern: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 12:30:46 -04:00
|
|
|
for _, o := range dcfg.Order {
|
|
|
|
re, err := regexp.Compile(o)
|
|
|
|
if err != nil {
|
|
|
|
return dcfg, fmt.Errorf("invalid deployment.orderings.pattern: %v", err)
|
|
|
|
}
|
|
|
|
dcfg.ordering = append(dcfg.ordering, re)
|
|
|
|
}
|
2020-08-03 13:06:18 -04:00
|
|
|
|
|
|
|
if cfg.IsSet("mediaTypes") {
|
|
|
|
mediaTypesConfig = append(mediaTypesConfig, cfg.GetStringMap("mediaTypes"))
|
|
|
|
}
|
|
|
|
|
|
|
|
dcfg.mediaTypes, err = media.DecodeTypes(mediaTypesConfig...)
|
|
|
|
if err != nil {
|
|
|
|
return dcfg, err
|
|
|
|
}
|
2018-12-20 14:22:03 -05:00
|
|
|
return dcfg, nil
|
|
|
|
}
|