hugo/hugolib/sitemap.go

29 lines
522 B
Go
Raw Normal View History

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
type Sitemap struct {
ChangeFreq string
2014-05-06 15:02:56 +00:00
Priority float64
2014-05-06 10:50:23 +00:00
}
2014-05-06 15:02:56 +00:00
func parseSitemap(input map[string]interface{}) Sitemap {
sitemap := Sitemap{Priority: -1}
for key, value := range input {
switch key {
case "changefreq":
sitemap.ChangeFreq = cast.ToString(value)
case "priority":
sitemap.Priority = cast.ToFloat64(value)
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
}