hugo/config/sitemap.go

45 lines
1.2 KiB
Go
Raw Normal View History

// 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.
package config
2014-05-06 10:50:23 +00:00
2014-05-06 15:02:56 +00:00
import (
"github.com/spf13/cast"
jww "github.com/spf13/jwalterweatherman"
)
2014-05-06 10:50:23 +00:00
2016-03-23 09:10:28 +00:00
// Sitemap configures the sitemap to be generated.
2014-05-06 10:50:23 +00:00
type Sitemap struct {
ChangeFreq string
2014-05-06 15:02:56 +00:00
Priority float64
2015-12-10 19:39:06 +00:00
Filename string
2014-05-06 10:50:23 +00:00
}
func DecodeSitemap(prototype Sitemap, input map[string]interface{}) Sitemap {
2014-05-06 15:02:56 +00:00
for key, value := range input {
switch key {
case "changefreq":
prototype.ChangeFreq = cast.ToString(value)
2014-05-06 15:02:56 +00:00
case "priority":
prototype.Priority = cast.ToFloat64(value)
2015-12-10 19:39:06 +00:00
case "filename":
prototype.Filename = cast.ToString(value)
2014-05-06 15:02:56 +00:00
default:
jww.WARN.Printf("Unknown Sitemap field: %s\n", key)
}
2014-05-06 10:50:23 +00:00
}
2014-05-06 15:02:56 +00:00
return prototype
2014-05-06 10:50:23 +00:00
}