2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
2013-07-04 11:32:55 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2013-07-04 11:32:55 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-04 11:32:55 -04:00
|
|
|
//
|
|
|
|
// 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 hugolib
|
|
|
|
|
|
|
|
import (
|
2016-11-13 08:27:10 -05:00
|
|
|
"fmt"
|
2013-07-04 11:32:55 -04:00
|
|
|
"sort"
|
2014-04-05 01:26:43 -04:00
|
|
|
|
|
|
|
"github.com/spf13/hugo/helpers"
|
2013-07-04 11:32:55 -04:00
|
|
|
)
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// The TaxonomyList is a list of all taxonomies and their values
|
|
|
|
// e.g. List['tags'] => TagTaxonomy (from above)
|
2014-04-08 23:15:57 -04:00
|
|
|
type TaxonomyList map[string]Taxonomy
|
2013-12-20 09:10:05 -05:00
|
|
|
|
2016-11-13 08:27:10 -05:00
|
|
|
func (tl TaxonomyList) String() string {
|
|
|
|
return fmt.Sprintf("TaxonomyList(%d)", len(tl))
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// A Taxonomy is a map of keywords to a list of pages.
|
|
|
|
// For example
|
|
|
|
// TagTaxonomy['technology'] = WeightedPages
|
|
|
|
// TagTaxonomy['go'] = WeightedPages2
|
2014-04-08 23:15:57 -04:00
|
|
|
type Taxonomy map[string]WeightedPages
|
2013-12-20 09:10:05 -05:00
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// WeightedPages is a list of Pages with their corresponding (and relative) weight
|
|
|
|
// [{Weight: 30, Page: *1}, {Weight: 40, Page: *2}]
|
2013-12-20 09:10:05 -05:00
|
|
|
type WeightedPages []WeightedPage
|
2016-03-24 11:01:25 -04:00
|
|
|
|
|
|
|
// A WeightedPage is a Page with a weight.
|
2013-12-20 09:10:05 -05:00
|
|
|
type WeightedPage struct {
|
2013-10-17 23:57:25 -04:00
|
|
|
Weight int
|
|
|
|
Page *Page
|
|
|
|
}
|
|
|
|
|
2016-11-13 08:27:10 -05:00
|
|
|
func (w WeightedPage) String() string {
|
|
|
|
return fmt.Sprintf("WeightedPage(%d,%q)", w.Weight, w.Page.Title)
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// OrderedTaxonomy is another representation of an Taxonomy using an array rather than a map.
|
|
|
|
// Important because you can't order a map.
|
2014-04-08 23:15:57 -04:00
|
|
|
type OrderedTaxonomy []OrderedTaxonomyEntry
|
2013-11-24 16:10:20 -05:00
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// OrderedTaxonomyEntry is similar to an element of a Taxonomy, but with the key embedded (as name)
|
|
|
|
// e.g: {Name: Technology, WeightedPages: Taxonomyedpages}
|
2014-04-08 23:15:57 -04:00
|
|
|
type OrderedTaxonomyEntry struct {
|
2013-12-20 09:10:05 -05:00
|
|
|
Name string
|
|
|
|
WeightedPages WeightedPages
|
2013-11-24 16:10:20 -05:00
|
|
|
}
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
// KeyPrep... Taxonomies should be case insensitive. Can make it easily conditional later.
|
2013-07-04 11:32:55 -04:00
|
|
|
func kp(in string) string {
|
2016-10-24 07:45:30 -04:00
|
|
|
return helpers.CurrentPathSpec().MakePathSanitized(in)
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Get the weighted pages for the given key.
|
2016-03-03 16:01:09 -05:00
|
|
|
func (i Taxonomy) Get(key string) WeightedPages {
|
|
|
|
if val, ok := i[key]; ok {
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
return i[kp(key)]
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Count the weighted pages for the given key.
|
2016-03-03 16:01:09 -05:00
|
|
|
func (i Taxonomy) Count(key string) int { return len(i[kp(key)]) }
|
2016-03-24 11:01:25 -04:00
|
|
|
|
|
|
|
func (i Taxonomy) add(key string, w WeightedPage, pretty bool) {
|
2015-05-31 14:30:53 -04:00
|
|
|
if !pretty {
|
|
|
|
key = kp(key)
|
|
|
|
}
|
2013-10-17 23:57:25 -04:00
|
|
|
i[key] = append(i[key], w)
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// TaxonomyArray returns an ordered taxonomy with a non defined order.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (i Taxonomy) TaxonomyArray() OrderedTaxonomy {
|
|
|
|
ies := make([]OrderedTaxonomyEntry, len(i))
|
2013-10-25 18:40:55 -04:00
|
|
|
count := 0
|
|
|
|
for k, v := range i {
|
2014-04-08 23:15:57 -04:00
|
|
|
ies[count] = OrderedTaxonomyEntry{Name: k, WeightedPages: v}
|
2013-10-25 18:40:55 -04:00
|
|
|
count++
|
|
|
|
}
|
|
|
|
return ies
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Alphabetical returns an ordered taxonomy sorted by key name.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (i Taxonomy) Alphabetical() OrderedTaxonomy {
|
|
|
|
name := func(i1, i2 *OrderedTaxonomyEntry) bool {
|
2013-10-25 18:40:55 -04:00
|
|
|
return i1.Name < i2.Name
|
|
|
|
}
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
ia := i.TaxonomyArray()
|
2016-03-24 11:01:25 -04:00
|
|
|
oiBy(name).Sort(ia)
|
2013-10-25 18:40:55 -04:00
|
|
|
return ia
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// ByCount returns an ordered taxonomy sorted by # of pages per key.
|
2016-04-01 14:17:16 -04:00
|
|
|
// If taxonomies have the same # of pages, sort them alphabetical
|
2014-04-08 23:15:57 -04:00
|
|
|
func (i Taxonomy) ByCount() OrderedTaxonomy {
|
|
|
|
count := func(i1, i2 *OrderedTaxonomyEntry) bool {
|
2016-04-01 14:17:16 -04:00
|
|
|
li1 := len(i1.WeightedPages)
|
|
|
|
li2 := len(i2.WeightedPages)
|
|
|
|
|
|
|
|
if li1 == li2 {
|
|
|
|
return i1.Name < i2.Name
|
|
|
|
}
|
|
|
|
return li1 > li2
|
2013-10-25 18:40:55 -04:00
|
|
|
}
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
ia := i.TaxonomyArray()
|
2016-03-24 11:01:25 -04:00
|
|
|
oiBy(count).Sort(ia)
|
2013-10-25 18:40:55 -04:00
|
|
|
return ia
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Pages returns the Pages for this taxonomy.
|
2014-08-29 23:43:38 -04:00
|
|
|
func (ie OrderedTaxonomyEntry) Pages() Pages {
|
2013-10-31 09:49:29 -04:00
|
|
|
return ie.WeightedPages.Pages()
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Count returns the count the pages in this taxonomy.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (ie OrderedTaxonomyEntry) Count() int {
|
2013-10-31 09:49:29 -04:00
|
|
|
return len(ie.WeightedPages)
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Term returns the name given to this taxonomy.
|
2014-08-29 23:44:39 -04:00
|
|
|
func (ie OrderedTaxonomyEntry) Term() string {
|
|
|
|
return ie.Name
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Reverse reverses the order of the entries in this taxonomy.
|
2015-05-09 18:21:30 -04:00
|
|
|
func (t OrderedTaxonomy) Reverse() OrderedTaxonomy {
|
|
|
|
for i, j := 0, len(t)-1; i < j; i, j = i+1, j-1 {
|
|
|
|
t[i], t[j] = t[j], t[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2014-04-08 23:15:57 -04:00
|
|
|
// A type to implement the sort interface for TaxonomyEntries.
|
|
|
|
type orderedTaxonomySorter struct {
|
|
|
|
taxonomy OrderedTaxonomy
|
2016-03-24 11:01:25 -04:00
|
|
|
by oiBy
|
2013-12-20 09:10:05 -05:00
|
|
|
}
|
2013-10-25 18:40:55 -04:00
|
|
|
|
2013-12-20 09:10:05 -05:00
|
|
|
// Closure used in the Sort.Less method.
|
2016-03-24 11:01:25 -04:00
|
|
|
type oiBy func(i1, i2 *OrderedTaxonomyEntry) bool
|
2013-12-20 09:10:05 -05:00
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
func (by oiBy) Sort(taxonomy OrderedTaxonomy) {
|
2014-04-08 23:15:57 -04:00
|
|
|
ps := &orderedTaxonomySorter{
|
|
|
|
taxonomy: taxonomy,
|
|
|
|
by: by, // The Sort method's receiver is the function (closure) that defines the sort order.
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|
2014-09-09 05:59:47 -04:00
|
|
|
sort.Stable(ps)
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|
|
|
|
|
2013-10-25 18:40:55 -04:00
|
|
|
// Len is part of sort.Interface.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (s *orderedTaxonomySorter) Len() int {
|
|
|
|
return len(s.taxonomy)
|
2013-10-25 18:40:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Swap is part of sort.Interface.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (s *orderedTaxonomySorter) Swap(i, j int) {
|
|
|
|
s.taxonomy[i], s.taxonomy[j] = s.taxonomy[j], s.taxonomy[i]
|
2013-10-25 18:40:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
|
2014-04-08 23:15:57 -04:00
|
|
|
func (s *orderedTaxonomySorter) Less(i, j int) bool {
|
|
|
|
return s.by(&s.taxonomy[i], &s.taxonomy[j])
|
2013-12-20 09:10:05 -05:00
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Pages returns the Pages in this weighted page set.
|
2013-12-20 09:10:05 -05:00
|
|
|
func (wp WeightedPages) Pages() Pages {
|
|
|
|
pages := make(Pages, len(wp))
|
|
|
|
for i := range wp {
|
|
|
|
pages[i] = wp[i].Page
|
|
|
|
}
|
|
|
|
return pages
|
2013-10-25 18:40:55 -04:00
|
|
|
}
|
2013-11-24 16:10:20 -05:00
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Prev returns the previous Page relative to the given Page in
|
|
|
|
// this weighted page set.
|
2014-11-27 23:08:06 -05:00
|
|
|
func (wp WeightedPages) Prev(cur *Page) *Page {
|
|
|
|
for x, c := range wp {
|
2015-03-11 13:34:57 -04:00
|
|
|
if c.Page.UniqueID() == cur.UniqueID() {
|
2014-11-27 23:08:06 -05:00
|
|
|
if x == 0 {
|
|
|
|
return wp[len(wp)-1].Page
|
|
|
|
}
|
|
|
|
return wp[x-1].Page
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-24 11:01:25 -04:00
|
|
|
// Next returns the next Page relative to the given Page in
|
|
|
|
// this weighted page set.
|
2014-11-27 23:08:06 -05:00
|
|
|
func (wp WeightedPages) Next(cur *Page) *Page {
|
|
|
|
for x, c := range wp {
|
2015-03-11 13:34:57 -04:00
|
|
|
if c.Page.UniqueID() == cur.UniqueID() {
|
2014-11-27 23:08:06 -05:00
|
|
|
if x < len(wp)-1 {
|
|
|
|
return wp[x+1].Page
|
|
|
|
}
|
|
|
|
return wp[0].Page
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-07 06:53:20 -05:00
|
|
|
func (wp WeightedPages) Len() int { return len(wp) }
|
|
|
|
func (wp WeightedPages) Swap(i, j int) { wp[i], wp[j] = wp[j], wp[i] }
|
2016-03-24 11:01:25 -04:00
|
|
|
|
|
|
|
// Sort stable sorts this weighted page set.
|
|
|
|
func (wp WeightedPages) Sort() { sort.Stable(wp) }
|
|
|
|
|
|
|
|
// Count returns the number of pages in this weighted page set.
|
|
|
|
func (wp WeightedPages) Count() int { return len(wp) }
|
|
|
|
|
2015-03-07 06:53:20 -05:00
|
|
|
func (wp WeightedPages) Less(i, j int) bool {
|
|
|
|
if wp[i].Weight == wp[j].Weight {
|
|
|
|
if wp[i].Page.Date.Equal(wp[j].Page.Date) {
|
|
|
|
return wp[i].Page.Title < wp[j].Page.Title
|
2014-09-10 15:33:49 -04:00
|
|
|
}
|
2015-03-07 06:53:20 -05:00
|
|
|
return wp[i].Page.Date.After(wp[i].Page.Date)
|
2013-12-20 09:10:05 -05:00
|
|
|
}
|
2015-03-07 06:53:20 -05:00
|
|
|
return wp[i].Weight < wp[j].Weight
|
2013-11-24 16:10:20 -05:00
|
|
|
}
|
|
|
|
|
2013-12-20 09:10:05 -05:00
|
|
|
// TODO mimic PagesSorter for WeightedPages
|