hugo/hugolib/sitemap.go

46 lines
1.3 KiB
Go
Raw Normal View History

// Copyright 2015 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.
2014-05-06 10:50:23 +00:00
package hugolib
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
}
2014-05-06 15:02:56 +00:00
func parseSitemap(input map[string]interface{}) Sitemap {
2015-12-10 19:39:06 +00:00
sitemap := Sitemap{Priority: -1, Filename: "sitemap.xml"}
2014-05-06 15:02:56 +00:00
for key, value := range input {
switch key {
case "changefreq":
sitemap.ChangeFreq = cast.ToString(value)
case "priority":
sitemap.Priority = cast.ToFloat64(value)
2015-12-10 19:39:06 +00:00
case "filename":
sitemap.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 sitemap
2014-05-06 10:50:23 +00:00
}