2015-12-10 17:19:38 -05:00
|
|
|
// 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 06:50:23 -04:00
|
|
|
package hugolib
|
|
|
|
|
2014-05-06 11:02:56 -04:00
|
|
|
import (
|
|
|
|
"github.com/spf13/cast"
|
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
|
|
|
)
|
2014-05-06 06:50:23 -04:00
|
|
|
|
2016-03-23 05:10:28 -04:00
|
|
|
// Sitemap configures the sitemap to be generated.
|
2014-05-06 06:50:23 -04:00
|
|
|
type Sitemap struct {
|
|
|
|
ChangeFreq string
|
2014-05-06 11:02:56 -04:00
|
|
|
Priority float64
|
2015-12-10 14:39:06 -05:00
|
|
|
Filename string
|
2014-05-06 06:50:23 -04:00
|
|
|
}
|
|
|
|
|
2014-05-06 11:02:56 -04:00
|
|
|
func parseSitemap(input map[string]interface{}) Sitemap {
|
2015-12-10 14:39:06 -05:00
|
|
|
sitemap := Sitemap{Priority: -1, Filename: "sitemap.xml"}
|
2014-05-06 11:02:56 -04: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 14:39:06 -05:00
|
|
|
case "filename":
|
|
|
|
sitemap.Filename = cast.ToString(value)
|
2014-05-06 11:02:56 -04:00
|
|
|
default:
|
|
|
|
jww.WARN.Printf("Unknown Sitemap field: %s\n", key)
|
|
|
|
}
|
2014-05-06 06:50:23 -04:00
|
|
|
}
|
2014-05-06 11:02:56 -04:00
|
|
|
|
|
|
|
return sitemap
|
2014-05-06 06:50:23 -04:00
|
|
|
}
|