2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2017-08-17 04:24:17 -04:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
package page
|
2018-02-22 03:15:12 -05:00
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
import (
|
|
|
|
"html/template"
|
|
|
|
"time"
|
|
|
|
|
2019-11-21 15:59:38 -05:00
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
2023-01-24 14:57:15 -05:00
|
|
|
"github.com/gohugoio/hugo/identity"
|
2019-11-21 15:59:38 -05:00
|
|
|
|
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
|
|
|
"github.com/gohugoio/hugo/config"
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
"github.com/gohugoio/hugo/common/hugo"
|
|
|
|
"github.com/gohugoio/hugo/langs"
|
|
|
|
"github.com/gohugoio/hugo/navigation"
|
|
|
|
)
|
2017-08-17 04:24:17 -04:00
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
// Site represents a site. There can be multople sites in a multilingual setup.
|
2018-11-26 04:11:22 -05:00
|
|
|
type Site interface {
|
2022-04-21 04:59:13 -04:00
|
|
|
// Returns the Language configured for this Site.
|
2018-11-26 04:11:22 -05:00
|
|
|
Language() *langs.Language
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns all the regular Pages in this Site.
|
2019-01-02 06:33:26 -05:00
|
|
|
RegularPages() Pages
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns all Pages in this Site.
|
2019-01-02 06:33:26 -05:00
|
|
|
Pages() Pages
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// A shortcut to the home page.
|
2022-02-17 07:04:00 -05:00
|
|
|
Home() Page
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns true if we're running in a server.
|
2018-11-26 04:11:22 -05:00
|
|
|
IsServer() bool
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the server port.
|
2019-01-02 06:33:26 -05:00
|
|
|
ServerPort() int
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the configured title for this Site.
|
2019-01-02 06:33:26 -05:00
|
|
|
Title() string
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns all Sites for all languages.
|
2019-01-02 06:33:26 -05:00
|
|
|
Sites() Sites
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns Site currently rendering.
|
2022-04-05 03:57:58 -04:00
|
|
|
Current() Site
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns a struct with some information about the build.
|
2019-01-02 06:33:26 -05:00
|
|
|
Hugo() hugo.Info
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the BaseURL for this Site.
|
2019-01-02 06:33:26 -05:00
|
|
|
BaseURL() template.URL
|
2022-04-21 04:59:13 -04:00
|
|
|
|
2023-02-18 15:47:35 -05:00
|
|
|
// Returns a taxonomy map.
|
2022-12-30 03:20:58 -05:00
|
|
|
Taxonomies() TaxonomyList
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the last modification date of the content.
|
2019-01-02 06:33:26 -05:00
|
|
|
LastChange() time.Time
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the Menus for this site.
|
2019-01-02 06:33:26 -05:00
|
|
|
Menus() navigation.Menus
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns the Params configured for this site.
|
2019-11-21 15:59:38 -05:00
|
|
|
Params() maps.Params
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
// Returns a map of all the data inside /data.
|
2022-03-17 17:03:27 -04:00
|
|
|
Data() map[string]any
|
2023-01-24 14:57:15 -05:00
|
|
|
|
|
|
|
// Returns the identity of this site.
|
|
|
|
GetIdentity() identity.Identity
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sites represents an ordered list of sites (languages).
|
|
|
|
type Sites []Site
|
|
|
|
|
|
|
|
// First is a convenience method to get the first Site, i.e. the main language.
|
|
|
|
func (s Sites) First() Site {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return s[0]
|
2017-08-17 04:24:17 -04:00
|
|
|
}
|
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
|
|
|
|
|
|
|
type testSite struct {
|
|
|
|
h hugo.Info
|
|
|
|
l *langs.Language
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) Hugo() hugo.Info {
|
|
|
|
return t.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) ServerPort() int {
|
|
|
|
return 1313
|
|
|
|
}
|
|
|
|
|
|
|
|
func (testSite) LastChange() (t time.Time) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) Title() string {
|
|
|
|
return "foo"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) Sites() Sites {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-05 03:57:58 -04:00
|
|
|
func (t testSite) Current() Site {
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2023-01-24 14:57:15 -05:00
|
|
|
func (t testSite) GetIdentity() identity.Identity {
|
|
|
|
return identity.KeyValueIdentity{Key: "site", Value: t.l.Lang}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
func (t testSite) IsServer() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) Language() *langs.Language {
|
|
|
|
return t.l
|
|
|
|
}
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
func (t testSite) Home() Page {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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
|
|
|
func (t testSite) Pages() Pages {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) RegularPages() Pages {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) Menus() navigation.Menus {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
func (t testSite) Taxonomies() TaxonomyList {
|
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
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t testSite) BaseURL() template.URL {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-11-21 15:59:38 -05:00
|
|
|
func (t testSite) Params() maps.Params {
|
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
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
func (t testSite) Data() map[string]any {
|
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
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDummyHugoSite creates a new minimal test site.
|
|
|
|
func NewDummyHugoSite(cfg config.Provider) Site {
|
|
|
|
return testSite{
|
2022-01-11 09:07:04 -05:00
|
|
|
h: hugo.NewInfo(hugo.EnvironmentProduction, nil),
|
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
|
|
|
l: langs.NewLanguage("en", cfg),
|
|
|
|
}
|
|
|
|
}
|