2019-01-02 06:33:26 -05:00
|
|
|
// 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 page
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
"os"
|
2021-03-30 01:55:24 -04:00
|
|
|
"path"
|
2019-01-02 06:33:26 -05:00
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2019-11-10 00:58:38 -05:00
|
|
|
"time"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PermalinkExpander holds permalin mappings per section.
|
|
|
|
type PermalinkExpander struct {
|
|
|
|
// knownPermalinkAttributes maps :tags in a permalink specification to a
|
|
|
|
// function which, given a page and the tag, returns the resulting string
|
|
|
|
// to be used to replace that tag.
|
|
|
|
knownPermalinkAttributes map[string]pageToPermaAttribute
|
|
|
|
|
|
|
|
expanders map[string]func(Page) (string, error)
|
|
|
|
|
|
|
|
ps *helpers.PathSpec
|
|
|
|
}
|
|
|
|
|
2019-11-10 00:58:38 -05:00
|
|
|
// Time for checking date formats. Every field is different than the
|
|
|
|
// Go reference time for date formatting. This ensures that formatting this date
|
|
|
|
// with a Go time format always has a different output than the format itself.
|
|
|
|
var referenceTime = time.Date(2019, time.November, 9, 23, 1, 42, 1, time.UTC)
|
|
|
|
|
|
|
|
// Return the callback for the given permalink attribute and a boolean indicating if the attribute is valid or not.
|
|
|
|
func (p PermalinkExpander) callback(attr string) (pageToPermaAttribute, bool) {
|
|
|
|
if callback, ok := p.knownPermalinkAttributes[attr]; ok {
|
|
|
|
return callback, true
|
|
|
|
}
|
|
|
|
|
|
|
|
if referenceTime.Format(attr) != attr {
|
|
|
|
return p.pageToPermalinkDate, true
|
|
|
|
}
|
|
|
|
|
2021-03-30 01:55:24 -04:00
|
|
|
if strings.HasPrefix(attr, "sections[") {
|
|
|
|
fn := p.toSliceFunc(strings.TrimPrefix(attr, "sections"))
|
|
|
|
return func(p Page, s string) (string, error) {
|
|
|
|
return path.Join(fn(p.CurrentSection().SectionsEntries())...), nil
|
|
|
|
}, true
|
|
|
|
}
|
|
|
|
|
2019-11-10 00:58:38 -05:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
// NewPermalinkExpander creates a new PermalinkExpander configured by the given
|
|
|
|
// PathSpec.
|
|
|
|
func NewPermalinkExpander(ps *helpers.PathSpec) (PermalinkExpander, error) {
|
|
|
|
p := PermalinkExpander{ps: ps}
|
|
|
|
|
|
|
|
p.knownPermalinkAttributes = map[string]pageToPermaAttribute{
|
|
|
|
"year": p.pageToPermalinkDate,
|
|
|
|
"month": p.pageToPermalinkDate,
|
|
|
|
"monthname": p.pageToPermalinkDate,
|
|
|
|
"day": p.pageToPermalinkDate,
|
|
|
|
"weekday": p.pageToPermalinkDate,
|
|
|
|
"weekdayname": p.pageToPermalinkDate,
|
|
|
|
"yearday": p.pageToPermalinkDate,
|
|
|
|
"section": p.pageToPermalinkSection,
|
|
|
|
"sections": p.pageToPermalinkSections,
|
|
|
|
"title": p.pageToPermalinkTitle,
|
|
|
|
"slug": p.pageToPermalinkSlugElseTitle,
|
|
|
|
"filename": p.pageToPermalinkFilename,
|
|
|
|
}
|
|
|
|
|
|
|
|
patterns := ps.Cfg.GetStringMapString("permalinks")
|
|
|
|
if patterns == nil {
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
e, err := p.parse(patterns)
|
|
|
|
if err != nil {
|
|
|
|
return p, err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.expanders = e
|
|
|
|
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expand expands the path in p according to the rules defined for the given key.
|
|
|
|
// If no rules are found for the given key, an empty string is returned.
|
|
|
|
func (l PermalinkExpander) Expand(key string, p Page) (string, error) {
|
|
|
|
expand, found := l.expanders[key]
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return expand(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l PermalinkExpander) parse(patterns map[string]string) (map[string]func(Page) (string, error), error) {
|
|
|
|
expanders := make(map[string]func(Page) (string, error))
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// Allow " " and / to represent the root section.
|
|
|
|
const sectionCutSet = " /" + string(os.PathSeparator)
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
for k, pattern := range patterns {
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
k = strings.Trim(k, sectionCutSet)
|
2021-03-30 01:55:24 -04:00
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
if !l.validate(pattern) {
|
|
|
|
return nil, &permalinkExpandError{pattern: pattern, err: errPermalinkIllFormed}
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern := pattern
|
|
|
|
matches := attributeRegexp.FindAllStringSubmatch(pattern, -1)
|
|
|
|
|
|
|
|
callbacks := make([]pageToPermaAttribute, len(matches))
|
|
|
|
replacements := make([]string, len(matches))
|
|
|
|
for i, m := range matches {
|
|
|
|
replacement := m[0]
|
|
|
|
attr := replacement[1:]
|
|
|
|
replacements[i] = replacement
|
2019-11-10 00:58:38 -05:00
|
|
|
callback, ok := l.callback(attr)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return nil, &permalinkExpandError{pattern: pattern, err: errPermalinkAttributeUnknown}
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks[i] = callback
|
|
|
|
}
|
|
|
|
|
|
|
|
expanders[k] = func(p Page) (string, error) {
|
|
|
|
if matches == nil {
|
|
|
|
return pattern, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newField := pattern
|
|
|
|
|
|
|
|
for i, replacement := range replacements {
|
|
|
|
attr := replacement[1:]
|
|
|
|
callback := callbacks[i]
|
|
|
|
newAttr, err := callback(p, attr)
|
|
|
|
if err != nil {
|
|
|
|
return "", &permalinkExpandError{pattern: pattern, err: err}
|
|
|
|
}
|
|
|
|
|
|
|
|
newField = strings.Replace(newField, replacement, newAttr, 1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return newField, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return expanders, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// pageToPermaAttribute is the type of a function which, given a page and a tag
|
|
|
|
// can return a string to go in that position in the page (or an error)
|
|
|
|
type pageToPermaAttribute func(Page, string) (string, error)
|
|
|
|
|
2021-03-30 01:55:24 -04:00
|
|
|
var attributeRegexp = regexp.MustCompile(`:\w+(\[.+\])?`)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
// validate determines if a PathPattern is well-formed
|
|
|
|
func (l PermalinkExpander) validate(pp string) bool {
|
|
|
|
fragments := strings.Split(pp[1:], "/")
|
2020-12-02 07:23:25 -05:00
|
|
|
bail := false
|
2019-01-02 06:33:26 -05:00
|
|
|
for i := range fragments {
|
|
|
|
if bail {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if len(fragments[i]) == 0 {
|
|
|
|
bail = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
matches := attributeRegexp.FindAllStringSubmatch(fragments[i], -1)
|
|
|
|
if matches == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, match := range matches {
|
2019-11-10 00:58:38 -05:00
|
|
|
k := match[0][1:]
|
|
|
|
if _, ok := l.callback(k); !ok {
|
2019-01-02 06:33:26 -05:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
type permalinkExpandError struct {
|
|
|
|
pattern string
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pee *permalinkExpandError) Error() string {
|
2019-08-02 11:32:23 -04:00
|
|
|
return fmt.Sprintf("error expanding %q: %s", pee.pattern, pee.err)
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
errPermalinkIllFormed = errors.New("permalink ill-formed")
|
|
|
|
errPermalinkAttributeUnknown = errors.New("permalink attribute not recognised")
|
|
|
|
)
|
|
|
|
|
|
|
|
func (l PermalinkExpander) pageToPermalinkDate(p Page, dateField string) (string, error) {
|
|
|
|
// a Page contains a Node which provides a field Date, time.Time
|
|
|
|
switch dateField {
|
|
|
|
case "year":
|
|
|
|
return strconv.Itoa(p.Date().Year()), nil
|
|
|
|
case "month":
|
|
|
|
return fmt.Sprintf("%02d", int(p.Date().Month())), nil
|
|
|
|
case "monthname":
|
|
|
|
return p.Date().Month().String(), nil
|
|
|
|
case "day":
|
|
|
|
return fmt.Sprintf("%02d", p.Date().Day()), nil
|
|
|
|
case "weekday":
|
|
|
|
return strconv.Itoa(int(p.Date().Weekday())), nil
|
|
|
|
case "weekdayname":
|
|
|
|
return p.Date().Weekday().String(), nil
|
|
|
|
case "yearday":
|
|
|
|
return strconv.Itoa(p.Date().YearDay()), nil
|
|
|
|
}
|
2019-11-10 00:58:38 -05:00
|
|
|
|
|
|
|
return p.Date().Format(dateField), nil
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// pageToPermalinkTitle returns the URL-safe form of the title
|
|
|
|
func (l PermalinkExpander) pageToPermalinkTitle(p Page, _ string) (string, error) {
|
|
|
|
return l.ps.URLize(p.Title()), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// pageToPermalinkFilename returns the URL-safe form of the filename
|
|
|
|
func (l PermalinkExpander) pageToPermalinkFilename(p Page, _ string) (string, error) {
|
|
|
|
name := p.File().TranslationBaseName()
|
|
|
|
if name == "index" {
|
|
|
|
// Page bundles; the directory name will hopefully have a better name.
|
|
|
|
dir := strings.TrimSuffix(p.File().Dir(), helpers.FilePathSeparator)
|
|
|
|
_, name = filepath.Split(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
return l.ps.URLize(name), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the page has a slug, return the slug, else return the title
|
|
|
|
func (l PermalinkExpander) pageToPermalinkSlugElseTitle(p Page, a string) (string, error) {
|
|
|
|
if p.Slug() != "" {
|
|
|
|
return l.ps.URLize(p.Slug()), nil
|
|
|
|
}
|
|
|
|
return l.pageToPermalinkTitle(p, a)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l PermalinkExpander) pageToPermalinkSection(p Page, _ string) (string, error) {
|
|
|
|
return p.Section(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l PermalinkExpander) pageToPermalinkSections(p Page, _ string) (string, error) {
|
|
|
|
return p.CurrentSection().SectionsPath(), nil
|
|
|
|
}
|
2021-03-30 01:55:24 -04:00
|
|
|
|
|
|
|
var (
|
|
|
|
nilSliceFunc = func(s []string) []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
allSliceFunc = func(s []string) []string {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// toSliceFunc returns a slice func that slices s according to the cut spec.
|
|
|
|
// The cut spec must be on form [low:high] (one or both can be omitted),
|
|
|
|
// also allowing single slice indices (e.g. [2]) and the special [last] keyword
|
|
|
|
// giving the last element of the slice.
|
|
|
|
// The returned function will be lenient and not panic in out of bounds situation.
|
|
|
|
//
|
|
|
|
// The current use case for this is to use parts of the sections path in permalinks.
|
|
|
|
func (l PermalinkExpander) toSliceFunc(cut string) func(s []string) []string {
|
|
|
|
cut = strings.ToLower(strings.TrimSpace(cut))
|
|
|
|
if cut == "" {
|
|
|
|
return allSliceFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(cut) < 3 || (cut[0] != '[' || cut[len(cut)-1] != ']') {
|
|
|
|
return nilSliceFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
toNFunc := func(s string, low bool) func(ss []string) int {
|
|
|
|
if s == "" {
|
|
|
|
if low {
|
|
|
|
return func(ss []string) int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return func(ss []string) int {
|
|
|
|
return len(ss)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if s == "last" {
|
|
|
|
return func(ss []string) int {
|
|
|
|
return len(ss) - 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
n, _ := strconv.Atoi(s)
|
|
|
|
if n < 0 {
|
|
|
|
n = 0
|
|
|
|
}
|
|
|
|
return func(ss []string) int {
|
|
|
|
// Prevent out of bound situations. It would not make
|
|
|
|
// much sense to panic here.
|
|
|
|
if n > len(ss) {
|
|
|
|
return len(ss)
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opsStr := cut[1 : len(cut)-1]
|
|
|
|
opts := strings.Split(opsStr, ":")
|
|
|
|
|
|
|
|
if !strings.Contains(opsStr, ":") {
|
|
|
|
toN := toNFunc(opts[0], true)
|
|
|
|
return func(s []string) []string {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
v := s[toN(s)]
|
|
|
|
if v == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return []string{v}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toN1, toN2 := toNFunc(opts[0], true), toNFunc(opts[1], false)
|
|
|
|
|
|
|
|
return func(s []string) []string {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return s[toN1(s):toN2(s)]
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|